Contact Form by BestWebSoft - Version 4.0.7

Version Description

  • 04.07.2017 =
  • Bugfix : The compatibility issue with Google Captcha (reCAPTCHA) plugin was fixed.
  • NEW : The ability to change width for contact form fields has been added.
  • Update : French language file is updated.
Download this release

Release Info

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

Code changes from version 4.0.6 to 4.0.7

Files changed (67) hide show
  1. bws_menu/bws_functions.php +2 -11
  2. bws_menu/bws_menu.php +2 -2
  3. bws_menu/class-bws-settings.php +7 -2
  4. bws_menu/css/general_style.css +22 -16
  5. bws_menu/fonts/bwsicons.eot +0 -0
  6. bws_menu/fonts/bwsicons.svg +2 -1
  7. bws_menu/fonts/bwsicons.ttf +0 -0
  8. bws_menu/fonts/bwsicons.woff +0 -0
  9. bws_menu/icons/plugins/db-manager.png +0 -0
  10. bws_menu/js/general_script.js +6 -0
  11. bws_menu/languages/bestwebsoft-cs_CZ.mo +0 -0
  12. bws_menu/languages/bestwebsoft-cs_CZ.po +364 -185
  13. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  14. bws_menu/languages/bestwebsoft-fr_FR.po +360 -48
  15. bws_menu/languages/bestwebsoft-id_ID.mo +0 -0
  16. bws_menu/languages/bestwebsoft-id_ID.po +2063 -0
  17. bws_menu/languages/bestwebsoft-nl_NL.mo +0 -0
  18. bws_menu/languages/bestwebsoft-nl_NL.po +1472 -0
  19. bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
  20. bws_menu/languages/bestwebsoft-pl_PL.po +336 -42
  21. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  22. bws_menu/languages/bestwebsoft-ru_RU.po +509 -51
  23. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  24. bws_menu/languages/bestwebsoft-uk.po +502 -52
  25. bws_menu/product_list.php +113 -136
  26. contact_form.php +232 -296
  27. css/form_style.css +54 -12
  28. css/style.css +10 -5
  29. includes/deprecated.php +0 -209
  30. js/cntctfrm.js +2 -2
  31. js/script.js +33 -0
  32. languages/contact-form-plugin-af_ZA.mo +0 -0
  33. languages/contact-form-plugin-af_ZA.po +245 -241
  34. languages/contact-form-plugin-ca.mo +0 -0
  35. languages/contact-form-plugin-ca.po +245 -241
  36. languages/contact-form-plugin-cs_CZ.mo +0 -0
  37. languages/contact-form-plugin-cs_CZ.po +245 -241
  38. languages/contact-form-plugin-da_DK.mo +0 -0
  39. languages/contact-form-plugin-da_DK.po +245 -241
  40. languages/contact-form-plugin-de_DE.mo +0 -0
  41. languages/contact-form-plugin-de_DE.po +246 -242
  42. languages/contact-form-plugin-el.mo +0 -0
  43. languages/contact-form-plugin-el.po +245 -241
  44. languages/contact-form-plugin-es_ES.mo +0 -0
  45. languages/contact-form-plugin-es_ES.po +245 -241
  46. languages/contact-form-plugin-et.mo +0 -0
  47. languages/contact-form-plugin-et.po +245 -241
  48. languages/contact-form-plugin-fr_FR.mo +0 -0
  49. languages/contact-form-plugin-fr_FR.po +624 -613
  50. languages/contact-form-plugin-ja.mo +0 -0
  51. languages/contact-form-plugin-ja.po +245 -241
  52. languages/contact-form-plugin-nb_NO.mo +0 -0
  53. languages/contact-form-plugin-nb_NO.po +245 -241
  54. languages/contact-form-plugin-nl_NL.mo +0 -0
  55. languages/contact-form-plugin-nl_NL.po +246 -241
  56. languages/contact-form-plugin-pt_BR.mo +0 -0
  57. languages/contact-form-plugin-pt_BR.po +245 -241
  58. languages/contact-form-plugin-ru_RU.mo +0 -0
  59. languages/contact-form-plugin-ru_RU.po +255 -245
  60. languages/contact-form-plugin-sk_SK.mo +0 -0
  61. languages/contact-form-plugin-sk_SK.po +245 -241
  62. languages/contact-form-plugin-sv_SE.mo +0 -0
  63. languages/contact-form-plugin-sv_SE.po +245 -241
  64. languages/contact-form-plugin-tr.mo +0 -0
  65. languages/contact-form-plugin-tr.po +245 -241
  66. languages/contact-form-plugin-uk.mo +0 -0
  67. languages/contact-form-plugin-uk.po +60 -61
bws_menu/bws_functions.php CHANGED
@@ -388,7 +388,7 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
388
 
389
  if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
390
  function bws_plugin_banner_to_settings( $plugin_info, $plugin_options_name, $banner_url_or_slug, $settings_url, $post_type_url = false ) {
391
- global $wp_version, $bws_plugin_banner_to_settings;
392
 
393
  $is_network_admin = is_network_admin();
394
 
@@ -422,8 +422,6 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
422
 
423
  if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
424
  function bws_plugin_suggest_feature_banner( $plugin_info, $plugin_options_name, $banner_url_or_slug ) {
425
- global $wp_version;
426
-
427
  $is_network_admin = is_network_admin();
428
 
429
  $plugin_options = $is_network_admin ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
@@ -683,9 +681,6 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
683
  private $tooltip_args;
684
 
685
  public function __construct( $tooltip_args ) {
686
- global $wp_version;
687
- if ( 3.3 > $wp_version )
688
- return;
689
  /* Default arguments */
690
  $tooltip_args_default = array(
691
  'tooltip_id' => false,
@@ -804,9 +799,7 @@ if ( ! function_exists ( 'bws_form_restore_default_confirm' ) ) {
804
  /* shortcode */
805
  if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
806
  function bws_add_editor_buttons() {
807
- global $bws_shortcode_list, $wp_version;
808
- if ( $wp_version < '3.3' )
809
- return;
810
  if ( ! empty( $bws_shortcode_list ) && current_user_can( 'edit_posts' ) && current_user_can( 'edit_pages' ) ) {
811
  add_filter( 'mce_external_plugins', 'bws_add_buttons' );
812
  add_filter( 'mce_buttons', 'bws_register_buttons' );
@@ -832,8 +825,6 @@ if ( ! function_exists( 'bws_register_buttons' ) ) {
832
  if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
833
  function bws_shortcode_media_button_popup() {
834
  global $bws_shortcode_list, $wp_version;
835
- if ( $wp_version < '3.3' )
836
- return;
837
 
838
  if ( ! empty( $bws_shortcode_list ) ) { ?>
839
  <div id="bws_shortcode_popup" style="display:none;">
388
 
389
  if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
390
  function bws_plugin_banner_to_settings( $plugin_info, $plugin_options_name, $banner_url_or_slug, $settings_url, $post_type_url = false ) {
391
+ global $bws_plugin_banner_to_settings;
392
 
393
  $is_network_admin = is_network_admin();
394
 
422
 
423
  if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
424
  function bws_plugin_suggest_feature_banner( $plugin_info, $plugin_options_name, $banner_url_or_slug ) {
 
 
425
  $is_network_admin = is_network_admin();
426
 
427
  $plugin_options = $is_network_admin ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
681
  private $tooltip_args;
682
 
683
  public function __construct( $tooltip_args ) {
 
 
 
684
  /* Default arguments */
685
  $tooltip_args_default = array(
686
  'tooltip_id' => false,
799
  /* shortcode */
800
  if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
801
  function bws_add_editor_buttons() {
802
+ global $bws_shortcode_list;
 
 
803
  if ( ! empty( $bws_shortcode_list ) && current_user_can( 'edit_posts' ) && current_user_can( 'edit_pages' ) ) {
804
  add_filter( 'mce_external_plugins', 'bws_add_buttons' );
805
  add_filter( 'mce_buttons', 'bws_register_buttons' );
825
  if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
826
  function bws_shortcode_media_button_popup() {
827
  global $bws_shortcode_list, $wp_version;
 
 
828
 
829
  if ( ! empty( $bws_shortcode_list ) ) { ?>
830
  <div id="bws_shortcode_popup" style="display:none;">
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 2.0.6
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -532,7 +532,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
532
  } ?>
533
  </div>
534
  <div class="bws_product_description">
535
- <?php echo ( strlen( $value_plugin['description'] ) > 100 ) ? substr( $value_plugin['description'], 0, 100 ) . '...' : $value_plugin['description']; ?>
536
  </div>
537
  <div class="bws_product_links">
538
  <?php if ( $is_active || $is_pro_active ) {
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 2.0.8
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
532
  } ?>
533
  </div>
534
  <div class="bws_product_description">
535
+ <?php echo ( strlen( $value_plugin['description'] ) > 100 ) ? mb_substr( $value_plugin['description'], 0, 100 ) . '...' : $value_plugin['description']; ?>
536
  </div>
537
  <div class="bws_product_links">
538
  <?php if ( $is_active || $is_pro_active ) {
bws_menu/class-bws-settings.php CHANGED
@@ -791,7 +791,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
791
  }
792
  $current = get_site_transient( 'update_plugins' );
793
 
794
- if ( ! empty( $this->all_plugins ) && isset( $current ) && is_array( $current->response ) ) {
795
  $to_send = array();
796
  $to_send["plugins"][ $this->plugin_basename ] = $this->all_plugins[ $this->plugin_basename ];
797
  $to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
@@ -895,7 +895,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
895
 
896
  if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
897
  $current = get_site_transient( 'update_plugins' );
898
- if ( ! empty( $current ) && is_array( $current->response ) ) {
899
  $to_send = array();
900
  $to_send["plugins"][ $bws_license_plugin ] = array();
901
  $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
@@ -1071,6 +1071,11 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
1071
  * @return void
1072
  */
1073
  public function restore_options() {
 
 
 
 
 
1074
  /**
1075
  * filter - Change default_options array OR process custom functions
1076
  */
791
  }
792
  $current = get_site_transient( 'update_plugins' );
793
 
794
+ if ( ! empty( $this->all_plugins ) && ! empty( $current ) && isset( $current->response ) && is_array( $current->response ) ) {
795
  $to_send = array();
796
  $to_send["plugins"][ $this->plugin_basename ] = $this->all_plugins[ $this->plugin_basename ];
797
  $to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
895
 
896
  if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
897
  $current = get_site_transient( 'update_plugins' );
898
+ if ( ! empty( $current ) && isset( $current->response ) && is_array( $current->response ) ) {
899
  $to_send = array();
900
  $to_send["plugins"][ $bws_license_plugin ] = array();
901
  $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
1071
  * @return void
1072
  */
1073
  public function restore_options() {
1074
+ unset(
1075
+ $this->default_options['first_install'],
1076
+ $this->default_options['suggest_feature_banner'],
1077
+ $this->default_options['display_settings_notice']
1078
+ );
1079
  /**
1080
  * filter - Change default_options array OR process custom functions
1081
  */
bws_menu/css/general_style.css CHANGED
@@ -39,7 +39,7 @@
39
  #adminmenu #toplevel_page_bws_panel .wp-menu-image {
40
  font-family: 'bwsicons' !important;
41
  }
42
- #adminmenu #toplevel_page_bws_panel .wp-menu-image:before {
43
  content: "\e93c";
44
  font-family: 'bwsicons' !important;
45
  }
@@ -56,6 +56,7 @@
56
  }
57
  div.bws_info {
58
  margin-top: 7px;
 
59
  }
60
  .bws_info_small {
61
  font-size: 11px !important;
@@ -87,22 +88,24 @@ div.updated.bws-notice {
87
  .bws-plugin-reviews-rate,
88
  .bws-plugin-reviews-support,
89
  .bws-plugin-reviews-donate {
90
- display: inline-block;
91
  padding: 10px;
92
- width: 30%;
 
 
 
 
 
 
 
 
 
93
  }
94
  @media screen and (max-width: 1600px) {
95
  .bws-plugin-reviews-rate,
96
  .bws-plugin-reviews-support {
97
  border-bottom: 1px solid #70A8C2;
98
  border-right: none;
99
- }
100
- .bws-plugin-reviews-rate,
101
- .bws-plugin-reviews-support,
102
- .bws-plugin-reviews-donate {
103
- width: initial;
104
- display: block;
105
- }
106
  }
107
  /*
108
  * styles for Go PRO tab
@@ -240,7 +243,8 @@ a.bws_plugin_pro_version {
240
  .bws_pro_version_tooltip .bws_info a {
241
  display: block;
242
  }
243
- .bws_pro_version_tooltip .bws_button {
 
244
  margin: 10px 10px 5px;
245
  float: none;
246
  }
@@ -465,9 +469,7 @@ span.bws_code {
465
  text-shadow: 0 0 2px #000;
466
  padding: 4px 8px;
467
  border: 1px solid rgba(255,255,255,0.25);
468
- background-color: rgb(25,25,25);
469
- background-color: rgba(25,25,25,0.92);
470
- background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
471
  border-radius: 3px;
472
  -webkit-border-radius: 3px;
473
  -moz-border-radius: 3px;
@@ -606,7 +608,7 @@ span.bws_code {
606
  width: 161px;
607
  margin: -1px 0 0 0;
608
  border-top: 1px solid #ddd;
609
- padding: 20px 20px 20px 45px;
610
  color: #000 !important;
611
  background: #fff !important;
612
  }
@@ -646,7 +648,8 @@ span.bws_code {
646
  #bws_settings_tabs li.bws-tab-import-export a:before {
647
  content: "\f317";
648
  }
649
- #bws_settings_tabs li.bws-tab-errors a:before {
 
650
  font-family: 'bwsicons';
651
  content: "\e93d";
652
  font-size: 18px;
@@ -735,6 +738,9 @@ span.bws_code {
735
  margin-right: 160px;
736
  margin-left: 0;
737
  }
 
 
 
738
  @media only screen and (max-width: 1100px) {
739
  #bws_settings_tabs {
740
  width: 59px;
39
  #adminmenu #toplevel_page_bws_panel .wp-menu-image {
40
  font-family: 'bwsicons' !important;
41
  }
42
+ #adminmenu #toplevel_page_bws_panel .wp-menu-image:before {
43
  content: "\e93c";
44
  font-family: 'bwsicons' !important;
45
  }
56
  }
57
  div.bws_info {
58
  margin-top: 7px;
59
+ word-break: break-all;
60
  }
61
  .bws_info_small {
62
  font-size: 11px !important;
88
  .bws-plugin-reviews-rate,
89
  .bws-plugin-reviews-support,
90
  .bws-plugin-reviews-donate {
 
91
  padding: 10px;
92
+ display: block;
93
+ }
94
+
95
+ @media screen and (min-width: 1600px) {
96
+ .bws-plugin-reviews-rate,
97
+ .bws-plugin-reviews-support,
98
+ .bws-plugin-reviews-donate {
99
+ display: inline-block;
100
+ width: 30%;
101
+ }
102
  }
103
  @media screen and (max-width: 1600px) {
104
  .bws-plugin-reviews-rate,
105
  .bws-plugin-reviews-support {
106
  border-bottom: 1px solid #70A8C2;
107
  border-right: none;
108
+ }
 
 
 
 
 
 
109
  }
110
  /*
111
  * styles for Go PRO tab
243
  .bws_pro_version_tooltip .bws_info a {
244
  display: block;
245
  }
246
+ .bws_pro_version_tooltip .bws_button,
247
+ .bws_pro_version_tooltip .bws_button:hover {
248
  margin: 10px 10px 5px;
249
  float: none;
250
  }
469
  text-shadow: 0 0 2px #000;
470
  padding: 4px 8px;
471
  border: 1px solid rgba(255,255,255,0.25);
472
+ background: rgba(25,25,25,0.92);
 
 
473
  border-radius: 3px;
474
  -webkit-border-radius: 3px;
475
  -moz-border-radius: 3px;
608
  width: 161px;
609
  margin: -1px 0 0 0;
610
  border-top: 1px solid #ddd;
611
+ padding: 20px 21px 20px 45px;
612
  color: #000 !important;
613
  background: #fff !important;
614
  }
648
  #bws_settings_tabs li.bws-tab-import-export a:before {
649
  content: "\f317";
650
  }
651
+ #bws_settings_tabs li.bws-tab-errors a:before,
652
+ #bws_settings_tabs li.bws-tab-messages a:before {
653
  font-family: 'bwsicons';
654
  content: "\e93d";
655
  font-size: 18px;
738
  margin-right: 160px;
739
  margin-left: 0;
740
  }
741
+ .bws_margined_box {
742
+ margin: 1em 0;
743
+ }
744
  @media only screen and (max-width: 1100px) {
745
  #bws_settings_tabs {
746
  width: 59px;
bws_menu/fonts/bwsicons.eot CHANGED
Binary file
bws_menu/fonts/bwsicons.svg CHANGED
@@ -34,7 +34,7 @@
34
  <glyph unicode="&#xe918;" glyph-name="job-board" d="M640 356.16c0.064-28.608-12.864-36.16-41.408-36.16h-171.52c-28.608 0-43.072 7.552-43.072 36.16v18.432c-134.208 9.024-257.984 39.936-384 73.472v-355.712c0-51.008 33.472-92.352 84.416-92.352h847.296c50.944 0 92.288 41.344 92.288 92.352v355.648c-125.952-33.472-249.728-64.384-384-73.408v-18.432zM462.848 384h98.24c8.256 0 14.912 6.656 14.912 14.848v98.304c0 8.192-6.656 14.848-14.848 14.848h-98.304c-8.192 0-14.848-6.656-14.848-14.848v-98.24c0-8.256 6.656-14.912 14.848-14.912zM931.648 832h-227.648v20.864c0 60.352-29.504 107.136-89.856 107.136h-203.776c-60.352 0-90.368-46.784-90.368-107.136v-20.864h-235.328c-51.008 0-84.48-41.344-84.48-92.352v-144.256c125.952-33.472 249.6-73.664 383.808-82.688v12.864c0 28.608 22.464 51.712 51.008 51.712h154.112c28.544 0 50.88-23.104 50.88-51.712v-13.568c134.208 9.024 258.048 49.92 384 83.392v144.256c0 51.008-41.344 92.352-92.352 92.352zM640 832h-256v27.84c0 21.376 20.48 36.16 41.856 36.16h172.288c21.312 0 41.856-19.648 41.856-40.96v-23.040z" />
35
  <glyph unicode="&#xe919;" glyph-name="latest-posts" d="M128.016 576.080h256.032v-64.008h-256.032v64.008zM128.016 448.064h128.016v-64.008h-128.016v64.008zM128.016 320.048h128.016v-64.008h-128.016v64.008zM128.016 704.096h512.064v-64.008h-512.064v64.008zM128.016 832.112h512.064v-64.008h-512.064v64.008zM768.096 626.518v234.525c0 54.663-43.141 99.084-96.14 99.084h-575.816c-52.999 0-96.14-44.486-96.14-99.084v-697.943c0-54.663 43.141-99.084 96.14-99.084h304.422c64.584-78.090 162.196-127.888 271.458-127.888 194.456 0 352.044 157.588 352.044 351.98 0.064 161.044-108.302 296.549-255.968 338.41zM96.14 128.024c-16.962 0-32.132 15.106-32.132 33.732v699.287c0 18.626 15.17 35.076 32.132 35.076h575.752c17.026 0 32.196-16.45 32.196-35.076v-222.556c-10.561 0.96-21.187 1.6-32.004 1.6-194.456 0-352.044-157.588-352.044-351.98 0-57.735 14.146-112.014 38.789-160.084h-262.689zM768.096 255.976h-128.016v256.032h64.008v-192.024h64.008v-64.008z" />
36
  <glyph unicode="&#xe91a;" glyph-name="limit-attempts" d="M990.208 314.24v55.104c0 50.88-42.432 78.656-94.144 78.656-51.776 0-93.696-27.776-93.696-78.656v-56.192c-17.28-0.96-34.368-9.728-34.368-26.944v-125.888c0-17.856 14.72-32.32 32.896-32.32h190.784c18.176 0 32.32 14.464 32.32 32.32v125.888c0 17.216-16.576 27.072-33.792 28.032zM926.016 182.016c-0.96-1.408-2.56-2.304-4.352-2.304h-51.392c-1.728 0-3.328 0.832-4.352 2.304-0.96 1.408-1.152 3.264-0.448 4.8l12.416 31.168c-6.592 5.312-10.496 13.248-10.496 21.696 0 15.488 12.8 28.032 28.544 28.032 15.68 0 28.544-12.608 28.544-28.032 0-8.448-3.904-16.384-10.496-21.696l12.416-31.168c0.768-1.6 0.576-3.392-0.384-4.8zM955.328 312.832h-119.168v56.512c0 25.6 34.304 44.864 60.416 44.864 26.048 0 58.752-19.2 58.752-44.864v-56.512zM315.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM507.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM699.008 460.8c-4.928-2.944-19.648-8.832-33.408-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.904-13.76 5.888-30.464 5.888-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM704 320h-640v256h768v-64h64v48.448c0 43.904-36.736 79.552-81.92 79.552h-732.16c-5.632 0-11.136-0.576-16.448-1.6-2.688-0.576-5.312-1.216-7.872-1.984-33.344-10.112-57.6-40.32-57.6-75.968v0-224.96c0-32.896 20.672-61.184 50.112-73.28 4.928-1.984 10.048-3.584 15.36-4.672 5.312-0.96 10.816-1.536 16.448-1.536h622.080v64z" />
37
- <glyph unicode="&#xe91b;" glyph-name="linkedin" d="M232.704-64h-220.032v660.608h219.968v-660.608zM212.992 719.296c-22.848-21.824-52.992-32.64-90.304-32.64h-1.344c-36.416 0-65.792 10.88-88 32.64s-33.344 48.896-33.344 81.28c0 32.896 11.456 60.096 34.304 81.664 22.912 21.568 52.8 32.32 89.728 32.32 36.864 0 66.432-10.816 88.64-32.32 22.208-21.568 33.536-48.768 33.984-81.664 0.448-32.384-10.752-59.52-33.664-81.28zM1024-64h-219.328v353.344c0 46.656-9.024 83.2-27.008 109.632-18.048 26.432-46.080 39.616-84.352 39.616-28.032 0-51.456-7.68-70.336-22.976s-32.96-34.304-42.304-56.96c-4.928-13.312-7.36-31.296-7.36-54.016v-368.64h-219.328c0.896 177.344 1.344 321.152 1.344 431.36s-0.192 176-0.704 197.248l-0.64 32h219.328v-94.080c8.448 13.44 17.088 25.28 25.984 35.392 9.344 10.688 21.888 22.208 37.696 34.688 15.808 12.416 35.136 22.080 57.984 28.992 22.912 6.912 48.384 10.368 76.352 10.368 76.032 0 137.088-25.216 183.36-75.648 46.208-50.432 69.312-124.352 69.312-221.632v-378.688z" />
38
  <glyph unicode="&#xe91c;" glyph-name="multilanguage" d="M152.64 228.224c0.128 0 17.28 0.32 23.616 4.032 16.128 10.048 37.888 34.752 56.96 57.152l5.952 6.912c24.192 27.712 48.704 59.776 73.024 95.552 4.48-3.328 10.368-7.872 15.168-11.584 9.408-7.168 18.816-14.4 22.912-17.024 9.088-5.952 43.904-24.96 52.224-28.672 1.472-0.576 3.84-1.536 6.592-2.688 17.152-7.168 26.368-10.624 32.192-10.624 6.336 0 9.728 3.968 10.816 7.68 1.216 4.736-3.136 38.784-14.72 42.56-3.776 1.408-71.232 28.992-81.216 33.6-5.76 2.816-17.472 7.68-27.136 11.712l-0.256 0.128c25.216 39.168 39.040 65.664 39.296 66.112 1.472 3.136 6.272 12.416 11.648 22.976 19.904 38.848 21.056 41.344 21.568 43.968 0.576 3.264 1.472 17.28 0.512 21.952l-2.752 8.128h-7.68c-3.584 0-7.232-1.472-13.312-3.84-3.584-1.472-7.936-3.136-12.8-4.736-7.168-2.368-16.64-7.296-25.728-12.16-8.512-4.48-19.136-10.048-23.808-10.816-7.424-1.728-24.832-7.808-41.664-13.696-6.848-2.432-13.312-4.672-18.368-6.4-16.192-5.44-46.976-14.4-60.288-17.92-6.336-1.728-12.352-2.688-17.536-3.456-5.632-0.896-10.56-1.728-14.208-2.944l-6.848-2.24 0.384-6.976c0.64-10.944 3.328-15.936 4.224-17.216 2.624-4.224 11.392-13.632 21.696-16 13.568-3.84 26.496-1.792 31.488-0.192 4.16 0.768 20.864 5.952 24.704 13.376 1.472 2.88 1.472 5.888 1.472 8.576 4.992 1.472 13.696 3.648 20.032 5.248 7.872 1.984 15.68 3.968 20.544 5.376l4.224 1.408c17.472 5.76 31.040 10.048 40.448 12.864-11.264-23.104-32.768-64.896-42.56-82.24-11.2-20.8-79.488-113.984-93.824-130.24-2.88-3.264-6.72-7.68-10.944-12.672-11.52-13.376-28.992-33.664-35.072-38.144l-12.16-8.896 13.568-6.656c1.92-0.896 4.16-1.28 7.616-1.28zM257.088 553.152l1.024-0.064c13.184 0 29.056 3.904 38.272 7.488 7.616 2.944 26.048 11.392 34.112 26.368 1.664 3.008 5.056 9.28 2.816 21.568-2.496 10.624-10.24 16.704-22.080 16.704h-0.128c-6.976-0.704-25.088-5.504-33.536-8.256l-4.544-1.28c-8.896-2.496-22.336-6.272-28.608-7.68-0.448-0.128-1.856-0.32-4.736-0.32-5.76 0-11.904 1.024-14.208 1.664l-1.984 1.92-10.24-0.192-2.432-5.44c-3.264-7.296 5.504-27.904 12.288-35.136 14.080-13.76 26.112-16.448 33.984-17.344zM706.496 35.776c-3.2-1.792-6.4-3.584-9.6-5.376-11.84-6.72-22.976-13.12-35.072-18.496-63.36-26.624-111.552-36.032-184.064-36.032-60.416 0-134.464 25.728-179.776 47.872-2.432 1.088-6.912 3.584-12.096 6.4-19.776 10.88-26.752 14.272-31.808 14.272-11.072 0-19.776-8.768-19.776-19.904 0-6.72 2.368-11.52 8.512-16.512 50.176-35.712 164.992-72 227.456-72h48.64c17.728 0 37.568 3.52 54.272 6.912 51.968 8.576 108.032 29.376 155.328 57.536l28.736-46.272 41.536 120.384-121.536 9.792 29.248-48.576zM684.672 446.912l80.512-23.744-36.48 128.512zM868.928 711.36v236.736c0 7.424-5.184 11.904-11.584 11.904-5.248 0-365.696-121.728-369.728-122.88l-323.328 112.128v-217.472c-49.28-16.448-84.608-27.776-86.4-28.288-3.456-1.152-8.128-2.304-11.584-6.272-1.152-1.152-1.728-3.904-2.304-5.632v-610.496c0-0.576 0.576-1.152 0.576-1.728 1.728-4.544 5.824-7.36 10.432-7.36 5.76 0 421.312 137.024 430.592 141.056 0 0 0.576 0 448.576-139.328v611.008l-85.248 26.624zM488.768 248.32l-383.424-123.328v539.2l383.424 131.968v-547.84zM827.584 902.656v-183.872l-294.592 85.824 294.592 98.048zM805.76 278.144l-21.44 76.48-122.304 36.8-26.048-62.272-59.072 17.536 125.184 303.552 57.984-17.536 104.896-372.096-59.2 17.536z" />
39
  <glyph unicode="&#xe91d;" glyph-name="pagination" d="M746.688 640v0h-234.688v-448h234.688c117.824 0 213.312 95.232 213.312 220.864 0 125.696-95.488 227.136-213.312 227.136zM814.464 384.448l-112.64-92.48c-6.656-5.568-14.848-8.512-23.552-8.512-12.416 0-24.064 6.4-31.232 17.024-11.84 17.728-8.448 41.984 7.744 55.168l74.176 60.928-71.936 60.032c-16 13.44-19.264 37.696-7.296 55.168 6.144 9.024 15.68 14.976 26.112 16.448 10.432 1.344 20.544-1.6 28.736-8.384l110.144-91.84c9.28-7.808 14.592-19.392 14.464-31.808 0.064-12.288-5.504-24.192-14.72-31.744zM0 412.864c0-125.632 95.488-220.864 213.312-220.864v0h234.688v448h-234.688c-117.824 0-213.312-101.44-213.312-227.136zM130.752 416.128c-0.064 12.416 5.184 24.064 14.528 31.872l110.144 91.904c8.192 6.784 18.304 9.664 28.736 8.32 10.432-1.472 19.904-7.424 26.112-16.448 11.904-17.536 8.704-41.728-7.296-55.168l-71.936-60.032 74.176-60.928c16.192-13.184 19.584-37.44 7.744-55.168-7.168-10.624-18.816-17.024-31.232-17.024-8.704 0-16.832 3.008-23.552 8.512l-112.64 92.48c-9.216 7.552-14.784 19.456-14.784 31.68z" />
40
  <glyph unicode="&#xe91e;" glyph-name="pdf-print" d="M960 704h-128v198.208c0 32.384-26.24 57.792-58.688 57.792h-522.624c-32.448 0-58.688-25.408-58.688-57.792v-198.208h-128c-35.328 0-64-28.672-64-64v-448c0-35.328 28.672-64 64-64h128v-134.784c0-31.616 25.6-57.216 57.216-57.216h525.568c31.616 0 57.216 25.6 57.216 57.216v134.784h128c35.328 0 64 28.672 64 64v448c0 35.328-28.672 64-64 64zM256 896h512v-192h-512v192zM768 128v-128h-512v192h512v-64zM768 512h-64v64h64v-64zM896 512h-64v64h64v-64z" />
@@ -69,4 +69,5 @@
69
  <glyph unicode="&#xe93b;" glyph-name="shortcode" d="M0 896v-896h384v192h-192v512h192v192h-192zM832 896h-192v-192h192v-512h-192v-192h384v896z" />
70
  <glyph unicode="&#xe93c;" glyph-name="bws-logo" d="M953.913 325.746c-21.447-38.855-46.592-77.198-75.435-114.233-68.551-100.466-192.91-193.365-254.919-225.052-38.457-19.684-89.088-34.702-126.805-44.316 204.459-39.538 403.285 114.46 466.034 352.37 6.997 26.852 12.004 53.134 15.417 78.734-7.566-15.872-15.588-31.744-24.292-47.502zM327.964 88.519c-70.087 61.952-114.176 154.169-114.176 264.533 0 207.076 154.852 374.898 345.884 374.898 117.931 0 222.151-64.114 284.501-161.906 1.479 4.494 3.129 9.045 4.437 13.54 17.010 57.799 23.438 113.38 18.887 162.816-35.442 34.93-77.995 62.976-126.862 82.716-207.588 83.854-477.753-63.431-543.346-312.946-40.789-154.51-9.899-309.931 70.485-420.58 19.058-3.527 39.14-4.494 60.188-3.072zM934.059 893.611c-119.694 109.682-325.632 79.019-507.79-59.392 44.658 22.357 92.16 36.807 139.89 42.098 103.31 41.529 200.932 38.343 264.704-19.342 70.656-63.886 83.797-180.167 46.364-307.314-25.145-85.618-73.159-176.185-141.995-258.958-154.567-185.742-454.428-341.902-620.203-137.671 13.596-54.67 39.481-102.059 78.62-137.842 96.313-88.178 248.377-85.618 398.962-9.33 85.504 43.349 170.61 110.364 244.565 198.201 38.286 45.397 70.884 93.127 97.564 141.54 116.224 210.603 121.97 435.655-0.683 548.011zM791.211 595.854c-4.38 5.86-23.666 26.226-28.956 30.436-56.092 45.056-124.985 71.68-199.68 71.68-46.99 0-91.648-10.468-132.38-29.468 15.246-6.656 30.322-14.165 45.284-22.756 155.989-89.088 240.64-247.808 205.824-372.224 2.788 3.3 5.518 6.599 8.021 9.785 54.784 71.054 114.859 157.298 144.953 243.712-12.174 23.78-26.453 46.82-43.065 68.836zM24.007 593.977c-71.794-176.469 23.154-384.683 207.303-496.299-24.86 33.451-41.7 72.42-56.149 121.344-137.444 102.741-194.446 258.162-134.087 372.907 39.708 75.662 123.79 115.029 221.355 114.404 33.166 41.017 72.704 74.524 115.996 99.214-158.549 1.877-299.065-75.264-354.418-211.57zM263.794 453.632c0.569 10.524 1.593 20.935 3.015 31.118-12.857-32.768-20.821-68.608-22.642-106.268-5.86-116.224 46.99-220.615 130.219-278.983 38.059 4.38 74.638 16.213 108.601 34.418-132.096 32.939-226.93 166.059-219.193 319.716z" />
71
  <glyph unicode="&#xe93d;" glyph-name="warning" d="M508.992-64c-287.040 3.136-512.64 235.584-508.928 524.352 3.52 274.112 239.040 502.592 514.944 499.648 287.040-3.136 512.64-235.584 508.928-524.352-3.52-274.112-239.040-502.592-514.944-499.648zM424.128 768c-0.576-5.44 11.84-247.744 17.92-365.76 0.704-14.208 5.952-18.24 5.952-18.24h128c0 0 5.568 6.784 6.4 25.472 3.584 82.752 16.64 321.152 18.304 358.528-60.16 0-117.12 0-176.576 0zM507.136 319.872c-68.288-2.688-108.352-41.088-105.408-101.056 2.816-57.472 46.592-92.544 113.152-90.752 69.952 1.92 107.264 39.168 104.384 104.256-2.496 55.808-46.4 90.112-112.128 87.552z" />
 
72
  </font></defs></svg>
34
  <glyph unicode="&#xe918;" glyph-name="job-board" d="M640 356.16c0.064-28.608-12.864-36.16-41.408-36.16h-171.52c-28.608 0-43.072 7.552-43.072 36.16v18.432c-134.208 9.024-257.984 39.936-384 73.472v-355.712c0-51.008 33.472-92.352 84.416-92.352h847.296c50.944 0 92.288 41.344 92.288 92.352v355.648c-125.952-33.472-249.728-64.384-384-73.408v-18.432zM462.848 384h98.24c8.256 0 14.912 6.656 14.912 14.848v98.304c0 8.192-6.656 14.848-14.848 14.848h-98.304c-8.192 0-14.848-6.656-14.848-14.848v-98.24c0-8.256 6.656-14.912 14.848-14.912zM931.648 832h-227.648v20.864c0 60.352-29.504 107.136-89.856 107.136h-203.776c-60.352 0-90.368-46.784-90.368-107.136v-20.864h-235.328c-51.008 0-84.48-41.344-84.48-92.352v-144.256c125.952-33.472 249.6-73.664 383.808-82.688v12.864c0 28.608 22.464 51.712 51.008 51.712h154.112c28.544 0 50.88-23.104 50.88-51.712v-13.568c134.208 9.024 258.048 49.92 384 83.392v144.256c0 51.008-41.344 92.352-92.352 92.352zM640 832h-256v27.84c0 21.376 20.48 36.16 41.856 36.16h172.288c21.312 0 41.856-19.648 41.856-40.96v-23.040z" />
35
  <glyph unicode="&#xe919;" glyph-name="latest-posts" d="M128.016 576.080h256.032v-64.008h-256.032v64.008zM128.016 448.064h128.016v-64.008h-128.016v64.008zM128.016 320.048h128.016v-64.008h-128.016v64.008zM128.016 704.096h512.064v-64.008h-512.064v64.008zM128.016 832.112h512.064v-64.008h-512.064v64.008zM768.096 626.518v234.525c0 54.663-43.141 99.084-96.14 99.084h-575.816c-52.999 0-96.14-44.486-96.14-99.084v-697.943c0-54.663 43.141-99.084 96.14-99.084h304.422c64.584-78.090 162.196-127.888 271.458-127.888 194.456 0 352.044 157.588 352.044 351.98 0.064 161.044-108.302 296.549-255.968 338.41zM96.14 128.024c-16.962 0-32.132 15.106-32.132 33.732v699.287c0 18.626 15.17 35.076 32.132 35.076h575.752c17.026 0 32.196-16.45 32.196-35.076v-222.556c-10.561 0.96-21.187 1.6-32.004 1.6-194.456 0-352.044-157.588-352.044-351.98 0-57.735 14.146-112.014 38.789-160.084h-262.689zM768.096 255.976h-128.016v256.032h64.008v-192.024h64.008v-64.008z" />
36
  <glyph unicode="&#xe91a;" glyph-name="limit-attempts" d="M990.208 314.24v55.104c0 50.88-42.432 78.656-94.144 78.656-51.776 0-93.696-27.776-93.696-78.656v-56.192c-17.28-0.96-34.368-9.728-34.368-26.944v-125.888c0-17.856 14.72-32.32 32.896-32.32h190.784c18.176 0 32.32 14.464 32.32 32.32v125.888c0 17.216-16.576 27.072-33.792 28.032zM926.016 182.016c-0.96-1.408-2.56-2.304-4.352-2.304h-51.392c-1.728 0-3.328 0.832-4.352 2.304-0.96 1.408-1.152 3.264-0.448 4.8l12.416 31.168c-6.592 5.312-10.496 13.248-10.496 21.696 0 15.488 12.8 28.032 28.544 28.032 15.68 0 28.544-12.608 28.544-28.032 0-8.448-3.904-16.384-10.496-21.696l12.416-31.168c0.768-1.6 0.576-3.392-0.384-4.8zM955.328 312.832h-119.168v56.512c0 25.6 34.304 44.864 60.416 44.864 26.048 0 58.752-19.2 58.752-44.864v-56.512zM315.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM507.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM699.008 460.8c-4.928-2.944-19.648-8.832-33.408-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.904-13.76 5.888-30.464 5.888-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM704 320h-640v256h768v-64h64v48.448c0 43.904-36.736 79.552-81.92 79.552h-732.16c-5.632 0-11.136-0.576-16.448-1.6-2.688-0.576-5.312-1.216-7.872-1.984-33.344-10.112-57.6-40.32-57.6-75.968v0-224.96c0-32.896 20.672-61.184 50.112-73.28 4.928-1.984 10.048-3.584 15.36-4.672 5.312-0.96 10.816-1.536 16.448-1.536h622.080v64z" />
37
+ <glyph unicode="&#xe91b;" glyph-name="linkedin" d="M269.24 106.785h-191.248v574.196h191.195v-574.196zM252.106 787.621c-19.861-18.972-46.059-28.369-78.492-28.369h-1.168c-31.651 0-57.186 9.455-76.491 28.369s-28.981 42.5-28.981 70.648c0 28.594 9.959 52.237 29.815 70.982 19.914 18.746 45.894 28.091 77.991 28.091 32.042 0 57.741-9.402 77.046-28.091 19.303-18.746 29.151-42.389 29.536-70.982 0.391-28.148-9.346-51.733-29.259-70.648zM957.026 106.785h-190.637v307.123c0 40.555-7.844 72.318-23.476 95.292-15.688 22.973-40.051 34.434-73.317 34.434-24.368 0-44.728-6.677-61.136-19.969s-28.647-29.815-36.769-49.511c-4.285-11.568-6.4-27.202-6.4-46.949v-320.418h-190.637c0.778 154.145 1.168 279.142 1.168 374.934s-0.167 152.977-0.612 171.446l-0.556 27.814h190.637v-81.774c7.342 11.682 14.851 21.974 22.587 30.761 8.122 9.29 19.024 19.303 32.767 30.149 13.74 10.792 30.54 19.192 50.401 25.2 19.914 6.008 42.057 9.012 66.364 9.012 66.085 0 119.155-21.918 159.376-65.751 40.164-43.836 60.246-108.086 60.246-192.642v-329.152z" />
38
  <glyph unicode="&#xe91c;" glyph-name="multilanguage" d="M152.64 228.224c0.128 0 17.28 0.32 23.616 4.032 16.128 10.048 37.888 34.752 56.96 57.152l5.952 6.912c24.192 27.712 48.704 59.776 73.024 95.552 4.48-3.328 10.368-7.872 15.168-11.584 9.408-7.168 18.816-14.4 22.912-17.024 9.088-5.952 43.904-24.96 52.224-28.672 1.472-0.576 3.84-1.536 6.592-2.688 17.152-7.168 26.368-10.624 32.192-10.624 6.336 0 9.728 3.968 10.816 7.68 1.216 4.736-3.136 38.784-14.72 42.56-3.776 1.408-71.232 28.992-81.216 33.6-5.76 2.816-17.472 7.68-27.136 11.712l-0.256 0.128c25.216 39.168 39.040 65.664 39.296 66.112 1.472 3.136 6.272 12.416 11.648 22.976 19.904 38.848 21.056 41.344 21.568 43.968 0.576 3.264 1.472 17.28 0.512 21.952l-2.752 8.128h-7.68c-3.584 0-7.232-1.472-13.312-3.84-3.584-1.472-7.936-3.136-12.8-4.736-7.168-2.368-16.64-7.296-25.728-12.16-8.512-4.48-19.136-10.048-23.808-10.816-7.424-1.728-24.832-7.808-41.664-13.696-6.848-2.432-13.312-4.672-18.368-6.4-16.192-5.44-46.976-14.4-60.288-17.92-6.336-1.728-12.352-2.688-17.536-3.456-5.632-0.896-10.56-1.728-14.208-2.944l-6.848-2.24 0.384-6.976c0.64-10.944 3.328-15.936 4.224-17.216 2.624-4.224 11.392-13.632 21.696-16 13.568-3.84 26.496-1.792 31.488-0.192 4.16 0.768 20.864 5.952 24.704 13.376 1.472 2.88 1.472 5.888 1.472 8.576 4.992 1.472 13.696 3.648 20.032 5.248 7.872 1.984 15.68 3.968 20.544 5.376l4.224 1.408c17.472 5.76 31.040 10.048 40.448 12.864-11.264-23.104-32.768-64.896-42.56-82.24-11.2-20.8-79.488-113.984-93.824-130.24-2.88-3.264-6.72-7.68-10.944-12.672-11.52-13.376-28.992-33.664-35.072-38.144l-12.16-8.896 13.568-6.656c1.92-0.896 4.16-1.28 7.616-1.28zM257.088 553.152l1.024-0.064c13.184 0 29.056 3.904 38.272 7.488 7.616 2.944 26.048 11.392 34.112 26.368 1.664 3.008 5.056 9.28 2.816 21.568-2.496 10.624-10.24 16.704-22.080 16.704h-0.128c-6.976-0.704-25.088-5.504-33.536-8.256l-4.544-1.28c-8.896-2.496-22.336-6.272-28.608-7.68-0.448-0.128-1.856-0.32-4.736-0.32-5.76 0-11.904 1.024-14.208 1.664l-1.984 1.92-10.24-0.192-2.432-5.44c-3.264-7.296 5.504-27.904 12.288-35.136 14.080-13.76 26.112-16.448 33.984-17.344zM706.496 35.776c-3.2-1.792-6.4-3.584-9.6-5.376-11.84-6.72-22.976-13.12-35.072-18.496-63.36-26.624-111.552-36.032-184.064-36.032-60.416 0-134.464 25.728-179.776 47.872-2.432 1.088-6.912 3.584-12.096 6.4-19.776 10.88-26.752 14.272-31.808 14.272-11.072 0-19.776-8.768-19.776-19.904 0-6.72 2.368-11.52 8.512-16.512 50.176-35.712 164.992-72 227.456-72h48.64c17.728 0 37.568 3.52 54.272 6.912 51.968 8.576 108.032 29.376 155.328 57.536l28.736-46.272 41.536 120.384-121.536 9.792 29.248-48.576zM684.672 446.912l80.512-23.744-36.48 128.512zM868.928 711.36v236.736c0 7.424-5.184 11.904-11.584 11.904-5.248 0-365.696-121.728-369.728-122.88l-323.328 112.128v-217.472c-49.28-16.448-84.608-27.776-86.4-28.288-3.456-1.152-8.128-2.304-11.584-6.272-1.152-1.152-1.728-3.904-2.304-5.632v-610.496c0-0.576 0.576-1.152 0.576-1.728 1.728-4.544 5.824-7.36 10.432-7.36 5.76 0 421.312 137.024 430.592 141.056 0 0 0.576 0 448.576-139.328v611.008l-85.248 26.624zM488.768 248.32l-383.424-123.328v539.2l383.424 131.968v-547.84zM827.584 902.656v-183.872l-294.592 85.824 294.592 98.048zM805.76 278.144l-21.44 76.48-122.304 36.8-26.048-62.272-59.072 17.536 125.184 303.552 57.984-17.536 104.896-372.096-59.2 17.536z" />
39
  <glyph unicode="&#xe91d;" glyph-name="pagination" d="M746.688 640v0h-234.688v-448h234.688c117.824 0 213.312 95.232 213.312 220.864 0 125.696-95.488 227.136-213.312 227.136zM814.464 384.448l-112.64-92.48c-6.656-5.568-14.848-8.512-23.552-8.512-12.416 0-24.064 6.4-31.232 17.024-11.84 17.728-8.448 41.984 7.744 55.168l74.176 60.928-71.936 60.032c-16 13.44-19.264 37.696-7.296 55.168 6.144 9.024 15.68 14.976 26.112 16.448 10.432 1.344 20.544-1.6 28.736-8.384l110.144-91.84c9.28-7.808 14.592-19.392 14.464-31.808 0.064-12.288-5.504-24.192-14.72-31.744zM0 412.864c0-125.632 95.488-220.864 213.312-220.864v0h234.688v448h-234.688c-117.824 0-213.312-101.44-213.312-227.136zM130.752 416.128c-0.064 12.416 5.184 24.064 14.528 31.872l110.144 91.904c8.192 6.784 18.304 9.664 28.736 8.32 10.432-1.472 19.904-7.424 26.112-16.448 11.904-17.536 8.704-41.728-7.296-55.168l-71.936-60.032 74.176-60.928c16.192-13.184 19.584-37.44 7.744-55.168-7.168-10.624-18.816-17.024-31.232-17.024-8.704 0-16.832 3.008-23.552 8.512l-112.64 92.48c-9.216 7.552-14.784 19.456-14.784 31.68z" />
40
  <glyph unicode="&#xe91e;" glyph-name="pdf-print" d="M960 704h-128v198.208c0 32.384-26.24 57.792-58.688 57.792h-522.624c-32.448 0-58.688-25.408-58.688-57.792v-198.208h-128c-35.328 0-64-28.672-64-64v-448c0-35.328 28.672-64 64-64h128v-134.784c0-31.616 25.6-57.216 57.216-57.216h525.568c31.616 0 57.216 25.6 57.216 57.216v134.784h128c35.328 0 64 28.672 64 64v448c0 35.328-28.672 64-64 64zM256 896h512v-192h-512v192zM768 128v-128h-512v192h512v-64zM768 512h-64v64h64v-64zM896 512h-64v64h64v-64z" />
69
  <glyph unicode="&#xe93b;" glyph-name="shortcode" d="M0 896v-896h384v192h-192v512h192v192h-192zM832 896h-192v-192h192v-512h-192v-192h384v896z" />
70
  <glyph unicode="&#xe93c;" glyph-name="bws-logo" d="M953.913 325.746c-21.447-38.855-46.592-77.198-75.435-114.233-68.551-100.466-192.91-193.365-254.919-225.052-38.457-19.684-89.088-34.702-126.805-44.316 204.459-39.538 403.285 114.46 466.034 352.37 6.997 26.852 12.004 53.134 15.417 78.734-7.566-15.872-15.588-31.744-24.292-47.502zM327.964 88.519c-70.087 61.952-114.176 154.169-114.176 264.533 0 207.076 154.852 374.898 345.884 374.898 117.931 0 222.151-64.114 284.501-161.906 1.479 4.494 3.129 9.045 4.437 13.54 17.010 57.799 23.438 113.38 18.887 162.816-35.442 34.93-77.995 62.976-126.862 82.716-207.588 83.854-477.753-63.431-543.346-312.946-40.789-154.51-9.899-309.931 70.485-420.58 19.058-3.527 39.14-4.494 60.188-3.072zM934.059 893.611c-119.694 109.682-325.632 79.019-507.79-59.392 44.658 22.357 92.16 36.807 139.89 42.098 103.31 41.529 200.932 38.343 264.704-19.342 70.656-63.886 83.797-180.167 46.364-307.314-25.145-85.618-73.159-176.185-141.995-258.958-154.567-185.742-454.428-341.902-620.203-137.671 13.596-54.67 39.481-102.059 78.62-137.842 96.313-88.178 248.377-85.618 398.962-9.33 85.504 43.349 170.61 110.364 244.565 198.201 38.286 45.397 70.884 93.127 97.564 141.54 116.224 210.603 121.97 435.655-0.683 548.011zM791.211 595.854c-4.38 5.86-23.666 26.226-28.956 30.436-56.092 45.056-124.985 71.68-199.68 71.68-46.99 0-91.648-10.468-132.38-29.468 15.246-6.656 30.322-14.165 45.284-22.756 155.989-89.088 240.64-247.808 205.824-372.224 2.788 3.3 5.518 6.599 8.021 9.785 54.784 71.054 114.859 157.298 144.953 243.712-12.174 23.78-26.453 46.82-43.065 68.836zM24.007 593.977c-71.794-176.469 23.154-384.683 207.303-496.299-24.86 33.451-41.7 72.42-56.149 121.344-137.444 102.741-194.446 258.162-134.087 372.907 39.708 75.662 123.79 115.029 221.355 114.404 33.166 41.017 72.704 74.524 115.996 99.214-158.549 1.877-299.065-75.264-354.418-211.57zM263.794 453.632c0.569 10.524 1.593 20.935 3.015 31.118-12.857-32.768-20.821-68.608-22.642-106.268-5.86-116.224 46.99-220.615 130.219-278.983 38.059 4.38 74.638 16.213 108.601 34.418-132.096 32.939-226.93 166.059-219.193 319.716z" />
71
  <glyph unicode="&#xe93d;" glyph-name="warning" d="M508.992-64c-287.040 3.136-512.64 235.584-508.928 524.352 3.52 274.112 239.040 502.592 514.944 499.648 287.040-3.136 512.64-235.584 508.928-524.352-3.52-274.112-239.040-502.592-514.944-499.648zM424.128 768c-0.576-5.44 11.84-247.744 17.92-365.76 0.704-14.208 5.952-18.24 5.952-18.24h128c0 0 5.568 6.784 6.4 25.472 3.584 82.752 16.64 321.152 18.304 358.528-60.16 0-117.12 0-176.576 0zM507.136 319.872c-68.288-2.688-108.352-41.088-105.408-101.056 2.816-57.472 46.592-92.544 113.152-90.752 69.952 1.92 107.264 39.168 104.384 104.256-2.496 55.808-46.4 90.112-112.128 87.552z" />
72
+ <glyph unicode="&#xe93f;" glyph-name="slider" d="M768 704h-512c-26.432 0-64-37.568-64-64v-448c0-26.432 37.568-64 64-64h512c26.432 0 64 37.568 64 64v448c0 26.432-37.568 64-64 64zM640 330.24c0-5.632-3.2-10.24-7.040-10.24h-241.92c-3.84 0-7.040 4.608-7.040 10.24v43.52c0 5.632 3.2 10.24 7.040 10.24h241.92c3.84 0 7.040-4.608 7.040-10.24v-43.52zM707.008 458.688c0-5.888-4.8-10.688-10.56-10.688h-365.888c-5.824 0-10.56 4.8-10.56 10.688v42.624c0 5.888 4.736 10.688 10.56 10.688h365.824c5.824 0 10.56-4.8 10.56-10.688v-42.624zM1020.352 424.704l-85.312 83.904c-4.608 4.48-11.776 4.48-16.32 0l-19.072-18.752c-2.368-2.304-3.648-5.44-3.648-8.704 0-3.328 1.28-6.4 3.648-8.704l57.344-56.448-57.344-56.384c-2.368-2.304-3.648-5.44-3.648-8.768s1.28-6.4 3.648-8.704l19.072-18.752c2.304-2.24 5.248-3.392 8.192-3.392s5.888 1.152 8.192 3.392l85.312 83.904c2.304 2.304 3.584 5.376 3.584 8.704s-1.28 6.4-3.648 8.704zM128 481.152c0 3.328-1.28 6.4-3.648 8.704l-19.072 18.752c-4.608 4.48-11.776 4.544-16.32 0l-85.312-83.904c-2.368-2.304-3.648-5.376-3.648-8.704s1.28-6.4 3.648-8.704l85.312-83.904c2.24-2.24 5.184-3.392 8.128-3.392s5.888 1.152 8.192 3.392l19.072 18.752c2.368 2.304 3.648 5.44 3.648 8.704s-1.28 6.4-3.648 8.704l-57.344 56.448 57.344 56.384c2.368 2.304 3.648 5.44 3.648 8.768z" />
73
  </font></defs></svg>
bws_menu/fonts/bwsicons.ttf CHANGED
Binary file
bws_menu/fonts/bwsicons.woff CHANGED
Binary file
bws_menu/icons/plugins/db-manager.png DELETED
Binary file
bws_menu/js/general_script.js CHANGED
@@ -69,6 +69,11 @@ function bws_show_settings_notice() {
69
 
70
  /* help tooltips */
71
  if ( $( '.bws_help_box' ).length > 0 ) {
 
 
 
 
 
72
  $( document ).tooltip( {
73
  items: $( '.bws_help_box' ),
74
  content: function() {
@@ -76,6 +81,7 @@ function bws_show_settings_notice() {
76
  },
77
  show: null, /* show immediately */
78
  tooltipClass: "bws-tooltip-content",
 
79
  open: function( event, ui ) {
80
  if ( typeof( event.originalEvent ) === 'undefined' ) {
81
  return false;
69
 
70
  /* help tooltips */
71
  if ( $( '.bws_help_box' ).length > 0 ) {
72
+ if ( $( 'body' ).hasClass( 'rtl' ) ) {
73
+ var current_position = { my: "right top+15", at: "right bottom" };
74
+ } else {
75
+ var current_position = { my: "left top+15", at: "left bottom" };
76
+ }
77
  $( document ).tooltip( {
78
  items: $( '.bws_help_box' ),
79
  content: function() {
81
  },
82
  show: null, /* show immediately */
83
  tooltipClass: "bws-tooltip-content",
84
+ position: current_position,
85
  open: function( event, ui ) {
86
  if ( typeof( event.originalEvent ) === 'undefined' ) {
87
  return false;
bws_menu/languages/bestwebsoft-cs_CZ.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-cs_CZ.po CHANGED
@@ -2,15 +2,15 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-03-28 13:50+0300\n"
6
- "PO-Revision-Date: 2017-03-28 13:50+0300\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
@@ -48,7 +48,7 @@ msgstr "Ohodnoťte jej"
48
  msgid "Need help?"
49
  msgstr "Potřebujete pomoc?"
50
 
51
- #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
52
  msgid "Visit Help Center"
53
  msgstr "Navštívit Centrum pomoci"
54
 
@@ -125,7 +125,7 @@ msgstr ""
125
  #: bws_functions.php:207
126
  #, php-format
127
  msgid "Thank you for installing %s plugin!"
128
- msgstr ""
129
 
130
  #: bws_functions.php:208
131
  msgid "Let's get started"
@@ -146,7 +146,7 @@ msgid "Add New"
146
  msgstr "Přidat nový"
147
 
148
  #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
149
- #: bws_functions.php:378 bws_functions.php:482
150
  msgid "Close notice"
151
  msgstr "Zavřít poznámku"
152
 
@@ -197,12 +197,12 @@ msgstr ""
197
  "Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
198
  "PRIOROTNÍ PODPORA a AKTUALIZACE."
199
 
200
- #: bws_functions.php:477
201
  #, php-format
202
  msgid "Thank you for choosing %s plugin!"
203
- msgstr ""
204
 
205
- #: bws_functions.php:478
206
  msgid ""
207
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
208
  "we'd love to hear about it!"
@@ -210,90 +210,98 @@ msgstr ""
210
  "Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
211
  "chtěli vidět, rádi o něm uslyšíme!"
212
 
213
- #: bws_functions.php:479
214
  msgid "Suggest a Feature"
215
  msgstr "Navrhnout vlastnost"
216
 
217
- #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
218
  #: class-bws-settings.php:584 class-bws-settings.php:587
219
  msgid "Notice"
220
  msgstr "Poznámka"
221
 
222
- #: bws_functions.php:495
223
  msgid "The plugin's settings have been changed."
224
  msgstr "Nastavení pluginu bylo změněno."
225
 
226
- #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
227
  #: deprecated.php:640
228
  msgid "Save Changes"
229
  msgstr "Uložit změny"
230
 
231
- #: bws_functions.php:510
232
  msgid ""
233
  "You can always look at premium options by checking the \"Pro Options\" in "
234
  "the \"Misc\" tab."
235
  msgstr ""
236
  "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
237
- "nastavení\" na \"Go PRO\" záložce"
 
 
 
 
238
 
239
- #: bws_functions.php:651
 
 
 
 
240
  msgid "Add shortcode"
241
  msgstr "Přidat krátký kód"
242
 
243
- #: bws_functions.php:651
244
  msgid "Add BestWebSoft plugins' shortcodes using this button."
245
  msgstr ""
246
  "Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
247
 
248
- #: bws_functions.php:700
249
  msgid "Close"
250
  msgstr "Zavřít"
251
 
252
- #: bws_functions.php:792
253
  msgid "Are you sure you want to restore default settings?"
254
  msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
255
 
256
- #: bws_functions.php:795
257
  msgid "Yes, restore all settings"
258
  msgstr "Ano, obnovit veškerá nastavení"
259
 
260
- #: bws_functions.php:796
261
  msgid "No, go back to the settings page"
262
  msgstr "Ne, vrátit se zpět na stránku nastavení"
263
 
264
- #: bws_functions.php:842
265
  msgid "Plugin"
266
  msgstr "Plugin"
267
 
268
- #: bws_functions.php:851
269
  msgid "Shortcode settings"
270
  msgstr "Nastavení krátkých kódů"
271
 
272
- #: bws_functions.php:856
273
  msgid "The shortcode will be inserted"
274
  msgstr "Bude vložen krátký kód"
275
 
276
- #: bws_functions.php:861
277
  msgid "Insert"
278
  msgstr "Vložit"
279
 
280
- #: bws_functions.php:921
281
  msgid "FAQ"
282
  msgstr "Často kladené otázky (FAQ)"
283
 
284
- #: bws_functions.php:927
285
  msgid "For more information:"
286
  msgstr "Pro více informací:"
287
 
288
- #: bws_functions.php:928
289
  msgid "Documentation"
290
  msgstr "Dokumentace"
291
 
292
- #: bws_functions.php:929
293
  msgid "Video Instructions"
294
  msgstr "Video instrukce"
295
 
296
- #: bws_functions.php:930
297
  msgid "Submit a Request"
298
  msgstr "Odeslat požadavek"
299
 
@@ -320,7 +328,7 @@ msgstr "Omlouváme se za nepříjemnosti."
320
  #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
321
  #: deprecated.php:139 deprecated.php:358
322
  msgid "Wrong license key."
323
- msgstr "Neplatný licenční klíč"
324
 
325
  #: bws_menu.php:130
326
  msgid ""
@@ -357,7 +365,7 @@ msgstr ""
357
 
358
  #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
359
  msgid "The license key is valid."
360
- msgstr "Licenční klíč je platný"
361
 
362
  #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
363
  msgid "Your license will expire on"
@@ -623,7 +631,7 @@ msgstr "Stahování instalačního balíčku z"
623
  #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
624
  #: deprecated.php:431
625
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
626
- msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně."
627
 
628
  #: bws_menu.php:408
629
  msgid "Unpacking the package"
@@ -635,7 +643,7 @@ msgstr "Instalace pluginu"
635
 
636
  #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
637
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
638
- msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně."
639
 
640
  #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
641
  msgid ""
@@ -781,7 +789,7 @@ msgstr "Verze"
781
 
782
  #: class-bws-settings.php:282
783
  msgid "All plugin settings were restored."
784
- msgstr "Všechna nastavení pluginu byla obnovena"
785
 
786
  #: class-bws-settings.php:420
787
  msgid "Custom Code"
@@ -893,7 +901,7 @@ msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
893
  #: class-bws-settings.php:715
894
  #, php-format
895
  msgid "You will be automatically redirected to the %s in %s seconds."
896
- msgstr ""
897
 
898
  #: class-bws-settings.php:715
899
  msgid "Settings page"
@@ -970,7 +978,7 @@ msgstr ""
970
 
971
  #: class-bws-settings.php:826 deprecated.php:151
972
  msgid "The Pro Trial license key is valid."
973
- msgstr "Licenční klíč zkušební Pro verze je platný"
974
 
975
  #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
976
  #, php-format
@@ -1005,7 +1013,7 @@ msgstr "Stav systému"
1005
 
1006
  #: deprecated.php:204
1007
  msgid "Please, enter your license key"
1008
- msgstr "Prosím, vložte váš licenční klíč."
1009
 
1010
  #: deprecated.php:223
1011
  msgid ""
@@ -1060,7 +1068,7 @@ msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
1060
 
1061
  #: deprecated.php:478
1062
  msgid "Restore all plugin settings to defaults"
1063
- msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty?"
1064
 
1065
  #: deprecated.php:480
1066
  msgid "Restore settings"
@@ -1102,173 +1110,344 @@ msgid "version of the plugin."
1102
  msgstr "verze pluginu."
1103
 
1104
  #: product_list.php:7
1105
- msgid "Advertisement"
1106
- msgstr "Reklama"
1107
 
1108
  #: product_list.php:8
1109
- msgid "Content & Media"
1110
- msgstr "Obsah & Média"
1111
 
1112
  #: product_list.php:9
1113
- msgid "Management"
1114
- msgstr "Správa"
1115
 
1116
  #: product_list.php:10
1117
- msgid "Recommended"
1118
- msgstr "Doporučeno"
1119
 
1120
  #: product_list.php:11
1121
- msgid "Security"
1122
- msgstr "Bezpečnost"
1123
 
1124
  #: product_list.php:12
1125
- msgid "Site Stats"
1126
- msgstr "Statistiky webu"
1127
 
1128
  #: product_list.php:13
1129
- msgid "Social"
1130
- msgstr "Sociální"
1131
 
1132
  #: product_list.php:14
1133
- msgid "Utilities"
1134
- msgstr "Utility"
1135
 
1136
  #: product_list.php:15
1137
- msgid "Other"
1138
- msgstr "Ostatní"
1139
 
1140
- #~ msgid "Thank you for installing"
1141
- #~ msgstr "Děkujeme vám za instalaci"
 
 
1142
 
1143
- #~ msgid "Thank you for choosing"
1144
- #~ msgstr "Děkujeme, že jste si vybrali"
 
1145
 
1146
- # copy
1147
- #~ msgid "PHP Safe Mode"
1148
- #~ msgstr "PHP Safe Mode"
1149
-
1150
- #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1151
- #~ msgstr "Budete automaticky přesměrováni na %s za 7 sekund."
1152
-
1153
- #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1154
- #~ msgstr ""
1155
- #~ "Pokud se Vám náš plugin líbí, dejte mu prosím 5 hvězdiček na WordPressu"
1156
-
1157
- #~ msgid "Rate the plugin"
1158
- #~ msgstr "Hodnotit plugin"
1159
-
1160
- #~ msgid "If there is something wrong about it, please contact us"
1161
- #~ msgstr "Pokud cokoli není v pořádku, obraťte se na nás"
1162
-
1163
- #~ msgid "Donations play an important role in supporting great projects"
1164
- #~ msgstr "Dary hrají důležitou roli v podpoře velkých projektů"
1165
-
1166
- #~ msgid "This license key is bind to another site"
1167
- #~ msgstr "Tento licenční klíč se váže k jinému webu"
1168
-
1169
- #~ msgid ""
1170
- #~ "Unfortunately, Your license has expired. To continue getting top-priority "
1171
- #~ "support and plugin updates you should extend it in your"
1172
- #~ msgstr ""
1173
- #~ "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
1174
- #~ "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem"
1175
-
1176
- #~ msgid ""
1177
- #~ "Congratulations! Pro version of the plugin is successfully installed and "
1178
- #~ "activated."
1179
- #~ msgstr ""
1180
- #~ "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
1181
-
1182
- #~ msgid "After that you can activate it by entering your license key."
1183
- #~ msgstr "Poté, co jej aktivujete vložením vašeho licenčního klíče."
1184
-
1185
- #~ msgid ""
1186
- #~ "Congratulations! The Pro license of the plugin is successfully activated."
1187
- #~ msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1188
-
1189
- #~ msgid "This license key is bind to another site."
1190
- #~ msgstr "Tento licenční klíč je přidružen k jiným webovým stránkám."
1191
-
1192
- #~ msgid ""
1193
- #~ "If needed you can check if the license key is correct or reenter it in "
1194
- #~ "the field below. You can find your license key on your personal page - "
1195
- #~ "Client area - on our website"
1196
- #~ msgstr ""
1197
- #~ "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, "
1198
- #~ "případně jej do pole níže vložte znova. Váš licenční klíč najdete na vaší "
1199
- #~ "osobní stránce - Client area - na našem webu"
1200
-
1201
- #~ msgid ""
1202
- #~ "Notice: Your Pro Trial license has expired. To continue using the plugin "
1203
- #~ "you should buy a Pro license"
1204
- #~ msgstr ""
1205
- #~ "Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další využíváni "
1206
- #~ "pluginu bude nutné zakoupit Pro licenci"
1207
-
1208
- #~ msgid ""
1209
- #~ "Your license has expired. To continue getting top-priority support and "
1210
- #~ "plugin updates you should extend it."
1211
- #~ msgstr ""
1212
- #~ "Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
1213
- #~ "pluginu ji budete muset prodloužit."
1214
-
1215
- #~ msgid "You license for"
1216
- #~ msgstr "Vaše licence pro"
1217
-
1218
- #~ msgid "expires on"
1219
- #~ msgstr "vyprší"
1220
-
1221
- #~ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
1222
- #~ msgstr "a nebudete mít přístup k TOP-PRIORITNÍ PODPOŘE nebo AKTUALIZACÍM."
1223
-
1224
- #~ msgid ""
1225
- #~ "You can always look at premium options by clicking on the \"Show Pro "
1226
- #~ "features\" in the \"Go PRO\" tab"
1227
- #~ msgstr ""
1228
- #~ "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na "
1229
- #~ "\"Zobrazit Pro vlastnosti\" na \"Go PRO\" záložce"
1230
-
1231
- #~ msgid "Are you sure you want to restore all settings by default?"
1232
- #~ msgstr ""
1233
- #~ "Jste si jisti, že chcete obnovit veškerá nastavení na výchozí hodnoty?"
1234
-
1235
- #~ msgid ""
1236
- #~ "This license key is bind to another website. Change it via personal "
1237
- #~ "Client Area."
1238
- #~ msgstr ""
1239
- #~ "Tento licenční klíč je přidružen k jiným webovým stránkám. Změňte jej "
1240
- #~ "prostřednictvím osobní Klientské zóny."
1241
-
1242
- #~ msgid "Congratulations! Pro Membership license is successfully activated."
1243
- #~ msgstr "Gratulujeme! Členská PRO licence byla úspěšně aktivována."
1244
-
1245
- #~ msgid "Memory usage"
1246
- #~ msgstr "Využití paměti"
1247
-
1248
- #~ msgid "MYSQL Version"
1249
- #~ msgstr "Verze MYSQL"
1250
-
1251
- #~ msgid "Site URL"
1252
- #~ msgstr "URL webových stránek"
1253
-
1254
- #~ msgid "WordPress Version"
1255
- #~ msgstr "Verze WordPress"
1256
-
1257
- #~ msgid "WordPress DB Version"
1258
- #~ msgstr "WordPress verze DB"
1259
 
1260
- # copy
1261
- #~ msgid "Multisite"
1262
- #~ msgstr "Multisite"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1263
 
1264
- #~ msgid "Email with system info is sent to "
1265
- #~ msgstr "E-mail se systémovým nastavením byl odeslán na"
1266
 
1267
- #~ msgid "Client Area"
1268
- #~ msgstr "Klientská zóna"
1269
 
1270
- #~ msgid "Successfully installed the plugin"
1271
- #~ msgstr "Plugin byl úspěšně instalován"
1272
 
1273
- #~ msgid "Environment"
1274
- #~ msgstr "Prostředí"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-08 11:25+0300\n"
6
+ "PO-Revision-Date: 2017-06-08 11:25+0300\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
48
  msgid "Need help?"
49
  msgstr "Potřebujete pomoc?"
50
 
51
+ #: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
52
  msgid "Visit Help Center"
53
  msgstr "Navštívit Centrum pomoci"
54
 
125
  #: bws_functions.php:207
126
  #, php-format
127
  msgid "Thank you for installing %s plugin!"
128
+ msgstr "Děkujeme vám za instalaci %s pluginu!"
129
 
130
  #: bws_functions.php:208
131
  msgid "Let's get started"
146
  msgstr "Přidat nový"
147
 
148
  #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
149
+ #: bws_functions.php:378 bws_functions.php:480
150
  msgid "Close notice"
151
  msgstr "Zavřít poznámku"
152
 
197
  "Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
198
  "PRIOROTNÍ PODPORA a AKTUALIZACE."
199
 
200
+ #: bws_functions.php:475
201
  #, php-format
202
  msgid "Thank you for choosing %s plugin!"
203
+ msgstr "Děkujeme, že jste si vybrali %s plugin!"
204
 
205
+ #: bws_functions.php:476
206
  msgid ""
207
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
208
  "we'd love to hear about it!"
210
  "Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
211
  "chtěli vidět, rádi o něm uslyšíme!"
212
 
213
+ #: bws_functions.php:477
214
  msgid "Suggest a Feature"
215
  msgstr "Navrhnout vlastnost"
216
 
217
+ #: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
218
  #: class-bws-settings.php:584 class-bws-settings.php:587
219
  msgid "Notice"
220
  msgstr "Poznámka"
221
 
222
+ #: bws_functions.php:493
223
  msgid "The plugin's settings have been changed."
224
  msgstr "Nastavení pluginu bylo změněno."
225
 
226
+ #: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
227
  #: deprecated.php:640
228
  msgid "Save Changes"
229
  msgstr "Uložit změny"
230
 
231
+ #: bws_functions.php:508
232
  msgid ""
233
  "You can always look at premium options by checking the \"Pro Options\" in "
234
  "the \"Misc\" tab."
235
  msgstr ""
236
  "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
237
+ "nastavení\" na \"Go PRO\" záložce."
238
+
239
+ #: bws_functions.php:629
240
+ msgid "Add BWS Shortcode"
241
+ msgstr ""
242
 
243
+ #: bws_functions.php:630
244
+ msgid "Add BWS Plugins Shortcode"
245
+ msgstr ""
246
+
247
+ #: bws_functions.php:649
248
  msgid "Add shortcode"
249
  msgstr "Přidat krátký kód"
250
 
251
+ #: bws_functions.php:649
252
  msgid "Add BestWebSoft plugins' shortcodes using this button."
253
  msgstr ""
254
  "Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
255
 
256
+ #: bws_functions.php:695
257
  msgid "Close"
258
  msgstr "Zavřít"
259
 
260
+ #: bws_functions.php:787
261
  msgid "Are you sure you want to restore default settings?"
262
  msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
263
 
264
+ #: bws_functions.php:790
265
  msgid "Yes, restore all settings"
266
  msgstr "Ano, obnovit veškerá nastavení"
267
 
268
+ #: bws_functions.php:791
269
  msgid "No, go back to the settings page"
270
  msgstr "Ne, vrátit se zpět na stránku nastavení"
271
 
272
+ #: bws_functions.php:833
273
  msgid "Plugin"
274
  msgstr "Plugin"
275
 
276
+ #: bws_functions.php:842
277
  msgid "Shortcode settings"
278
  msgstr "Nastavení krátkých kódů"
279
 
280
+ #: bws_functions.php:847
281
  msgid "The shortcode will be inserted"
282
  msgstr "Bude vložen krátký kód"
283
 
284
+ #: bws_functions.php:852
285
  msgid "Insert"
286
  msgstr "Vložit"
287
 
288
+ #: bws_functions.php:912
289
  msgid "FAQ"
290
  msgstr "Často kladené otázky (FAQ)"
291
 
292
+ #: bws_functions.php:918
293
  msgid "For more information:"
294
  msgstr "Pro více informací:"
295
 
296
+ #: bws_functions.php:919
297
  msgid "Documentation"
298
  msgstr "Dokumentace"
299
 
300
+ #: bws_functions.php:920
301
  msgid "Video Instructions"
302
  msgstr "Video instrukce"
303
 
304
+ #: bws_functions.php:921
305
  msgid "Submit a Request"
306
  msgstr "Odeslat požadavek"
307
 
328
  #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
329
  #: deprecated.php:139 deprecated.php:358
330
  msgid "Wrong license key."
331
+ msgstr "Neplatný licenční klíč."
332
 
333
  #: bws_menu.php:130
334
  msgid ""
365
 
366
  #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
367
  msgid "The license key is valid."
368
+ msgstr "Licenční klíč je platný."
369
 
370
  #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
371
  msgid "Your license will expire on"
631
  #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
632
  #: deprecated.php:431
633
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
634
+ msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně"
635
 
636
  #: bws_menu.php:408
637
  msgid "Unpacking the package"
643
 
644
  #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
645
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
646
+ msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně"
647
 
648
  #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
649
  msgid ""
789
 
790
  #: class-bws-settings.php:282
791
  msgid "All plugin settings were restored."
792
+ msgstr "Všechna nastavení pluginu byla obnovena."
793
 
794
  #: class-bws-settings.php:420
795
  msgid "Custom Code"
901
  #: class-bws-settings.php:715
902
  #, php-format
903
  msgid "You will be automatically redirected to the %s in %s seconds."
904
+ msgstr "Za %s sekund budete automaticky přesměrováni na %s."
905
 
906
  #: class-bws-settings.php:715
907
  msgid "Settings page"
978
 
979
  #: class-bws-settings.php:826 deprecated.php:151
980
  msgid "The Pro Trial license key is valid."
981
+ msgstr "Licenční klíč zkušební Pro verze je platný."
982
 
983
  #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
984
  #, php-format
1013
 
1014
  #: deprecated.php:204
1015
  msgid "Please, enter your license key"
1016
+ msgstr "Prosím, vložte váš licenční klíč"
1017
 
1018
  #: deprecated.php:223
1019
  msgid ""
1068
 
1069
  #: deprecated.php:478
1070
  msgid "Restore all plugin settings to defaults"
1071
+ msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty"
1072
 
1073
  #: deprecated.php:480
1074
  msgid "Restore settings"
1110
  msgstr "verze pluginu."
1111
 
1112
  #: product_list.php:7
1113
+ msgid "Admin Tools"
1114
+ msgstr ""
1115
 
1116
  #: product_list.php:8
1117
+ msgid "Content"
1118
+ msgstr ""
1119
 
1120
  #: product_list.php:9
1121
+ msgid "eCommerce"
1122
+ msgstr ""
1123
 
1124
  #: product_list.php:10
1125
+ msgid "Marketing"
1126
+ msgstr ""
1127
 
1128
  #: product_list.php:11
1129
+ msgid "Navigation"
1130
+ msgstr ""
1131
 
1132
  #: product_list.php:12
1133
+ msgid "Recommended"
1134
+ msgstr "Doporučeno"
1135
 
1136
  #: product_list.php:13
1137
+ msgid "Security"
1138
+ msgstr "Bezpečnost"
1139
 
1140
  #: product_list.php:14
1141
+ msgid "SEO"
1142
+ msgstr ""
1143
 
1144
  #: product_list.php:15
1145
+ msgid "SMM"
1146
+ msgstr ""
1147
 
1148
+ #: product_list.php:22
1149
+ msgid ""
1150
+ "Protect WordPress website forms from spam entries by means of math logic."
1151
+ msgstr ""
1152
 
1153
+ #: product_list.php:32
1154
+ msgid "Create your personal car rental/booking and reservation website."
1155
+ msgstr ""
1156
 
1157
+ #: product_list.php:42
1158
+ msgid ""
1159
+ "Allow customers to reach you using secure contact form plugin any website "
1160
+ "must have."
1161
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1162
 
1163
+ #: product_list.php:52
1164
+ msgid "Add unlimited number of contact forms to WordPress website."
1165
+ msgstr ""
1166
+
1167
+ #: product_list.php:62
1168
+ msgid "Save and manage Contact Form messages. Never lose important data."
1169
+ msgstr ""
1170
+
1171
+ #: product_list.php:72
1172
+ msgid "Add unlimited custom pages to WordPress admin dashboard."
1173
+ msgstr ""
1174
+
1175
+ #: product_list.php:79
1176
+ msgid "Add custom fields to WordPress website search results."
1177
+ msgstr ""
1178
+
1179
+ #: product_list.php:86
1180
+ msgid ""
1181
+ "Add custom post types and taxonomies to WordPress website search results."
1182
+ msgstr ""
1183
+
1184
+ #: product_list.php:96
1185
+ msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1186
+ msgstr ""
1187
+
1188
+ #: product_list.php:103
1189
+ msgid ""
1190
+ "Automatically add outgoing email messages to queue instead of sending them "
1191
+ "immediately."
1192
+ msgstr ""
1193
+
1194
+ #: product_list.php:110
1195
+ msgid ""
1196
+ "Get latest error log messages to diagnose website problems. Define and fix "
1197
+ "issues faster."
1198
+ msgstr ""
1199
+
1200
+ #: product_list.php:117
1201
+ msgid ""
1202
+ "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1203
+ "widgets."
1204
+ msgstr ""
1205
+
1206
+ #: product_list.php:127
1207
+ msgid ""
1208
+ "Add beautiful galleries, albums & images to your WordPress website in a few "
1209
+ "clicks."
1210
+ msgstr ""
1211
+
1212
+ #: product_list.php:137
1213
+ msgid ""
1214
+ "Add unlimited gallery categories. Organize images to make the navigation "
1215
+ "through content easier."
1216
+ msgstr ""
1217
+
1218
+ #: product_list.php:144
1219
+ msgid ""
1220
+ "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1221
+ "posts, pages and widgets."
1222
+ msgstr ""
1223
+
1224
+ #: product_list.php:154
1225
+ msgid ""
1226
+ "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1227
+ "results, categories, tags, and widgets."
1228
+ msgstr ""
1229
+
1230
+ #: product_list.php:164
1231
+ msgid "Add Google Analytics code to WordPress website and track basic stats."
1232
+ msgstr ""
1233
+
1234
+ #: product_list.php:174
1235
+ msgid ""
1236
+ "Protect WordPress website forms from spam entries with Google Captcha "
1237
+ "(reCaptcha)."
1238
+ msgstr ""
1239
+
1240
+ #: product_list.php:184
1241
+ msgid "Add customized Google maps to WordPress posts, pages and widgets."
1242
+ msgstr ""
1243
+
1244
+ #: product_list.php:194
1245
+ msgid ""
1246
+ "Generate and add XML sitemap to WordPress website. Help search engines index "
1247
+ "your blog."
1248
+ msgstr ""
1249
+
1250
+ #: product_list.php:204
1251
+ msgid ""
1252
+ "Replace external WordPress website links with Google shortlinks and track "
1253
+ "click stats."
1254
+ msgstr ""
1255
+
1256
+ #: product_list.php:211
1257
+ msgid ""
1258
+ "Protect WordPress website – allow and deny access for certain IP addresses, "
1259
+ "hostnames, etc."
1260
+ msgstr ""
1261
+
1262
+ #: product_list.php:221
1263
+ msgid ""
1264
+ "Create your personal job board and listing WordPress website. Search jobs, "
1265
+ "submit CV/resumes, choose candidates."
1266
+ msgstr ""
1267
+
1268
+ #: product_list.php:228
1269
+ msgid ""
1270
+ "Protect WordPress website against brute force attacks. Limit rate of login "
1271
+ "attempts."
1272
+ msgstr ""
1273
+
1274
+ #: product_list.php:238
1275
+ msgid ""
1276
+ "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1277
+ "5 plugins included – profile, insider, etc."
1278
+ msgstr ""
1279
+
1280
+ #: product_list.php:248
1281
+ msgid ""
1282
+ "Translate WordPress website content to other languages manually. Create "
1283
+ "multilingual pages, posts, widgets, menus, etc."
1284
+ msgstr ""
1285
+
1286
+ #: product_list.php:258
1287
+ msgid ""
1288
+ "Add customizable pagination to WordPress website. Split long content to "
1289
+ "multiple pages for better navigation."
1290
+ msgstr ""
1291
+
1292
+ #: product_list.php:268
1293
+ msgid ""
1294
+ "Generate PDF files and print WordPress posts/pages. Customize document "
1295
+ "header/footer styles and appearance."
1296
+ msgstr ""
1297
+
1298
+ #: product_list.php:278
1299
+ msgid ""
1300
+ "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1301
+ "Profile) to WordPress posts, pages and widgets."
1302
+ msgstr ""
1303
+
1304
+ #: product_list.php:288
1305
+ msgid ""
1306
+ "Create your personal portfolio WordPress website. Manage and showcase past "
1307
+ "projects to get more clients."
1308
+ msgstr ""
1309
+
1310
+ #: product_list.php:298
1311
+ msgid "Export WordPress posts to CSV file format easily. Configure data order."
1312
+ msgstr ""
1313
+
1314
+ #: product_list.php:305
1315
+ msgid ""
1316
+ "Add extra fields to default WordPress user profile. The easiest way to "
1317
+ "create and manage additional custom values."
1318
+ msgstr ""
1319
+
1320
+ #: product_list.php:312
1321
+ msgid ""
1322
+ "Add and display HTML advertisement banner on WordPress website. Customize "
1323
+ "bar styles and appearance."
1324
+ msgstr ""
1325
+
1326
+ #: product_list.php:322
1327
+ msgid ""
1328
+ "Add customizable quotes and tips blocks to WordPress posts, pages and "
1329
+ "widgets."
1330
+ msgstr ""
1331
+
1332
+ #: product_list.php:329
1333
+ msgid ""
1334
+ "Add rating plugin to your WordPress website to receive feedback from your "
1335
+ "customers."
1336
+ msgstr ""
1337
+
1338
+ #: product_list.php:336
1339
+ msgid ""
1340
+ "Create your personal real estate WordPress website. Sell, rent and buy "
1341
+ "properties. Add, search and browse listings easily."
1342
+ msgstr ""
1343
+
1344
+ #: product_list.php:346
1345
+ msgid ""
1346
+ "Attach, un-attach and re-attach media files quickly to WordPress posts and "
1347
+ "pages."
1348
+ msgstr ""
1349
+
1350
+ #: product_list.php:353
1351
+ msgid ""
1352
+ "Add related, featured, latest, and popular posts to your WordPress website. "
1353
+ "Connect your blog readers with a relevant content."
1354
+ msgstr ""
1355
+
1356
+ #: product_list.php:360
1357
+ msgid ""
1358
+ "Send bulk email messages to WordPress users. Custom templates, advanced "
1359
+ "settings and detailed reports."
1360
+ msgstr ""
1361
+
1362
+ #: product_list.php:370
1363
+ msgid ""
1364
+ "The best responsive slider plugin for your WordPress website. Create "
1365
+ "beautifully animated slides just in a few clicks."
1366
+ msgstr ""
1367
+
1368
+ #: product_list.php:377
1369
+ msgid ""
1370
+ "Configure SMTP server to receive email messages from WordPress to Gmail, "
1371
+ "Yahoo, Hotmail and other services."
1372
+ msgstr ""
1373
+
1374
+ #: product_list.php:384
1375
+ msgid ""
1376
+ "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1377
+ "FB, Twitter, G+1, Pinterest, LinkedIn."
1378
+ msgstr ""
1379
+
1380
+ #: product_list.php:394
1381
+ msgid ""
1382
+ "Add social media login, registration, and commenting to your WordPress "
1383
+ "website."
1384
+ msgstr ""
1385
+
1386
+ #: product_list.php:401
1387
+ msgid ""
1388
+ "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1389
+ "Collect data and subscribe your users."
1390
+ msgstr ""
1391
+
1392
+ #: product_list.php:411
1393
+ msgid ""
1394
+ "Add testimonials and feedbacks from your customers to WordPress website "
1395
+ "posts, pages, and widgets."
1396
+ msgstr ""
1397
+
1398
+ #: product_list.php:418
1399
+ msgid ""
1400
+ "Best timesheet plugin for WordPress. Track employee time, streamline "
1401
+ "attendance and generate reports."
1402
+ msgstr ""
1403
+
1404
+ #: product_list.php:428
1405
+ msgid ""
1406
+ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1407
+ "and pages."
1408
+ msgstr ""
1409
+
1410
+ #: product_list.php:438
1411
+ msgid ""
1412
+ "Automatically check and update WordPress website core with all installed "
1413
+ "plugins and themes to the latest versions."
1414
+ msgstr ""
1415
+
1416
+ #: product_list.php:448
1417
+ msgid ""
1418
+ "Powerful user role management plugin for WordPress website. Create, edit, "
1419
+ "copy, and delete user roles."
1420
+ msgstr ""
1421
+
1422
+ #: product_list.php:458
1423
+ msgid ""
1424
+ "Display live count of online visitors who are currently browsing your "
1425
+ "WordPress website."
1426
+ msgstr ""
1427
+
1428
+ #: product_list.php:468
1429
+ msgid ""
1430
+ "Backup and export Zendesk Help Center content automatically to your "
1431
+ "WordPress website database."
1432
+ msgstr ""
1433
+
1434
+ #~ msgid "Advertisement"
1435
+ #~ msgstr "Reklama"
1436
+
1437
+ #~ msgid "Content & Media"
1438
+ #~ msgstr "Obsah & Média"
1439
+
1440
+ #~ msgid "Management"
1441
+ #~ msgstr "Správa"
1442
 
1443
+ #~ msgid "Site Stats"
1444
+ #~ msgstr "Statistiky webu"
1445
 
1446
+ #~ msgid "Social"
1447
+ #~ msgstr "Sociální"
1448
 
1449
+ #~ msgid "Utilities"
1450
+ #~ msgstr "Utility"
1451
 
1452
+ #~ msgid "Other"
1453
+ #~ msgstr "Ostatní"
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,15 +2,15 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-03-28 13:51+0300\n"
6
- "PO-Revision-Date: 2017-03-28 13:51+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
@@ -49,7 +49,7 @@ msgstr "Notez là"
49
  msgid "Need help?"
50
  msgstr "Besoin d'aide ?"
51
 
52
- #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
53
  msgid "Visit Help Center"
54
  msgstr "Visiter le site du support"
55
 
@@ -149,7 +149,7 @@ msgid "Add New"
149
  msgstr "Ajouter"
150
 
151
  #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
152
- #: bws_functions.php:378 bws_functions.php:482
153
  msgid "Close notice"
154
  msgstr "Effacer l'avertissement"
155
 
@@ -203,12 +203,12 @@ msgstr ""
203
  "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
204
  "du support rapide et des mises à jour."
205
 
206
- #: bws_functions.php:477
207
  #, php-format
208
  msgid "Thank you for choosing %s plugin!"
209
  msgstr ""
210
 
211
- #: bws_functions.php:478
212
  msgid ""
213
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
214
  "we'd love to hear about it!"
@@ -216,25 +216,25 @@ msgstr ""
216
  "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
217
  "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
218
 
219
- #: bws_functions.php:479
220
  msgid "Suggest a Feature"
221
  msgstr "Proposer une fonctionnalité"
222
 
223
- #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
224
  #: class-bws-settings.php:584 class-bws-settings.php:587
225
  msgid "Notice"
226
  msgstr "Avertissement"
227
 
228
- #: bws_functions.php:495
229
  msgid "The plugin's settings have been changed."
230
  msgstr "Les paramètres de l'extension ont été modifiés."
231
 
232
- #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
233
  #: deprecated.php:640
234
  msgid "Save Changes"
235
  msgstr "Enregistrer les modifications"
236
 
237
- #: bws_functions.php:510
238
  msgid ""
239
  "You can always look at premium options by checking the \"Pro Options\" in "
240
  "the \"Misc\" tab."
@@ -242,63 +242,71 @@ msgstr ""
242
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
243
  "\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
244
 
245
- #: bws_functions.php:651
 
 
 
 
 
 
 
 
246
  msgid "Add shortcode"
247
  msgstr "Ajouter le code court"
248
 
249
- #: bws_functions.php:651
250
  msgid "Add BestWebSoft plugins' shortcodes using this button."
251
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
252
 
253
- #: bws_functions.php:700
254
  msgid "Close"
255
  msgstr "Fermer"
256
 
257
- #: bws_functions.php:792
258
  msgid "Are you sure you want to restore default settings?"
259
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
260
 
261
- #: bws_functions.php:795
262
  msgid "Yes, restore all settings"
263
  msgstr "Oui, remettre les valeurs par défaut"
264
 
265
- #: bws_functions.php:796
266
  msgid "No, go back to the settings page"
267
  msgstr "Non, retourner à la page des paramètres"
268
 
269
- #: bws_functions.php:842
270
  msgid "Plugin"
271
  msgstr "Extension"
272
 
273
- #: bws_functions.php:851
274
  msgid "Shortcode settings"
275
  msgstr "Paramètres du code court"
276
 
277
- #: bws_functions.php:856
278
  msgid "The shortcode will be inserted"
279
  msgstr "Le code court sera inséré"
280
 
281
- #: bws_functions.php:861
282
  msgid "Insert"
283
  msgstr "Insérer"
284
 
285
- #: bws_functions.php:921
286
  msgid "FAQ"
287
  msgstr "FAQ"
288
 
289
- #: bws_functions.php:927
290
  msgid "For more information:"
291
  msgstr "Pour plus d'informations&nbsp;:"
292
 
293
- #: bws_functions.php:928
294
  msgid "Documentation"
295
  msgstr "Documentation"
296
 
297
- #: bws_functions.php:929
298
  msgid "Video Instructions"
299
  msgstr "Vidéo explicative"
300
 
301
- #: bws_functions.php:930
302
  msgid "Submit a Request"
303
  msgstr "Soumettre une requête"
304
 
@@ -1135,40 +1143,347 @@ msgid "version of the plugin."
1135
  msgstr "version de l'extension."
1136
 
1137
  #: product_list.php:7
1138
- msgid "Advertisement"
1139
- msgstr "Publicité"
1140
 
1141
  #: product_list.php:8
1142
- msgid "Content & Media"
1143
- msgstr "Contenu & média"
1144
 
1145
  #: product_list.php:9
1146
- msgid "Management"
1147
- msgstr "Administration"
1148
 
1149
  #: product_list.php:10
1150
- msgid "Recommended"
1151
- msgstr "Recommandé"
1152
 
1153
  #: product_list.php:11
1154
- msgid "Security"
1155
- msgstr "Sécurité"
1156
 
1157
  #: product_list.php:12
1158
- msgid "Site Stats"
1159
- msgstr "Statistiques"
1160
 
1161
  #: product_list.php:13
1162
- msgid "Social"
1163
- msgstr "Social"
1164
 
1165
  #: product_list.php:14
1166
- msgid "Utilities"
1167
- msgstr "Utilitaires"
1168
 
1169
  #: product_list.php:15
1170
- msgid "Other"
1171
- msgstr "Autre"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1172
 
1173
  #~ msgid "Thank you for installing"
1174
  #~ msgstr "Merci d'avoir installé"
@@ -1268,9 +1583,6 @@ msgstr "Autre"
1268
  #~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
1269
  #~ "la zone cliente en cliquant sur le lien"
1270
 
1271
- #~ msgid "Add BWS Plugins Shortcode"
1272
- #~ msgstr "Ajouter le code court de l'extension BWS"
1273
-
1274
  #~ msgid ""
1275
  #~ "(your username is the email you specify when purchasing the product), "
1276
  #~ "where you can make the necessary changes."
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-08 11:25+0300\n"
6
+ "PO-Revision-Date: 2017-06-08 11:25+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
49
  msgid "Need help?"
50
  msgstr "Besoin d'aide ?"
51
 
52
+ #: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
53
  msgid "Visit Help Center"
54
  msgstr "Visiter le site du support"
55
 
149
  msgstr "Ajouter"
150
 
151
  #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
152
+ #: bws_functions.php:378 bws_functions.php:480
153
  msgid "Close notice"
154
  msgstr "Effacer l'avertissement"
155
 
203
  "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
204
  "du support rapide et des mises à jour."
205
 
206
+ #: bws_functions.php:475
207
  #, php-format
208
  msgid "Thank you for choosing %s plugin!"
209
  msgstr ""
210
 
211
+ #: bws_functions.php:476
212
  msgid ""
213
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
214
  "we'd love to hear about it!"
216
  "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
217
  "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
218
 
219
+ #: bws_functions.php:477
220
  msgid "Suggest a Feature"
221
  msgstr "Proposer une fonctionnalité"
222
 
223
+ #: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
224
  #: class-bws-settings.php:584 class-bws-settings.php:587
225
  msgid "Notice"
226
  msgstr "Avertissement"
227
 
228
+ #: bws_functions.php:493
229
  msgid "The plugin's settings have been changed."
230
  msgstr "Les paramètres de l'extension ont été modifiés."
231
 
232
+ #: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
233
  #: deprecated.php:640
234
  msgid "Save Changes"
235
  msgstr "Enregistrer les modifications"
236
 
237
+ #: bws_functions.php:508
238
  msgid ""
239
  "You can always look at premium options by checking the \"Pro Options\" in "
240
  "the \"Misc\" tab."
242
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
243
  "\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
244
 
245
+ #: bws_functions.php:629
246
+ msgid "Add BWS Shortcode"
247
+ msgstr ""
248
+
249
+ #: bws_functions.php:630
250
+ msgid "Add BWS Plugins Shortcode"
251
+ msgstr "Ajouter le code court de l'extension BWS"
252
+
253
+ #: bws_functions.php:649
254
  msgid "Add shortcode"
255
  msgstr "Ajouter le code court"
256
 
257
+ #: bws_functions.php:649
258
  msgid "Add BestWebSoft plugins' shortcodes using this button."
259
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
260
 
261
+ #: bws_functions.php:695
262
  msgid "Close"
263
  msgstr "Fermer"
264
 
265
+ #: bws_functions.php:787
266
  msgid "Are you sure you want to restore default settings?"
267
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
268
 
269
+ #: bws_functions.php:790
270
  msgid "Yes, restore all settings"
271
  msgstr "Oui, remettre les valeurs par défaut"
272
 
273
+ #: bws_functions.php:791
274
  msgid "No, go back to the settings page"
275
  msgstr "Non, retourner à la page des paramètres"
276
 
277
+ #: bws_functions.php:833
278
  msgid "Plugin"
279
  msgstr "Extension"
280
 
281
+ #: bws_functions.php:842
282
  msgid "Shortcode settings"
283
  msgstr "Paramètres du code court"
284
 
285
+ #: bws_functions.php:847
286
  msgid "The shortcode will be inserted"
287
  msgstr "Le code court sera inséré"
288
 
289
+ #: bws_functions.php:852
290
  msgid "Insert"
291
  msgstr "Insérer"
292
 
293
+ #: bws_functions.php:912
294
  msgid "FAQ"
295
  msgstr "FAQ"
296
 
297
+ #: bws_functions.php:918
298
  msgid "For more information:"
299
  msgstr "Pour plus d'informations&nbsp;:"
300
 
301
+ #: bws_functions.php:919
302
  msgid "Documentation"
303
  msgstr "Documentation"
304
 
305
+ #: bws_functions.php:920
306
  msgid "Video Instructions"
307
  msgstr "Vidéo explicative"
308
 
309
+ #: bws_functions.php:921
310
  msgid "Submit a Request"
311
  msgstr "Soumettre une requête"
312
 
1143
  msgstr "version de l'extension."
1144
 
1145
  #: product_list.php:7
1146
+ msgid "Admin Tools"
1147
+ msgstr ""
1148
 
1149
  #: product_list.php:8
1150
+ msgid "Content"
1151
+ msgstr ""
1152
 
1153
  #: product_list.php:9
1154
+ msgid "eCommerce"
1155
+ msgstr ""
1156
 
1157
  #: product_list.php:10
1158
+ msgid "Marketing"
1159
+ msgstr ""
1160
 
1161
  #: product_list.php:11
1162
+ msgid "Navigation"
1163
+ msgstr ""
1164
 
1165
  #: product_list.php:12
1166
+ msgid "Recommended"
1167
+ msgstr "Recommandé"
1168
 
1169
  #: product_list.php:13
1170
+ msgid "Security"
1171
+ msgstr "Sécurité"
1172
 
1173
  #: product_list.php:14
1174
+ msgid "SEO"
1175
+ msgstr ""
1176
 
1177
  #: product_list.php:15
1178
+ msgid "SMM"
1179
+ msgstr ""
1180
+
1181
+ #: product_list.php:22
1182
+ msgid ""
1183
+ "Protect WordPress website forms from spam entries by means of math logic."
1184
+ msgstr ""
1185
+
1186
+ #: product_list.php:32
1187
+ msgid "Create your personal car rental/booking and reservation website."
1188
+ msgstr ""
1189
+
1190
+ #: product_list.php:42
1191
+ msgid ""
1192
+ "Allow customers to reach you using secure contact form plugin any website "
1193
+ "must have."
1194
+ msgstr ""
1195
+
1196
+ #: product_list.php:52
1197
+ msgid "Add unlimited number of contact forms to WordPress website."
1198
+ msgstr ""
1199
+
1200
+ #: product_list.php:62
1201
+ msgid "Save and manage Contact Form messages. Never lose important data."
1202
+ msgstr ""
1203
+
1204
+ #: product_list.php:72
1205
+ msgid "Add unlimited custom pages to WordPress admin dashboard."
1206
+ msgstr ""
1207
+
1208
+ #: product_list.php:79
1209
+ msgid "Add custom fields to WordPress website search results."
1210
+ msgstr ""
1211
+
1212
+ #: product_list.php:86
1213
+ msgid ""
1214
+ "Add custom post types and taxonomies to WordPress website search results."
1215
+ msgstr ""
1216
+
1217
+ #: product_list.php:96
1218
+ msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1219
+ msgstr ""
1220
+
1221
+ #: product_list.php:103
1222
+ msgid ""
1223
+ "Automatically add outgoing email messages to queue instead of sending them "
1224
+ "immediately."
1225
+ msgstr ""
1226
+
1227
+ #: product_list.php:110
1228
+ msgid ""
1229
+ "Get latest error log messages to diagnose website problems. Define and fix "
1230
+ "issues faster."
1231
+ msgstr ""
1232
+
1233
+ #: product_list.php:117
1234
+ msgid ""
1235
+ "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1236
+ "widgets."
1237
+ msgstr ""
1238
+
1239
+ #: product_list.php:127
1240
+ msgid ""
1241
+ "Add beautiful galleries, albums & images to your WordPress website in a few "
1242
+ "clicks."
1243
+ msgstr ""
1244
+
1245
+ #: product_list.php:137
1246
+ msgid ""
1247
+ "Add unlimited gallery categories. Organize images to make the navigation "
1248
+ "through content easier."
1249
+ msgstr ""
1250
+
1251
+ #: product_list.php:144
1252
+ msgid ""
1253
+ "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1254
+ "posts, pages and widgets."
1255
+ msgstr ""
1256
+
1257
+ #: product_list.php:154
1258
+ msgid ""
1259
+ "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1260
+ "results, categories, tags, and widgets."
1261
+ msgstr ""
1262
+
1263
+ #: product_list.php:164
1264
+ msgid "Add Google Analytics code to WordPress website and track basic stats."
1265
+ msgstr ""
1266
+
1267
+ #: product_list.php:174
1268
+ msgid ""
1269
+ "Protect WordPress website forms from spam entries with Google Captcha "
1270
+ "(reCaptcha)."
1271
+ msgstr ""
1272
+
1273
+ #: product_list.php:184
1274
+ msgid "Add customized Google maps to WordPress posts, pages and widgets."
1275
+ msgstr ""
1276
+
1277
+ #: product_list.php:194
1278
+ msgid ""
1279
+ "Generate and add XML sitemap to WordPress website. Help search engines index "
1280
+ "your blog."
1281
+ msgstr ""
1282
+
1283
+ #: product_list.php:204
1284
+ msgid ""
1285
+ "Replace external WordPress website links with Google shortlinks and track "
1286
+ "click stats."
1287
+ msgstr ""
1288
+
1289
+ #: product_list.php:211
1290
+ msgid ""
1291
+ "Protect WordPress website – allow and deny access for certain IP addresses, "
1292
+ "hostnames, etc."
1293
+ msgstr ""
1294
+
1295
+ #: product_list.php:221
1296
+ msgid ""
1297
+ "Create your personal job board and listing WordPress website. Search jobs, "
1298
+ "submit CV/resumes, choose candidates."
1299
+ msgstr ""
1300
+
1301
+ #: product_list.php:228
1302
+ msgid ""
1303
+ "Protect WordPress website against brute force attacks. Limit rate of login "
1304
+ "attempts."
1305
+ msgstr ""
1306
+
1307
+ #: product_list.php:238
1308
+ msgid ""
1309
+ "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1310
+ "5 plugins included – profile, insider, etc."
1311
+ msgstr ""
1312
+
1313
+ #: product_list.php:248
1314
+ msgid ""
1315
+ "Translate WordPress website content to other languages manually. Create "
1316
+ "multilingual pages, posts, widgets, menus, etc."
1317
+ msgstr ""
1318
+
1319
+ #: product_list.php:258
1320
+ msgid ""
1321
+ "Add customizable pagination to WordPress website. Split long content to "
1322
+ "multiple pages for better navigation."
1323
+ msgstr ""
1324
+
1325
+ #: product_list.php:268
1326
+ msgid ""
1327
+ "Generate PDF files and print WordPress posts/pages. Customize document "
1328
+ "header/footer styles and appearance."
1329
+ msgstr ""
1330
+
1331
+ #: product_list.php:278
1332
+ msgid ""
1333
+ "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1334
+ "Profile) to WordPress posts, pages and widgets."
1335
+ msgstr ""
1336
+
1337
+ #: product_list.php:288
1338
+ msgid ""
1339
+ "Create your personal portfolio WordPress website. Manage and showcase past "
1340
+ "projects to get more clients."
1341
+ msgstr ""
1342
+
1343
+ #: product_list.php:298
1344
+ msgid "Export WordPress posts to CSV file format easily. Configure data order."
1345
+ msgstr ""
1346
+
1347
+ #: product_list.php:305
1348
+ msgid ""
1349
+ "Add extra fields to default WordPress user profile. The easiest way to "
1350
+ "create and manage additional custom values."
1351
+ msgstr ""
1352
+
1353
+ #: product_list.php:312
1354
+ msgid ""
1355
+ "Add and display HTML advertisement banner on WordPress website. Customize "
1356
+ "bar styles and appearance."
1357
+ msgstr ""
1358
+
1359
+ #: product_list.php:322
1360
+ msgid ""
1361
+ "Add customizable quotes and tips blocks to WordPress posts, pages and "
1362
+ "widgets."
1363
+ msgstr ""
1364
+
1365
+ #: product_list.php:329
1366
+ msgid ""
1367
+ "Add rating plugin to your WordPress website to receive feedback from your "
1368
+ "customers."
1369
+ msgstr ""
1370
+
1371
+ #: product_list.php:336
1372
+ msgid ""
1373
+ "Create your personal real estate WordPress website. Sell, rent and buy "
1374
+ "properties. Add, search and browse listings easily."
1375
+ msgstr ""
1376
+
1377
+ #: product_list.php:346
1378
+ msgid ""
1379
+ "Attach, un-attach and re-attach media files quickly to WordPress posts and "
1380
+ "pages."
1381
+ msgstr ""
1382
+
1383
+ #: product_list.php:353
1384
+ msgid ""
1385
+ "Add related, featured, latest, and popular posts to your WordPress website. "
1386
+ "Connect your blog readers with a relevant content."
1387
+ msgstr ""
1388
+
1389
+ #: product_list.php:360
1390
+ msgid ""
1391
+ "Send bulk email messages to WordPress users. Custom templates, advanced "
1392
+ "settings and detailed reports."
1393
+ msgstr ""
1394
+
1395
+ #: product_list.php:370
1396
+ msgid ""
1397
+ "The best responsive slider plugin for your WordPress website. Create "
1398
+ "beautifully animated slides just in a few clicks."
1399
+ msgstr ""
1400
+
1401
+ #: product_list.php:377
1402
+ msgid ""
1403
+ "Configure SMTP server to receive email messages from WordPress to Gmail, "
1404
+ "Yahoo, Hotmail and other services."
1405
+ msgstr ""
1406
+
1407
+ #: product_list.php:384
1408
+ msgid ""
1409
+ "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1410
+ "FB, Twitter, G+1, Pinterest, LinkedIn."
1411
+ msgstr ""
1412
+
1413
+ #: product_list.php:394
1414
+ msgid ""
1415
+ "Add social media login, registration, and commenting to your WordPress "
1416
+ "website."
1417
+ msgstr ""
1418
+
1419
+ #: product_list.php:401
1420
+ msgid ""
1421
+ "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1422
+ "Collect data and subscribe your users."
1423
+ msgstr ""
1424
+
1425
+ #: product_list.php:411
1426
+ msgid ""
1427
+ "Add testimonials and feedbacks from your customers to WordPress website "
1428
+ "posts, pages, and widgets."
1429
+ msgstr ""
1430
+
1431
+ #: product_list.php:418
1432
+ msgid ""
1433
+ "Best timesheet plugin for WordPress. Track employee time, streamline "
1434
+ "attendance and generate reports."
1435
+ msgstr ""
1436
+
1437
+ #: product_list.php:428
1438
+ msgid ""
1439
+ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1440
+ "and pages."
1441
+ msgstr ""
1442
+
1443
+ #: product_list.php:438
1444
+ msgid ""
1445
+ "Automatically check and update WordPress website core with all installed "
1446
+ "plugins and themes to the latest versions."
1447
+ msgstr ""
1448
+
1449
+ #: product_list.php:448
1450
+ msgid ""
1451
+ "Powerful user role management plugin for WordPress website. Create, edit, "
1452
+ "copy, and delete user roles."
1453
+ msgstr ""
1454
+
1455
+ #: product_list.php:458
1456
+ msgid ""
1457
+ "Display live count of online visitors who are currently browsing your "
1458
+ "WordPress website."
1459
+ msgstr ""
1460
+
1461
+ #: product_list.php:468
1462
+ msgid ""
1463
+ "Backup and export Zendesk Help Center content automatically to your "
1464
+ "WordPress website database."
1465
+ msgstr ""
1466
+
1467
+ #~ msgid "Advertisement"
1468
+ #~ msgstr "Publicité"
1469
+
1470
+ #~ msgid "Content & Media"
1471
+ #~ msgstr "Contenu & média"
1472
+
1473
+ #~ msgid "Management"
1474
+ #~ msgstr "Administration"
1475
+
1476
+ #~ msgid "Site Stats"
1477
+ #~ msgstr "Statistiques"
1478
+
1479
+ #~ msgid "Social"
1480
+ #~ msgstr "Social"
1481
+
1482
+ #~ msgid "Utilities"
1483
+ #~ msgstr "Utilitaires"
1484
+
1485
+ #~ msgid "Other"
1486
+ #~ msgstr "Autre"
1487
 
1488
  #~ msgid "Thank you for installing"
1489
  #~ msgstr "Merci d'avoir installé"
1583
  #~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
1584
  #~ "la zone cliente en cliquant sur le lien"
1585
 
 
 
 
1586
  #~ msgid ""
1587
  #~ "(your username is the email you specify when purchasing the product), "
1588
  #~ "where you can make the necessary changes."
bws_menu/languages/bestwebsoft-id_ID.mo ADDED
Binary file
bws_menu/languages/bestwebsoft-id_ID.po ADDED
@@ -0,0 +1,2063 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: bestwebsoft\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-08 11:25+0300\n"
6
+ "PO-Revision-Date: 2017-06-08 11:25+0300\n"
7
+ "Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
8
+ "Language-Team: chameleonjohn.com <jordan.silaen@chameleonjohn.com>\n"
9
+ "Language: id\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;esc_attr_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "Plural-Forms: nplurals=1; plural=0;\n"
17
+ "X-Generator: Poedit 1.8.7.1\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #: bws_functions.php:72 bws_functions.php:190
21
+ msgid "requires"
22
+ msgstr "membutuhkan"
23
+
24
+ #: bws_functions.php:74
25
+ msgid ""
26
+ "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
+ "try again."
28
+ msgstr ""
29
+ "atau lebih tinggi, itu sebabnya telah dinonaktifkan! Silakan upgrade "
30
+ "WordPress dan coba lagi."
31
+
32
+ #: bws_functions.php:75
33
+ msgid "Back to the WordPress"
34
+ msgstr "Kembali ke WordPress"
35
+
36
+ #: bws_functions.php:77
37
+ msgid "Plugins page"
38
+ msgstr "halaman plugin"
39
+
40
+ #: bws_functions.php:91
41
+ msgid "Like the plugin?"
42
+ msgstr "Seperti plugin?"
43
+
44
+ #: bws_functions.php:93
45
+ msgid "Rate it"
46
+ msgstr "Menilai itu"
47
+
48
+ #: bws_functions.php:102
49
+ msgid "Need help?"
50
+ msgstr "Butuh bantuan?"
51
+
52
+ #: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
53
+ msgid "Visit Help Center"
54
+ msgstr "Kunjungi Pusat Bantuan"
55
+
56
+ #: bws_functions.php:106
57
+ msgid "Want to support the plugin?"
58
+ msgstr "Ingin mendukung plugin?"
59
+
60
+ #: bws_functions.php:107 bws_menu.php:553
61
+ msgid "Donate"
62
+ msgstr "Menyumbangkan"
63
+
64
+ #: bws_functions.php:127
65
+ msgid "WARNING: Illegal use notification"
66
+ msgstr "PERINGATAN: Illegal penggunaan notifikasi"
67
+
68
+ #: bws_functions.php:127
69
+ msgid ""
70
+ "You can use one license of the Pro plugin for one domain only. Please check "
71
+ "and edit your license or domain if necessary using you personal Client Area. "
72
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
73
+ "the Pro plugin will be deactivated."
74
+ msgstr ""
75
+ "Anda dapat menggunakan satu lisensi dari plugin Pro untuk satu domain saja. "
76
+ "Silakan periksa dan mengedit lisensi atau domain jika perlu menggunakan Anda "
77
+ "pribadi Area Klien. Kami sangat menyarankan Anda untuk memecahkan masalah "
78
+ "dalam waktu 24 jam, dinyatakan plugin Pro akan dinonaktifkan."
79
+
80
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
81
+ #: class-bws-settings.php:143
82
+ msgid "Learn More"
83
+ msgstr "Belajarlah lagi"
84
+
85
+ #: bws_functions.php:144
86
+ msgid ""
87
+ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
88
+ "you should buy a Pro license"
89
+ msgstr ""
90
+ "Perhatikan: lisensi Percobaan Pro Anda telah kedaluwarsa. Untuk terus "
91
+ "menggunakan plugin, Anda harus membeli lisensi Pro"
92
+
93
+ #: bws_functions.php:146
94
+ msgid ""
95
+ "Your license has expired. To continue getting top-priority support and "
96
+ "plugin updates, you should extend it."
97
+ msgstr ""
98
+ "lisensi Anda telah berakhir. Untuk terus mendapatkan dukungan top-prioritas "
99
+ "dan update Plugin, Anda harus memperpanjang."
100
+
101
+ #: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
102
+ msgid "Learn more"
103
+ msgstr "Belajarlah lagi"
104
+
105
+ #: bws_functions.php:164
106
+ #, php-format
107
+ msgid "Notice: You are using the Pro Trial license of %s plugin."
108
+ msgstr "Perhatikan: Anda menggunakan lisensi Percobaan Pro dari %s Plugin."
109
+
110
+ #: bws_functions.php:166
111
+ msgid "Notice: You are using the Pro Trial license of plugin."
112
+ msgstr "Perhatikan: Anda menggunakan lisensi Percobaan Pro plugin."
113
+
114
+ #: bws_functions.php:169
115
+ msgid "The Pro Trial license will expire on"
116
+ msgstr "Lisensi Percobaan Pro akan berakhir pada"
117
+
118
+ #: bws_functions.php:192
119
+ msgid ""
120
+ "or higher! We do not guarantee that our plugin will work correctly. Please "
121
+ "upgrade to WordPress latest version."
122
+ msgstr ""
123
+ "atau lebih tinggi! Kami tidak menjamin bahwa plugin kami akan bekerja dengan "
124
+ "benar. Silakan upgrade ke WordPress versi terbaru."
125
+
126
+ #: bws_functions.php:207
127
+ #, php-format
128
+ msgid "Thank you for installing %s plugin!"
129
+ msgstr ""
130
+
131
+ #: bws_functions.php:208
132
+ msgid "Let's get started"
133
+ msgstr "Mari kita mulai"
134
+
135
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
136
+ #: bws_menu.php:559
137
+ msgid "Settings"
138
+ msgstr "pengaturan"
139
+
140
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
141
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
142
+ msgid "or"
143
+ msgstr "atau"
144
+
145
+ #: bws_functions.php:212 bws_functions.php:244
146
+ msgid "Add New"
147
+ msgstr "Tambah baru"
148
+
149
+ #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
150
+ #: bws_functions.php:378 bws_functions.php:480
151
+ msgid "Close notice"
152
+ msgstr "Tutup pemberitahuan"
153
+
154
+ #: bws_functions.php:231
155
+ msgid "Thank you for installing plugins by BestWebSoft!"
156
+ msgstr "Terima kasih untuk menginstal plugin dengan BestWebSoft!"
157
+
158
+ #: bws_functions.php:233
159
+ msgid "More Details"
160
+ msgstr "Keterangan lebih lanjut"
161
+
162
+ #: bws_functions.php:234
163
+ msgid "Less Details"
164
+ msgstr "Kurang Detail"
165
+
166
+ #: bws_functions.php:262
167
+ msgid "Deprecated function(-s) is used on the site here:"
168
+ msgstr "Fungsi usang (-s) digunakan di situs di sini:"
169
+
170
+ #: bws_functions.php:276
171
+ msgid ""
172
+ "This function(-s) will be removed over time. Please update the product(-s)."
173
+ msgstr ""
174
+ "Fungsi ini (-s) akan dihapus dari waktu ke waktu. Perbarui produk (-s)."
175
+
176
+ #: bws_functions.php:335
177
+ msgid "It’s time to upgrade your"
178
+ msgstr "Saatnya untuk meng-upgrade Anda"
179
+
180
+ #: bws_functions.php:335
181
+ msgid "to"
182
+ msgstr "untuk"
183
+
184
+ #: bws_functions.php:335
185
+ msgid "version!"
186
+ msgstr "versi!"
187
+
188
+ #: bws_functions.php:336
189
+ msgid "Extend standard plugin functionality with new great options."
190
+ msgstr "Memperluas fungsi Plugin standar dengan pilihan besar baru."
191
+
192
+ #: bws_functions.php:382
193
+ #, php-format
194
+ msgid ""
195
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
196
+ "SUPPORT or UPDATES."
197
+ msgstr ""
198
+ "Kunci lisensi untuk %s berakhir pada %s dan Anda tidak akan diberikan TOP-"
199
+ "PRIORITAS DUKUNGAN atau PEMBARUAN."
200
+
201
+ #: bws_functions.php:475
202
+ #, php-format
203
+ msgid "Thank you for choosing %s plugin!"
204
+ msgstr ""
205
+
206
+ #: bws_functions.php:476
207
+ msgid ""
208
+ "If you have a feature, suggestion or idea you'd like to see in the plugin, "
209
+ "we'd love to hear about it!"
210
+ msgstr ""
211
+ "Jika Anda memiliki fitur, saran atau ide yang ingin Anda lihat di plugin, "
212
+ "kami akan senang mendengar tentang hal itu!"
213
+
214
+ #: bws_functions.php:477
215
+ msgid "Suggest a Feature"
216
+ msgstr "Sarankan Fitur sebuah"
217
+
218
+ #: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
219
+ #: class-bws-settings.php:584 class-bws-settings.php:587
220
+ msgid "Notice"
221
+ msgstr "Melihat"
222
+
223
+ #: bws_functions.php:493
224
+ msgid "The plugin's settings have been changed."
225
+ msgstr "pengaturan plugin ini telah berubah."
226
+
227
+ #: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
228
+ #: deprecated.php:640
229
+ msgid "Save Changes"
230
+ msgstr "Simpan perubahan"
231
+
232
+ #: bws_functions.php:508
233
+ msgid ""
234
+ "You can always look at premium options by checking the \"Pro Options\" in "
235
+ "the \"Misc\" tab."
236
+ msgstr ""
237
+ "Anda selalu dapat melihat pilihan premium dengan memeriksa \\ \"Pro Options "
238
+ "\" di \\ tab \"Misc \"."
239
+
240
+ #: bws_functions.php:629
241
+ msgid "Add BWS Shortcode"
242
+ msgstr ""
243
+
244
+ #: bws_functions.php:630
245
+ msgid "Add BWS Plugins Shortcode"
246
+ msgstr "Tambahkan BWS Plugin pendek"
247
+
248
+ #: bws_functions.php:649
249
+ msgid "Add shortcode"
250
+ msgstr "Tambahkan shortcode"
251
+
252
+ #: bws_functions.php:649
253
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
254
+ msgstr "Tambahkan shortcode BestWebSoft plugin 'menggunakan tombol ini."
255
+
256
+ #: bws_functions.php:695
257
+ msgid "Close"
258
+ msgstr "Dekat"
259
+
260
+ #: bws_functions.php:787
261
+ msgid "Are you sure you want to restore default settings?"
262
+ msgstr "Apakah Anda yakin ingin mengembalikan pengaturan default?"
263
+
264
+ #: bws_functions.php:790
265
+ msgid "Yes, restore all settings"
266
+ msgstr "Ya, mengembalikan semua pengaturan"
267
+
268
+ #: bws_functions.php:791
269
+ msgid "No, go back to the settings page"
270
+ msgstr "Tidak, kembali ke halaman pengaturan"
271
+
272
+ #: bws_functions.php:833
273
+ msgid "Plugin"
274
+ msgstr "Plugin"
275
+
276
+ #: bws_functions.php:842
277
+ msgid "Shortcode settings"
278
+ msgstr "pengaturan shortcode"
279
+
280
+ #: bws_functions.php:847
281
+ msgid "The shortcode will be inserted"
282
+ msgstr "shortcode akan dimasukkan"
283
+
284
+ #: bws_functions.php:852
285
+ msgid "Insert"
286
+ msgstr "Memasukkan"
287
+
288
+ #: bws_functions.php:912
289
+ msgid "FAQ"
290
+ msgstr "FAQ"
291
+
292
+ #: bws_functions.php:918
293
+ msgid "For more information:"
294
+ msgstr "Untuk informasi lebih lanjut:"
295
+
296
+ #: bws_functions.php:919
297
+ msgid "Documentation"
298
+ msgstr "Dokumentasi"
299
+
300
+ #: bws_functions.php:920
301
+ msgid "Video Instructions"
302
+ msgstr "Petunjuk Video"
303
+
304
+ #: bws_functions.php:921
305
+ msgid "Submit a Request"
306
+ msgstr "Mengajukan permohonan"
307
+
308
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
309
+ msgid "Wrong license key"
310
+ msgstr "kunci lisensi yang salah"
311
+
312
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
313
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
314
+ #: deprecated.php:352
315
+ msgid ""
316
+ "Something went wrong. Please try again later. If the error appears again, "
317
+ "please contact us"
318
+ msgstr ""
319
+ "Ada yang salah. Silakan coba lagi nanti. Jika kesalahan muncul lagi, "
320
+ "silahkan hubungi kami"
321
+
322
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
323
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
324
+ #: deprecated.php:352
325
+ msgid "We are sorry for inconvenience."
326
+ msgstr "Kami mohon maaf atas ketidaknyamanan."
327
+
328
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
329
+ #: deprecated.php:139 deprecated.php:358
330
+ msgid "Wrong license key."
331
+ msgstr "kunci lisensi yang salah."
332
+
333
+ #: bws_menu.php:130
334
+ msgid ""
335
+ "This license key is bound to another site. Change it via personal Client "
336
+ "Area."
337
+ msgstr ""
338
+ "kunci lisensi ini terikat ke situs lain. Mengubahnya melalui personal Area "
339
+ "Klien."
340
+
341
+ #: bws_menu.php:130
342
+ msgid "Log in"
343
+ msgstr "Masuk"
344
+
345
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
346
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
347
+ msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari."
348
+
349
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
350
+ #, php-format
351
+ msgid ""
352
+ "Unfortunately, Your license has expired. To continue getting top-priority "
353
+ "support and plugin updates, you should extend it in your %s"
354
+ msgstr ""
355
+ "Sayangnya, lisensi Anda telah kedaluwarsa. Untuk terus mendapatkan dukungan "
356
+ "top-prioritas dan Plugin update, Anda harus memperpanjang di Anda %s"
357
+
358
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
359
+ msgid ""
360
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
361
+ "Trial license can be installed only once."
362
+ msgstr ""
363
+ "Sayangnya, lisensi Pro sudah dipasang untuk domain ini. Lisensi Percobaan "
364
+ "Pro dapat diinstal hanya sekali."
365
+
366
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
367
+ msgid "The license key is valid."
368
+ msgstr "Kunci lisensi berlaku."
369
+
370
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
371
+ msgid "Your license will expire on"
372
+ msgstr "lisensi Anda akan berakhir pada"
373
+
374
+ #: bws_menu.php:146
375
+ msgid "Congratulations! Pro Membership license is activated successfully."
376
+ msgstr "Selamat! lisensi Keanggotaan Pro berhasil diaktifkan."
377
+
378
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
379
+ msgid ""
380
+ "Something went wrong. Try again later or upload the plugin manually. We are "
381
+ "sorry for inconvenience."
382
+ msgstr ""
383
+ "Ada yang salah. Coba lagi nanti atau meng-upload plugin secara manual. Kami "
384
+ "mohon maaf atas ketidaknyamanan."
385
+
386
+ #: bws_menu.php:163
387
+ msgid "Please enter your license key."
388
+ msgstr "Masukkan kunci lisensi Anda."
389
+
390
+ #: bws_menu.php:174
391
+ msgid "Not set"
392
+ msgstr "Tidak diatur"
393
+
394
+ #: bws_menu.php:176
395
+ msgid "On"
396
+ msgstr "Di"
397
+
398
+ #: bws_menu.php:176
399
+ msgid "Off"
400
+ msgstr "Mati"
401
+
402
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
403
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
404
+ msgid "N/A"
405
+ msgstr "N / A"
406
+
407
+ #: bws_menu.php:182
408
+ msgid " Mb"
409
+ msgstr " Mb"
410
+
411
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
412
+ msgid "Yes"
413
+ msgstr "iya nih"
414
+
415
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
416
+ msgid "No"
417
+ msgstr "Tidak"
418
+
419
+ #: bws_menu.php:196
420
+ msgid "WordPress Environment"
421
+ msgstr "WordPress Lingkungan"
422
+
423
+ #: bws_menu.php:198
424
+ msgid "Home URL"
425
+ msgstr "URL rumah"
426
+
427
+ #: bws_menu.php:199
428
+ msgid "Website URL"
429
+ msgstr "alamat situs web"
430
+
431
+ #: bws_menu.php:200
432
+ msgid "WP Version"
433
+ msgstr "WP Versi"
434
+
435
+ #: bws_menu.php:201
436
+ msgid "WP Multisite"
437
+ msgstr "WP Multisite"
438
+
439
+ #: bws_menu.php:202
440
+ msgid "WP Memory Limit"
441
+ msgstr "WP Memory Limit"
442
+
443
+ #: bws_menu.php:203
444
+ msgid "Active Theme"
445
+ msgstr "Tema aktif"
446
+
447
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
448
+ #, php-format
449
+ msgid "by %s"
450
+ msgstr "oleh %s"
451
+
452
+ #: bws_menu.php:207
453
+ msgid "Server Environment"
454
+ msgstr "Server Lingkungan"
455
+
456
+ #: bws_menu.php:209
457
+ msgid "Operating System"
458
+ msgstr "Sistem operasi"
459
+
460
+ #: bws_menu.php:210
461
+ msgid "Server"
462
+ msgstr "Server"
463
+
464
+ #: bws_menu.php:211
465
+ msgid "PHP Version"
466
+ msgstr "PHP Versi"
467
+
468
+ #: bws_menu.php:212
469
+ msgid "PHP Allow URL fopen"
470
+ msgstr "PHP Izinkan URL fopen"
471
+
472
+ #: bws_menu.php:213
473
+ msgid "PHP Memory Limit"
474
+ msgstr "PHP Memory Limit"
475
+
476
+ #: bws_menu.php:214
477
+ msgid "Memory Usage"
478
+ msgstr "memory Usage"
479
+
480
+ #: bws_menu.php:215
481
+ msgid "PHP Max Upload Size"
482
+ msgstr "Ukuran PHP Max Upload"
483
+
484
+ #: bws_menu.php:216
485
+ msgid "PHP Max Post Size"
486
+ msgstr "PHP Max Pos Ukuran"
487
+
488
+ #: bws_menu.php:217
489
+ msgid "PHP Max Script Execute Time"
490
+ msgstr "PHP Max Script Jalankan Waktu"
491
+
492
+ #: bws_menu.php:218
493
+ msgid "PHP Exif support"
494
+ msgstr "dukungan PHP Exif"
495
+
496
+ #: bws_menu.php:219
497
+ msgid "PHP IPTC support"
498
+ msgstr "dukungan PHP IPTC"
499
+
500
+ #: bws_menu.php:220
501
+ msgid "PHP XML support"
502
+ msgstr "dukungan XML PHP"
503
+
504
+ #: bws_menu.php:226
505
+ msgid "Database"
506
+ msgstr "database"
507
+
508
+ #: bws_menu.php:228
509
+ msgid "WP DB version"
510
+ msgstr "Versi WP DB"
511
+
512
+ #: bws_menu.php:229
513
+ msgid "MySQL version"
514
+ msgstr "versi MySQL"
515
+
516
+ #: bws_menu.php:230
517
+ msgid "SQL Mode"
518
+ msgstr "SQL Modus"
519
+
520
+ #: bws_menu.php:234
521
+ msgid "Active Plugins"
522
+ msgstr "Plugin aktif"
523
+
524
+ #: bws_menu.php:239
525
+ msgid "Inactive Plugins"
526
+ msgstr "Plugin tidak aktif"
527
+
528
+ #: bws_menu.php:260
529
+ msgid "Please enter a valid email address."
530
+ msgstr "Silakan isi alamat email."
531
+
532
+ #: bws_menu.php:264
533
+ msgid "Email with system info is sent to"
534
+ msgstr "Email dengan info sistem dikirim ke"
535
+
536
+ #: bws_menu.php:268
537
+ msgid "Thank you for contacting us."
538
+ msgstr "Terima kasih sudah menghubungi kami."
539
+
540
+ #: bws_menu.php:291
541
+ msgid "Sorry, email message could not be delivered."
542
+ msgstr "Maaf, pesan email tidak dapat disampaikan."
543
+
544
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
545
+ msgid "Plugins"
546
+ msgstr "plugin"
547
+
548
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
549
+ msgid "Themes"
550
+ msgstr "tema"
551
+
552
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
553
+ msgid "System status"
554
+ msgstr "Status sistem"
555
+
556
+ #: bws_menu.php:317
557
+ msgid "Support"
558
+ msgstr "Mendukung"
559
+
560
+ #: bws_menu.php:318
561
+ msgid "Manage purchased licenses & subscriptions"
562
+ msgstr "Mengelola membeli lisensi & langganan"
563
+
564
+ #: bws_menu.php:326
565
+ #, php-format
566
+ msgid "Get Access to %s+ Premium Plugins"
567
+ msgstr "Dapatkan Akses ke %s + Premium Plugin"
568
+
569
+ #: bws_menu.php:328
570
+ msgid "Subscribe to Pro Membership"
571
+ msgstr "Berlangganan Pro Keanggotaan"
572
+
573
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
574
+ #: deprecated.php:227
575
+ msgid "Check license key"
576
+ msgstr "Periksa kunci lisensi"
577
+
578
+ #: bws_menu.php:339
579
+ msgid "Enter your license key"
580
+ msgstr "Masukkan kunci lisensi Anda"
581
+
582
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
583
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
584
+ #: deprecated.php:629 deprecated.php:700 deprecated.php:709
585
+ msgid "Activate"
586
+ msgstr "Mengaktifkan"
587
+
588
+ #: bws_menu.php:361
589
+ msgid "Upload Plugin"
590
+ msgstr "Upload Plugin"
591
+
592
+ #: bws_menu.php:365
593
+ #, php-format
594
+ msgid ""
595
+ "The plugin generated %d characters of <strong>unexpected output</strong> "
596
+ "during activation. If you notice &#8220;headers already sent&#8221; "
597
+ "messages, problems with syndication feeds or other issues, try deactivating "
598
+ "or removing this plugin."
599
+ msgstr ""
600
+ "Plugin yang dihasilkan %d karakter dari <strong> tak terduga keluaran </ "
601
+ "strong> selama aktivasi. Jika Anda melihat & # 8220; header sudah dikirim & "
602
+ "# 8221; pesan, masalah dengan feed sindikasi atau masalah lain, coba "
603
+ "menonaktifkan atau menghapus plugin ini."
604
+
605
+ #: bws_menu.php:367
606
+ msgid ""
607
+ "Plugin could not be activated because it triggered a <strong>fatal error</"
608
+ "strong>."
609
+ msgstr ""
610
+ "Plugin tidak dapat diaktifkan karena memicu <strong> kesalahan fatal </ "
611
+ "strong>."
612
+
613
+ #: bws_menu.php:370
614
+ msgid "Plugin <strong>activated</strong>."
615
+ msgstr "Plugin <strong> diaktifkan </ strong>."
616
+
617
+ #: bws_menu.php:377
618
+ msgid "Installing Plugin"
619
+ msgstr "Instalasi Plugin"
620
+
621
+ #: bws_menu.php:383
622
+ msgid "Downloading install package from"
623
+ msgstr "Men-download menginstal paket dari"
624
+
625
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
626
+ #: class-bws-settings.php:948 class-bws-settings.php:970
627
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
628
+ #: deprecated.php:431
629
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
630
+ msgstr "Gagal mengunduh arsip zip. Silakan, upload plugin secara manual"
631
+
632
+ #: bws_menu.php:408
633
+ msgid "Unpacking the package"
634
+ msgstr "Membuka paket"
635
+
636
+ #: bws_menu.php:413 bws_menu.php:421
637
+ msgid "Installing the plugin"
638
+ msgstr "Instalasi plugin"
639
+
640
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
641
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
642
+ msgstr "Gagal membuka arsip zip. Silakan, upload plugin secara manual"
643
+
644
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
645
+ msgid ""
646
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
647
+ "plugin manually"
648
+ msgstr ""
649
+ "server Anda tidak mendukung baik ZipArchive atau Phar. Silakan, upload "
650
+ "plugin secara manual"
651
+
652
+ #: bws_menu.php:427
653
+ #, php-format
654
+ msgid "The plugin %s is successfully installed."
655
+ msgstr "Plugin %s berhasil diinstal."
656
+
657
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
658
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
659
+ msgstr "UploadDir tidak dapat ditulis. Silakan, upload plugin secara manual"
660
+
661
+ #: bws_menu.php:439
662
+ msgid "Activate Plugin"
663
+ msgstr "Aktifkan Plugin"
664
+
665
+ #: bws_menu.php:439 bws_menu.php:445
666
+ msgid "Return to BestWebSoft Panel"
667
+ msgstr "Kembali ke BestWebSoft Panel"
668
+
669
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
670
+ msgid "All"
671
+ msgstr "Semua"
672
+
673
+ #: bws_menu.php:450 bws_menu.php:650
674
+ msgid "Installed"
675
+ msgstr "dipasang"
676
+
677
+ #: bws_menu.php:451
678
+ msgid "Not Installed"
679
+ msgstr "Tidak terpasang"
680
+
681
+ #: bws_menu.php:457
682
+ msgid "Filter results"
683
+ msgstr "Filter hasil"
684
+
685
+ #: bws_menu.php:460 bws_menu.php:589
686
+ msgid "Category"
687
+ msgstr "Kategori"
688
+
689
+ #: bws_menu.php:524
690
+ msgid "Not installed"
691
+ msgstr "Tidak terpasang"
692
+
693
+ #: bws_menu.php:528
694
+ msgid "Renew to get updates"
695
+ msgstr "Renew untuk mendapatkan update"
696
+
697
+ #: bws_menu.php:531
698
+ #, php-format
699
+ msgid "Update to v %s"
700
+ msgstr "Update untuk v %s"
701
+
702
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
703
+ msgid "Install Now"
704
+ msgstr "Pasang sekarang"
705
+
706
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
707
+ msgid "Upgrade to Pro"
708
+ msgstr "Upgrade ke yang lebih baik"
709
+
710
+ #: bws_menu.php:563 bws_menu.php:572
711
+ msgid "Activate this plugin"
712
+ msgstr "Aktifkan plugin ini"
713
+
714
+ #: bws_menu.php:575
715
+ msgid "Install this plugin"
716
+ msgstr "Menginstal plugin ini"
717
+
718
+ #: bws_menu.php:584
719
+ msgid "Nothing found. Try another criteria."
720
+ msgstr "Tidak ada yang ditemukan. Coba kriteria lain."
721
+
722
+ #: bws_menu.php:621 bws_menu.php:641
723
+ #, php-format
724
+ msgid "By %s"
725
+ msgstr "Oleh %s"
726
+
727
+ #: bws_menu.php:648
728
+ msgid "Already Installed"
729
+ msgstr "sudah Dipasang"
730
+
731
+ #: bws_menu.php:659
732
+ msgid "Browse Free WordPress Themes"
733
+ msgstr "Isi Gratis WordPress Themes"
734
+
735
+ #: bws_menu.php:668
736
+ msgid "Send to support"
737
+ msgstr "Kirim untuk mendukung"
738
+
739
+ #: bws_menu.php:675
740
+ msgid "Send to custom email &#187;"
741
+ msgstr "Kirim ke email khusus & # 187;"
742
+
743
+ #: class-bws-settings.php:135
744
+ msgid "Information"
745
+ msgstr "Informasi"
746
+
747
+ #: class-bws-settings.php:143
748
+ msgid "Inactive"
749
+ msgstr "non-aktif"
750
+
751
+ #: class-bws-settings.php:151
752
+ msgid "Expired"
753
+ msgstr "kedaluwarsa"
754
+
755
+ #: class-bws-settings.php:154
756
+ #, php-format
757
+ msgid "%s day(-s) left"
758
+ msgstr "%s hari (-s) kiri"
759
+
760
+ #: class-bws-settings.php:160
761
+ #, php-format
762
+ msgid "Expired on %s"
763
+ msgstr "Berakhir pada %s"
764
+
765
+ #: class-bws-settings.php:160
766
+ msgid "Renew Now"
767
+ msgstr "Perbarui sekarang"
768
+
769
+ #: class-bws-settings.php:162
770
+ msgid "Active"
771
+ msgstr "Aktif"
772
+
773
+ #: class-bws-settings.php:167
774
+ msgid "License"
775
+ msgstr "Lisensi"
776
+
777
+ #: class-bws-settings.php:170
778
+ msgid "Status"
779
+ msgstr "Status"
780
+
781
+ #: class-bws-settings.php:174
782
+ msgid "Version"
783
+ msgstr "Versi"
784
+
785
+ #: class-bws-settings.php:282
786
+ msgid "All plugin settings were restored."
787
+ msgstr "Semua pengaturan Plugin dipulihkan."
788
+
789
+ #: class-bws-settings.php:420
790
+ msgid "Custom Code"
791
+ msgstr "Kode kustom"
792
+
793
+ #: class-bws-settings.php:424 deprecated.php:497
794
+ msgid "You do not have sufficient permissions to edit plugins for this site."
795
+ msgstr ""
796
+ "Anda tidak memiliki cukup izin untuk menyunting plugin untuk situs ini."
797
+
798
+ #: class-bws-settings.php:429 deprecated.php:618
799
+ msgid "These styles will be added to the header on all pages of your site."
800
+ msgstr "Gaya ini akan ditambahkan ke header pada semua halaman situs Anda."
801
+
802
+ #: class-bws-settings.php:432 deprecated.php:620
803
+ #, php-format
804
+ msgid ""
805
+ "This PHP code will be hooked to the %s action and will be printed on front "
806
+ "end only."
807
+ msgstr ""
808
+ "Kode PHP ini akan ketagihan untuk %s tindakan dan akan dicetak pada ujung "
809
+ "depan saja."
810
+
811
+ #: class-bws-settings.php:435
812
+ msgid "These code will be added to the header on all pages of your site."
813
+ msgstr "Kode ini akan ditambahkan ke header pada semua halaman situs Anda."
814
+
815
+ #: class-bws-settings.php:443 deprecated.php:644
816
+ #, php-format
817
+ msgid ""
818
+ "You need to make this files writable before you can save your changes. See "
819
+ "%s the Codex %s for more information."
820
+ msgstr ""
821
+ "Anda perlu membuat file ini ditulis sebelum Anda dapat menyimpan perubahan. "
822
+ "Lihat %s Codex %s untuk informasi lebih lanjut."
823
+
824
+ #: class-bws-settings.php:453 deprecated.php:626
825
+ msgid "Browsing"
826
+ msgstr "Browsing"
827
+
828
+ #: class-bws-settings.php:457
829
+ #, php-format
830
+ msgid "Activate custom %s code."
831
+ msgstr "Aktifkan kustom %s kode."
832
+
833
+ #: class-bws-settings.php:464 deprecated.php:633
834
+ #, php-format
835
+ msgid "Learn more about %s"
836
+ msgstr "Pelajari lebih lanjut tentang %s"
837
+
838
+ #: class-bws-settings.php:524
839
+ msgid "Miscellaneous Settings"
840
+ msgstr "Pengaturan Miscellaneous"
841
+
842
+ #: class-bws-settings.php:533 class-bws-settings.php:584
843
+ #, php-format
844
+ msgid ""
845
+ "It is prohibited to change %s settings on this site in the %s network "
846
+ "settings."
847
+ msgstr ""
848
+ "Dilarang mengubah %s pengaturan di situs ini di %s pengaturan jaringan."
849
+
850
+ #: class-bws-settings.php:536 class-bws-settings.php:587
851
+ #, php-format
852
+ msgid ""
853
+ "It is prohibited to view %s settings on this site in the %s network settings."
854
+ msgstr "Dilarang melihat %s pengaturan di situs ini di %s pengaturan jaringan."
855
+
856
+ #: class-bws-settings.php:545
857
+ msgid "Pro Options"
858
+ msgstr "Pro Pilihan"
859
+
860
+ #: class-bws-settings.php:548
861
+ msgid "Enable to display plugin Pro options."
862
+ msgstr "Memungkinkan untuk menampilkan opsi Pro Plugin."
863
+
864
+ #: class-bws-settings.php:553
865
+ msgid "Track Usage"
866
+ msgstr "track Penggunaan"
867
+
868
+ #: class-bws-settings.php:556
869
+ msgid ""
870
+ "Enable to allow tracking plugin usage anonymously in order to make it better."
871
+ msgstr ""
872
+ "Aktifkan untuk memungkinkan pelacakan penggunaan Plugin anonim untuk "
873
+ "membuatnya lebih baik."
874
+
875
+ #: class-bws-settings.php:560
876
+ msgid "Default Settings"
877
+ msgstr "Pengaturan default"
878
+
879
+ #: class-bws-settings.php:562
880
+ msgid "Restore Settings"
881
+ msgstr "Kembalikan Pengaturan"
882
+
883
+ #: class-bws-settings.php:563
884
+ msgid "This will restore plugin settings to defaults."
885
+ msgstr "Ini akan mengembalikan pengaturan plugin untuk default."
886
+
887
+ #: class-bws-settings.php:575
888
+ msgid "Import / Export"
889
+ msgstr "Ekspor Impor"
890
+
891
+ #: class-bws-settings.php:691 class-bws-settings.php:724
892
+ #: class-bws-settings.php:746
893
+ msgid "License Key"
894
+ msgstr "Kunci lisensi"
895
+
896
+ #: class-bws-settings.php:714
897
+ msgid "Congratulations! Pro license is activated successfully."
898
+ msgstr "Selamat! lisensi Pro berhasil diaktifkan."
899
+
900
+ #: class-bws-settings.php:715
901
+ #, php-format
902
+ msgid "You will be automatically redirected to the %s in %s seconds."
903
+ msgstr ""
904
+
905
+ #: class-bws-settings.php:715
906
+ msgid "Settings page"
907
+ msgstr "halaman pengaturan"
908
+
909
+ #: class-bws-settings.php:730
910
+ #, php-format
911
+ msgid "Enter your license key to activate %s and get premium plugin features."
912
+ msgstr ""
913
+ "Masukkan kunci lisensi Anda untuk mengaktifkan %s dan mendapatkan fitur "
914
+ "Plugin premium."
915
+
916
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
917
+ #: deprecated.php:703
918
+ msgid ""
919
+ "Unfortunately, you have exceeded the number of available tries per day. "
920
+ "Please, upload the plugin manually."
921
+ msgstr ""
922
+ "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari. Silakan, "
923
+ "upload plugin secara manual."
924
+
925
+ #: class-bws-settings.php:736 deprecated.php:694
926
+ #, php-format
927
+ msgid "Start Your Free %s-Day Trial Now"
928
+ msgstr "Mulai Anda gratis %s -Day Percobaan Sekarang"
929
+
930
+ #: class-bws-settings.php:751
931
+ msgid ""
932
+ "If necessary, you can check if the license key is correct or reenter it in "
933
+ "the field below."
934
+ msgstr ""
935
+ "Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
936
+ "kembali ke dalam bidang di bawah."
937
+
938
+ #: class-bws-settings.php:756
939
+ msgid "Manage License Settings"
940
+ msgstr "Kelola Setelan License"
941
+
942
+ #: class-bws-settings.php:758
943
+ msgid "Login to Client Area"
944
+ msgstr "Login ke Area Klien"
945
+
946
+ #: class-bws-settings.php:760
947
+ msgid ""
948
+ "Manage active licenses, download BWS products, and view your payment history "
949
+ "using BestWebSoft Client Area."
950
+ msgstr ""
951
+ "Mengelola lisensi aktif, men-download produk BWS, dan melihat riwayat "
952
+ "pembayaran Anda menggunakan BestWebSoft Client Area."
953
+
954
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
955
+ #: deprecated.php:360
956
+ msgid "This license key is bound to another site."
957
+ msgstr "kunci lisensi ini terikat ke situs lain."
958
+
959
+ #: class-bws-settings.php:817 deprecated.php:143
960
+ msgid ""
961
+ "This license key is valid, but Your license has expired. If you want to "
962
+ "update our plugin in future, you should extend the license."
963
+ msgstr ""
964
+ "kunci lisensi ini berlaku, tetapi lisensi Anda telah kedaluwarsa. Jika Anda "
965
+ "ingin memperbarui plugin kami di masa depan, Anda harus memperpanjang "
966
+ "lisensi."
967
+
968
+ #: class-bws-settings.php:819 deprecated.php:145
969
+ msgid "Unfortunately, you have exceeded the number of available tries."
970
+ msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia."
971
+
972
+ #: class-bws-settings.php:821 deprecated.php:147
973
+ msgid ""
974
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
975
+ "The Pro Trial license can be installed only once."
976
+ msgstr ""
977
+ "Sayangnya, lisensi Percobaan Pro sudah dipasang untuk domain ini. Lisensi "
978
+ "Percobaan Pro dapat diinstal hanya sekali."
979
+
980
+ #: class-bws-settings.php:826 deprecated.php:151
981
+ msgid "The Pro Trial license key is valid."
982
+ msgstr "Kunci lisensi Percobaan Pro berlaku."
983
+
984
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
985
+ #, php-format
986
+ msgid ""
987
+ "In order to continue using the plugin it is necessary to buy a %s license."
988
+ msgstr ""
989
+ "Dalam rangka untuk terus menggunakan plugin perlu untuk membeli %s lisensi."
990
+
991
+ #: class-bws-settings.php:1031 deprecated.php:463
992
+ msgid "Please, enter Your license key"
993
+ msgstr "Silakan, masukkan kunci lisensi Anda"
994
+
995
+ #: class-bws-settings.php:1043
996
+ msgid "Need Help?"
997
+ msgstr "Butuh bantuan?"
998
+
999
+ #: class-bws-settings.php:1045
1000
+ msgid "Read the Instruction"
1001
+ msgstr "Baca Instruksi"
1002
+
1003
+ #: class-bws-settings.php:1049
1004
+ msgid "Watch the Video"
1005
+ msgstr "Saksikan Video"
1006
+
1007
+ #: class-bws-settings.php:1060
1008
+ msgid "Start Your Free Trial"
1009
+ msgstr "Mulai Uji Coba Gratis"
1010
+
1011
+ #: deprecated.php:93
1012
+ msgid "System Status"
1013
+ msgstr "Status sistem"
1014
+
1015
+ #: deprecated.php:204
1016
+ msgid "Please, enter your license key"
1017
+ msgstr "Silakan, masukkan kunci lisensi Anda"
1018
+
1019
+ #: deprecated.php:223
1020
+ msgid ""
1021
+ "If necessary, you can check if the license key is correct or reenter it in "
1022
+ "the field below. You can find your license key on your personal page - "
1023
+ "Client Area - on our website"
1024
+ msgstr ""
1025
+ "Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
1026
+ "kembali ke dalam bidang di bawah. Anda dapat menemukan kunci lisensi Anda "
1027
+ "pada halaman pribadi Anda - Area Klien - di website kami"
1028
+
1029
+ #: deprecated.php:223
1030
+ msgid ""
1031
+ "(your username is the email address specified during the purchase). If "
1032
+ "necessary, please submit \"Lost your password?\" request."
1033
+ msgstr ""
1034
+ "(Nama pengguna adalah alamat email yang ditentukan selama pembelian). Jika "
1035
+ "perlu, silahkan pilih \\ \"Kehilangan kata sandi Anda? \" Permintaan."
1036
+
1037
+ #: deprecated.php:247
1038
+ msgid "After that, you can activate it by entering your license key."
1039
+ msgstr ""
1040
+ "Setelah itu, Anda dapat mengaktifkannya dengan memasukkan kunci lisensi Anda."
1041
+
1042
+ #: deprecated.php:249 deprecated.php:688
1043
+ msgid "License key can be found in the"
1044
+ msgstr "kunci lisensi dapat ditemukan di"
1045
+
1046
+ #: deprecated.php:251 deprecated.php:690
1047
+ msgid "(your username is the email address specified during the purchase)."
1048
+ msgstr "(Nama pengguna adalah alamat email yang ditentukan selama pembelian)."
1049
+
1050
+ #: deprecated.php:278
1051
+ msgid ""
1052
+ "Congratulations! The Pro license of the plugin is activated successfully."
1053
+ msgstr "Selamat! Lisensi Pro plugin tersebut berhasil diaktifkan."
1054
+
1055
+ #: deprecated.php:280 deprecated.php:669
1056
+ msgid "Please, go to"
1057
+ msgstr "Tolong, pergi ke"
1058
+
1059
+ #: deprecated.php:280 deprecated.php:669
1060
+ msgid "the setting page"
1061
+ msgstr "halaman pengaturan"
1062
+
1063
+ #: deprecated.php:281 deprecated.php:670
1064
+ msgid "You will be redirected automatically in 5 seconds."
1065
+ msgstr "Anda akan diarahkan secara otomatis dalam 5 detik."
1066
+
1067
+ #: deprecated.php:315
1068
+ msgid "Check premium options on the plugin settings page!"
1069
+ msgstr "Periksa pilihan premium di halaman pengaturan plugin!"
1070
+
1071
+ #: deprecated.php:478
1072
+ msgid "Restore all plugin settings to defaults"
1073
+ msgstr "Mengembalikan semua pengaturan plugin untuk default"
1074
+
1075
+ #: deprecated.php:480
1076
+ msgid "Restore settings"
1077
+ msgstr "mengembalikan pengaturan"
1078
+
1079
+ #: deprecated.php:548 deprecated.php:575
1080
+ #, php-format
1081
+ msgid "File %s edited successfully."
1082
+ msgstr "File %s berhasil diedit."
1083
+
1084
+ #: deprecated.php:550 deprecated.php:577
1085
+ msgid "Not enough permissions to create or update the file"
1086
+ msgstr "Tidak cukup izin untuk membuat atau memperbarui file"
1087
+
1088
+ #: deprecated.php:580
1089
+ msgid "Not enough permissions to create the file"
1090
+ msgstr "Tidak cukup izin untuk membuat file"
1091
+
1092
+ #: deprecated.php:624
1093
+ msgid "Editing"
1094
+ msgstr "editing"
1095
+
1096
+ #: deprecated.php:667
1097
+ msgid ""
1098
+ "Congratulations! Pro version of the plugin is installed and activated "
1099
+ "successfully."
1100
+ msgstr "Selamat! Versi Pro plugin diinstal dan diaktifkan berhasil."
1101
+
1102
+ #: deprecated.php:677
1103
+ msgid "Show Pro features"
1104
+ msgstr "Tampilkan fitur Pro"
1105
+
1106
+ #: deprecated.php:684
1107
+ msgid "Enter your license key to install and activate"
1108
+ msgstr "Masukkan kunci lisensi Anda untuk menginstal dan mengaktifkan"
1109
+
1110
+ #: deprecated.php:686
1111
+ msgid "version of the plugin."
1112
+ msgstr "versi plugin."
1113
+
1114
+ #: product_list.php:7
1115
+ msgid "Admin Tools"
1116
+ msgstr ""
1117
+
1118
+ #: product_list.php:8
1119
+ msgid "Content"
1120
+ msgstr ""
1121
+
1122
+ #: product_list.php:9
1123
+ msgid "eCommerce"
1124
+ msgstr ""
1125
+
1126
+ #: product_list.php:10
1127
+ msgid "Marketing"
1128
+ msgstr ""
1129
+
1130
+ #: product_list.php:11
1131
+ msgid "Navigation"
1132
+ msgstr ""
1133
+
1134
+ #: product_list.php:12
1135
+ msgid "Recommended"
1136
+ msgstr "Direkomendasikan"
1137
+
1138
+ #: product_list.php:13
1139
+ msgid "Security"
1140
+ msgstr "Keamanan"
1141
+
1142
+ #: product_list.php:14
1143
+ msgid "SEO"
1144
+ msgstr ""
1145
+
1146
+ #: product_list.php:15
1147
+ msgid "SMM"
1148
+ msgstr ""
1149
+
1150
+ #: product_list.php:22
1151
+ msgid ""
1152
+ "Protect WordPress website forms from spam entries by means of math logic."
1153
+ msgstr ""
1154
+
1155
+ #: product_list.php:32
1156
+ msgid "Create your personal car rental/booking and reservation website."
1157
+ msgstr ""
1158
+
1159
+ #: product_list.php:42
1160
+ msgid ""
1161
+ "Allow customers to reach you using secure contact form plugin any website "
1162
+ "must have."
1163
+ msgstr ""
1164
+
1165
+ #: product_list.php:52
1166
+ msgid "Add unlimited number of contact forms to WordPress website."
1167
+ msgstr ""
1168
+
1169
+ #: product_list.php:62
1170
+ msgid "Save and manage Contact Form messages. Never lose important data."
1171
+ msgstr ""
1172
+
1173
+ #: product_list.php:72
1174
+ msgid "Add unlimited custom pages to WordPress admin dashboard."
1175
+ msgstr ""
1176
+
1177
+ #: product_list.php:79
1178
+ msgid "Add custom fields to WordPress website search results."
1179
+ msgstr ""
1180
+
1181
+ #: product_list.php:86
1182
+ msgid ""
1183
+ "Add custom post types and taxonomies to WordPress website search results."
1184
+ msgstr ""
1185
+
1186
+ #: product_list.php:96
1187
+ msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1188
+ msgstr ""
1189
+
1190
+ #: product_list.php:103
1191
+ msgid ""
1192
+ "Automatically add outgoing email messages to queue instead of sending them "
1193
+ "immediately."
1194
+ msgstr ""
1195
+
1196
+ #: product_list.php:110
1197
+ msgid ""
1198
+ "Get latest error log messages to diagnose website problems. Define and fix "
1199
+ "issues faster."
1200
+ msgstr ""
1201
+
1202
+ #: product_list.php:117
1203
+ msgid ""
1204
+ "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1205
+ "widgets."
1206
+ msgstr ""
1207
+
1208
+ #: product_list.php:127
1209
+ msgid ""
1210
+ "Add beautiful galleries, albums & images to your WordPress website in a few "
1211
+ "clicks."
1212
+ msgstr ""
1213
+
1214
+ #: product_list.php:137
1215
+ msgid ""
1216
+ "Add unlimited gallery categories. Organize images to make the navigation "
1217
+ "through content easier."
1218
+ msgstr ""
1219
+
1220
+ #: product_list.php:144
1221
+ msgid ""
1222
+ "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1223
+ "posts, pages and widgets."
1224
+ msgstr ""
1225
+
1226
+ #: product_list.php:154
1227
+ msgid ""
1228
+ "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1229
+ "results, categories, tags, and widgets."
1230
+ msgstr ""
1231
+
1232
+ #: product_list.php:164
1233
+ msgid "Add Google Analytics code to WordPress website and track basic stats."
1234
+ msgstr ""
1235
+
1236
+ #: product_list.php:174
1237
+ msgid ""
1238
+ "Protect WordPress website forms from spam entries with Google Captcha "
1239
+ "(reCaptcha)."
1240
+ msgstr ""
1241
+
1242
+ #: product_list.php:184
1243
+ msgid "Add customized Google maps to WordPress posts, pages and widgets."
1244
+ msgstr ""
1245
+
1246
+ #: product_list.php:194
1247
+ msgid ""
1248
+ "Generate and add XML sitemap to WordPress website. Help search engines index "
1249
+ "your blog."
1250
+ msgstr ""
1251
+
1252
+ #: product_list.php:204
1253
+ msgid ""
1254
+ "Replace external WordPress website links with Google shortlinks and track "
1255
+ "click stats."
1256
+ msgstr ""
1257
+
1258
+ #: product_list.php:211
1259
+ msgid ""
1260
+ "Protect WordPress website – allow and deny access for certain IP addresses, "
1261
+ "hostnames, etc."
1262
+ msgstr ""
1263
+
1264
+ #: product_list.php:221
1265
+ msgid ""
1266
+ "Create your personal job board and listing WordPress website. Search jobs, "
1267
+ "submit CV/resumes, choose candidates."
1268
+ msgstr ""
1269
+
1270
+ #: product_list.php:228
1271
+ msgid ""
1272
+ "Protect WordPress website against brute force attacks. Limit rate of login "
1273
+ "attempts."
1274
+ msgstr ""
1275
+
1276
+ #: product_list.php:238
1277
+ msgid ""
1278
+ "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1279
+ "5 plugins included – profile, insider, etc."
1280
+ msgstr ""
1281
+
1282
+ #: product_list.php:248
1283
+ msgid ""
1284
+ "Translate WordPress website content to other languages manually. Create "
1285
+ "multilingual pages, posts, widgets, menus, etc."
1286
+ msgstr ""
1287
+
1288
+ #: product_list.php:258
1289
+ msgid ""
1290
+ "Add customizable pagination to WordPress website. Split long content to "
1291
+ "multiple pages for better navigation."
1292
+ msgstr ""
1293
+
1294
+ #: product_list.php:268
1295
+ msgid ""
1296
+ "Generate PDF files and print WordPress posts/pages. Customize document "
1297
+ "header/footer styles and appearance."
1298
+ msgstr ""
1299
+
1300
+ #: product_list.php:278
1301
+ msgid ""
1302
+ "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1303
+ "Profile) to WordPress posts, pages and widgets."
1304
+ msgstr ""
1305
+
1306
+ #: product_list.php:288
1307
+ msgid ""
1308
+ "Create your personal portfolio WordPress website. Manage and showcase past "
1309
+ "projects to get more clients."
1310
+ msgstr ""
1311
+
1312
+ #: product_list.php:298
1313
+ msgid "Export WordPress posts to CSV file format easily. Configure data order."
1314
+ msgstr ""
1315
+
1316
+ #: product_list.php:305
1317
+ msgid ""
1318
+ "Add extra fields to default WordPress user profile. The easiest way to "
1319
+ "create and manage additional custom values."
1320
+ msgstr ""
1321
+
1322
+ #: product_list.php:312
1323
+ msgid ""
1324
+ "Add and display HTML advertisement banner on WordPress website. Customize "
1325
+ "bar styles and appearance."
1326
+ msgstr ""
1327
+
1328
+ #: product_list.php:322
1329
+ msgid ""
1330
+ "Add customizable quotes and tips blocks to WordPress posts, pages and "
1331
+ "widgets."
1332
+ msgstr ""
1333
+
1334
+ #: product_list.php:329
1335
+ msgid ""
1336
+ "Add rating plugin to your WordPress website to receive feedback from your "
1337
+ "customers."
1338
+ msgstr ""
1339
+
1340
+ #: product_list.php:336
1341
+ msgid ""
1342
+ "Create your personal real estate WordPress website. Sell, rent and buy "
1343
+ "properties. Add, search and browse listings easily."
1344
+ msgstr ""
1345
+
1346
+ #: product_list.php:346
1347
+ msgid ""
1348
+ "Attach, un-attach and re-attach media files quickly to WordPress posts and "
1349
+ "pages."
1350
+ msgstr ""
1351
+
1352
+ #: product_list.php:353
1353
+ msgid ""
1354
+ "Add related, featured, latest, and popular posts to your WordPress website. "
1355
+ "Connect your blog readers with a relevant content."
1356
+ msgstr ""
1357
+
1358
+ #: product_list.php:360
1359
+ msgid ""
1360
+ "Send bulk email messages to WordPress users. Custom templates, advanced "
1361
+ "settings and detailed reports."
1362
+ msgstr ""
1363
+
1364
+ #: product_list.php:370
1365
+ msgid ""
1366
+ "The best responsive slider plugin for your WordPress website. Create "
1367
+ "beautifully animated slides just in a few clicks."
1368
+ msgstr ""
1369
+
1370
+ #: product_list.php:377
1371
+ msgid ""
1372
+ "Configure SMTP server to receive email messages from WordPress to Gmail, "
1373
+ "Yahoo, Hotmail and other services."
1374
+ msgstr ""
1375
+
1376
+ #: product_list.php:384
1377
+ msgid ""
1378
+ "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1379
+ "FB, Twitter, G+1, Pinterest, LinkedIn."
1380
+ msgstr ""
1381
+
1382
+ #: product_list.php:394
1383
+ msgid ""
1384
+ "Add social media login, registration, and commenting to your WordPress "
1385
+ "website."
1386
+ msgstr ""
1387
+
1388
+ #: product_list.php:401
1389
+ msgid ""
1390
+ "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1391
+ "Collect data and subscribe your users."
1392
+ msgstr ""
1393
+
1394
+ #: product_list.php:411
1395
+ msgid ""
1396
+ "Add testimonials and feedbacks from your customers to WordPress website "
1397
+ "posts, pages, and widgets."
1398
+ msgstr ""
1399
+
1400
+ #: product_list.php:418
1401
+ msgid ""
1402
+ "Best timesheet plugin for WordPress. Track employee time, streamline "
1403
+ "attendance and generate reports."
1404
+ msgstr ""
1405
+
1406
+ #: product_list.php:428
1407
+ msgid ""
1408
+ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1409
+ "and pages."
1410
+ msgstr ""
1411
+
1412
+ #: product_list.php:438
1413
+ msgid ""
1414
+ "Automatically check and update WordPress website core with all installed "
1415
+ "plugins and themes to the latest versions."
1416
+ msgstr ""
1417
+
1418
+ #: product_list.php:448
1419
+ msgid ""
1420
+ "Powerful user role management plugin for WordPress website. Create, edit, "
1421
+ "copy, and delete user roles."
1422
+ msgstr ""
1423
+
1424
+ #: product_list.php:458
1425
+ msgid ""
1426
+ "Display live count of online visitors who are currently browsing your "
1427
+ "WordPress website."
1428
+ msgstr ""
1429
+
1430
+ #: product_list.php:468
1431
+ msgid ""
1432
+ "Backup and export Zendesk Help Center content automatically to your "
1433
+ "WordPress website database."
1434
+ msgstr ""
1435
+
1436
+ #~ msgid "Advertisement"
1437
+ #~ msgstr "Iklan"
1438
+
1439
+ #~ msgid "Content & Media"
1440
+ #~ msgstr "Content & Media"
1441
+
1442
+ #~ msgid "Management"
1443
+ #~ msgstr "Pengelolaan"
1444
+
1445
+ #~ msgid "Site Stats"
1446
+ #~ msgstr "Statistik situs"
1447
+
1448
+ #~ msgid "Social"
1449
+ #~ msgstr "Sosial"
1450
+
1451
+ #~ msgid "Utilities"
1452
+ #~ msgstr "keperluan"
1453
+
1454
+ #~ msgid "Other"
1455
+ #~ msgstr "Lain"
1456
+
1457
+ #~ msgid "Thank you for installing"
1458
+ #~ msgstr "Terima kasih untuk menginstal"
1459
+
1460
+ #~ msgid "Thank you for choosing"
1461
+ #~ msgstr "Terima kasih telah memilih"
1462
+
1463
+ #~ msgid "PHP Safe Mode"
1464
+ #~ msgstr "PHP Safe Mode"
1465
+
1466
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1467
+ #~ msgstr "Anda akan secara otomatis diarahkan ke %s dalam 7 detik."
1468
+
1469
+ #~ msgid "You license for"
1470
+ #~ msgstr "Anda lisensi untuk"
1471
+
1472
+ #~ msgid "expires on"
1473
+ #~ msgstr "Kadaluarsa pada"
1474
+
1475
+ #~ msgid "This license key is bind to another site"
1476
+ #~ msgstr "kunci lisensi ini mengikat ke situs lain"
1477
+
1478
+ #~ msgid "Successfully installed the plugin"
1479
+ #~ msgstr "Berhasil menginstal plugin"
1480
+
1481
+ #~ msgid "Please, go to %s"
1482
+ #~ msgstr "Silakan, pergi ke %s"
1483
+
1484
+ #~ msgid "Client Area"
1485
+ #~ msgstr "area klien"
1486
+
1487
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1488
+ #~ msgstr ""
1489
+ #~ "Jika Anda menikmati plugin kami, silakan memberikan 5 bintang pada "
1490
+ #~ "WordPress"
1491
+
1492
+ #~ msgid "If there is something wrong about it, please contact us"
1493
+ #~ msgstr "Jika ada sesuatu yang salah tentang hal itu, silahkan hubungi kami"
1494
+
1495
+ #~ msgid "Donations play an important role in supporting great projects"
1496
+ #~ msgstr ""
1497
+ #~ "Sumbangan memainkan peran penting dalam mendukung proyek-proyek besar"
1498
+
1499
+ #~ msgid "WordPress Version"
1500
+ #~ msgstr "WordPress Versi"
1501
+
1502
+ #~ msgid "Activate Membership"
1503
+ #~ msgstr "Aktifkan Keanggotaan"
1504
+
1505
+ #~ msgid "Don’t have valid license key yet?"
1506
+ #~ msgstr "Tidak memiliki kunci lisensi yang valid belum?"
1507
+
1508
+ #~ msgid ""
1509
+ #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
1510
+ #~ "plugins on a single website %s for only %s per month."
1511
+ #~ msgstr ""
1512
+ #~ "Bergabung BestWebSoft Pro Keanggotaan hari ini, membatalkan setiap saat "
1513
+ #~ "dan menggunakan semua plugin pada situs Web %s hanya %s per bulan."
1514
+
1515
+ #~ msgid "My Account"
1516
+ #~ msgstr "Akun saya"
1517
+
1518
+ #~ msgid "Go"
1519
+ #~ msgstr "Pergi"
1520
+
1521
+ #~ msgid "DONATE"
1522
+ #~ msgstr "MENYUMBANGKAN"
1523
+
1524
+ #~ msgid "Recommended plugins"
1525
+ #~ msgstr "plugin direkomendasikan"
1526
+
1527
+ #~ msgid "Install now"
1528
+ #~ msgstr "Pasang sekarang"
1529
+
1530
+ #~ msgid "Configure Settings"
1531
+ #~ msgstr "Konfigurasi Pengaturan"
1532
+
1533
+ #~ msgid "Try again"
1534
+ #~ msgstr "Coba lagi"
1535
+
1536
+ #~ msgid "Preview &#8220;%s&#8221;"
1537
+ #~ msgstr "Preview & # 8220; %s & # 8221;"
1538
+
1539
+ #~ msgid "Install %s"
1540
+ #~ msgstr "Menginstal %s"
1541
+
1542
+ #~ msgid "Update"
1543
+ #~ msgstr "Memperbarui"
1544
+
1545
+ #~ msgid "Preview %s"
1546
+ #~ msgstr "Preview %s"
1547
+
1548
+ #~ msgid "Preview"
1549
+ #~ msgstr "Preview"
1550
+
1551
+ #~ msgid "You can download and activate"
1552
+ #~ msgstr "Anda dapat men-download dan mengaktifkan"
1553
+
1554
+ #~ msgid "version of this plugin by entering Your license key."
1555
+ #~ msgstr "versi plugin ini dengan memasukkan kunci lisensi Anda."
1556
+
1557
+ #~ msgid ""
1558
+ #~ "You can find your license key on your personal page Client area, by "
1559
+ #~ "clicking on the link"
1560
+ #~ msgstr ""
1561
+ #~ "Anda dapat menemukan kunci lisensi di daerah Klien halaman pribadi Anda, "
1562
+ #~ "dengan mengklik pada link"
1563
+
1564
+ #~ msgid ""
1565
+ #~ "(your username is the email you specify when purchasing the product), "
1566
+ #~ "where you can make the necessary changes."
1567
+ #~ msgstr ""
1568
+ #~ "(Username Anda adalah email yang Anda tentukan ketika membeli produk), di "
1569
+ #~ "mana Anda dapat membuat perubahan yang diperlukan."
1570
+
1571
+ #~ msgid "Switch to new interface"
1572
+ #~ msgstr "Beralih ke antarmuka baru"
1573
+
1574
+ #~ msgid "Activated plugins"
1575
+ #~ msgstr "plugin diaktifkan"
1576
+
1577
+ #~ msgid "Read more"
1578
+ #~ msgstr "Baca lebih banyak"
1579
+
1580
+ #~ msgid "Purchase"
1581
+ #~ msgstr "Membeli"
1582
+
1583
+ #~ msgid "Free plugins"
1584
+ #~ msgstr "plugin gratis"
1585
+
1586
+ #~ msgid "Download"
1587
+ #~ msgstr "Download"
1588
+
1589
+ #~ msgid "Install now from wordpress.org"
1590
+ #~ msgstr "Instal sekarang dari wordpress.org"
1591
+
1592
+ #~ msgid "Free themes"
1593
+ #~ msgstr "Free tema"
1594
+
1595
+ #~ msgid "Customize &#8220;%s&#8221;"
1596
+ #~ msgstr "Sesuaikan & # 8220; %s & # 8221;"
1597
+
1598
+ #~ msgid "Installed themes"
1599
+ #~ msgstr "tema diinstal"
1600
+
1601
+ #~ msgid "Recommended themes"
1602
+ #~ msgstr "tema direkomendasikan"
1603
+
1604
+ #~ msgid "Switch to old interface"
1605
+ #~ msgstr "Beralih ke antarmuka lama"
1606
+
1607
+ #~ msgid "installed"
1608
+ #~ msgstr "diinstal"
1609
+
1610
+ #~ msgid "Contact Form"
1611
+ #~ msgstr "formulir kontak"
1612
+
1613
+ #~ msgid "Contact Form Pro Extra Settings"
1614
+ #~ msgstr "Hubungi Form Extra Settings Pro"
1615
+
1616
+ #~ msgid "Contact Form Pro"
1617
+ #~ msgstr "Kontak Form Pro"
1618
+
1619
+ #~ msgid "Name:"
1620
+ #~ msgstr "Nama:"
1621
+
1622
+ #~ msgid "Address:"
1623
+ #~ msgstr "Alamat:"
1624
+
1625
+ #~ msgid "Email Address:"
1626
+ #~ msgstr "Alamat email:"
1627
+
1628
+ #~ msgid "Phone number:"
1629
+ #~ msgstr "Nomor telepon:"
1630
+
1631
+ #~ msgid "Subject:"
1632
+ #~ msgstr "Subyek:"
1633
+
1634
+ #~ msgid "Message:"
1635
+ #~ msgstr "Pesan:"
1636
+
1637
+ #~ msgid "Attachment:"
1638
+ #~ msgstr "Lampiran:"
1639
+
1640
+ #~ msgid "Send me a copy"
1641
+ #~ msgstr "Kirimkan saya salinan"
1642
+
1643
+ #~ msgid "Submit"
1644
+ #~ msgstr "Menyerahkan"
1645
+
1646
+ #~ msgid "Your name is required."
1647
+ #~ msgstr "Nama Anda diperlukan."
1648
+
1649
+ #~ msgid "Address is required."
1650
+ #~ msgstr "Alamat diperlukan."
1651
+
1652
+ #~ msgid "A valid email address is required."
1653
+ #~ msgstr "Sebuah alamat email yang valid diperlukan."
1654
+
1655
+ #~ msgid "Phone number is required."
1656
+ #~ msgstr "Nomor telepon diperlukan."
1657
+
1658
+ #~ msgid "Subject is required."
1659
+ #~ msgstr "Subjek diperlukan."
1660
+
1661
+ #~ msgid "Message text is required."
1662
+ #~ msgstr "Pesan teks diperlukan."
1663
+
1664
+ #~ msgid "File format is not valid."
1665
+ #~ msgstr "Format file tidak valid."
1666
+
1667
+ #~ msgid "File upload error."
1668
+ #~ msgstr "Berkas kesalahan upload."
1669
+
1670
+ #~ msgid "The file could not be uploaded."
1671
+ #~ msgstr "file tidak bisa di-upload."
1672
+
1673
+ #~ msgid "This file is too large."
1674
+ #~ msgstr "File ini terlalu besar."
1675
+
1676
+ #~ msgid "Please fill out the CAPTCHA."
1677
+ #~ msgstr "Silahkan mengisi CAPTCHA."
1678
+
1679
+ #~ msgid "Please make corrections below and try again."
1680
+ #~ msgstr "Silakan melakukan koreksi di bawah ini dan coba lagi."
1681
+
1682
+ #~ msgid ""
1683
+ #~ "If the 'Redirect to page' option is selected then the URL field should be "
1684
+ #~ "in the following format"
1685
+ #~ msgstr ""
1686
+ #~ "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url "
1687
+ #~ "doit être rempli avec le format suivant"
1688
+
1689
+ #~ msgid "Such user does not exist. Settings are not saved."
1690
+ #~ msgstr "pengguna tersebut tidak ada. Setelan tidak disimpan."
1691
+
1692
+ #~ msgid ""
1693
+ #~ "Please enter a valid email address in the 'FROM' field. Settings are not "
1694
+ #~ "saved."
1695
+ #~ msgstr ""
1696
+ #~ "Silakan masukkan alamat email yang valid di bidang 'DARI'. Setelan tidak "
1697
+ #~ "disimpan."
1698
+
1699
+ #~ msgid ""
1700
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1701
+ #~ "paste this shortcode to your post or page or widget:"
1702
+ #~ msgstr ""
1703
+ #~ "Jika Anda ingin menambahkan Form Kontak ke website Anda, hanya copy dan "
1704
+ #~ "paste shortcode ini untuk posting atau halaman atau widget:"
1705
+
1706
+ #~ msgid ""
1707
+ #~ "If you leave the fields empty, the messages will be sent to the email "
1708
+ #~ "address specified during registration."
1709
+ #~ msgstr ""
1710
+ #~ "Jika Anda meninggalkan bidang kosong, pesan akan dikirim ke alamat email "
1711
+ #~ "yang ditentukan saat pendaftaran."
1712
+
1713
+ #~ msgid "The user's email address:"
1714
+ #~ msgstr "alamat email pengguna:"
1715
+
1716
+ #~ msgid "Create a username"
1717
+ #~ msgstr "Membuat username"
1718
+
1719
+ #~ msgid ""
1720
+ #~ "Enter a username of the person who should get the messages from the "
1721
+ #~ "contact form."
1722
+ #~ msgstr ""
1723
+ #~ "Masukkan username dari orang yang harus mendapatkan pesan dari formulir "
1724
+ #~ "kontak."
1725
+
1726
+ #~ msgid "Use this email address:"
1727
+ #~ msgstr "Gunakan alamat email ini:"
1728
+
1729
+ #~ msgid "Enter the email address you want the messages forwarded to."
1730
+ #~ msgstr "Masukkan alamat email Anda ingin pesan diteruskan ke."
1731
+
1732
+ #~ msgid "Additional options"
1733
+ #~ msgstr "Opsi tambahan"
1734
+
1735
+ #~ msgid "What to use?"
1736
+ #~ msgstr "Apa yang harus digunakan?"
1737
+
1738
+ #~ msgid "Wp-mail"
1739
+ #~ msgstr "Wp-mail"
1740
+
1741
+ #~ msgid "You can use the wp_mail function for mailing"
1742
+ #~ msgstr "Anda dapat menggunakan fungsi wp_mail untuk mailing"
1743
+
1744
+ #~ msgid "Mail"
1745
+ #~ msgstr "Surat"
1746
+
1747
+ #~ msgid "To send mail you can use the php mail function"
1748
+ #~ msgstr "Untuk mengirim email Anda dapat menggunakan fungsi php mail"
1749
+
1750
+ #~ msgid "Change text of the 'FROM' field"
1751
+ #~ msgstr "Perubahan teks dari bidang 'DARI'"
1752
+
1753
+ #~ msgid "Enter the email address in the 'From' field"
1754
+ #~ msgstr "Masukkan alamat email di bidang 'Dari'"
1755
+
1756
+ #~ msgid "User email"
1757
+ #~ msgstr "email pengguna"
1758
+
1759
+ #~ msgid ""
1760
+ #~ "The email address of the user who fills the form will be used in the "
1761
+ #~ "field 'From'."
1762
+ #~ msgstr ""
1763
+ #~ "Alamat email pengguna yang mengisi form akan digunakan dalam bidang "
1764
+ #~ "'Dari'."
1765
+
1766
+ #~ msgid "This email address will be used in the 'From' field."
1767
+ #~ msgstr "Alamat email ini akan digunakan dalam bidang 'Dari'."
1768
+
1769
+ #~ msgid "Display fields"
1770
+ #~ msgstr "bidang tampilan"
1771
+
1772
+ #~ msgid "Address"
1773
+ #~ msgstr "Alamat"
1774
+
1775
+ #~ msgid "Phone"
1776
+ #~ msgstr "Telepon"
1777
+
1778
+ #~ msgid "Attachment block"
1779
+ #~ msgstr "blok lampiran"
1780
+
1781
+ #~ msgid "Users can attach the following file formats"
1782
+ #~ msgstr "Pengguna dapat melampirkan format file berikut"
1783
+
1784
+ #~ msgid "Captcha"
1785
+ #~ msgstr "captcha"
1786
+
1787
+ #~ msgid "(powered by bestwebsoft.com)"
1788
+ #~ msgstr "(Didukung oleh bestwebsoft.com)"
1789
+
1790
+ #~ msgid "Download captcha"
1791
+ #~ msgstr "Download captcha"
1792
+
1793
+ #~ msgid "Display tips below the Attachment block"
1794
+ #~ msgstr "kiat tampilan di bawah blok Lampiran"
1795
+
1796
+ #~ msgid "Display 'Send me a copy' block"
1797
+ #~ msgstr "Menampilkan 'Kirimkan saya salinan' block"
1798
+
1799
+ #~ msgid "Name"
1800
+ #~ msgstr "Nama"
1801
+
1802
+ #~ msgid "Email Address"
1803
+ #~ msgstr "Alamat email"
1804
+
1805
+ #~ msgid "Subject"
1806
+ #~ msgstr "Subyek"
1807
+
1808
+ #~ msgid "Message"
1809
+ #~ msgstr "Pesan"
1810
+
1811
+ #~ msgid "Display additional info in the email"
1812
+ #~ msgstr "Menampilkan info tambahan dalam email"
1813
+
1814
+ #~ msgid "Sent from (ip address)"
1815
+ #~ msgstr "Dikirim dari (alamat ip)"
1816
+
1817
+ #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
1818
+ #~ msgstr "Contoh: Dikirim dari (alamat IP): \\ t127.0.0.1"
1819
+
1820
+ #~ msgid "Date/Time"
1821
+ #~ msgstr "Tanggal Waktu"
1822
+
1823
+ #~ msgid "Sent from (referer)"
1824
+ #~ msgstr "Dikirim dari (referer)"
1825
+
1826
+ #~ msgid "Using (user agent)"
1827
+ #~ msgstr "Menggunakan (agen pengguna)"
1828
+
1829
+ #~ msgid "Language settings for the field names in the form"
1830
+ #~ msgstr "Pengaturan bahasa untuk nama field dalam bentuk"
1831
+
1832
+ #~ msgid "Add a language"
1833
+ #~ msgstr "Menambahkan bahasa"
1834
+
1835
+ #~ msgid "Change the names of the contact form fields and error messages"
1836
+ #~ msgstr "Mengubah nama-nama kolom formulir kontak dan pesan kesalahan"
1837
+
1838
+ #~ msgid "English"
1839
+ #~ msgstr "Inggris"
1840
+
1841
+ #~ msgid "Error message for the Name field"
1842
+ #~ msgstr "pesan kesalahan untuk bidang Nama"
1843
+
1844
+ #~ msgid "Error message for the Address field"
1845
+ #~ msgstr "pesan kesalahan untuk bidang Alamat"
1846
+
1847
+ #~ msgid "Error message for the Email field"
1848
+ #~ msgstr "pesan kesalahan untuk bidang Email"
1849
+
1850
+ #~ msgid "Error message for the Phone field"
1851
+ #~ msgstr "pesan kesalahan untuk bidang Telepon"
1852
+
1853
+ #~ msgid "Error message for the Subject field"
1854
+ #~ msgstr "pesan kesalahan untuk kolom Subyek"
1855
+
1856
+ #~ msgid "Error message for the Message field"
1857
+ #~ msgstr "pesan kesalahan untuk bidang Pesan"
1858
+
1859
+ #~ msgid "Error message about the file type for the Attachment field"
1860
+ #~ msgstr "pesan kesalahan tentang jenis file untuk bidang Lampiran"
1861
+
1862
+ #~ msgid ""
1863
+ #~ "Error message while uploading a file for the Attachment field to the "
1864
+ #~ "server"
1865
+ #~ msgstr ""
1866
+ #~ "pesan kesalahan saat mengunggah file untuk bidang Lampiran ke server"
1867
+
1868
+ #~ msgid "Error message while moving the file for the Attachment field"
1869
+ #~ msgstr "pesan kesalahan saat memindahkan file untuk bidang Lampiran"
1870
+
1871
+ #~ msgid ""
1872
+ #~ "Error message when file size limit for the Attachment field is exceeded"
1873
+ #~ msgstr "Pesan galat saat batas ukuran file untuk bidang Lampiran terlampaui"
1874
+
1875
+ #~ msgid "Error message for the Captcha field"
1876
+ #~ msgstr "pesan kesalahan untuk bidang Captcha"
1877
+
1878
+ #~ msgid "Error message for the whole form"
1879
+ #~ msgstr "pesan kesalahan untuk seluruh bentuk"
1880
+
1881
+ #~ msgid "for this language"
1882
+ #~ msgstr "untuk bahasa ini"
1883
+
1884
+ #~ msgid "Action after email is sent"
1885
+ #~ msgstr "Tindakan setelah email dikirim"
1886
+
1887
+ #~ msgid "Display text"
1888
+ #~ msgstr "menampilkan teks"
1889
+
1890
+ #~ msgid "Text"
1891
+ #~ msgstr "Teks"
1892
+
1893
+ #~ msgid "Url"
1894
+ #~ msgstr "url"
1895
+
1896
+ #~ msgid "Contact Form Pro | Extra Settings"
1897
+ #~ msgstr "Hubungi Formulir Pro | Pengaturan tambahan"
1898
+
1899
+ #~ msgid ""
1900
+ #~ "This functionality is available in the Pro version of the plugin. For "
1901
+ #~ "more details, please follow the link"
1902
+ #~ msgstr ""
1903
+ #~ "Fungsi ini tersedia dalam versi Pro plugin. Untuk lebih jelasnya, "
1904
+ #~ "silahkan ikuti link"
1905
+
1906
+ #~ msgid "Errors output"
1907
+ #~ msgstr "kesalahan keluaran"
1908
+
1909
+ #~ msgid "Display error messages"
1910
+ #~ msgstr "pesan kesalahan tampilan"
1911
+
1912
+ #~ msgid "Color of the input field errors."
1913
+ #~ msgstr "Warna kesalahan field input."
1914
+
1915
+ #~ msgid "Display error messages & color of the input field errors"
1916
+ #~ msgstr "pesan kesalahan display & warna kesalahan field input"
1917
+
1918
+ #~ msgid "Add placeholder to the input blocks"
1919
+ #~ msgstr "Menambahkan placeholder ke blok masukan"
1920
+
1921
+ #~ msgid "Add tooltips"
1922
+ #~ msgstr "Tambahkan tooltips"
1923
+
1924
+ #~ msgid "Email address"
1925
+ #~ msgstr "Alamat email"
1926
+
1927
+ #~ msgid "Phone Number"
1928
+ #~ msgstr "Nomor telepon"
1929
+
1930
+ #~ msgid "Attachment"
1931
+ #~ msgstr "Lampiran"
1932
+
1933
+ #~ msgid "Style options"
1934
+ #~ msgstr "Pilihan gaya"
1935
+
1936
+ #~ msgid "Text color"
1937
+ #~ msgstr "Warna teks"
1938
+
1939
+ #~ msgid "Default"
1940
+ #~ msgstr "kegagalan"
1941
+
1942
+ #~ msgid "Label text color"
1943
+ #~ msgstr "Warna teks Label"
1944
+
1945
+ #~ msgid "Placeholder color"
1946
+ #~ msgstr "warna placeholder"
1947
+
1948
+ #~ msgid "Errors color"
1949
+ #~ msgstr "warna kesalahan"
1950
+
1951
+ #~ msgid "Error text color"
1952
+ #~ msgstr "Warna teks kesalahan"
1953
+
1954
+ #~ msgid "Background color of the input field errors"
1955
+ #~ msgstr "warna latar belakang kesalahan field input"
1956
+
1957
+ #~ msgid "Border color of the input field errors"
1958
+ #~ msgstr "warna perbatasan kesalahan field input"
1959
+
1960
+ #~ msgid "Placeholder color of the input field errors"
1961
+ #~ msgstr "warna placeholder dari kesalahan field input"
1962
+
1963
+ #~ msgid "Input fields"
1964
+ #~ msgstr "field input"
1965
+
1966
+ #~ msgid "Input fields background color"
1967
+ #~ msgstr "Input field warna latar belakang"
1968
+
1969
+ #~ msgid "Text fields color"
1970
+ #~ msgstr "Teks ladang warna"
1971
+
1972
+ #~ msgid "Border width in px, numbers only"
1973
+ #~ msgstr "lebar perbatasan di px, angka saja"
1974
+
1975
+ #~ msgid "Border color"
1976
+ #~ msgstr "warna perbatasan"
1977
+
1978
+ #~ msgid "Width in px, numbers only"
1979
+ #~ msgstr "Lebar di px, angka saja"
1980
+
1981
+ #~ msgid "Button color"
1982
+ #~ msgstr "warna tombol"
1983
+
1984
+ #~ msgid "Button text color"
1985
+ #~ msgstr "Warna teks tombol"
1986
+
1987
+ #~ msgid "Contact Form Pro | Preview"
1988
+ #~ msgstr "Hubungi Formulir Pro | Preview"
1989
+
1990
+ #~ msgid "Show with errors"
1991
+ #~ msgstr "Tampilkan dengan kesalahan"
1992
+
1993
+ #~ msgid "Please enter your full name..."
1994
+ #~ msgstr "Masukkan nama lengkap Anda ..."
1995
+
1996
+ #~ msgid "Please enter your address..."
1997
+ #~ msgstr "Masukkan alamat Anda ..."
1998
+
1999
+ #~ msgid "Please enter your email address..."
2000
+ #~ msgstr "Masukkan alamat email Anda ..."
2001
+
2002
+ #~ msgid "Please enter your phone number..."
2003
+ #~ msgstr "Masukkan nomor telepon anda..."
2004
+
2005
+ #~ msgid "Please enter subject..."
2006
+ #~ msgstr "Masukkan subjek ..."
2007
+
2008
+ #~ msgid ""
2009
+ #~ "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
2010
+ #~ "EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file "
2011
+ #~ "size: 2MB"
2012
+ #~ msgstr ""
2013
+ #~ "Jenis file yang didukung: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
2014
+ #~ "AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Ukuran "
2015
+ #~ "file Max: 2MB"
2016
+
2017
+ #~ msgid "You can attach the following file formats"
2018
+ #~ msgstr "Anda dapat melampirkan format file berikut"
2019
+
2020
+ #~ msgid "Contact from"
2021
+ #~ msgstr "kontak dari"
2022
+
2023
+ #~ msgid "Email"
2024
+ #~ msgstr "E-mail"
2025
+
2026
+ #~ msgid "Site"
2027
+ #~ msgstr "situs"
2028
+
2029
+ #~ msgid ""
2030
+ #~ "If you can see this MIME, it means that the MIME type is not supported by "
2031
+ #~ "your email client!"
2032
+ #~ msgstr ""
2033
+ #~ "Jika Anda dapat melihat MIME ini, itu berarti bahwa tipe MIME tidak "
2034
+ #~ "didukung oleh klien email Anda!"
2035
+
2036
+ #~ msgid "Display Attachment tips"
2037
+ #~ msgstr "Tips tampilan Lampiran"
2038
+
2039
+ #~ msgid "Display a phone number field"
2040
+ #~ msgstr "Menampilkan field nomor telepon"
2041
+
2042
+ #~ msgid "Please enter a valid email address. Settings are not saved."
2043
+ #~ msgstr "Silakan isi alamat email. Setelan tidak disimpan."
2044
+
2045
+ #~ msgid "E-Mail Address"
2046
+ #~ msgstr "Alamat email"
2047
+
2048
+ #~ msgid ""
2049
+ #~ "If you would like to add a Contact Form to your website, just copy and "
2050
+ #~ "put this shortcode onto your post or page:"
2051
+ #~ msgstr ""
2052
+ #~ "Jika Anda ingin menambahkan formulir kontak ke website Anda, hanya copy "
2053
+ #~ "dan menempatkan shortcode ini ke pos atau halaman:"
2054
+
2055
+ #~ msgid "Thank you for contact."
2056
+ #~ msgstr "Terima kasih untuk kontak."
2057
+
2058
+ #~ msgid "Set a name of user wo will get messages from a contact form."
2059
+ #~ msgstr ""
2060
+ #~ "Menetapkan nama pengguna wo akan mendapatkan pesan dari formulir kontak."
2061
+
2062
+ #~ msgid "E-Mail Addresse:"
2063
+ #~ msgstr "E-Mail alamat:"
bws_menu/languages/bestwebsoft-nl_NL.mo ADDED
Binary file
bws_menu/languages/bestwebsoft-nl_NL.po ADDED
@@ -0,0 +1,1472 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: bestwebsoft\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-08 11:26+0300\n"
6
+ "PO-Revision-Date: 2017-06-08 11:26+0300\n"
7
+ "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
+ "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
+ "Language: nl_NL\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: bws_functions.php:72 bws_functions.php:190
20
+ msgid "requires"
21
+ msgstr "benodigd"
22
+
23
+ #: bws_functions.php:74
24
+ msgid ""
25
+ "or higher, that is why it has been deactivated! Please upgrade WordPress and "
26
+ "try again."
27
+ msgstr ""
28
+ "of hoger, daarom is deze gedeactiveerd! Upgrade WordPress en probeer het "
29
+ "opnieuw."
30
+
31
+ #: bws_functions.php:75
32
+ msgid "Back to the WordPress"
33
+ msgstr "Terug naar WordPress"
34
+
35
+ #: bws_functions.php:77
36
+ msgid "Plugins page"
37
+ msgstr "Plugins pagina"
38
+
39
+ #: bws_functions.php:91
40
+ msgid "Like the plugin?"
41
+ msgstr "Like de plugin?"
42
+
43
+ #: bws_functions.php:93
44
+ msgid "Rate it"
45
+ msgstr "Rate it"
46
+
47
+ #: bws_functions.php:102
48
+ msgid "Need help?"
49
+ msgstr "Hulp nodig?"
50
+
51
+ #: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
52
+ msgid "Visit Help Center"
53
+ msgstr "Bezoek het Helpcentrum"
54
+
55
+ #: bws_functions.php:106
56
+ msgid "Want to support the plugin?"
57
+ msgstr "Geef ondersteuning aan de plug-in?"
58
+
59
+ #: bws_functions.php:107 bws_menu.php:553
60
+ msgid "Donate"
61
+ msgstr "Doneer"
62
+
63
+ #: bws_functions.php:127
64
+ msgid "WARNING: Illegal use notification"
65
+ msgstr "LET OP!: Onwettige gebruiksmelding"
66
+
67
+ #: bws_functions.php:127
68
+ msgid ""
69
+ "You can use one license of the Pro plugin for one domain only. Please check "
70
+ "and edit your license or domain if necessary using you personal Client Area. "
71
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
72
+ "the Pro plugin will be deactivated."
73
+ msgstr ""
74
+ "U kunt één licentie van de Pro-plugin gebruiken voor één domein. Controleer "
75
+ "en bewerk uw licentie of domein indien nodig op uw persoonlijke "
76
+ "klantenomgeving. We raden u aan om het probleem binnen 24 uur op te lossen, "
77
+ "anders wordt de Pro-plugin gedeactiveerd."
78
+
79
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
80
+ #: class-bws-settings.php:143
81
+ msgid "Learn More"
82
+ msgstr "Leer meer"
83
+
84
+ #: bws_functions.php:144
85
+ msgid ""
86
+ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
87
+ "you should buy a Pro license"
88
+ msgstr ""
89
+ "Opmerking: Uw Pro Trial licentie is verlopen. Om de plugin verder te "
90
+ "gebruiken, moet u een Pro-licentie kopen"
91
+
92
+ #: bws_functions.php:146
93
+ msgid ""
94
+ "Your license has expired. To continue getting top-priority support and "
95
+ "plugin updates, you should extend it."
96
+ msgstr ""
97
+ "Uw licentie is verlopen. Om voort te gaan met ondersteuning voor top-"
98
+ "prioriteit en plugin-updates, moet u het uitbreiden."
99
+
100
+ #: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
101
+ msgid "Learn more"
102
+ msgstr "Leer meer"
103
+
104
+ #: bws_functions.php:164
105
+ #, php-format
106
+ msgid "Notice: You are using the Pro Trial license of %s plugin."
107
+ msgstr "Opmerking: U maakt gebruikt van de Pro Trial licentie van %s plugin."
108
+
109
+ #: bws_functions.php:166
110
+ msgid "Notice: You are using the Pro Trial license of plugin."
111
+ msgstr "Opmerking: U gebruikt de Pro Trial licentie van de plugin."
112
+
113
+ #: bws_functions.php:169
114
+ msgid "The Pro Trial license will expire on"
115
+ msgstr "De Pro Trial licentie vervalt op"
116
+
117
+ #: bws_functions.php:192
118
+ msgid ""
119
+ "or higher! We do not guarantee that our plugin will work correctly. Please "
120
+ "upgrade to WordPress latest version."
121
+ msgstr ""
122
+ "of hoger! Wij garanderen niet dat onze plugin correct blijft werken. Upgrade "
123
+ "nu naar de nieuwste versie van WordPress."
124
+
125
+ #: bws_functions.php:207
126
+ #, php-format
127
+ msgid "Thank you for installing %s plugin!"
128
+ msgstr "Dank u voor het installeren van %s plugin!"
129
+
130
+ #: bws_functions.php:208
131
+ msgid "Let's get started"
132
+ msgstr "Laten we aan de slag gaan"
133
+
134
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
135
+ #: bws_menu.php:559
136
+ msgid "Settings"
137
+ msgstr "Settings"
138
+
139
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
140
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
141
+ msgid "or"
142
+ msgstr "of"
143
+
144
+ #: bws_functions.php:212 bws_functions.php:244
145
+ msgid "Add New"
146
+ msgstr "Nieuwe toevoegen"
147
+
148
+ #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
149
+ #: bws_functions.php:378 bws_functions.php:480
150
+ msgid "Close notice"
151
+ msgstr "Opmerking sluiten"
152
+
153
+ #: bws_functions.php:231
154
+ msgid "Thank you for installing plugins by BestWebSoft!"
155
+ msgstr "Dank u voor het installeren van een plugin van BestWebSoft!"
156
+
157
+ #: bws_functions.php:233
158
+ msgid "More Details"
159
+ msgstr "Meer details"
160
+
161
+ #: bws_functions.php:234
162
+ msgid "Less Details"
163
+ msgstr "Minder details"
164
+
165
+ #: bws_functions.php:262
166
+ msgid "Deprecated function(-s) is used on the site here:"
167
+ msgstr "Deprecated functie(-s) word hier op de site gebruikt:"
168
+
169
+ #: bws_functions.php:276
170
+ msgid ""
171
+ "This function(-s) will be removed over time. Please update the product(-s)."
172
+ msgstr ""
173
+ "Deze function(-s) zal mettertijd worden verwijderd. Update het product of "
174
+ "producten."
175
+
176
+ #: bws_functions.php:335
177
+ msgid "It’s time to upgrade your"
178
+ msgstr "Het is tijd om te upgraden, "
179
+
180
+ #: bws_functions.php:335
181
+ msgid "to"
182
+ msgstr "aan"
183
+
184
+ #: bws_functions.php:335
185
+ msgid "version!"
186
+ msgstr "versie!"
187
+
188
+ #: bws_functions.php:336
189
+ msgid "Extend standard plugin functionality with new great options."
190
+ msgstr ""
191
+ "Verleng de standaard plugin functionaliteit met nieuwe geweldige opties."
192
+
193
+ #: bws_functions.php:382
194
+ #, php-format
195
+ msgid ""
196
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
197
+ "SUPPORT or UPDATES."
198
+ msgstr ""
199
+ "Uw licentiesleutel voor %s verloopt uit op %s en u krijgt geen TOP-"
200
+ "PRIORITEIT SUPPORT of UPDATES."
201
+
202
+ #: bws_functions.php:475
203
+ #, php-format
204
+ msgid "Thank you for choosing %s plugin!"
205
+ msgstr "Bedankt voor het kiezen van %s plugin!"
206
+
207
+ #: bws_functions.php:476
208
+ msgid ""
209
+ "If you have a feature, suggestion or idea you'd like to see in the plugin, "
210
+ "we'd love to hear about it!"
211
+ msgstr ""
212
+ "Als u een feature, suggestie of idee hebt dat u graag wilt zien in de "
213
+ "plugin, zouden we het graag willen horen!"
214
+
215
+ #: bws_functions.php:477
216
+ msgid "Suggest a Feature"
217
+ msgstr "Deel een idee"
218
+
219
+ #: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
220
+ #: class-bws-settings.php:584 class-bws-settings.php:587
221
+ msgid "Notice"
222
+ msgstr "Opmerking"
223
+
224
+ #: bws_functions.php:493
225
+ msgid "The plugin's settings have been changed."
226
+ msgstr "De instellingen van de plugin zijn gewijzigd."
227
+
228
+ #: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
229
+ #: deprecated.php:640
230
+ msgid "Save Changes"
231
+ msgstr "Bewerkingen opslaan"
232
+
233
+ #: bws_functions.php:508
234
+ msgid ""
235
+ "You can always look at premium options by checking the \"Pro Options\" in "
236
+ "the \"Misc\" tab."
237
+ msgstr ""
238
+ "U kunt altijd premium opties bekijken door de \"Pro Options\" in het tabblad "
239
+ "\"Misc\" te controleren."
240
+
241
+ #: bws_functions.php:629
242
+ msgid "Add BWS Shortcode"
243
+ msgstr ""
244
+
245
+ #: bws_functions.php:630
246
+ msgid "Add BWS Plugins Shortcode"
247
+ msgstr ""
248
+
249
+ #: bws_functions.php:649
250
+ msgid "Add shortcode"
251
+ msgstr "Shortcode toevoegen"
252
+
253
+ #: bws_functions.php:649
254
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
255
+ msgstr "Voeg BestWebSoft plugins shortcodes toe aan deze knop."
256
+
257
+ #: bws_functions.php:695
258
+ msgid "Close"
259
+ msgstr "Sluiten"
260
+
261
+ #: bws_functions.php:787
262
+ msgid "Are you sure you want to restore default settings?"
263
+ msgstr "Weet u zeker dat u de standaardinstellingen wilt herstellen?"
264
+
265
+ #: bws_functions.php:790
266
+ msgid "Yes, restore all settings"
267
+ msgstr "Ja, herstel alle instellingen"
268
+
269
+ #: bws_functions.php:791
270
+ msgid "No, go back to the settings page"
271
+ msgstr "Nee, ga terug naar de instellingen"
272
+
273
+ #: bws_functions.php:833
274
+ msgid "Plugin"
275
+ msgstr "Plugin"
276
+
277
+ #: bws_functions.php:842
278
+ msgid "Shortcode settings"
279
+ msgstr "Shortcode instellingen"
280
+
281
+ #: bws_functions.php:847
282
+ msgid "The shortcode will be inserted"
283
+ msgstr "De shortcode wordt ingevoegd"
284
+
285
+ #: bws_functions.php:852
286
+ msgid "Insert"
287
+ msgstr "Invoegen"
288
+
289
+ #: bws_functions.php:912
290
+ msgid "FAQ"
291
+ msgstr "FAQ"
292
+
293
+ #: bws_functions.php:918
294
+ msgid "For more information:"
295
+ msgstr "Voor meer informatie:"
296
+
297
+ #: bws_functions.php:919
298
+ msgid "Documentation"
299
+ msgstr "Documentatie"
300
+
301
+ #: bws_functions.php:920
302
+ msgid "Video Instructions"
303
+ msgstr "Video Instructies"
304
+
305
+ #: bws_functions.php:921
306
+ msgid "Submit a Request"
307
+ msgstr "Verzend een verzoek"
308
+
309
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
310
+ msgid "Wrong license key"
311
+ msgstr "Incorrecte licentiesleutel"
312
+
313
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
314
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
315
+ #: deprecated.php:352
316
+ msgid ""
317
+ "Something went wrong. Please try again later. If the error appears again, "
318
+ "please contact us"
319
+ msgstr ""
320
+ "Er is iets fout gegaan. Probeer het later nogmaals. Als de fout zich blijft "
321
+ "voordoen, neem dan contact met ons op"
322
+
323
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
324
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
325
+ #: deprecated.php:352
326
+ msgid "We are sorry for inconvenience."
327
+ msgstr "Het spijt ons voor het ongemak."
328
+
329
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
330
+ #: deprecated.php:139 deprecated.php:358
331
+ msgid "Wrong license key."
332
+ msgstr "Verkeerde licentiesleutel."
333
+
334
+ #: bws_menu.php:130
335
+ msgid ""
336
+ "This license key is bound to another site. Change it via personal Client "
337
+ "Area."
338
+ msgstr ""
339
+ "Deze licentiesleutel is gebonden aan een andere website. Verander het via je "
340
+ "persoonlijke beheeromgeving."
341
+
342
+ #: bws_menu.php:130
343
+ msgid "Log in"
344
+ msgstr "Log in"
345
+
346
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
347
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
348
+ msgstr "Helaas heb je het aantal beschikbare pogingen per dag overschreden."
349
+
350
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
351
+ #, php-format
352
+ msgid ""
353
+ "Unfortunately, Your license has expired. To continue getting top-priority "
354
+ "support and plugin updates, you should extend it in your %s"
355
+ msgstr ""
356
+ "Helaas is uw licentie verlopen. Om voort te gaan met ondersteuning voor top-"
357
+ "prioriteit en plugin-updates, moet u deze uitbreiden in uw %s"
358
+
359
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
360
+ msgid ""
361
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
362
+ "Trial license can be installed only once."
363
+ msgstr ""
364
+ "Helaas is de Pro licentie al geïnstalleerd op dit domein. De Pro Trial "
365
+ "licentie kan slechts één keer geïnstalleerd worden."
366
+
367
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
368
+ msgid "The license key is valid."
369
+ msgstr "De licentiesleutel is geldig."
370
+
371
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
372
+ msgid "Your license will expire on"
373
+ msgstr "Uw licentie vervalt op"
374
+
375
+ #: bws_menu.php:146
376
+ msgid "Congratulations! Pro Membership license is activated successfully."
377
+ msgstr ""
378
+ "Hartelijk gefeliciteerd! Uw Pro Membership licentie is succesvol geactiveerd."
379
+
380
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
381
+ msgid ""
382
+ "Something went wrong. Try again later or upload the plugin manually. We are "
383
+ "sorry for inconvenience."
384
+ msgstr ""
385
+ "Er is iets fout gegaan. Probeer het later opnieuw of upload de plugin "
386
+ "handmatig. Het spijt ons voor ongemak."
387
+
388
+ #: bws_menu.php:163
389
+ msgid "Please enter your license key."
390
+ msgstr "Vul alstublieft uw licentiesleutel in."
391
+
392
+ #: bws_menu.php:174
393
+ msgid "Not set"
394
+ msgstr "Niet ingesteld"
395
+
396
+ #: bws_menu.php:176
397
+ msgid "On"
398
+ msgstr "Aan"
399
+
400
+ #: bws_menu.php:176
401
+ msgid "Off"
402
+ msgstr "Uit"
403
+
404
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
405
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
406
+ msgid "N/A"
407
+ msgstr "N/A"
408
+
409
+ #: bws_menu.php:182
410
+ msgid " Mb"
411
+ msgstr "Mb"
412
+
413
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
414
+ msgid "Yes"
415
+ msgstr "Ja"
416
+
417
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
418
+ msgid "No"
419
+ msgstr "Nee"
420
+
421
+ #: bws_menu.php:196
422
+ msgid "WordPress Environment"
423
+ msgstr "WordPress Omgeving"
424
+
425
+ #: bws_menu.php:198
426
+ msgid "Home URL"
427
+ msgstr "Home URL"
428
+
429
+ #: bws_menu.php:199
430
+ msgid "Website URL"
431
+ msgstr "Website URL"
432
+
433
+ #: bws_menu.php:200
434
+ msgid "WP Version"
435
+ msgstr "WP Versiie"
436
+
437
+ #: bws_menu.php:201
438
+ msgid "WP Multisite"
439
+ msgstr "WP Multisite"
440
+
441
+ #: bws_menu.php:202
442
+ msgid "WP Memory Limit"
443
+ msgstr "WP Memory Limit"
444
+
445
+ #: bws_menu.php:203
446
+ msgid "Active Theme"
447
+ msgstr "Activeer Thema"
448
+
449
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
450
+ #, php-format
451
+ msgid "by %s"
452
+ msgstr "by %s"
453
+
454
+ #: bws_menu.php:207
455
+ msgid "Server Environment"
456
+ msgstr "Server Omgeving"
457
+
458
+ #: bws_menu.php:209
459
+ msgid "Operating System"
460
+ msgstr "Besturingssysteem"
461
+
462
+ #: bws_menu.php:210
463
+ msgid "Server"
464
+ msgstr "Server"
465
+
466
+ #: bws_menu.php:211
467
+ msgid "PHP Version"
468
+ msgstr "PHP Versiie"
469
+
470
+ #: bws_menu.php:212
471
+ msgid "PHP Allow URL fopen"
472
+ msgstr "PHP Allow URL fopen"
473
+
474
+ #: bws_menu.php:213
475
+ msgid "PHP Memory Limit"
476
+ msgstr "PHP Memory Limit"
477
+
478
+ #: bws_menu.php:214
479
+ msgid "Memory Usage"
480
+ msgstr "Memory Usage"
481
+
482
+ #: bws_menu.php:215
483
+ msgid "PHP Max Upload Size"
484
+ msgstr "PHP Max Upload Size"
485
+
486
+ #: bws_menu.php:216
487
+ msgid "PHP Max Post Size"
488
+ msgstr "PHP Max Post Size"
489
+
490
+ #: bws_menu.php:217
491
+ msgid "PHP Max Script Execute Time"
492
+ msgstr "PHP Max Script Execute Time"
493
+
494
+ #: bws_menu.php:218
495
+ msgid "PHP Exif support"
496
+ msgstr "PHP Exif support"
497
+
498
+ #: bws_menu.php:219
499
+ msgid "PHP IPTC support"
500
+ msgstr "PHP IPTC support"
501
+
502
+ #: bws_menu.php:220
503
+ msgid "PHP XML support"
504
+ msgstr "PHP XML support"
505
+
506
+ #: bws_menu.php:226
507
+ msgid "Database"
508
+ msgstr "Database"
509
+
510
+ #: bws_menu.php:228
511
+ msgid "WP DB version"
512
+ msgstr "WP DB version"
513
+
514
+ #: bws_menu.php:229
515
+ msgid "MySQL version"
516
+ msgstr "MySQL version"
517
+
518
+ #: bws_menu.php:230
519
+ msgid "SQL Mode"
520
+ msgstr "SQL Mode"
521
+
522
+ #: bws_menu.php:234
523
+ msgid "Active Plugins"
524
+ msgstr "Active Plugins"
525
+
526
+ #: bws_menu.php:239
527
+ msgid "Inactive Plugins"
528
+ msgstr "Inactive Plugins"
529
+
530
+ #: bws_menu.php:260
531
+ msgid "Please enter a valid email address."
532
+ msgstr "Gelieve een geldig e-mailadres in te geven."
533
+
534
+ #: bws_menu.php:264
535
+ msgid "Email with system info is sent to"
536
+ msgstr "E-mail met systeeminformatie wordt verzonden naar"
537
+
538
+ #: bws_menu.php:268
539
+ msgid "Thank you for contacting us."
540
+ msgstr "Bedankt voor het contact met ons opnemen."
541
+
542
+ #: bws_menu.php:291
543
+ msgid "Sorry, email message could not be delivered."
544
+ msgstr "Sorry, e-mailbericht kon niet worden geleverd."
545
+
546
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
547
+ msgid "Plugins"
548
+ msgstr "Plugins"
549
+
550
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
551
+ msgid "Themes"
552
+ msgstr "Thema's"
553
+
554
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
555
+ msgid "System status"
556
+ msgstr "Systeem status"
557
+
558
+ #: bws_menu.php:317
559
+ msgid "Support"
560
+ msgstr "Support"
561
+
562
+ #: bws_menu.php:318
563
+ msgid "Manage purchased licenses & subscriptions"
564
+ msgstr "Beheerde licenties en abonnementen beheren"
565
+
566
+ #: bws_menu.php:326
567
+ #, php-format
568
+ msgid "Get Access to %s+ Premium Plugins"
569
+ msgstr "Krijg toegang tot %s+ Premium plugins"
570
+
571
+ #: bws_menu.php:328
572
+ msgid "Subscribe to Pro Membership"
573
+ msgstr "Abonneer je op de Pro Membership"
574
+
575
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
576
+ #: deprecated.php:227
577
+ msgid "Check license key"
578
+ msgstr "Controleer de licentiesleutel"
579
+
580
+ #: bws_menu.php:339
581
+ msgid "Enter your license key"
582
+ msgstr "Vul uw licentiesleutel in"
583
+
584
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
585
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
586
+ #: deprecated.php:629 deprecated.php:700 deprecated.php:709
587
+ msgid "Activate"
588
+ msgstr "Activateer"
589
+
590
+ #: bws_menu.php:361
591
+ msgid "Upload Plugin"
592
+ msgstr "Upload Plugin"
593
+
594
+ #: bws_menu.php:365
595
+ #, php-format
596
+ msgid ""
597
+ "The plugin generated %d characters of <strong>unexpected output</strong> "
598
+ "during activation. If you notice &#8220;headers already sent&#8221; "
599
+ "messages, problems with syndication feeds or other issues, try deactivating "
600
+ "or removing this plugin."
601
+ msgstr ""
602
+ "De plugin genereerde %d tekens van <strong>onverwachte uitvoer</strong> "
603
+ "tijdens de activering. Als merkt dat er headers al verstuurd zijn, problemen "
604
+ "met syndicationfeeds of andere problemen zijn; probeer deze plugin uit te "
605
+ "schakelen of te verwijderen."
606
+
607
+ #: bws_menu.php:367
608
+ msgid ""
609
+ "Plugin could not be activated because it triggered a <strong>fatal error</"
610
+ "strong>."
611
+ msgstr ""
612
+ "Plugin kan niet geactiveerd worden omdat het er <strong>fatal error</strong> "
613
+ "zich voordoet."
614
+
615
+ #: bws_menu.php:370
616
+ msgid "Plugin <strong>activated</strong>."
617
+ msgstr "Plugin <strong>geactiveerd</strong>."
618
+
619
+ #: bws_menu.php:377
620
+ msgid "Installing Plugin"
621
+ msgstr "Installatie Plugin bezig"
622
+
623
+ #: bws_menu.php:383
624
+ msgid "Downloading install package from"
625
+ msgstr "Installatiepakket downloaden vanaf"
626
+
627
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
628
+ #: class-bws-settings.php:948 class-bws-settings.php:970
629
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
630
+ #: deprecated.php:431
631
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
632
+ msgstr ""
633
+ "Het ziparchief kon niet worden geladen. Gelieve de plugin handmatig te "
634
+ "uploaden"
635
+
636
+ #: bws_menu.php:408
637
+ msgid "Unpacking the package"
638
+ msgstr "Uitpakken van het pakket"
639
+
640
+ #: bws_menu.php:413 bws_menu.php:421
641
+ msgid "Installing the plugin"
642
+ msgstr "De plugin installeren"
643
+
644
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
645
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
646
+ msgstr ""
647
+ "Kan het zip-bestand niet openen. Gelieve de plugin handmatig te uploaden"
648
+
649
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
650
+ msgid ""
651
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
652
+ "plugin manually"
653
+ msgstr ""
654
+ "Uw server ondersteunt geen ZipArchive of Phar. Gelieve de plugin handmatig "
655
+ "te uploaden"
656
+
657
+ #: bws_menu.php:427
658
+ #, php-format
659
+ msgid "The plugin %s is successfully installed."
660
+ msgstr "De plugin %s is succesvol geïnstalleerd."
661
+
662
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
663
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
664
+ msgstr ""
665
+ "UploadDir is kan niet worden weggeschreven. Gelieve de plugin handmatig te "
666
+ "uploaden"
667
+
668
+ #: bws_menu.php:439
669
+ msgid "Activate Plugin"
670
+ msgstr "Activateer Plugin"
671
+
672
+ #: bws_menu.php:439 bws_menu.php:445
673
+ msgid "Return to BestWebSoft Panel"
674
+ msgstr "Terug naar het BestWebSoft Paneel"
675
+
676
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
677
+ msgid "All"
678
+ msgstr "Alle"
679
+
680
+ #: bws_menu.php:450 bws_menu.php:650
681
+ msgid "Installed"
682
+ msgstr "Geinstalleerd"
683
+
684
+ #: bws_menu.php:451
685
+ msgid "Not Installed"
686
+ msgstr "Niet geinstalleerd"
687
+
688
+ #: bws_menu.php:457
689
+ msgid "Filter results"
690
+ msgstr "Filter resultaten"
691
+
692
+ #: bws_menu.php:460 bws_menu.php:589
693
+ msgid "Category"
694
+ msgstr "Categorieen"
695
+
696
+ #: bws_menu.php:524
697
+ msgid "Not installed"
698
+ msgstr "Niet geinstalleerd"
699
+
700
+ #: bws_menu.php:528
701
+ msgid "Renew to get updates"
702
+ msgstr "Vernieuw om updates te verkrijgen"
703
+
704
+ #: bws_menu.php:531
705
+ #, php-format
706
+ msgid "Update to v %s"
707
+ msgstr "Update naar v %s"
708
+
709
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
710
+ msgid "Install Now"
711
+ msgstr "Installeer nu"
712
+
713
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
714
+ msgid "Upgrade to Pro"
715
+ msgstr "Upgrade naar Pro"
716
+
717
+ #: bws_menu.php:563 bws_menu.php:572
718
+ msgid "Activate this plugin"
719
+ msgstr "Activateer deze plugin"
720
+
721
+ #: bws_menu.php:575
722
+ msgid "Install this plugin"
723
+ msgstr "Installeer deze plugin"
724
+
725
+ #: bws_menu.php:584
726
+ msgid "Nothing found. Try another criteria."
727
+ msgstr "Niks gevonden. Probeer een ander criteria."
728
+
729
+ #: bws_menu.php:621 bws_menu.php:641
730
+ #, php-format
731
+ msgid "By %s"
732
+ msgstr "By %s"
733
+
734
+ #: bws_menu.php:648
735
+ msgid "Already Installed"
736
+ msgstr "Reeds geinstalleerd"
737
+
738
+ #: bws_menu.php:659
739
+ msgid "Browse Free WordPress Themes"
740
+ msgstr "Browse Gratis WordPress Themas"
741
+
742
+ #: bws_menu.php:668
743
+ msgid "Send to support"
744
+ msgstr "Stuur uw vraag"
745
+
746
+ #: bws_menu.php:675
747
+ msgid "Send to custom email &#187;"
748
+ msgstr "Verzend naar aangepaste e-mail &#187;"
749
+
750
+ #: class-bws-settings.php:135
751
+ msgid "Information"
752
+ msgstr "Informatie"
753
+
754
+ #: class-bws-settings.php:143
755
+ msgid "Inactive"
756
+ msgstr "Inactief"
757
+
758
+ #: class-bws-settings.php:151
759
+ msgid "Expired"
760
+ msgstr "Verlopen"
761
+
762
+ #: class-bws-settings.php:154
763
+ #, php-format
764
+ msgid "%s day(-s) left"
765
+ msgstr "%s dag(-en) over"
766
+
767
+ #: class-bws-settings.php:160
768
+ #, php-format
769
+ msgid "Expired on %s"
770
+ msgstr "Verlopen op %s"
771
+
772
+ #: class-bws-settings.php:160
773
+ msgid "Renew Now"
774
+ msgstr "Vernieuw nu"
775
+
776
+ #: class-bws-settings.php:162
777
+ msgid "Active"
778
+ msgstr "Actief"
779
+
780
+ #: class-bws-settings.php:167
781
+ msgid "License"
782
+ msgstr "Licentie"
783
+
784
+ #: class-bws-settings.php:170
785
+ msgid "Status"
786
+ msgstr "Status"
787
+
788
+ #: class-bws-settings.php:174
789
+ msgid "Version"
790
+ msgstr "Versiie"
791
+
792
+ #: class-bws-settings.php:282
793
+ msgid "All plugin settings were restored."
794
+ msgstr "Alle plugin-instellingen zijn hersteld."
795
+
796
+ #: class-bws-settings.php:420
797
+ msgid "Custom Code"
798
+ msgstr "Maatwerk Code"
799
+
800
+ #: class-bws-settings.php:424 deprecated.php:497
801
+ msgid "You do not have sufficient permissions to edit plugins for this site."
802
+ msgstr ""
803
+ "U heeft niet voldoende permissies om plugins voor deze website te bewerken."
804
+
805
+ #: class-bws-settings.php:429 deprecated.php:618
806
+ msgid "These styles will be added to the header on all pages of your site."
807
+ msgstr ""
808
+ "Deze stijlen worden toegevoegd aan de koptekst op alle pagina's van uw "
809
+ "website."
810
+
811
+ #: class-bws-settings.php:432 deprecated.php:620
812
+ #, php-format
813
+ msgid ""
814
+ "This PHP code will be hooked to the %s action and will be printed on front "
815
+ "end only."
816
+ msgstr ""
817
+ "Deze PHP-code wordt aangesloten op de %s actie en zal alleen op de website "
818
+ "worden getoond."
819
+
820
+ #: class-bws-settings.php:435
821
+ msgid "These code will be added to the header on all pages of your site."
822
+ msgstr ""
823
+ "Deze code wordt toegevoegd aan de koptekst op alle pagina's van uw website."
824
+
825
+ #: class-bws-settings.php:443 deprecated.php:644
826
+ #, php-format
827
+ msgid ""
828
+ "You need to make this files writable before you can save your changes. See "
829
+ "%s the Codex %s for more information."
830
+ msgstr ""
831
+ "U moet deze bestanden schrijfrechten geven voordat u de wijzigingen kunt "
832
+ "opslaan. Zie %s de Codex %s voor meer informatie."
833
+
834
+ #: class-bws-settings.php:453 deprecated.php:626
835
+ msgid "Browsing"
836
+ msgstr "Browsing"
837
+
838
+ #: class-bws-settings.php:457
839
+ #, php-format
840
+ msgid "Activate custom %s code."
841
+ msgstr "Activateer maatwerk %s code."
842
+
843
+ #: class-bws-settings.php:464 deprecated.php:633
844
+ #, php-format
845
+ msgid "Learn more about %s"
846
+ msgstr "Leer meer over %s"
847
+
848
+ #: class-bws-settings.php:524
849
+ msgid "Miscellaneous Settings"
850
+ msgstr "Diversen instellingen"
851
+
852
+ #: class-bws-settings.php:533 class-bws-settings.php:584
853
+ #, php-format
854
+ msgid ""
855
+ "It is prohibited to change %s settings on this site in the %s network "
856
+ "settings."
857
+ msgstr ""
858
+ "Het is verboden om %s instellingen op deze website te wijzigen in de %s "
859
+ "netwerkinstellingen."
860
+
861
+ #: class-bws-settings.php:536 class-bws-settings.php:587
862
+ #, php-format
863
+ msgid ""
864
+ "It is prohibited to view %s settings on this site in the %s network settings."
865
+ msgstr ""
866
+ "Het is verboden om %s instellingen op deze website te bekijken in de %s "
867
+ "netwerkinstellingen."
868
+
869
+ #: class-bws-settings.php:545
870
+ msgid "Pro Options"
871
+ msgstr "Pro Opties"
872
+
873
+ #: class-bws-settings.php:548
874
+ msgid "Enable to display plugin Pro options."
875
+ msgstr "Schakel in om plugin Pro opties te zien."
876
+
877
+ #: class-bws-settings.php:553
878
+ msgid "Track Usage"
879
+ msgstr "Track gebruik"
880
+
881
+ #: class-bws-settings.php:556
882
+ msgid ""
883
+ "Enable to allow tracking plugin usage anonymously in order to make it better."
884
+ msgstr ""
885
+ "Activeer het gebruik van anonieme tracking van de bijbehorende plug-in, om "
886
+ "het product beter te maken."
887
+
888
+ #: class-bws-settings.php:560
889
+ msgid "Default Settings"
890
+ msgstr "Standaard instellingen"
891
+
892
+ #: class-bws-settings.php:562
893
+ msgid "Restore Settings"
894
+ msgstr "Instellingen herstellen"
895
+
896
+ #: class-bws-settings.php:563
897
+ msgid "This will restore plugin settings to defaults."
898
+ msgstr ""
899
+ "Dit zal de plugininstellingen herstellen naar de standaardinstellingen."
900
+
901
+ #: class-bws-settings.php:575
902
+ msgid "Import / Export"
903
+ msgstr "Import / Export"
904
+
905
+ #: class-bws-settings.php:691 class-bws-settings.php:724
906
+ #: class-bws-settings.php:746
907
+ msgid "License Key"
908
+ msgstr "Licentiesleutel"
909
+
910
+ #: class-bws-settings.php:714
911
+ msgid "Congratulations! Pro license is activated successfully."
912
+ msgstr "Hartelijk gefeliciteerd! De Pro licentie is succesvol geactiveerd."
913
+
914
+ #: class-bws-settings.php:715
915
+ #, php-format
916
+ msgid "You will be automatically redirected to the %s in %s seconds."
917
+ msgstr "U wordt automatisch doorgestuurd naar %s in %s seconden."
918
+
919
+ #: class-bws-settings.php:715
920
+ msgid "Settings page"
921
+ msgstr "Instellingen"
922
+
923
+ #: class-bws-settings.php:730
924
+ #, php-format
925
+ msgid "Enter your license key to activate %s and get premium plugin features."
926
+ msgstr ""
927
+ "Voer uw licentiesleutel in om %s te activeren en premium-pluginfuncties te "
928
+ "krijgen."
929
+
930
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
931
+ #: deprecated.php:703
932
+ msgid ""
933
+ "Unfortunately, you have exceeded the number of available tries per day. "
934
+ "Please, upload the plugin manually."
935
+ msgstr ""
936
+ "Helaas heeft u het aantal beschikbare pogingen per dag overschreden. Gelieve "
937
+ "de plugin handmatig te uploaden."
938
+
939
+ #: class-bws-settings.php:736 deprecated.php:694
940
+ #, php-format
941
+ msgid "Start Your Free %s-Day Trial Now"
942
+ msgstr "Start nu uw gratis %s dag trial"
943
+
944
+ #: class-bws-settings.php:751
945
+ msgid ""
946
+ "If necessary, you can check if the license key is correct or reenter it in "
947
+ "the field below."
948
+ msgstr ""
949
+ "Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
950
+ "het opnieuw in het onderstaande veld."
951
+
952
+ #: class-bws-settings.php:756
953
+ msgid "Manage License Settings"
954
+ msgstr "Beheer licentie instellingen"
955
+
956
+ #: class-bws-settings.php:758
957
+ msgid "Login to Client Area"
958
+ msgstr "Inloggen op client gebied"
959
+
960
+ #: class-bws-settings.php:760
961
+ msgid ""
962
+ "Manage active licenses, download BWS products, and view your payment history "
963
+ "using BestWebSoft Client Area."
964
+ msgstr ""
965
+ "Beheer actieve licenties, download BWS-producten en bekijk uw de "
966
+ "betalingsgeschiedenis met behulp van de BestWebSoft Klanten Omgeving."
967
+
968
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
969
+ #: deprecated.php:360
970
+ msgid "This license key is bound to another site."
971
+ msgstr "Deze licentiesleutel is gebonden aan een andere website."
972
+
973
+ #: class-bws-settings.php:817 deprecated.php:143
974
+ msgid ""
975
+ "This license key is valid, but Your license has expired. If you want to "
976
+ "update our plugin in future, you should extend the license."
977
+ msgstr ""
978
+ "Deze licentiesleutel is geldig, maar uw licentie is verlopen. Als u onze "
979
+ "plugin in de toekomst wilt bijwerken, moet u de licentie verlengen."
980
+
981
+ #: class-bws-settings.php:819 deprecated.php:145
982
+ msgid "Unfortunately, you have exceeded the number of available tries."
983
+ msgstr "Helaas heeft u het aantal beschikbare pogingen overschreden."
984
+
985
+ #: class-bws-settings.php:821 deprecated.php:147
986
+ msgid ""
987
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
988
+ "The Pro Trial license can be installed only once."
989
+ msgstr ""
990
+ "Helaas, de Pro Trial licentie was al geïnstalleerd op dit domein. De Pro "
991
+ "Trial License kan helaas maar eenmalig gebruikt worden."
992
+
993
+ #: class-bws-settings.php:826 deprecated.php:151
994
+ msgid "The Pro Trial license key is valid."
995
+ msgstr "De Pro Trial licentiesleutel is geldig."
996
+
997
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
998
+ #, php-format
999
+ msgid ""
1000
+ "In order to continue using the plugin it is necessary to buy a %s license."
1001
+ msgstr ""
1002
+ "Om door te gaan met de plugin is het nodig om een %s licentie te kopen."
1003
+
1004
+ #: class-bws-settings.php:1031 deprecated.php:463
1005
+ msgid "Please, enter Your license key"
1006
+ msgstr "Vul alstublieft uw licentiesleutel in"
1007
+
1008
+ #: class-bws-settings.php:1043
1009
+ msgid "Need Help?"
1010
+ msgstr "Hulp nodig?"
1011
+
1012
+ #: class-bws-settings.php:1045
1013
+ msgid "Read the Instruction"
1014
+ msgstr "Lees de instructie"
1015
+
1016
+ #: class-bws-settings.php:1049
1017
+ msgid "Watch the Video"
1018
+ msgstr "Bekijk de Video"
1019
+
1020
+ #: class-bws-settings.php:1060
1021
+ msgid "Start Your Free Trial"
1022
+ msgstr "Begin uw gratis proefperiode"
1023
+
1024
+ #: deprecated.php:93
1025
+ msgid "System Status"
1026
+ msgstr "Systeem status"
1027
+
1028
+ #: deprecated.php:204
1029
+ msgid "Please, enter your license key"
1030
+ msgstr "Vul alstublieft uw licentiesleutel in"
1031
+
1032
+ #: deprecated.php:223
1033
+ msgid ""
1034
+ "If necessary, you can check if the license key is correct or reenter it in "
1035
+ "the field below. You can find your license key on your personal page - "
1036
+ "Client Area - on our website"
1037
+ msgstr ""
1038
+ "Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
1039
+ "het opnieuw in het onderstaande veld. U vindt uw licentiesleutel op uw "
1040
+ "persoonlijke omgeving - Klanten Omgeving - via onze website"
1041
+
1042
+ #: deprecated.php:223
1043
+ msgid ""
1044
+ "(your username is the email address specified during the purchase). If "
1045
+ "necessary, please submit \"Lost your password?\" request."
1046
+ msgstr ""
1047
+ "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop). "
1048
+ "Indien nodig, verstuur alstublieft \"Verstuur uw wachtwoord?\" Verzoek."
1049
+
1050
+ #: deprecated.php:247
1051
+ msgid "After that, you can activate it by entering your license key."
1052
+ msgstr "Daarna kunt u activeren door uw licentiesleutel in te voeren."
1053
+
1054
+ #: deprecated.php:249 deprecated.php:688
1055
+ msgid "License key can be found in the"
1056
+ msgstr "Licentiesleutel is te vinden in de"
1057
+
1058
+ #: deprecated.php:251 deprecated.php:690
1059
+ msgid "(your username is the email address specified during the purchase)."
1060
+ msgstr ""
1061
+ "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop)."
1062
+
1063
+ #: deprecated.php:278
1064
+ msgid ""
1065
+ "Congratulations! The Pro license of the plugin is activated successfully."
1066
+ msgstr ""
1067
+ "Hartelijk gefeliciteerd! De Pro-licentie van de plugin is succesvol "
1068
+ "geactiveerd."
1069
+
1070
+ #: deprecated.php:280 deprecated.php:669
1071
+ msgid "Please, go to"
1072
+ msgstr "Ga aub naar"
1073
+
1074
+ #: deprecated.php:280 deprecated.php:669
1075
+ msgid "the setting page"
1076
+ msgstr "de instellingen"
1077
+
1078
+ #: deprecated.php:281 deprecated.php:670
1079
+ msgid "You will be redirected automatically in 5 seconds."
1080
+ msgstr "U wordt na 5 seconden automatisch doorverwezen."
1081
+
1082
+ #: deprecated.php:315
1083
+ msgid "Check premium options on the plugin settings page!"
1084
+ msgstr "Controleer de premiumopties op de pagina met Plugin-instellingen!"
1085
+
1086
+ #: deprecated.php:478
1087
+ msgid "Restore all plugin settings to defaults"
1088
+ msgstr "Herstel alle plugin-instellingen naar de standaardinstellingen"
1089
+
1090
+ #: deprecated.php:480
1091
+ msgid "Restore settings"
1092
+ msgstr "Herstel instellingen"
1093
+
1094
+ #: deprecated.php:548 deprecated.php:575
1095
+ #, php-format
1096
+ msgid "File %s edited successfully."
1097
+ msgstr "Bestand %s is succesvol bewerkt"
1098
+
1099
+ #: deprecated.php:550 deprecated.php:577
1100
+ msgid "Not enough permissions to create or update the file"
1101
+ msgstr "Niet genoeg rechten om het bestand te maken of aan te passen"
1102
+
1103
+ #: deprecated.php:580
1104
+ msgid "Not enough permissions to create the file"
1105
+ msgstr "Niet genoeg rechten om het bestand te maken"
1106
+
1107
+ #: deprecated.php:624
1108
+ msgid "Editing"
1109
+ msgstr "Bewerken"
1110
+
1111
+ #: deprecated.php:667
1112
+ msgid ""
1113
+ "Congratulations! Pro version of the plugin is installed and activated "
1114
+ "successfully."
1115
+ msgstr ""
1116
+ "Hartelijk gefeliciteerd! De Pro-versie van de plugin is succesvol "
1117
+ "geïnstalleerd en geactiveerd."
1118
+
1119
+ #: deprecated.php:677
1120
+ msgid "Show Pro features"
1121
+ msgstr "Toon de Pro functies"
1122
+
1123
+ #: deprecated.php:684
1124
+ msgid "Enter your license key to install and activate"
1125
+ msgstr "Voer uw licentiesleutel in om te installeren en te activeren"
1126
+
1127
+ #: deprecated.php:686
1128
+ msgid "version of the plugin."
1129
+ msgstr "versie van de plugin."
1130
+
1131
+ #: product_list.php:7
1132
+ msgid "Admin Tools"
1133
+ msgstr ""
1134
+
1135
+ #: product_list.php:8
1136
+ msgid "Content"
1137
+ msgstr ""
1138
+
1139
+ #: product_list.php:9
1140
+ msgid "eCommerce"
1141
+ msgstr ""
1142
+
1143
+ #: product_list.php:10
1144
+ msgid "Marketing"
1145
+ msgstr ""
1146
+
1147
+ #: product_list.php:11
1148
+ msgid "Navigation"
1149
+ msgstr ""
1150
+
1151
+ #: product_list.php:12
1152
+ msgid "Recommended"
1153
+ msgstr "Aanbevolen"
1154
+
1155
+ #: product_list.php:13
1156
+ msgid "Security"
1157
+ msgstr "Veiligheid"
1158
+
1159
+ #: product_list.php:14
1160
+ msgid "SEO"
1161
+ msgstr ""
1162
+
1163
+ #: product_list.php:15
1164
+ msgid "SMM"
1165
+ msgstr ""
1166
+
1167
+ #: product_list.php:22
1168
+ msgid ""
1169
+ "Protect WordPress website forms from spam entries by means of math logic."
1170
+ msgstr ""
1171
+
1172
+ #: product_list.php:32
1173
+ msgid "Create your personal car rental/booking and reservation website."
1174
+ msgstr ""
1175
+
1176
+ #: product_list.php:42
1177
+ msgid ""
1178
+ "Allow customers to reach you using secure contact form plugin any website "
1179
+ "must have."
1180
+ msgstr ""
1181
+
1182
+ #: product_list.php:52
1183
+ msgid "Add unlimited number of contact forms to WordPress website."
1184
+ msgstr ""
1185
+
1186
+ #: product_list.php:62
1187
+ msgid "Save and manage Contact Form messages. Never lose important data."
1188
+ msgstr ""
1189
+
1190
+ #: product_list.php:72
1191
+ msgid "Add unlimited custom pages to WordPress admin dashboard."
1192
+ msgstr ""
1193
+
1194
+ #: product_list.php:79
1195
+ msgid "Add custom fields to WordPress website search results."
1196
+ msgstr ""
1197
+
1198
+ #: product_list.php:86
1199
+ msgid ""
1200
+ "Add custom post types and taxonomies to WordPress website search results."
1201
+ msgstr ""
1202
+
1203
+ #: product_list.php:96
1204
+ msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1205
+ msgstr ""
1206
+
1207
+ #: product_list.php:103
1208
+ msgid ""
1209
+ "Automatically add outgoing email messages to queue instead of sending them "
1210
+ "immediately."
1211
+ msgstr ""
1212
+
1213
+ #: product_list.php:110
1214
+ msgid ""
1215
+ "Get latest error log messages to diagnose website problems. Define and fix "
1216
+ "issues faster."
1217
+ msgstr ""
1218
+
1219
+ #: product_list.php:117
1220
+ msgid ""
1221
+ "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1222
+ "widgets."
1223
+ msgstr ""
1224
+
1225
+ #: product_list.php:127
1226
+ msgid ""
1227
+ "Add beautiful galleries, albums & images to your WordPress website in a few "
1228
+ "clicks."
1229
+ msgstr ""
1230
+
1231
+ #: product_list.php:137
1232
+ msgid ""
1233
+ "Add unlimited gallery categories. Organize images to make the navigation "
1234
+ "through content easier."
1235
+ msgstr ""
1236
+
1237
+ #: product_list.php:144
1238
+ msgid ""
1239
+ "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1240
+ "posts, pages and widgets."
1241
+ msgstr ""
1242
+
1243
+ #: product_list.php:154
1244
+ msgid ""
1245
+ "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1246
+ "results, categories, tags, and widgets."
1247
+ msgstr ""
1248
+
1249
+ #: product_list.php:164
1250
+ msgid "Add Google Analytics code to WordPress website and track basic stats."
1251
+ msgstr ""
1252
+
1253
+ #: product_list.php:174
1254
+ msgid ""
1255
+ "Protect WordPress website forms from spam entries with Google Captcha "
1256
+ "(reCaptcha)."
1257
+ msgstr ""
1258
+
1259
+ #: product_list.php:184
1260
+ msgid "Add customized Google maps to WordPress posts, pages and widgets."
1261
+ msgstr ""
1262
+
1263
+ #: product_list.php:194
1264
+ msgid ""
1265
+ "Generate and add XML sitemap to WordPress website. Help search engines index "
1266
+ "your blog."
1267
+ msgstr ""
1268
+
1269
+ #: product_list.php:204
1270
+ msgid ""
1271
+ "Replace external WordPress website links with Google shortlinks and track "
1272
+ "click stats."
1273
+ msgstr ""
1274
+
1275
+ #: product_list.php:211
1276
+ msgid ""
1277
+ "Protect WordPress website – allow and deny access for certain IP addresses, "
1278
+ "hostnames, etc."
1279
+ msgstr ""
1280
+
1281
+ #: product_list.php:221
1282
+ msgid ""
1283
+ "Create your personal job board and listing WordPress website. Search jobs, "
1284
+ "submit CV/resumes, choose candidates."
1285
+ msgstr ""
1286
+
1287
+ #: product_list.php:228
1288
+ msgid ""
1289
+ "Protect WordPress website against brute force attacks. Limit rate of login "
1290
+ "attempts."
1291
+ msgstr ""
1292
+
1293
+ #: product_list.php:238
1294
+ msgid ""
1295
+ "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1296
+ "5 plugins included – profile, insider, etc."
1297
+ msgstr ""
1298
+
1299
+ #: product_list.php:248
1300
+ msgid ""
1301
+ "Translate WordPress website content to other languages manually. Create "
1302
+ "multilingual pages, posts, widgets, menus, etc."
1303
+ msgstr ""
1304
+
1305
+ #: product_list.php:258
1306
+ msgid ""
1307
+ "Add customizable pagination to WordPress website. Split long content to "
1308
+ "multiple pages for better navigation."
1309
+ msgstr ""
1310
+
1311
+ #: product_list.php:268
1312
+ msgid ""
1313
+ "Generate PDF files and print WordPress posts/pages. Customize document "
1314
+ "header/footer styles and appearance."
1315
+ msgstr ""
1316
+
1317
+ #: product_list.php:278
1318
+ msgid ""
1319
+ "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1320
+ "Profile) to WordPress posts, pages and widgets."
1321
+ msgstr ""
1322
+
1323
+ #: product_list.php:288
1324
+ msgid ""
1325
+ "Create your personal portfolio WordPress website. Manage and showcase past "
1326
+ "projects to get more clients."
1327
+ msgstr ""
1328
+
1329
+ #: product_list.php:298
1330
+ msgid "Export WordPress posts to CSV file format easily. Configure data order."
1331
+ msgstr ""
1332
+
1333
+ #: product_list.php:305
1334
+ msgid ""
1335
+ "Add extra fields to default WordPress user profile. The easiest way to "
1336
+ "create and manage additional custom values."
1337
+ msgstr ""
1338
+
1339
+ #: product_list.php:312
1340
+ msgid ""
1341
+ "Add and display HTML advertisement banner on WordPress website. Customize "
1342
+ "bar styles and appearance."
1343
+ msgstr ""
1344
+
1345
+ #: product_list.php:322
1346
+ msgid ""
1347
+ "Add customizable quotes and tips blocks to WordPress posts, pages and "
1348
+ "widgets."
1349
+ msgstr ""
1350
+
1351
+ #: product_list.php:329
1352
+ msgid ""
1353
+ "Add rating plugin to your WordPress website to receive feedback from your "
1354
+ "customers."
1355
+ msgstr ""
1356
+
1357
+ #: product_list.php:336
1358
+ msgid ""
1359
+ "Create your personal real estate WordPress website. Sell, rent and buy "
1360
+ "properties. Add, search and browse listings easily."
1361
+ msgstr ""
1362
+
1363
+ #: product_list.php:346
1364
+ msgid ""
1365
+ "Attach, un-attach and re-attach media files quickly to WordPress posts and "
1366
+ "pages."
1367
+ msgstr ""
1368
+
1369
+ #: product_list.php:353
1370
+ msgid ""
1371
+ "Add related, featured, latest, and popular posts to your WordPress website. "
1372
+ "Connect your blog readers with a relevant content."
1373
+ msgstr ""
1374
+
1375
+ #: product_list.php:360
1376
+ msgid ""
1377
+ "Send bulk email messages to WordPress users. Custom templates, advanced "
1378
+ "settings and detailed reports."
1379
+ msgstr ""
1380
+
1381
+ #: product_list.php:370
1382
+ msgid ""
1383
+ "The best responsive slider plugin for your WordPress website. Create "
1384
+ "beautifully animated slides just in a few clicks."
1385
+ msgstr ""
1386
+
1387
+ #: product_list.php:377
1388
+ msgid ""
1389
+ "Configure SMTP server to receive email messages from WordPress to Gmail, "
1390
+ "Yahoo, Hotmail and other services."
1391
+ msgstr ""
1392
+
1393
+ #: product_list.php:384
1394
+ msgid ""
1395
+ "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1396
+ "FB, Twitter, G+1, Pinterest, LinkedIn."
1397
+ msgstr ""
1398
+
1399
+ #: product_list.php:394
1400
+ msgid ""
1401
+ "Add social media login, registration, and commenting to your WordPress "
1402
+ "website."
1403
+ msgstr ""
1404
+
1405
+ #: product_list.php:401
1406
+ msgid ""
1407
+ "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1408
+ "Collect data and subscribe your users."
1409
+ msgstr ""
1410
+
1411
+ #: product_list.php:411
1412
+ msgid ""
1413
+ "Add testimonials and feedbacks from your customers to WordPress website "
1414
+ "posts, pages, and widgets."
1415
+ msgstr ""
1416
+
1417
+ #: product_list.php:418
1418
+ msgid ""
1419
+ "Best timesheet plugin for WordPress. Track employee time, streamline "
1420
+ "attendance and generate reports."
1421
+ msgstr ""
1422
+
1423
+ #: product_list.php:428
1424
+ msgid ""
1425
+ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1426
+ "and pages."
1427
+ msgstr ""
1428
+
1429
+ #: product_list.php:438
1430
+ msgid ""
1431
+ "Automatically check and update WordPress website core with all installed "
1432
+ "plugins and themes to the latest versions."
1433
+ msgstr ""
1434
+
1435
+ #: product_list.php:448
1436
+ msgid ""
1437
+ "Powerful user role management plugin for WordPress website. Create, edit, "
1438
+ "copy, and delete user roles."
1439
+ msgstr ""
1440
+
1441
+ #: product_list.php:458
1442
+ msgid ""
1443
+ "Display live count of online visitors who are currently browsing your "
1444
+ "WordPress website."
1445
+ msgstr ""
1446
+
1447
+ #: product_list.php:468
1448
+ msgid ""
1449
+ "Backup and export Zendesk Help Center content automatically to your "
1450
+ "WordPress website database."
1451
+ msgstr ""
1452
+
1453
+ #~ msgid "Advertisement"
1454
+ #~ msgstr "Advertentie"
1455
+
1456
+ #~ msgid "Content & Media"
1457
+ #~ msgstr "Inhoud & Media"
1458
+
1459
+ #~ msgid "Management"
1460
+ #~ msgstr "Beheer"
1461
+
1462
+ #~ msgid "Site Stats"
1463
+ #~ msgstr "Website statistieken"
1464
+
1465
+ #~ msgid "Social"
1466
+ #~ msgstr "Sociaal"
1467
+
1468
+ #~ msgid "Utilities"
1469
+ #~ msgstr "Voorzieningen"
1470
+
1471
+ #~ msgid "Other"
1472
+ #~ msgstr "Anders"
bws_menu/languages/bestwebsoft-pl_PL.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-pl_PL.po CHANGED
@@ -2,15 +2,15 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-03-28 13:51+0300\n"
6
- "PO-Revision-Date: 2017-03-28 13:51+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "Need help?"
52
  msgstr "Potrzebujesz pomocy?"
53
 
54
- #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
55
  msgid "Visit Help Center"
56
  msgstr ""
57
 
@@ -152,7 +152,7 @@ msgid "Add New"
152
  msgstr "Dodaj nowy"
153
 
154
  #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
155
- #: bws_functions.php:378 bws_functions.php:482
156
  msgid "Close notice"
157
  msgstr "Zamknij powiadomienie"
158
 
@@ -205,36 +205,36 @@ msgstr ""
205
  "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
206
  "AKTUALIZACJI."
207
 
208
- #: bws_functions.php:477
209
  #, php-format
210
  msgid "Thank you for choosing %s plugin!"
211
  msgstr ""
212
 
213
- #: bws_functions.php:478
214
  msgid ""
215
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
216
  "we'd love to hear about it!"
217
  msgstr ""
218
 
219
- #: bws_functions.php:479
220
  msgid "Suggest a Feature"
221
  msgstr ""
222
 
223
- #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
224
  #: class-bws-settings.php:584 class-bws-settings.php:587
225
  msgid "Notice"
226
  msgstr "Uwaga"
227
 
228
- #: bws_functions.php:495
229
  msgid "The plugin's settings have been changed."
230
  msgstr "Ustawienia wtyczki zostały zmienione."
231
 
232
- #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
233
  #: deprecated.php:640
234
  msgid "Save Changes"
235
  msgstr "Zapisz zmiany"
236
 
237
- #: bws_functions.php:510
238
  #, fuzzy
239
  msgid ""
240
  "You can always look at premium options by checking the \"Pro Options\" in "
@@ -243,67 +243,75 @@ msgstr ""
243
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
244
  "PRO\" w zakładce \"Go PRO\""
245
 
246
- #: bws_functions.php:651
 
 
 
 
 
 
 
 
247
  #, fuzzy
248
  msgid "Add shortcode"
249
  msgstr "Dodaj BWS Shortcode"
250
 
251
- #: bws_functions.php:651
252
  msgid "Add BestWebSoft plugins' shortcodes using this button."
253
  msgstr ""
254
 
255
- #: bws_functions.php:700
256
  msgid "Close"
257
  msgstr "Zamknij"
258
 
259
- #: bws_functions.php:792
260
  #, fuzzy
261
  msgid "Are you sure you want to restore default settings?"
262
  msgstr ""
263
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
264
  "domyślnych?"
265
 
266
- #: bws_functions.php:795
267
  msgid "Yes, restore all settings"
268
  msgstr "Tak, przywróć wszystkie ustawienia"
269
 
270
- #: bws_functions.php:796
271
  msgid "No, go back to the settings page"
272
  msgstr "Nie, wróć do ustawień"
273
 
274
- #: bws_functions.php:842
275
  msgid "Plugin"
276
  msgstr "Wtyczka"
277
 
278
- #: bws_functions.php:851
279
  msgid "Shortcode settings"
280
  msgstr "Ustawienia shortcode"
281
 
282
- #: bws_functions.php:856
283
  msgid "The shortcode will be inserted"
284
  msgstr "Shortcode zostanie umieszczony"
285
 
286
- #: bws_functions.php:861
287
  msgid "Insert"
288
  msgstr "Umieść"
289
 
290
- #: bws_functions.php:921
291
  msgid "FAQ"
292
  msgstr "FAQ"
293
 
294
- #: bws_functions.php:927
295
  msgid "For more information:"
296
  msgstr ""
297
 
298
- #: bws_functions.php:928
299
  msgid "Documentation"
300
  msgstr ""
301
 
302
- #: bws_functions.php:929
303
  msgid "Video Instructions"
304
  msgstr ""
305
 
306
- #: bws_functions.php:930
307
  #, fuzzy
308
  msgid "Submit a Request"
309
  msgstr "送信ボタン"
@@ -1148,42 +1156,331 @@ msgid "version of the plugin."
1148
  msgstr "Oceń wtyczkę"
1149
 
1150
  #: product_list.php:7
1151
- msgid "Advertisement"
1152
  msgstr ""
1153
 
1154
  #: product_list.php:8
1155
- msgid "Content & Media"
1156
  msgstr ""
1157
 
1158
  #: product_list.php:9
1159
- msgid "Management"
1160
  msgstr ""
1161
 
1162
  #: product_list.php:10
1163
- msgid "Recommended"
1164
- msgstr "Polecane"
1165
 
1166
  #: product_list.php:11
1167
- msgid "Security"
1168
  msgstr ""
1169
 
1170
  #: product_list.php:12
1171
- #, fuzzy
1172
- msgid "Site Stats"
1173
- msgstr "Status systemu"
1174
 
1175
  #: product_list.php:13
1176
- msgid "Social"
1177
  msgstr ""
1178
 
1179
  #: product_list.php:14
1180
- msgid "Utilities"
1181
  msgstr ""
1182
 
1183
  #: product_list.php:15
1184
- msgid "Other"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
  msgstr ""
1186
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1187
  #~ msgid "Thank you for installing"
1188
  #~ msgstr "Dziękujemy za instalację"
1189
 
@@ -1274,9 +1571,6 @@ msgstr ""
1274
  #~ msgid "Preview"
1275
  #~ msgstr "Podgląd"
1276
 
1277
- #~ msgid "Add BWS Plugins Shortcode"
1278
- #~ msgstr "Dodaj BWS Shortcode"
1279
-
1280
  #~ msgid "Activated plugins"
1281
  #~ msgstr "有効なプラグイン"
1282
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-08 11:26+0300\n"
6
+ "PO-Revision-Date: 2017-06-08 11:26+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
51
  msgid "Need help?"
52
  msgstr "Potrzebujesz pomocy?"
53
 
54
+ #: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
55
  msgid "Visit Help Center"
56
  msgstr ""
57
 
152
  msgstr "Dodaj nowy"
153
 
154
  #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
155
+ #: bws_functions.php:378 bws_functions.php:480
156
  msgid "Close notice"
157
  msgstr "Zamknij powiadomienie"
158
 
205
  "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
206
  "AKTUALIZACJI."
207
 
208
+ #: bws_functions.php:475
209
  #, php-format
210
  msgid "Thank you for choosing %s plugin!"
211
  msgstr ""
212
 
213
+ #: bws_functions.php:476
214
  msgid ""
215
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
216
  "we'd love to hear about it!"
217
  msgstr ""
218
 
219
+ #: bws_functions.php:477
220
  msgid "Suggest a Feature"
221
  msgstr ""
222
 
223
+ #: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
224
  #: class-bws-settings.php:584 class-bws-settings.php:587
225
  msgid "Notice"
226
  msgstr "Uwaga"
227
 
228
+ #: bws_functions.php:493
229
  msgid "The plugin's settings have been changed."
230
  msgstr "Ustawienia wtyczki zostały zmienione."
231
 
232
+ #: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
233
  #: deprecated.php:640
234
  msgid "Save Changes"
235
  msgstr "Zapisz zmiany"
236
 
237
+ #: bws_functions.php:508
238
  #, fuzzy
239
  msgid ""
240
  "You can always look at premium options by checking the \"Pro Options\" in "
243
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
244
  "PRO\" w zakładce \"Go PRO\""
245
 
246
+ #: bws_functions.php:629
247
+ msgid "Add BWS Shortcode"
248
+ msgstr ""
249
+
250
+ #: bws_functions.php:630
251
+ msgid "Add BWS Plugins Shortcode"
252
+ msgstr "Dodaj BWS Shortcode"
253
+
254
+ #: bws_functions.php:649
255
  #, fuzzy
256
  msgid "Add shortcode"
257
  msgstr "Dodaj BWS Shortcode"
258
 
259
+ #: bws_functions.php:649
260
  msgid "Add BestWebSoft plugins' shortcodes using this button."
261
  msgstr ""
262
 
263
+ #: bws_functions.php:695
264
  msgid "Close"
265
  msgstr "Zamknij"
266
 
267
+ #: bws_functions.php:787
268
  #, fuzzy
269
  msgid "Are you sure you want to restore default settings?"
270
  msgstr ""
271
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
272
  "domyślnych?"
273
 
274
+ #: bws_functions.php:790
275
  msgid "Yes, restore all settings"
276
  msgstr "Tak, przywróć wszystkie ustawienia"
277
 
278
+ #: bws_functions.php:791
279
  msgid "No, go back to the settings page"
280
  msgstr "Nie, wróć do ustawień"
281
 
282
+ #: bws_functions.php:833
283
  msgid "Plugin"
284
  msgstr "Wtyczka"
285
 
286
+ #: bws_functions.php:842
287
  msgid "Shortcode settings"
288
  msgstr "Ustawienia shortcode"
289
 
290
+ #: bws_functions.php:847
291
  msgid "The shortcode will be inserted"
292
  msgstr "Shortcode zostanie umieszczony"
293
 
294
+ #: bws_functions.php:852
295
  msgid "Insert"
296
  msgstr "Umieść"
297
 
298
+ #: bws_functions.php:912
299
  msgid "FAQ"
300
  msgstr "FAQ"
301
 
302
+ #: bws_functions.php:918
303
  msgid "For more information:"
304
  msgstr ""
305
 
306
+ #: bws_functions.php:919
307
  msgid "Documentation"
308
  msgstr ""
309
 
310
+ #: bws_functions.php:920
311
  msgid "Video Instructions"
312
  msgstr ""
313
 
314
+ #: bws_functions.php:921
315
  #, fuzzy
316
  msgid "Submit a Request"
317
  msgstr "送信ボタン"
1156
  msgstr "Oceń wtyczkę"
1157
 
1158
  #: product_list.php:7
1159
+ msgid "Admin Tools"
1160
  msgstr ""
1161
 
1162
  #: product_list.php:8
1163
+ msgid "Content"
1164
  msgstr ""
1165
 
1166
  #: product_list.php:9
1167
+ msgid "eCommerce"
1168
  msgstr ""
1169
 
1170
  #: product_list.php:10
1171
+ msgid "Marketing"
1172
+ msgstr ""
1173
 
1174
  #: product_list.php:11
1175
+ msgid "Navigation"
1176
  msgstr ""
1177
 
1178
  #: product_list.php:12
1179
+ msgid "Recommended"
1180
+ msgstr "Polecane"
 
1181
 
1182
  #: product_list.php:13
1183
+ msgid "Security"
1184
  msgstr ""
1185
 
1186
  #: product_list.php:14
1187
+ msgid "SEO"
1188
  msgstr ""
1189
 
1190
  #: product_list.php:15
1191
+ msgid "SMM"
1192
+ msgstr ""
1193
+
1194
+ #: product_list.php:22
1195
+ msgid ""
1196
+ "Protect WordPress website forms from spam entries by means of math logic."
1197
+ msgstr ""
1198
+
1199
+ #: product_list.php:32
1200
+ msgid "Create your personal car rental/booking and reservation website."
1201
+ msgstr ""
1202
+
1203
+ #: product_list.php:42
1204
+ msgid ""
1205
+ "Allow customers to reach you using secure contact form plugin any website "
1206
+ "must have."
1207
+ msgstr ""
1208
+
1209
+ #: product_list.php:52
1210
+ msgid "Add unlimited number of contact forms to WordPress website."
1211
+ msgstr ""
1212
+
1213
+ #: product_list.php:62
1214
+ msgid "Save and manage Contact Form messages. Never lose important data."
1215
+ msgstr ""
1216
+
1217
+ #: product_list.php:72
1218
+ msgid "Add unlimited custom pages to WordPress admin dashboard."
1219
+ msgstr ""
1220
+
1221
+ #: product_list.php:79
1222
+ msgid "Add custom fields to WordPress website search results."
1223
+ msgstr ""
1224
+
1225
+ #: product_list.php:86
1226
+ msgid ""
1227
+ "Add custom post types and taxonomies to WordPress website search results."
1228
+ msgstr ""
1229
+
1230
+ #: product_list.php:96
1231
+ msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1232
+ msgstr ""
1233
+
1234
+ #: product_list.php:103
1235
+ msgid ""
1236
+ "Automatically add outgoing email messages to queue instead of sending them "
1237
+ "immediately."
1238
+ msgstr ""
1239
+
1240
+ #: product_list.php:110
1241
+ msgid ""
1242
+ "Get latest error log messages to diagnose website problems. Define and fix "
1243
+ "issues faster."
1244
+ msgstr ""
1245
+
1246
+ #: product_list.php:117
1247
+ msgid ""
1248
+ "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1249
+ "widgets."
1250
+ msgstr ""
1251
+
1252
+ #: product_list.php:127
1253
+ msgid ""
1254
+ "Add beautiful galleries, albums & images to your WordPress website in a few "
1255
+ "clicks."
1256
+ msgstr ""
1257
+
1258
+ #: product_list.php:137
1259
+ msgid ""
1260
+ "Add unlimited gallery categories. Organize images to make the navigation "
1261
+ "through content easier."
1262
+ msgstr ""
1263
+
1264
+ #: product_list.php:144
1265
+ msgid ""
1266
+ "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1267
+ "posts, pages and widgets."
1268
+ msgstr ""
1269
+
1270
+ #: product_list.php:154
1271
+ msgid ""
1272
+ "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1273
+ "results, categories, tags, and widgets."
1274
+ msgstr ""
1275
+
1276
+ #: product_list.php:164
1277
+ msgid "Add Google Analytics code to WordPress website and track basic stats."
1278
+ msgstr ""
1279
+
1280
+ #: product_list.php:174
1281
+ msgid ""
1282
+ "Protect WordPress website forms from spam entries with Google Captcha "
1283
+ "(reCaptcha)."
1284
+ msgstr ""
1285
+
1286
+ #: product_list.php:184
1287
+ msgid "Add customized Google maps to WordPress posts, pages and widgets."
1288
+ msgstr ""
1289
+
1290
+ #: product_list.php:194
1291
+ msgid ""
1292
+ "Generate and add XML sitemap to WordPress website. Help search engines index "
1293
+ "your blog."
1294
+ msgstr ""
1295
+
1296
+ #: product_list.php:204
1297
+ msgid ""
1298
+ "Replace external WordPress website links with Google shortlinks and track "
1299
+ "click stats."
1300
+ msgstr ""
1301
+
1302
+ #: product_list.php:211
1303
+ msgid ""
1304
+ "Protect WordPress website – allow and deny access for certain IP addresses, "
1305
+ "hostnames, etc."
1306
+ msgstr ""
1307
+
1308
+ #: product_list.php:221
1309
+ msgid ""
1310
+ "Create your personal job board and listing WordPress website. Search jobs, "
1311
+ "submit CV/resumes, choose candidates."
1312
+ msgstr ""
1313
+
1314
+ #: product_list.php:228
1315
+ msgid ""
1316
+ "Protect WordPress website against brute force attacks. Limit rate of login "
1317
+ "attempts."
1318
  msgstr ""
1319
 
1320
+ #: product_list.php:238
1321
+ msgid ""
1322
+ "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1323
+ "5 plugins included – profile, insider, etc."
1324
+ msgstr ""
1325
+
1326
+ #: product_list.php:248
1327
+ msgid ""
1328
+ "Translate WordPress website content to other languages manually. Create "
1329
+ "multilingual pages, posts, widgets, menus, etc."
1330
+ msgstr ""
1331
+
1332
+ #: product_list.php:258
1333
+ msgid ""
1334
+ "Add customizable pagination to WordPress website. Split long content to "
1335
+ "multiple pages for better navigation."
1336
+ msgstr ""
1337
+
1338
+ #: product_list.php:268
1339
+ msgid ""
1340
+ "Generate PDF files and print WordPress posts/pages. Customize document "
1341
+ "header/footer styles and appearance."
1342
+ msgstr ""
1343
+
1344
+ #: product_list.php:278
1345
+ msgid ""
1346
+ "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1347
+ "Profile) to WordPress posts, pages and widgets."
1348
+ msgstr ""
1349
+
1350
+ #: product_list.php:288
1351
+ msgid ""
1352
+ "Create your personal portfolio WordPress website. Manage and showcase past "
1353
+ "projects to get more clients."
1354
+ msgstr ""
1355
+
1356
+ #: product_list.php:298
1357
+ msgid "Export WordPress posts to CSV file format easily. Configure data order."
1358
+ msgstr ""
1359
+
1360
+ #: product_list.php:305
1361
+ msgid ""
1362
+ "Add extra fields to default WordPress user profile. The easiest way to "
1363
+ "create and manage additional custom values."
1364
+ msgstr ""
1365
+
1366
+ #: product_list.php:312
1367
+ msgid ""
1368
+ "Add and display HTML advertisement banner on WordPress website. Customize "
1369
+ "bar styles and appearance."
1370
+ msgstr ""
1371
+
1372
+ #: product_list.php:322
1373
+ msgid ""
1374
+ "Add customizable quotes and tips blocks to WordPress posts, pages and "
1375
+ "widgets."
1376
+ msgstr ""
1377
+
1378
+ #: product_list.php:329
1379
+ msgid ""
1380
+ "Add rating plugin to your WordPress website to receive feedback from your "
1381
+ "customers."
1382
+ msgstr ""
1383
+
1384
+ #: product_list.php:336
1385
+ msgid ""
1386
+ "Create your personal real estate WordPress website. Sell, rent and buy "
1387
+ "properties. Add, search and browse listings easily."
1388
+ msgstr ""
1389
+
1390
+ #: product_list.php:346
1391
+ msgid ""
1392
+ "Attach, un-attach and re-attach media files quickly to WordPress posts and "
1393
+ "pages."
1394
+ msgstr ""
1395
+
1396
+ #: product_list.php:353
1397
+ msgid ""
1398
+ "Add related, featured, latest, and popular posts to your WordPress website. "
1399
+ "Connect your blog readers with a relevant content."
1400
+ msgstr ""
1401
+
1402
+ #: product_list.php:360
1403
+ msgid ""
1404
+ "Send bulk email messages to WordPress users. Custom templates, advanced "
1405
+ "settings and detailed reports."
1406
+ msgstr ""
1407
+
1408
+ #: product_list.php:370
1409
+ msgid ""
1410
+ "The best responsive slider plugin for your WordPress website. Create "
1411
+ "beautifully animated slides just in a few clicks."
1412
+ msgstr ""
1413
+
1414
+ #: product_list.php:377
1415
+ msgid ""
1416
+ "Configure SMTP server to receive email messages from WordPress to Gmail, "
1417
+ "Yahoo, Hotmail and other services."
1418
+ msgstr ""
1419
+
1420
+ #: product_list.php:384
1421
+ msgid ""
1422
+ "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1423
+ "FB, Twitter, G+1, Pinterest, LinkedIn."
1424
+ msgstr ""
1425
+
1426
+ #: product_list.php:394
1427
+ msgid ""
1428
+ "Add social media login, registration, and commenting to your WordPress "
1429
+ "website."
1430
+ msgstr ""
1431
+
1432
+ #: product_list.php:401
1433
+ msgid ""
1434
+ "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1435
+ "Collect data and subscribe your users."
1436
+ msgstr ""
1437
+
1438
+ #: product_list.php:411
1439
+ msgid ""
1440
+ "Add testimonials and feedbacks from your customers to WordPress website "
1441
+ "posts, pages, and widgets."
1442
+ msgstr ""
1443
+
1444
+ #: product_list.php:418
1445
+ msgid ""
1446
+ "Best timesheet plugin for WordPress. Track employee time, streamline "
1447
+ "attendance and generate reports."
1448
+ msgstr ""
1449
+
1450
+ #: product_list.php:428
1451
+ msgid ""
1452
+ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1453
+ "and pages."
1454
+ msgstr ""
1455
+
1456
+ #: product_list.php:438
1457
+ msgid ""
1458
+ "Automatically check and update WordPress website core with all installed "
1459
+ "plugins and themes to the latest versions."
1460
+ msgstr ""
1461
+
1462
+ #: product_list.php:448
1463
+ msgid ""
1464
+ "Powerful user role management plugin for WordPress website. Create, edit, "
1465
+ "copy, and delete user roles."
1466
+ msgstr ""
1467
+
1468
+ #: product_list.php:458
1469
+ msgid ""
1470
+ "Display live count of online visitors who are currently browsing your "
1471
+ "WordPress website."
1472
+ msgstr ""
1473
+
1474
+ #: product_list.php:468
1475
+ msgid ""
1476
+ "Backup and export Zendesk Help Center content automatically to your "
1477
+ "WordPress website database."
1478
+ msgstr ""
1479
+
1480
+ #, fuzzy
1481
+ #~ msgid "Site Stats"
1482
+ #~ msgstr "Status systemu"
1483
+
1484
  #~ msgid "Thank you for installing"
1485
  #~ msgstr "Dziękujemy za instalację"
1486
 
1571
  #~ msgid "Preview"
1572
  #~ msgstr "Podgląd"
1573
 
 
 
 
1574
  #~ msgid "Activated plugins"
1575
  #~ msgstr "有効なプラグイン"
1576
 
bws_menu/languages/bestwebsoft-ru_RU.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ru_RU.po CHANGED
@@ -2,17 +2,17 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-03-28 13:51+0300\n"
6
- "PO-Revision-Date: 2017-03-28 13:53+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
@@ -48,7 +48,7 @@ msgstr "Оценить"
48
  msgid "Need help?"
49
  msgstr "Нужна помощь?"
50
 
51
- #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
52
  msgid "Visit Help Center"
53
  msgstr "Перейти в Help Center"
54
 
@@ -147,7 +147,7 @@ msgid "Add New"
147
  msgstr "Добавить"
148
 
149
  #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
150
- #: bws_functions.php:378 bws_functions.php:482
151
  msgid "Close notice"
152
  msgstr "Закрыть"
153
 
@@ -199,12 +199,12 @@ msgstr ""
199
  "Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
200
  "приоритетную тех.поддержку или обновления."
201
 
202
- #: bws_functions.php:477
203
  #, php-format
204
  msgid "Thank you for choosing %s plugin!"
205
  msgstr "Спасибо за выбор плагина %s!"
206
 
207
- #: bws_functions.php:478
208
  msgid ""
209
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
210
  "we'd love to hear about it!"
@@ -213,25 +213,25 @@ msgstr ""
213
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
214
  "новых идей!"
215
 
216
- #: bws_functions.php:479
217
  msgid "Suggest a Feature"
218
  msgstr "Предложить функционал"
219
 
220
- #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
221
  #: class-bws-settings.php:584 class-bws-settings.php:587
222
  msgid "Notice"
223
  msgstr "Внимание"
224
 
225
- #: bws_functions.php:495
226
  msgid "The plugin's settings have been changed."
227
  msgstr "Настройки плагина были изменены"
228
 
229
- #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
230
  #: deprecated.php:640
231
  msgid "Save Changes"
232
  msgstr "Сохранить изменения"
233
 
234
- #: bws_functions.php:510
235
  msgid ""
236
  "You can always look at premium options by checking the \"Pro Options\" in "
237
  "the \"Misc\" tab."
@@ -239,65 +239,73 @@ msgstr ""
239
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
240
  "вкладке \"Разное\"."
241
 
242
- #: bws_functions.php:651
 
 
 
 
 
 
 
 
243
  msgid "Add shortcode"
244
  msgstr "Добавить шорткод"
245
 
246
- #: bws_functions.php:651
247
  msgid "Add BestWebSoft plugins' shortcodes using this button."
248
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
249
 
250
- #: bws_functions.php:700
251
  msgid "Close"
252
  msgstr "Закрыть"
253
 
254
- #: bws_functions.php:792
255
  msgid "Are you sure you want to restore default settings?"
256
  msgstr ""
257
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
258
  "умолчанию?"
259
 
260
- #: bws_functions.php:795
261
  msgid "Yes, restore all settings"
262
  msgstr "Да, восстановить все настройки"
263
 
264
- #: bws_functions.php:796
265
  msgid "No, go back to the settings page"
266
  msgstr "Нет, вернуться на страницу настроек"
267
 
268
- #: bws_functions.php:842
269
  msgid "Plugin"
270
  msgstr "Плагин"
271
 
272
- #: bws_functions.php:851
273
  msgid "Shortcode settings"
274
  msgstr "Настройки шорткода"
275
 
276
- #: bws_functions.php:856
277
  msgid "The shortcode will be inserted"
278
  msgstr "Будет вставлен шорткод"
279
 
280
- #: bws_functions.php:861
281
  msgid "Insert"
282
  msgstr "Вставить"
283
 
284
- #: bws_functions.php:921
285
  msgid "FAQ"
286
  msgstr "FAQ"
287
 
288
- #: bws_functions.php:927
289
  msgid "For more information:"
290
  msgstr "Для дополнительной информации:"
291
 
292
- #: bws_functions.php:928
293
  msgid "Documentation"
294
  msgstr "Документация"
295
 
296
- #: bws_functions.php:929
297
  msgid "Video Instructions"
298
  msgstr "Видео инструкции"
299
 
300
- #: bws_functions.php:930
301
  msgid "Submit a Request"
302
  msgstr "Отправить запрос"
303
 
@@ -560,7 +568,7 @@ msgstr "Управление купленными лицензиями и под
560
  #: bws_menu.php:326
561
  #, php-format
562
  msgid "Get Access to %s+ Premium Plugins"
563
- msgstr "Получить Доступ к %s+ Премиум Плагинам"
564
 
565
  #: bws_menu.php:328
566
  msgid "Subscribe to Pro Membership"
@@ -703,7 +711,7 @@ msgstr "Установить"
703
 
704
  #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
705
  msgid "Upgrade to Pro"
706
- msgstr "Обновиться на Pro"
707
 
708
  #: bws_menu.php:563 bws_menu.php:572
709
  msgid "Activate this plugin"
@@ -1109,40 +1117,493 @@ msgid "version of the plugin."
1109
  msgstr "версия плагина."
1110
 
1111
  #: product_list.php:7
1112
- msgid "Advertisement"
1113
- msgstr "Реклама"
1114
 
1115
  #: product_list.php:8
1116
- msgid "Content & Media"
1117
- msgstr "Содержание & Медиа"
1118
 
1119
  #: product_list.php:9
1120
- msgid "Management"
1121
- msgstr "Управление"
1122
 
1123
  #: product_list.php:10
1124
- msgid "Recommended"
1125
- msgstr "Рекомендованные"
1126
 
1127
  #: product_list.php:11
1128
- msgid "Security"
1129
- msgstr "Безопасность"
1130
 
1131
  #: product_list.php:12
1132
- msgid "Site Stats"
1133
- msgstr "Статистика сайта"
1134
 
1135
  #: product_list.php:13
1136
- msgid "Social"
1137
- msgstr "Социальное"
1138
 
1139
  #: product_list.php:14
1140
- msgid "Utilities"
1141
- msgstr "Утилиты"
1142
 
1143
  #: product_list.php:15
1144
- msgid "Other"
1145
- msgstr "Другое"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1146
 
1147
  #~ msgid "Thank you for installing"
1148
  #~ msgstr "Спасибо за установку"
@@ -1259,9 +1720,6 @@ msgstr "Другое"
1259
  #~ msgid "Preview"
1260
  #~ msgstr "Просмотр"
1261
 
1262
- #~ msgid "Add BWS Plugins Shortcode"
1263
- #~ msgstr "Добавить шорткод BWS Плагина"
1264
-
1265
  #~ msgid "Select Plugin"
1266
  #~ msgstr "Выберите плагин"
1267
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-08 11:26+0300\n"
6
+ "PO-Revision-Date: 2017-06-08 12:06+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
48
  msgid "Need help?"
49
  msgstr "Нужна помощь?"
50
 
51
+ #: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
52
  msgid "Visit Help Center"
53
  msgstr "Перейти в Help Center"
54
 
147
  msgstr "Добавить"
148
 
149
  #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
150
+ #: bws_functions.php:378 bws_functions.php:480
151
  msgid "Close notice"
152
  msgstr "Закрыть"
153
 
199
  "Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
200
  "приоритетную тех.поддержку или обновления."
201
 
202
+ #: bws_functions.php:475
203
  #, php-format
204
  msgid "Thank you for choosing %s plugin!"
205
  msgstr "Спасибо за выбор плагина %s!"
206
 
207
+ #: bws_functions.php:476
208
  msgid ""
209
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
210
  "we'd love to hear about it!"
213
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
214
  "новых идей!"
215
 
216
+ #: bws_functions.php:477
217
  msgid "Suggest a Feature"
218
  msgstr "Предложить функционал"
219
 
220
+ #: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
221
  #: class-bws-settings.php:584 class-bws-settings.php:587
222
  msgid "Notice"
223
  msgstr "Внимание"
224
 
225
+ #: bws_functions.php:493
226
  msgid "The plugin's settings have been changed."
227
  msgstr "Настройки плагина были изменены"
228
 
229
+ #: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
230
  #: deprecated.php:640
231
  msgid "Save Changes"
232
  msgstr "Сохранить изменения"
233
 
234
+ #: bws_functions.php:508
235
  msgid ""
236
  "You can always look at premium options by checking the \"Pro Options\" in "
237
  "the \"Misc\" tab."
239
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
240
  "вкладке \"Разное\"."
241
 
242
+ #: bws_functions.php:629
243
+ msgid "Add BWS Shortcode"
244
+ msgstr "Добавить BWS шорткод"
245
+
246
+ #: bws_functions.php:630
247
+ msgid "Add BWS Plugins Shortcode"
248
+ msgstr "Добавить шорткод BWS Плагина"
249
+
250
+ #: bws_functions.php:649
251
  msgid "Add shortcode"
252
  msgstr "Добавить шорткод"
253
 
254
+ #: bws_functions.php:649
255
  msgid "Add BestWebSoft plugins' shortcodes using this button."
256
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
257
 
258
+ #: bws_functions.php:695
259
  msgid "Close"
260
  msgstr "Закрыть"
261
 
262
+ #: bws_functions.php:787
263
  msgid "Are you sure you want to restore default settings?"
264
  msgstr ""
265
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
266
  "умолчанию?"
267
 
268
+ #: bws_functions.php:790
269
  msgid "Yes, restore all settings"
270
  msgstr "Да, восстановить все настройки"
271
 
272
+ #: bws_functions.php:791
273
  msgid "No, go back to the settings page"
274
  msgstr "Нет, вернуться на страницу настроек"
275
 
276
+ #: bws_functions.php:833
277
  msgid "Plugin"
278
  msgstr "Плагин"
279
 
280
+ #: bws_functions.php:842
281
  msgid "Shortcode settings"
282
  msgstr "Настройки шорткода"
283
 
284
+ #: bws_functions.php:847
285
  msgid "The shortcode will be inserted"
286
  msgstr "Будет вставлен шорткод"
287
 
288
+ #: bws_functions.php:852
289
  msgid "Insert"
290
  msgstr "Вставить"
291
 
292
+ #: bws_functions.php:912
293
  msgid "FAQ"
294
  msgstr "FAQ"
295
 
296
+ #: bws_functions.php:918
297
  msgid "For more information:"
298
  msgstr "Для дополнительной информации:"
299
 
300
+ #: bws_functions.php:919
301
  msgid "Documentation"
302
  msgstr "Документация"
303
 
304
+ #: bws_functions.php:920
305
  msgid "Video Instructions"
306
  msgstr "Видео инструкции"
307
 
308
+ #: bws_functions.php:921
309
  msgid "Submit a Request"
310
  msgstr "Отправить запрос"
311
 
568
  #: bws_menu.php:326
569
  #, php-format
570
  msgid "Get Access to %s+ Premium Plugins"
571
+ msgstr "Получить доступ к %s+ премиум плагинам"
572
 
573
  #: bws_menu.php:328
574
  msgid "Subscribe to Pro Membership"
711
 
712
  #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
713
  msgid "Upgrade to Pro"
714
+ msgstr "Обновить до Pro"
715
 
716
  #: bws_menu.php:563 bws_menu.php:572
717
  msgid "Activate this plugin"
1117
  msgstr "версия плагина."
1118
 
1119
  #: product_list.php:7
1120
+ msgid "Admin Tools"
1121
+ msgstr "Инструменты"
1122
 
1123
  #: product_list.php:8
1124
+ msgid "Content"
1125
+ msgstr "Контент"
1126
 
1127
  #: product_list.php:9
1128
+ msgid "eCommerce"
1129
+ msgstr "Коммерция"
1130
 
1131
  #: product_list.php:10
1132
+ msgid "Marketing"
1133
+ msgstr "Маркетинг"
1134
 
1135
  #: product_list.php:11
1136
+ msgid "Navigation"
1137
+ msgstr "Навигация"
1138
 
1139
  #: product_list.php:12
1140
+ msgid "Recommended"
1141
+ msgstr "Рекомендованные"
1142
 
1143
  #: product_list.php:13
1144
+ msgid "Security"
1145
+ msgstr "Безопасность"
1146
 
1147
  #: product_list.php:14
1148
+ msgid "SEO"
1149
+ msgstr "Поисковая оптимизация"
1150
 
1151
  #: product_list.php:15
1152
+ msgid "SMM"
1153
+ msgstr "СММ"
1154
+
1155
+ #: product_list.php:22
1156
+ msgid ""
1157
+ "Protect WordPress website forms from spam entries by means of math logic."
1158
+ msgstr ""
1159
+ "Защищайте формы вашего сайта WordPress от взлома путем математической логики."
1160
+
1161
+ #: product_list.php:32
1162
+ msgid "Create your personal car rental/booking and reservation website."
1163
+ msgstr "Создайте свой собственный сайт проката и резервирования автомобилей."
1164
+
1165
+ #: product_list.php:42
1166
+ msgid ""
1167
+ "Allow customers to reach you using secure contact form plugin any website "
1168
+ "must have."
1169
+ msgstr ""
1170
+ "Предоставьте возможность клиентам осуществлять связь с вами через безопасный "
1171
+ "плагин контактной формы, который должен иметь любой сайт."
1172
+
1173
+ #: product_list.php:52
1174
+ msgid "Add unlimited number of contact forms to WordPress website."
1175
+ msgstr ""
1176
+ "Добавляйте неограниченное количество контактных форм на ваш сайт WordPress."
1177
+
1178
+ #: product_list.php:62
1179
+ msgid "Save and manage Contact Form messages. Never lose important data."
1180
+ msgstr ""
1181
+ "Сохраняйте и управляйте сообщениями плагина Contact Form. Никогда не теряйте "
1182
+ "важные данные."
1183
+
1184
+ #: product_list.php:72
1185
+ msgid "Add unlimited custom pages to WordPress admin dashboard."
1186
+ msgstr ""
1187
+ "Добавляйте неограниченное количество пользовательских страниц в панели "
1188
+ "администратора WordPress."
1189
+
1190
+ #: product_list.php:79
1191
+ msgid "Add custom fields to WordPress website search results."
1192
+ msgstr ""
1193
+ "Добавляйте пользовательские поля в результаты поиска вашего сайта WordPress."
1194
+
1195
+ #: product_list.php:86
1196
+ msgid ""
1197
+ "Add custom post types and taxonomies to WordPress website search results."
1198
+ msgstr ""
1199
+ "Добавляйте пользовательские типы постов и таксономии в результаты поиска на "
1200
+ "вашем сайте WordPress."
1201
+
1202
+ #: product_list.php:96
1203
+ msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1204
+ msgstr ""
1205
+ "Добавляйте кнопки PayPal и 2CO, чтобы получать пожертвования и "
1206
+ "благотворительные взносы."
1207
+
1208
+ #: product_list.php:103
1209
+ msgid ""
1210
+ "Automatically add outgoing email messages to queue instead of sending them "
1211
+ "immediately."
1212
+ msgstr ""
1213
+ "Автоматически формируйте очередь отправки исходящих электронных сообщений. "
1214
+ "Задавайте время и приоритет рассылки."
1215
+
1216
+ #: product_list.php:110
1217
+ msgid ""
1218
+ "Get latest error log messages to diagnose website problems. Define and fix "
1219
+ "issues faster."
1220
+ msgstr ""
1221
+ "Получайте последние сообщения из журнала ошибок для диагностики проблем "
1222
+ "сайта. Быстрее выявляйте и устраняйте проблемы."
1223
+
1224
+ #: product_list.php:117
1225
+ msgid ""
1226
+ "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1227
+ "widgets."
1228
+ msgstr ""
1229
+ "Добавляйте кнопки Facebook \"Подписаться\", \"Нравится\" и \"Поделиться\" в "
1230
+ "посты, страницы и виджеты сайта WordPress."
1231
+
1232
+ #: product_list.php:127
1233
+ msgid ""
1234
+ "Add beautiful galleries, albums & images to your WordPress website in a few "
1235
+ "clicks."
1236
+ msgstr ""
1237
+ "Добавляйте живописные галереи, альбомы и изображения на ваш сайт WordPress "
1238
+ "всего в несколько кликов."
1239
+
1240
+ #: product_list.php:137
1241
+ msgid ""
1242
+ "Add unlimited gallery categories. Organize images to make the navigation "
1243
+ "through content easier."
1244
+ msgstr ""
1245
+ "Добавляйте неограниченное количество категорий галерей. Группируйте "
1246
+ "изображения, чтобы упростить навигацию по контенту."
1247
+
1248
+ #: product_list.php:144
1249
+ msgid ""
1250
+ "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1251
+ "posts, pages and widgets."
1252
+ msgstr ""
1253
+ "Добавляйте кнопки Google \"+1\", \"Поделиться\", \"Подписаться\", \"Hangout"
1254
+ "\" и значок профиля к постам, страницам и виджетам WordPress."
1255
+
1256
+ #: product_list.php:154
1257
+ msgid ""
1258
+ "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1259
+ "results, categories, tags, and widgets."
1260
+ msgstr ""
1261
+ "Добавляйте рекламу сервиса Adsense на страницы, посты, пользовательские "
1262
+ "посты, результаты поиска, категории, теги и виджеты сайта WordPress."
1263
+
1264
+ #: product_list.php:164
1265
+ msgid "Add Google Analytics code to WordPress website and track basic stats."
1266
+ msgstr ""
1267
+ "Добавляйте код Google Analytics на ваш сайт WordPress и отслеживайте базовую "
1268
+ "статистику сайта."
1269
+
1270
+ #: product_list.php:174
1271
+ msgid ""
1272
+ "Protect WordPress website forms from spam entries with Google Captcha "
1273
+ "(reCaptcha)."
1274
+ msgstr ""
1275
+ "Защищайте формы вашего сайта WordPress от спама с помощью Google Captcha "
1276
+ "(reCaptcha)."
1277
+
1278
+ #: product_list.php:184
1279
+ msgid "Add customized Google maps to WordPress posts, pages and widgets."
1280
+ msgstr ""
1281
+ "Добавляйте пользовательские карты Google в посты, страницы и виджеты "
1282
+ "WordPress."
1283
+
1284
+ #: product_list.php:194
1285
+ msgid ""
1286
+ "Generate and add XML sitemap to WordPress website. Help search engines index "
1287
+ "your blog."
1288
+ msgstr ""
1289
+ "Создавайте и добавляйте файлы XML sitemap на ваш сайт WordPress. Помогите "
1290
+ "поисковым системам проиндексировать ваш блог."
1291
+
1292
+ #: product_list.php:204
1293
+ msgid ""
1294
+ "Replace external WordPress website links with Google shortlinks and track "
1295
+ "click stats."
1296
+ msgstr ""
1297
+ "Замените внешние ссылки сайта WordPress на короткие ссылки Google и "
1298
+ "отслеживайте статистику кликов."
1299
+
1300
+ #: product_list.php:211
1301
+ msgid ""
1302
+ "Protect WordPress website – allow and deny access for certain IP addresses, "
1303
+ "hostnames, etc."
1304
+ msgstr ""
1305
+ "Защитите свой сайт WordPress - предоставляйте и запрещайте доступ с "
1306
+ "определенных IP-адресов, имен хостов и т.д."
1307
+
1308
+ #: product_list.php:221
1309
+ msgid ""
1310
+ "Create your personal job board and listing WordPress website. Search jobs, "
1311
+ "submit CV/resumes, choose candidates."
1312
+ msgstr ""
1313
+ "Создавайте свою собственную доску объявлений с перечнем вакансий на базе "
1314
+ "WordPress. Поиск вакансий, подача резюме/CV кандидата, выбор кандидатов."
1315
+
1316
+ #: product_list.php:228
1317
+ msgid ""
1318
+ "Protect WordPress website against brute force attacks. Limit rate of login "
1319
+ "attempts."
1320
+ msgstr ""
1321
+ "Защищайте свой сайт WordPress от брутфорс-атак. Ограничивайте количество "
1322
+ "попыток ввода логина."
1323
+
1324
+ #: product_list.php:238
1325
+ msgid ""
1326
+ "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1327
+ "5 plugins included – profile, insider, etc."
1328
+ msgstr ""
1329
+ "Добавляйте кнопки LinkedIn \"Поделиться\" и \"Отслеживать\" к постам, "
1330
+ "страницам и виджетам WordPress. 5 плагинов включено - Профиль, Инсайдер и т."
1331
+ "д."
1332
+
1333
+ #: product_list.php:248
1334
+ msgid ""
1335
+ "Translate WordPress website content to other languages manually. Create "
1336
+ "multilingual pages, posts, widgets, menus, etc."
1337
+ msgstr ""
1338
+ "Переводите содержимое сайта WordPress на другие языки вручную. Создавайте "
1339
+ "многоязычные страницы, посты, виджеты, меню и т.д."
1340
+
1341
+ #: product_list.php:258
1342
+ msgid ""
1343
+ "Add customizable pagination to WordPress website. Split long content to "
1344
+ "multiple pages for better navigation."
1345
+ msgstr ""
1346
+ "Добавляйте настраиваемую пагинацию на ваш сайт WordPress. Разбивайте "
1347
+ "объемный контент на несколько страниц для лучшей навигации."
1348
+
1349
+ #: product_list.php:268
1350
+ msgid ""
1351
+ "Generate PDF files and print WordPress posts/pages. Customize document "
1352
+ "header/footer styles and appearance."
1353
+ msgstr ""
1354
+ "Создавайте PDF-файлы и печатайте посты/страницы сайта WordPress. "
1355
+ "Настраивайте стили хедера/футера документа и его внешний вид."
1356
+
1357
+ #: product_list.php:278
1358
+ msgid ""
1359
+ "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1360
+ "Profile) to WordPress posts, pages and widgets."
1361
+ msgstr ""
1362
+ "Добавляйте кнопки Pinterest \"Подписаться\", \"Сохранить\" и виджеты профиля "
1363
+ "(Пин, Доска, Профиль) к постам, страницам и виджетам WordPress."
1364
+
1365
+ #: product_list.php:288
1366
+ msgid ""
1367
+ "Create your personal portfolio WordPress website. Manage and showcase past "
1368
+ "projects to get more clients."
1369
+ msgstr ""
1370
+ "Создавайте и добавляйте портфолио на свой сайт WordPress. Управляйте и "
1371
+ "демонстрируйте прошлые проекты, чтобы привлечь больше клиентов."
1372
+
1373
+ #: product_list.php:298
1374
+ msgid "Export WordPress posts to CSV file format easily. Configure data order."
1375
+ msgstr ""
1376
+ "С легкостью экспортируйте посты WordPress в файлы формата CSV. Настраивайте "
1377
+ "порядок отображения данных."
1378
+
1379
+ #: product_list.php:305
1380
+ msgid ""
1381
+ "Add extra fields to default WordPress user profile. The easiest way to "
1382
+ "create and manage additional custom values."
1383
+ msgstr ""
1384
+ "Добавляйте пользовательские поля в стандартный профиль WordPress. Самый "
1385
+ "простой способ создания и управления дополнительными полями."
1386
+
1387
+ #: product_list.php:312
1388
+ msgid ""
1389
+ "Add and display HTML advertisement banner on WordPress website. Customize "
1390
+ "bar styles and appearance."
1391
+ msgstr ""
1392
+ "Добавляйте и отображайте баннерную HTML рекламу на сайте WordPress. "
1393
+ "Настраивайте стили и внешний вид баннера."
1394
+
1395
+ #: product_list.php:322
1396
+ msgid ""
1397
+ "Add customizable quotes and tips blocks to WordPress posts, pages and "
1398
+ "widgets."
1399
+ msgstr ""
1400
+ "Добавляйте настраиваемые цитаты и подсказки к постам, страницам и виджетам "
1401
+ "WordPress."
1402
+
1403
+ #: product_list.php:329
1404
+ msgid ""
1405
+ "Add rating plugin to your WordPress website to receive feedback from your "
1406
+ "customers."
1407
+ msgstr ""
1408
+ "Добавляйте систему оценивания и рейтинга на ваш сайт WordPress и получайте "
1409
+ "отзывы от ваших клиентов."
1410
+
1411
+ #: product_list.php:336
1412
+ msgid ""
1413
+ "Create your personal real estate WordPress website. Sell, rent and buy "
1414
+ "properties. Add, search and browse listings easily."
1415
+ msgstr ""
1416
+ "Создайте свой личный сайт агентства недвижимости на базе WordPress. "
1417
+ "Продавайте, арендуйте и покупайте недвижимость. Легко добавляйте, находите и "
1418
+ "просматривайте листинги."
1419
+
1420
+ #: product_list.php:346
1421
+ msgid ""
1422
+ "Attach, un-attach and re-attach media files quickly to WordPress posts and "
1423
+ "pages."
1424
+ msgstr ""
1425
+ "Прикрепляйте, открепляйте и повторно прикрепляйте медиа файлы к постам и "
1426
+ "страницам WordPress."
1427
+
1428
+ #: product_list.php:353
1429
+ msgid ""
1430
+ "Add related, featured, latest, and popular posts to your WordPress website. "
1431
+ "Connect your blog readers with a relevant content."
1432
+ msgstr ""
1433
+ "Добавляйте похожие, избранные, последние и популярные посты на ваш сайт "
1434
+ "WordPress. Предоставляйте своим читателям контент схожей тематики."
1435
+
1436
+ #: product_list.php:360
1437
+ msgid ""
1438
+ "Send bulk email messages to WordPress users. Custom templates, advanced "
1439
+ "settings and detailed reports."
1440
+ msgstr ""
1441
+ "Осуществляйте массовую рассылку писем пользователям WordPress. "
1442
+ "Пользовательские шаблоны, дополнительные настройки и подробные отчеты."
1443
+
1444
+ #: product_list.php:370
1445
+ msgid ""
1446
+ "The best responsive slider plugin for your WordPress website. Create "
1447
+ "beautifully animated slides just in a few clicks."
1448
+ msgstr ""
1449
+ "Самый лучший адаптивный слайдер для вашего сайта WordPress. Создавайте "
1450
+ "красиво анимированные слайды всего в несколько кликов."
1451
+
1452
+ #: product_list.php:377
1453
+ msgid ""
1454
+ "Configure SMTP server to receive email messages from WordPress to Gmail, "
1455
+ "Yahoo, Hotmail and other services."
1456
+ msgstr ""
1457
+ "Настраивайте SMTP-сервер, чтобы получать электронные сообщения с сайта "
1458
+ "WordPress на такие почтовые службы как Gmail, Yahoo, Hotmail и многие другие."
1459
+
1460
+ #: product_list.php:384
1461
+ msgid ""
1462
+ "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1463
+ "FB, Twitter, G+1, Pinterest, LinkedIn."
1464
+ msgstr ""
1465
+ "Добавляйте кнопки и виджеты социальных сетей к постам, страницам и виджетам "
1466
+ "WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
1467
+
1468
+ #: product_list.php:394
1469
+ msgid ""
1470
+ "Add social media login, registration, and commenting to your WordPress "
1471
+ "website."
1472
+ msgstr ""
1473
+ "Добавляйте на свой сайт WordPress возможность входа, регистрации и "
1474
+ "комментирования с использованием существующих аккаунтов социальных сетей."
1475
+
1476
+ #: product_list.php:401
1477
+ msgid ""
1478
+ "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1479
+ "Collect data and subscribe your users."
1480
+ msgstr ""
1481
+ "Добавляйте форму подписки на новостную рассылку в посты, страницы и виджеты "
1482
+ "WordPress. Собирайте данные и осуществляйте подписку пользователей."
1483
+
1484
+ #: product_list.php:411
1485
+ msgid ""
1486
+ "Add testimonials and feedbacks from your customers to WordPress website "
1487
+ "posts, pages, and widgets."
1488
+ msgstr ""
1489
+ "Добавляйте рекомендации и отзывы ваших клиентов в посты, страницы и виджеты "
1490
+ "сайта WordPress."
1491
+
1492
+ #: product_list.php:418
1493
+ msgid ""
1494
+ "Best timesheet plugin for WordPress. Track employee time, streamline "
1495
+ "attendance and generate reports."
1496
+ msgstr ""
1497
+ "Лучший плагин учёта рабочего времени на сайте WordPress. Отслеживайте время "
1498
+ "работы сотрудников, оптимизируйте график работы в офисе и создавайте отчеты."
1499
+
1500
+ #: product_list.php:428
1501
+ msgid ""
1502
+ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1503
+ "and pages."
1504
+ msgstr ""
1505
+ "Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и \"Упомянуть"
1506
+ "\" к постам и страницам WordPress. "
1507
+
1508
+ #: product_list.php:438
1509
+ msgid ""
1510
+ "Automatically check and update WordPress website core with all installed "
1511
+ "plugins and themes to the latest versions."
1512
+ msgstr ""
1513
+ "Выполняйте автоматическую проверку и обновление ядра WordPress до последних "
1514
+ "версий со всеми установленными плагинами и темами."
1515
+
1516
+ #: product_list.php:448
1517
+ msgid ""
1518
+ "Powerful user role management plugin for WordPress website. Create, edit, "
1519
+ "copy, and delete user roles."
1520
+ msgstr ""
1521
+ "Эффективный плагин управления ролями пользователей для сайта WordPress. "
1522
+ "Создавайте, редактируйте, копируйте и удаляйте роли пользователей."
1523
+
1524
+ #: product_list.php:458
1525
+ msgid ""
1526
+ "Display live count of online visitors who are currently browsing your "
1527
+ "WordPress website."
1528
+ msgstr ""
1529
+ "Ведите подсчет количества посетителей, которые в настоящее время "
1530
+ "просматривают ваш сайт WordPress."
1531
+
1532
+ #: product_list.php:468
1533
+ msgid ""
1534
+ "Backup and export Zendesk Help Center content automatically to your "
1535
+ "WordPress website database."
1536
+ msgstr ""
1537
+ "Делайте автоматическое резервное копирование и экспорт содержимого Zendesk "
1538
+ "Help Center в базу данных вашего сайта WordPress."
1539
+
1540
+ #~ msgid ""
1541
+ #~ "Add related posts to WordPress website posts or widgets. Link your "
1542
+ #~ "readers to relevant content."
1543
+ #~ msgstr ""
1544
+ #~ "Добавляйте связанные публикации в посты или виджеты сайта WordPress. "
1545
+ #~ "Предоставляйте своим читателям контент схожей тематики."
1546
+
1547
+ #~ msgid "Advertisement"
1548
+ #~ msgstr "Реклама"
1549
+
1550
+ #~ msgid "Content & Media"
1551
+ #~ msgstr "Содержание и мультимедийные элементы"
1552
+
1553
+ #~ msgid "Management"
1554
+ #~ msgstr "Управление"
1555
+
1556
+ #~ msgid "Site Stats"
1557
+ #~ msgstr "Статистика сайта"
1558
+
1559
+ #~ msgid "Social"
1560
+ #~ msgstr "Социальные сервисы"
1561
+
1562
+ #~ msgid "Utilities"
1563
+ #~ msgstr "Утилиты"
1564
+
1565
+ #~ msgid "Other"
1566
+ #~ msgstr "Другое"
1567
+
1568
+ #~ msgid ""
1569
+ #~ "Manage database and file system right from your WordPress admin dashboard."
1570
+ #~ msgstr ""
1571
+ #~ "Управляйте базой данных и файловой системой прямо из панели "
1572
+ #~ "администратора WordPress."
1573
+
1574
+ #~ msgid ""
1575
+ #~ "Add featured posts to WordPress website posts and widgets. Highlight "
1576
+ #~ "important information."
1577
+ #~ msgstr ""
1578
+ #~ "Добавляйте избранные публикации к постам и виджетам сайта WordPress. "
1579
+ #~ "Выделяйте важную информацию."
1580
+
1581
+ #~ msgid ""
1582
+ #~ "Add widgets Latest Posts or Latest Posts for Selected Categories to your "
1583
+ #~ "WordPress website."
1584
+ #~ msgstr ""
1585
+ #~ "Добавляйте виджет новейших постов или виджет новейших постов для "
1586
+ #~ "выбранной категории на сайт WordPress."
1587
+
1588
+ #~ msgid ""
1589
+ #~ "Track views, comments and add the most popular posts to Wordpress widgets."
1590
+ #~ msgstr ""
1591
+ #~ "Отслеживайте просмотры и комментарии, добавляйте самые популярные посты в "
1592
+ #~ "виджеты сайта Wordpress."
1593
+
1594
+ #~ msgid ""
1595
+ #~ "Add latest posts or latest posts for selected categories widgets to "
1596
+ #~ "WordPress website."
1597
+ #~ msgstr ""
1598
+ #~ "Добавляйте виджет новейших постов или виджет новейших постов для "
1599
+ #~ "выбранной категории на сайт WordPress."
1600
+
1601
+ #~ msgid ""
1602
+ #~ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress "
1603
+ #~ "posts, pages and widgets."
1604
+ #~ msgstr ""
1605
+ #~ "Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и "
1606
+ #~ "\"Упомянуть\" к постам и страницам WordPress. "
1607
 
1608
  #~ msgid "Thank you for installing"
1609
  #~ msgstr "Спасибо за установку"
1720
  #~ msgid "Preview"
1721
  #~ msgstr "Просмотр"
1722
 
 
 
 
1723
  #~ msgid "Select Plugin"
1724
  #~ msgstr "Выберите плагин"
1725
 
bws_menu/languages/bestwebsoft-uk.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-uk.po CHANGED
@@ -2,18 +2,20 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-03-28 13:52+0300\n"
6
- "PO-Revision-Date: 2017-03-28 13:54+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
- "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: bws_functions.php:72 bws_functions.php:190
@@ -48,7 +50,7 @@ msgstr "Оцінити"
48
  msgid "Need help?"
49
  msgstr "Потрібна допомога?"
50
 
51
- #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
52
  msgid "Visit Help Center"
53
  msgstr "Перейти до Help Center"
54
 
@@ -146,7 +148,7 @@ msgid "Add New"
146
  msgstr "Додати"
147
 
148
  #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
149
- #: bws_functions.php:378 bws_functions.php:482
150
  msgid "Close notice"
151
  msgstr "Закрити"
152
 
@@ -197,12 +199,12 @@ msgstr ""
197
  "Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
198
  "першочергову технічну підтримку та оновлення."
199
 
200
- #: bws_functions.php:477
201
  #, php-format
202
  msgid "Thank you for choosing %s plugin!"
203
  msgstr "Дякую за вибір плагіна %s!"
204
 
205
- #: bws_functions.php:478
206
  msgid ""
207
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
208
  "we'd love to hear about it!"
@@ -211,25 +213,25 @@ msgstr ""
211
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
212
  "нових ідей!"
213
 
214
- #: bws_functions.php:479
215
  msgid "Suggest a Feature"
216
  msgstr "Запропонувати функціонал"
217
 
218
- #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
219
  #: class-bws-settings.php:584 class-bws-settings.php:587
220
  msgid "Notice"
221
  msgstr "Зауважте"
222
 
223
- #: bws_functions.php:495
224
  msgid "The plugin's settings have been changed."
225
  msgstr "Налаштування плагіну змінено."
226
 
227
- #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
228
  #: deprecated.php:640
229
  msgid "Save Changes"
230
  msgstr "Зберегти зміни"
231
 
232
- #: bws_functions.php:510
233
  msgid ""
234
  "You can always look at premium options by checking the \"Pro Options\" in "
235
  "the \"Misc\" tab."
@@ -237,63 +239,71 @@ msgstr ""
237
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
238
  "опції\" на вкладці \"Різне\"."
239
 
240
- #: bws_functions.php:651
 
 
 
 
 
 
 
 
241
  msgid "Add shortcode"
242
  msgstr "Додати шорткод"
243
 
244
- #: bws_functions.php:651
245
  msgid "Add BestWebSoft plugins' shortcodes using this button."
246
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
247
 
248
- #: bws_functions.php:700
249
  msgid "Close"
250
  msgstr "Закрити"
251
 
252
- #: bws_functions.php:792
253
  msgid "Are you sure you want to restore default settings?"
254
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
255
 
256
- #: bws_functions.php:795
257
  msgid "Yes, restore all settings"
258
  msgstr "Так, скинути налаштування"
259
 
260
- #: bws_functions.php:796
261
  msgid "No, go back to the settings page"
262
  msgstr "Ні, повернутись назад на сторінку налаштувань"
263
 
264
- #: bws_functions.php:842
265
  msgid "Plugin"
266
  msgstr "Плагін"
267
 
268
- #: bws_functions.php:851
269
  msgid "Shortcode settings"
270
  msgstr "Налаштування шорткоду"
271
 
272
- #: bws_functions.php:856
273
  msgid "The shortcode will be inserted"
274
  msgstr "Буде вставлено шорткод"
275
 
276
- #: bws_functions.php:861
277
  msgid "Insert"
278
  msgstr "Вставити"
279
 
280
- #: bws_functions.php:921
281
  msgid "FAQ"
282
  msgstr "FAQ"
283
 
284
- #: bws_functions.php:927
285
  msgid "For more information:"
286
  msgstr "Для отримання додаткової інформації:"
287
 
288
- #: bws_functions.php:928
289
  msgid "Documentation"
290
  msgstr "Документація"
291
 
292
- #: bws_functions.php:929
293
  msgid "Video Instructions"
294
  msgstr "Відео інструкції"
295
 
296
- #: bws_functions.php:930
297
  msgid "Submit a Request"
298
  msgstr "Надіслати запит"
299
 
@@ -555,7 +565,7 @@ msgstr "Управління придбаними ліцензіями і під
555
  #: bws_menu.php:326
556
  #, php-format
557
  msgid "Get Access to %s+ Premium Plugins"
558
- msgstr "Отримати Доступ до %s+ Преміум Плагинам"
559
 
560
  #: bws_menu.php:328
561
  msgid "Subscribe to Pro Membership"
@@ -699,7 +709,7 @@ msgstr "Встановити"
699
 
700
  #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
701
  msgid "Upgrade to Pro"
702
- msgstr "Оновитися на Pro"
703
 
704
  #: bws_menu.php:563 bws_menu.php:572
705
  msgid "Activate this plugin"
@@ -820,7 +830,7 @@ msgstr "Огляд"
820
  #: class-bws-settings.php:457
821
  #, php-format
822
  msgid "Activate custom %s code."
823
- msgstr "Активувать користувацький %s код."
824
 
825
  #: class-bws-settings.php:464 deprecated.php:633
826
  #, php-format
@@ -1105,40 +1115,483 @@ msgid "version of the plugin."
1105
  msgstr "версія плагіна."
1106
 
1107
  #: product_list.php:7
1108
- msgid "Advertisement"
1109
- msgstr "Реклама"
1110
 
1111
  #: product_list.php:8
1112
- msgid "Content & Media"
1113
- msgstr "Зміст & Медіа"
1114
 
1115
  #: product_list.php:9
1116
- msgid "Management"
1117
- msgstr "Управління"
1118
 
1119
  #: product_list.php:10
1120
- msgid "Recommended"
1121
- msgstr "Рекомендовані "
1122
 
1123
  #: product_list.php:11
1124
- msgid "Security"
1125
- msgstr "Безпека"
1126
 
1127
  #: product_list.php:12
1128
- msgid "Site Stats"
1129
- msgstr "Статистика сайту"
1130
 
1131
  #: product_list.php:13
1132
- msgid "Social"
1133
- msgstr "Соціальне"
1134
 
1135
  #: product_list.php:14
1136
- msgid "Utilities"
1137
- msgstr "Утиліти"
1138
 
1139
  #: product_list.php:15
1140
- msgid "Other"
1141
- msgstr "Інше"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1142
 
1143
  #~ msgid "Thank you for installing"
1144
  #~ msgstr "Дякуємо, що встановили"
@@ -1256,9 +1709,6 @@ msgstr "Інше"
1256
  #~ msgid "Preview"
1257
  #~ msgstr "Попередній перегляд"
1258
 
1259
- #~ msgid "Add BWS Plugins Shortcode"
1260
- #~ msgstr "Додати BWS шорткод"
1261
-
1262
  #~ msgid ""
1263
  #~ "(your username is the email you specify when purchasing the product), "
1264
  #~ "where you can make the necessary changes."
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-08 11:26+0300\n"
6
+ "PO-Revision-Date: 2017-06-08 12:06+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
+ "Language: uk_UA\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;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
17
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #: bws_functions.php:72 bws_functions.php:190
50
  msgid "Need help?"
51
  msgstr "Потрібна допомога?"
52
 
53
+ #: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
54
  msgid "Visit Help Center"
55
  msgstr "Перейти до Help Center"
56
 
148
  msgstr "Додати"
149
 
150
  #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
151
+ #: bws_functions.php:378 bws_functions.php:480
152
  msgid "Close notice"
153
  msgstr "Закрити"
154
 
199
  "Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
200
  "першочергову технічну підтримку та оновлення."
201
 
202
+ #: bws_functions.php:475
203
  #, php-format
204
  msgid "Thank you for choosing %s plugin!"
205
  msgstr "Дякую за вибір плагіна %s!"
206
 
207
+ #: bws_functions.php:476
208
  msgid ""
209
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
210
  "we'd love to hear about it!"
213
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
214
  "нових ідей!"
215
 
216
+ #: bws_functions.php:477
217
  msgid "Suggest a Feature"
218
  msgstr "Запропонувати функціонал"
219
 
220
+ #: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
221
  #: class-bws-settings.php:584 class-bws-settings.php:587
222
  msgid "Notice"
223
  msgstr "Зауважте"
224
 
225
+ #: bws_functions.php:493
226
  msgid "The plugin's settings have been changed."
227
  msgstr "Налаштування плагіну змінено."
228
 
229
+ #: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
230
  #: deprecated.php:640
231
  msgid "Save Changes"
232
  msgstr "Зберегти зміни"
233
 
234
+ #: bws_functions.php:508
235
  msgid ""
236
  "You can always look at premium options by checking the \"Pro Options\" in "
237
  "the \"Misc\" tab."
239
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
240
  "опції\" на вкладці \"Різне\"."
241
 
242
+ #: bws_functions.php:629
243
+ msgid "Add BWS Shortcode"
244
+ msgstr "Додати BWS шорткод"
245
+
246
+ #: bws_functions.php:630
247
+ msgid "Add BWS Plugins Shortcode"
248
+ msgstr "Додати шорткод BWS плагіну"
249
+
250
+ #: bws_functions.php:649
251
  msgid "Add shortcode"
252
  msgstr "Додати шорткод"
253
 
254
+ #: bws_functions.php:649
255
  msgid "Add BestWebSoft plugins' shortcodes using this button."
256
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
257
 
258
+ #: bws_functions.php:695
259
  msgid "Close"
260
  msgstr "Закрити"
261
 
262
+ #: bws_functions.php:787
263
  msgid "Are you sure you want to restore default settings?"
264
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
265
 
266
+ #: bws_functions.php:790
267
  msgid "Yes, restore all settings"
268
  msgstr "Так, скинути налаштування"
269
 
270
+ #: bws_functions.php:791
271
  msgid "No, go back to the settings page"
272
  msgstr "Ні, повернутись назад на сторінку налаштувань"
273
 
274
+ #: bws_functions.php:833
275
  msgid "Plugin"
276
  msgstr "Плагін"
277
 
278
+ #: bws_functions.php:842
279
  msgid "Shortcode settings"
280
  msgstr "Налаштування шорткоду"
281
 
282
+ #: bws_functions.php:847
283
  msgid "The shortcode will be inserted"
284
  msgstr "Буде вставлено шорткод"
285
 
286
+ #: bws_functions.php:852
287
  msgid "Insert"
288
  msgstr "Вставити"
289
 
290
+ #: bws_functions.php:912
291
  msgid "FAQ"
292
  msgstr "FAQ"
293
 
294
+ #: bws_functions.php:918
295
  msgid "For more information:"
296
  msgstr "Для отримання додаткової інформації:"
297
 
298
+ #: bws_functions.php:919
299
  msgid "Documentation"
300
  msgstr "Документація"
301
 
302
+ #: bws_functions.php:920
303
  msgid "Video Instructions"
304
  msgstr "Відео інструкції"
305
 
306
+ #: bws_functions.php:921
307
  msgid "Submit a Request"
308
  msgstr "Надіслати запит"
309
 
565
  #: bws_menu.php:326
566
  #, php-format
567
  msgid "Get Access to %s+ Premium Plugins"
568
+ msgstr "Отримати доступ до %s+ преміум плагинам"
569
 
570
  #: bws_menu.php:328
571
  msgid "Subscribe to Pro Membership"
709
 
710
  #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
711
  msgid "Upgrade to Pro"
712
+ msgstr "Оновити до Pro"
713
 
714
  #: bws_menu.php:563 bws_menu.php:572
715
  msgid "Activate this plugin"
830
  #: class-bws-settings.php:457
831
  #, php-format
832
  msgid "Activate custom %s code."
833
+ msgstr "Активувати користувацький %s код."
834
 
835
  #: class-bws-settings.php:464 deprecated.php:633
836
  #, php-format
1115
  msgstr "версія плагіна."
1116
 
1117
  #: product_list.php:7
1118
+ msgid "Admin Tools"
1119
+ msgstr "Інструменти"
1120
 
1121
  #: product_list.php:8
1122
+ msgid "Content"
1123
+ msgstr "Контент"
1124
 
1125
  #: product_list.php:9
1126
+ msgid "eCommerce"
1127
+ msgstr "Комерція"
1128
 
1129
  #: product_list.php:10
1130
+ msgid "Marketing"
1131
+ msgstr "Маркетинг"
1132
 
1133
  #: product_list.php:11
1134
+ msgid "Navigation"
1135
+ msgstr "Навігація"
1136
 
1137
  #: product_list.php:12
1138
+ msgid "Recommended"
1139
+ msgstr "Рекомендовані "
1140
 
1141
  #: product_list.php:13
1142
+ msgid "Security"
1143
+ msgstr "Безпека"
1144
 
1145
  #: product_list.php:14
1146
+ msgid "SEO"
1147
+ msgstr "Пошукова оптимізація"
1148
 
1149
  #: product_list.php:15
1150
+ msgid "SMM"
1151
+ msgstr "СММ"
1152
+
1153
+ #: product_list.php:22
1154
+ msgid ""
1155
+ "Protect WordPress website forms from spam entries by means of math logic."
1156
+ msgstr ""
1157
+ "Захищайте форми вашого сайту WordPress від зламування шляхом математичної "
1158
+ "логіки."
1159
+
1160
+ #: product_list.php:32
1161
+ msgid "Create your personal car rental/booking and reservation website."
1162
+ msgstr "Створіть свій власний сайт прокату і резервування автомобілів."
1163
+
1164
+ #: product_list.php:42
1165
+ msgid ""
1166
+ "Allow customers to reach you using secure contact form plugin any website "
1167
+ "must have."
1168
+ msgstr ""
1169
+ "Надайте можливість клієнтам здійснювати зв'язок з вами через безпечний "
1170
+ "плагін контактної форми, який повинен мати будь-який сайт."
1171
+
1172
+ #: product_list.php:52
1173
+ msgid "Add unlimited number of contact forms to WordPress website."
1174
+ msgstr "Додавайте необмежену кількість контактних форм на ваш сайт WordPress."
1175
+
1176
+ #: product_list.php:62
1177
+ msgid "Save and manage Contact Form messages. Never lose important data."
1178
+ msgstr ""
1179
+ "Зберігайте і керуйте повідомленнями плагіну Contact Form. Ніколи не "
1180
+ "втрачайте важливі дані."
1181
+
1182
+ #: product_list.php:72
1183
+ msgid "Add unlimited custom pages to WordPress admin dashboard."
1184
+ msgstr ""
1185
+ "Додавайте необмежену кількість користувацьких сторінок у панелі "
1186
+ "адміністратора WordPress."
1187
+
1188
+ #: product_list.php:79
1189
+ msgid "Add custom fields to WordPress website search results."
1190
+ msgstr ""
1191
+ "Додавайте користувацькі поля у результати пошуку вашого сайту WordPress."
1192
+
1193
+ #: product_list.php:86
1194
+ msgid ""
1195
+ "Add custom post types and taxonomies to WordPress website search results."
1196
+ msgstr ""
1197
+ "Додавайте користувацькі типи постів і таксономії у результати пошуку на "
1198
+ "вашому сайті WordPress."
1199
+
1200
+ #: product_list.php:96
1201
+ msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1202
+ msgstr ""
1203
+ "Додавайте кнопки PayPal і 2CO, щоб отримувати пожертви та благодійні внески."
1204
+
1205
+ #: product_list.php:103
1206
+ msgid ""
1207
+ "Automatically add outgoing email messages to queue instead of sending them "
1208
+ "immediately."
1209
+ msgstr ""
1210
+ "Автоматично формуйте чергу відправки вихідних електронних повідомлень. "
1211
+ "Задавайте час і пріоритет розсилки."
1212
+
1213
+ #: product_list.php:110
1214
+ msgid ""
1215
+ "Get latest error log messages to diagnose website problems. Define and fix "
1216
+ "issues faster."
1217
+ msgstr ""
1218
+ "Отримуйте останні повідомлення з журналу помилок для діагностики проблем "
1219
+ "сайту. Швидше виявляйте і усувайте проблеми."
1220
+
1221
+ #: product_list.php:117
1222
+ msgid ""
1223
+ "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1224
+ "widgets."
1225
+ msgstr ""
1226
+ "Додавайте кнопки Facebook \"Підписатися\", \"Подобається\" та \"Поділитися\" "
1227
+ "у пости, сторінки і віджети сайту WordPress."
1228
+
1229
+ #: product_list.php:127
1230
+ msgid ""
1231
+ "Add beautiful galleries, albums & images to your WordPress website in a few "
1232
+ "clicks."
1233
+ msgstr ""
1234
+ "Додавайте мальовничі галереї, альбоми і зображення на ваш сайт WordPress "
1235
+ "всього в декілька кліків."
1236
+
1237
+ #: product_list.php:137
1238
+ msgid ""
1239
+ "Add unlimited gallery categories. Organize images to make the navigation "
1240
+ "through content easier."
1241
+ msgstr ""
1242
+ "Додавайте необмежену кількість категорій галерей. Групуйте зображення, щоб "
1243
+ "спростити навігацію контентом."
1244
+
1245
+ #: product_list.php:144
1246
+ msgid ""
1247
+ "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1248
+ "posts, pages and widgets."
1249
+ msgstr ""
1250
+ "Додавайте кнопки Google \"+1\", \"Поділитися\", \"Підписатися\", \"Hangout\" "
1251
+ "і значок профілю до постів, сторінок та віджетів WordPress."
1252
+
1253
+ #: product_list.php:154
1254
+ msgid ""
1255
+ "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1256
+ "results, categories, tags, and widgets."
1257
+ msgstr ""
1258
+ "Додавайте рекламу сервісу Adsense на сторінки, пости, користувацькі пости, "
1259
+ "результати пошуку, категорії, теги і віджети сайту WordPress."
1260
+
1261
+ #: product_list.php:164
1262
+ msgid "Add Google Analytics code to WordPress website and track basic stats."
1263
+ msgstr ""
1264
+ "Додавайте код Google Analytics на ваш сайт WordPress та відстежуйте базову "
1265
+ "статистику сайту."
1266
+
1267
+ #: product_list.php:174
1268
+ msgid ""
1269
+ "Protect WordPress website forms from spam entries with Google Captcha "
1270
+ "(reCaptcha)."
1271
+ msgstr ""
1272
+ "Захищайте форми вашого сайту WordPress від спаму за допомогою Google Captcha "
1273
+ "(reCaptcha)."
1274
+
1275
+ #: product_list.php:184
1276
+ msgid "Add customized Google maps to WordPress posts, pages and widgets."
1277
+ msgstr ""
1278
+ "Додавайте користувацькі карти Google у пости, сторінки та віджети WordPress."
1279
+
1280
+ #: product_list.php:194
1281
+ msgid ""
1282
+ "Generate and add XML sitemap to WordPress website. Help search engines index "
1283
+ "your blog."
1284
+ msgstr ""
1285
+ "Створюйте та додавайте файли XML sitemap на ваш сайт WordPress. Допоможіть "
1286
+ "пошуковим системам проіндексувати ваш блог."
1287
+
1288
+ #: product_list.php:204
1289
+ msgid ""
1290
+ "Replace external WordPress website links with Google shortlinks and track "
1291
+ "click stats."
1292
+ msgstr ""
1293
+ "Замініть зовнішні посилання сайту WordPress на короткі посилання Google і "
1294
+ "відстежуйте статистику кліків."
1295
+
1296
+ #: product_list.php:211
1297
+ msgid ""
1298
+ "Protect WordPress website – allow and deny access for certain IP addresses, "
1299
+ "hostnames, etc."
1300
+ msgstr ""
1301
+ "Захистіть свій сайт WordPress - надавайте та забороняйте доступ з певних IP-"
1302
+ "адрес, імен хостів і т.д."
1303
+
1304
+ #: product_list.php:221
1305
+ msgid ""
1306
+ "Create your personal job board and listing WordPress website. Search jobs, "
1307
+ "submit CV/resumes, choose candidates."
1308
+ msgstr ""
1309
+ "Створюйте свою власну дошку оголошень з переліком вакансій на базі "
1310
+ "WordPress. Пошук вакансій, подача резюме/CV кандидата, вибір кандидатів."
1311
+
1312
+ #: product_list.php:228
1313
+ msgid ""
1314
+ "Protect WordPress website against brute force attacks. Limit rate of login "
1315
+ "attempts."
1316
+ msgstr ""
1317
+ "Захищайте свій сайт WordPress від брутфорс-атак. Обмежуйте кількість спроб "
1318
+ "введення логіна."
1319
+
1320
+ #: product_list.php:238
1321
+ msgid ""
1322
+ "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1323
+ "5 plugins included – profile, insider, etc."
1324
+ msgstr ""
1325
+ "Додавайте кнопки LinkedIn \"Поділитися\" та \"Відстежувати\" до постів, "
1326
+ "сторінок і віджетів WordPress. 5 плагінів включено - Профіль, Інсайдер і т.д."
1327
+
1328
+ #: product_list.php:248
1329
+ msgid ""
1330
+ "Translate WordPress website content to other languages manually. Create "
1331
+ "multilingual pages, posts, widgets, menus, etc."
1332
+ msgstr ""
1333
+ "Перекладайте вміст сайту WordPress іншими мовами вручну. Створюйте "
1334
+ "багатомовні сторінки, пости, віджети, меню і т.д."
1335
+
1336
+ #: product_list.php:258
1337
+ msgid ""
1338
+ "Add customizable pagination to WordPress website. Split long content to "
1339
+ "multiple pages for better navigation."
1340
+ msgstr ""
1341
+ "Додавайте пагінацію з можливістю налаштування на ваш сайт WordPress. "
1342
+ "Розбивайте об'ємний контент на декілька сторінок для кращої навігації."
1343
+
1344
+ #: product_list.php:268
1345
+ msgid ""
1346
+ "Generate PDF files and print WordPress posts/pages. Customize document "
1347
+ "header/footer styles and appearance."
1348
+ msgstr ""
1349
+ "Створюйте PDF-файли і друкуйте пости/сторінки сайту WordPress. Налаштовуйте "
1350
+ "стилі хедера/футера документа і його зовнішній вигляд."
1351
+
1352
+ #: product_list.php:278
1353
+ msgid ""
1354
+ "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1355
+ "Profile) to WordPress posts, pages and widgets."
1356
+ msgstr ""
1357
+ "Додавайте кнопки Pinterest \"Підписатися\", \"Зберегти\" і віджети профілю "
1358
+ "(Пін, Дошка, Профіль) до постів, сторінок і віджетів WordPress."
1359
+
1360
+ #: product_list.php:288
1361
+ msgid ""
1362
+ "Create your personal portfolio WordPress website. Manage and showcase past "
1363
+ "projects to get more clients."
1364
+ msgstr ""
1365
+ "Створюйте і додавайте портфоліо на свій сайт WordPress. Керуйте і "
1366
+ "демонструйте минулі проекти, щоб залучити більше клієнтів."
1367
+
1368
+ #: product_list.php:298
1369
+ msgid "Export WordPress posts to CSV file format easily. Configure data order."
1370
+ msgstr ""
1371
+ "З легкістю експортуйте пости WordPress в файли формату CSV. Налаштуйте "
1372
+ "порядок відображення даних."
1373
+
1374
+ #: product_list.php:305
1375
+ msgid ""
1376
+ "Add extra fields to default WordPress user profile. The easiest way to "
1377
+ "create and manage additional custom values."
1378
+ msgstr ""
1379
+ "Додавайте користувацькі поля у стандартний профіль WordPress. Найпростіший "
1380
+ "спосіб створення і управління додатковими полями."
1381
+
1382
+ #: product_list.php:312
1383
+ msgid ""
1384
+ "Add and display HTML advertisement banner on WordPress website. Customize "
1385
+ "bar styles and appearance."
1386
+ msgstr ""
1387
+ "Додавайте відображення банерної HTML реклами на сайті WordPress. Налаштуйте "
1388
+ "стилі і зовнішній вигляд банеру."
1389
+
1390
+ #: product_list.php:322
1391
+ msgid ""
1392
+ "Add customizable quotes and tips blocks to WordPress posts, pages and "
1393
+ "widgets."
1394
+ msgstr ""
1395
+ "Додавайте редаговані цитати та підказки до постів, сторінок і віджетів "
1396
+ "WordPress."
1397
+
1398
+ #: product_list.php:329
1399
+ msgid ""
1400
+ "Add rating plugin to your WordPress website to receive feedback from your "
1401
+ "customers."
1402
+ msgstr ""
1403
+ "Додавайте систему оцінювання і рейтингу на ваш сайт WordPress і отримуйте "
1404
+ "відгуки від ваших клієнтів."
1405
+
1406
+ #: product_list.php:336
1407
+ msgid ""
1408
+ "Create your personal real estate WordPress website. Sell, rent and buy "
1409
+ "properties. Add, search and browse listings easily."
1410
+ msgstr ""
1411
+ "Створіть свій особистий сайт агентства нерухомості на базі WordPress. "
1412
+ "Продавайте, орендуйте і купуйте нерухомість. Легко додавайте, знаходьте і "
1413
+ "переглядайте лістинги."
1414
+
1415
+ #: product_list.php:346
1416
+ msgid ""
1417
+ "Attach, un-attach and re-attach media files quickly to WordPress posts and "
1418
+ "pages."
1419
+ msgstr ""
1420
+ "Прикріплюйте, відкріплюйте і повторно прикріплюйте медіа файли до постів і "
1421
+ "сторінок WordPress."
1422
+
1423
+ #: product_list.php:353
1424
+ msgid ""
1425
+ "Add related, featured, latest, and popular posts to your WordPress website. "
1426
+ "Connect your blog readers with a relevant content."
1427
+ msgstr ""
1428
+ "Додавайте схожі, обрані, останні та популярні пости на ваш сайт WordPress. "
1429
+ "Надавайте своїм читачам контент схожої тематики."
1430
+
1431
+ #: product_list.php:360
1432
+ msgid ""
1433
+ "Send bulk email messages to WordPress users. Custom templates, advanced "
1434
+ "settings and detailed reports."
1435
+ msgstr ""
1436
+ "Здійснюйте масову розсилку листів користувачам WordPress. Користувацькі "
1437
+ "шаблони, додаткові налаштування і детальні звіти."
1438
+
1439
+ #: product_list.php:370
1440
+ msgid ""
1441
+ "The best responsive slider plugin for your WordPress website. Create "
1442
+ "beautifully animated slides just in a few clicks."
1443
+ msgstr ""
1444
+ "Найкращий адаптивний слайдер для вашого сайту WordPress. Створюйте красиво "
1445
+ "анімовані слайди всього в декілька кліків."
1446
+
1447
+ #: product_list.php:377
1448
+ msgid ""
1449
+ "Configure SMTP server to receive email messages from WordPress to Gmail, "
1450
+ "Yahoo, Hotmail and other services."
1451
+ msgstr ""
1452
+ "Налаштовуйте SMTP-сервер, щоб отримувати електронні повідомлення з сайту "
1453
+ "WordPress на такі поштові служби як Gmail, Yahoo, Hotmail і багато інших."
1454
+
1455
+ #: product_list.php:384
1456
+ msgid ""
1457
+ "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1458
+ "FB, Twitter, G+1, Pinterest, LinkedIn."
1459
+ msgstr ""
1460
+ "Додавайте кнопки і віджети соціальних мереж до постів, сторінок і віджетів "
1461
+ "WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
1462
+
1463
+ #: product_list.php:394
1464
+ msgid ""
1465
+ "Add social media login, registration, and commenting to your WordPress "
1466
+ "website."
1467
+ msgstr ""
1468
+ "Додавайте на свій сайт WordPress можливість входу, реєстрації та "
1469
+ "коментування з використанням існуючих акаунтів соціальних мереж."
1470
+
1471
+ #: product_list.php:401
1472
+ msgid ""
1473
+ "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1474
+ "Collect data and subscribe your users."
1475
+ msgstr ""
1476
+ "Додавайте форму підписки на розсилку новин у пости, сторінки і віджети "
1477
+ "WordPress. Збирайте дані і здійснюйте підписку користувачів."
1478
+
1479
+ #: product_list.php:411
1480
+ msgid ""
1481
+ "Add testimonials and feedbacks from your customers to WordPress website "
1482
+ "posts, pages, and widgets."
1483
+ msgstr ""
1484
+ "Додавайте рекомендації та відгуки ваших клієнтів в пости, сторінки і віджети "
1485
+ "сайту WordPress."
1486
+
1487
+ #: product_list.php:418
1488
+ msgid ""
1489
+ "Best timesheet plugin for WordPress. Track employee time, streamline "
1490
+ "attendance and generate reports."
1491
+ msgstr ""
1492
+ "Кращий плагін обліку робочого часу на сайті WordPress. Відстежуйте час "
1493
+ "роботи співробітників, оптимізуйте графік роботи в офісі і створюйте звіти."
1494
+
1495
+ #: product_list.php:428
1496
+ msgid ""
1497
+ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1498
+ "and pages."
1499
+ msgstr ""
1500
+ "Додавайте кнопки Твіттера \"Читати\", \"Твітнути\", \"Хештеґ\" і \"Згадати\" "
1501
+ "до постів і сторінок WordPress."
1502
+
1503
+ #: product_list.php:438
1504
+ msgid ""
1505
+ "Automatically check and update WordPress website core with all installed "
1506
+ "plugins and themes to the latest versions."
1507
+ msgstr ""
1508
+ "Виконуйте автоматичну перевірку і оновлення ядра WordPress до останніх "
1509
+ "версій з усіма встановленими плагінами та темами."
1510
+
1511
+ #: product_list.php:448
1512
+ msgid ""
1513
+ "Powerful user role management plugin for WordPress website. Create, edit, "
1514
+ "copy, and delete user roles."
1515
+ msgstr ""
1516
+ "Ефективний плагін управління ролями користувачів для сайту WordPress. "
1517
+ "Створюйте, редагуйте, копіюйте і видаляйте ролі користувачів."
1518
+
1519
+ #: product_list.php:458
1520
+ msgid ""
1521
+ "Display live count of online visitors who are currently browsing your "
1522
+ "WordPress website."
1523
+ msgstr ""
1524
+ "Ведіть підрахунок кількості відвідувачів, які в даний час переглядають ваш "
1525
+ "сайт WordPress."
1526
+
1527
+ #: product_list.php:468
1528
+ msgid ""
1529
+ "Backup and export Zendesk Help Center content automatically to your "
1530
+ "WordPress website database."
1531
+ msgstr ""
1532
+ "Робіть автоматичне резервне копіювання і експорт вмісту Zendesk Help Center "
1533
+ "в базу даних вашого сайту WordPress."
1534
+
1535
+ #~ msgid ""
1536
+ #~ "Add related posts to WordPress website posts or widgets. Link your "
1537
+ #~ "readers to relevant content."
1538
+ #~ msgstr ""
1539
+ #~ "Додавайте пов'язані публікації у пости або віджети сайту WordPress. "
1540
+ #~ "Надавайте своїм читачам контент схожої тематики."
1541
+
1542
+ #~ msgid "Advertisement"
1543
+ #~ msgstr "Реклама"
1544
+
1545
+ #~ msgid "Content & Media"
1546
+ #~ msgstr "Зміст та мультимедійні елементи"
1547
+
1548
+ #~ msgid "Management"
1549
+ #~ msgstr "Управління"
1550
+
1551
+ #~ msgid "Site Stats"
1552
+ #~ msgstr "Статистика сайту"
1553
+
1554
+ #~ msgid "Social"
1555
+ #~ msgstr "Соціальні сервіси"
1556
+
1557
+ #~ msgid "Utilities"
1558
+ #~ msgstr "Утиліти"
1559
+
1560
+ #~ msgid "Other"
1561
+ #~ msgstr "Інше"
1562
+
1563
+ #~ msgid ""
1564
+ #~ "Manage database and file system right from your WordPress admin dashboard."
1565
+ #~ msgstr ""
1566
+ #~ "Керуйте базою даних і файловою системою прямо з панелі адміністратора "
1567
+ #~ "WordPress."
1568
+
1569
+ #~ msgid ""
1570
+ #~ "Add featured posts to WordPress website posts and widgets. Highlight "
1571
+ #~ "important information."
1572
+ #~ msgstr ""
1573
+ #~ "Додавайте обрані публікації до постів і віджетів сайту WordPress. "
1574
+ #~ "Підкреслюйте важливу інформацію."
1575
+
1576
+ #~ msgid ""
1577
+ #~ "Add widgets Latest Posts or Latest Posts for Selected Categories to your "
1578
+ #~ "WordPress website."
1579
+ #~ msgstr ""
1580
+ #~ "Додавайте віджет найновішіх постів або найновішіх постів для обраних "
1581
+ #~ "категорій на сайт WordPress."
1582
+
1583
+ #~ msgid ""
1584
+ #~ "Track views, comments and add the most popular posts to Wordpress widgets."
1585
+ #~ msgstr ""
1586
+ #~ "Відстежуйте перегляди, коментарі та додавайте найпопулярніші пости у "
1587
+ #~ "віджети сайту Wordpress."
1588
+
1589
+ #~ msgid ""
1590
+ #~ "Add latest posts or latest posts for selected categories widgets to "
1591
+ #~ "WordPress website."
1592
+ #~ msgstr ""
1593
+ #~ "Додавайте віджет найновішіх постів або найновішіх постів для обраних "
1594
+ #~ "категорій на сайт WordPress."
1595
 
1596
  #~ msgid "Thank you for installing"
1597
  #~ msgstr "Дякуємо, що встановили"
1709
  #~ msgid "Preview"
1710
  #~ msgstr "Попередній перегляд"
1711
 
 
 
 
1712
  #~ msgid ""
1713
  #~ "(your username is the email you specify when purchasing the product), "
1714
  #~ "where you can make the necessary changes."
bws_menu/product_list.php CHANGED
@@ -4,22 +4,22 @@
4
  */
5
 
6
  $bws_plugins_category = array(
7
- 'advertisement' => array( 'name' => __( 'Advertisement', 'bestwebsoft' ) ),
8
- 'content-and-media' => array( 'name' => __( 'Content & Media', 'bestwebsoft' ) ),
9
- 'management' => array( 'name' => __( 'Management', 'bestwebsoft' ) ),
10
- 'recommended' => array( 'name' => __( 'Recommended', 'bestwebsoft' ) ),
11
- 'security' => array( 'name' => __( 'Security', 'bestwebsoft' ) ),
12
- 'site-stats' => array( 'name' => __( 'Site Stats', 'bestwebsoft' ) ),
13
- 'social' => array( 'name' => __( 'Social', 'bestwebsoft' ) ),
14
- 'utilities' => array( 'name' => __( 'Utilities', 'bestwebsoft' ) ),
15
- 'other' => array( 'name' => __( 'Other', 'bestwebsoft' ) ),
16
  );
17
 
18
  $bws_plugins = array(
19
  'captcha/captcha.php' => array(
20
  'category' => array( 'security', 'recommended' ),
21
  'name' => 'Captcha',
22
- 'description' => 'Protect WordPress website forms from spam entries by means of math logic.',
23
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
24
  'settings' => 'admin.php?page=captcha.php',
25
  'pro_version' => 'captcha-pro/captcha_pro.php',
@@ -27,9 +27,9 @@ $bws_plugins = array(
27
  'pro_settings' => 'admin.php?page=captcha_pro.php'
28
  ),
29
  'car-rental/car-rental.php' => array(
30
- 'category' => array( 'content-and-media' ),
31
  'name' => 'Car Rental',
32
- 'description' => 'Create your personal car rental/booking and reservation website.',
33
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/car-rental/?k=444cac6df9a0d3a9763ab4753d24941b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
34
  'settings' => 'admin.php?page=car-rental-settings',
35
  'pro_version' => 'car-rental-pro/car-rental-pro.php',
@@ -37,9 +37,9 @@ $bws_plugins = array(
37
  'pro_settings' => 'admin.php?page=car-rental-pro-settings'
38
  ),
39
  'contact-form-plugin/contact_form.php' => array(
40
- 'category' => array( 'other', 'recommended' ),
41
  'name' => 'Contact Form',
42
- 'description' => 'Allow customers to reach you using secure contact form plugin any website must have.',
43
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=012327ef413e5b527883e031d43b088b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
44
  'settings' => 'admin.php?page=contact_form.php',
45
  'pro_version' => 'contact-form-pro/contact_form_pro.php',
@@ -47,9 +47,9 @@ $bws_plugins = array(
47
  'pro_settings' => 'admin.php?page=contact_form_pro.php'
48
  ),
49
  'contact-form-multi/contact-form-multi.php' => array(
50
- 'category' => array( 'other', 'recommended' ),
51
  'name' => 'Contact Form Multi',
52
- 'description' => 'Add unlimited number of contact forms to WordPress website.',
53
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
54
  'settings' => '',
55
  'pro_version' => 'contact-form-multi-pro/contact-form-multi-pro.php',
@@ -57,9 +57,9 @@ $bws_plugins = array(
57
  'pro_settings' => ''
58
  ),
59
  'contact-form-to-db/contact_form_to_db.php' => array(
60
- 'category' => array( 'other', 'recommended' ),
61
  'name' => 'Contact Form to DB',
62
- 'description' => 'Save and manage contact form messages. Never lose important data.',
63
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
64
  'settings' => 'admin.php?page=cntctfrmtdb_settings',
65
  'pro_version' => 'contact-form-to-db-pro/contact_form_to_db_pro.php',
@@ -67,80 +67,64 @@ $bws_plugins = array(
67
  'pro_settings' => 'admin.php?page=cntctfrmtdbpr_settings'
68
  ),
69
  'custom-admin-page/custom-admin-page.php' => array(
70
- 'category' => array( 'utilities' ),
71
  'name' => 'Custom Admin Page',
72
- 'description' => 'Add unlimited custom pages to WordPress admin dashboard.',
73
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-admin-page/?k=9ac03f16c25e845e8e055a221c3e1467&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
74
  'settings' => 'admin.php?page=custom-admin-page.php'
75
  ),
76
  'custom-fields-search/custom-fields-search.php' => array(
77
- 'category' => array( 'content-and-media' ),
78
  'name' => 'Custom Fields Search',
79
- 'description' => 'Add custom fields to WordPress website search results.',
80
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-fields-search/?k=f3f8285bb069250c42c6ffac95ed3284&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
81
  'settings' => 'admin.php?page=custom_fields_search.php'
82
  ),
83
  'custom-search-plugin/custom-search-plugin.php' => array(
84
- 'category' => array( 'content-and-media' ),
85
  'name' => 'Custom Search',
86
- 'description' => 'Add custom post types to WordPress website search results.',
87
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
88
  'settings' => 'admin.php?page=custom_search.php',
89
  'pro_version' => 'custom-search-pro/custom-search-pro.php',
90
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/buy/?k=062b652ac6ac8ba863c9f30fc21d62c6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
91
  'pro_settings' => 'admin.php?page=custom_search_pro.php'
92
  ),
93
- 'db-manager/db-manager.php' => array(
94
- 'category' => array( 'utilities' ),
95
- 'name' => 'DB Manager',
96
- 'description' => 'Manage database and file system right from your WordPress admin dashboard.',
97
- 'link' => 'https://bestwebsoft.com/products/wordpress/plugins/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
98
- 'install_url' => 'https://bestwebsoft.com/products/wordpress/plugins/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
99
- 'settings' => 'admin.php?page=db-manager.php',
100
- 'icon' => bws_menu_url( 'icons/plugins/' ) . 'db-manager.png'
101
- ),
102
  'donate-button/donate.php' => array(
103
- 'category' => array( 'other' ),
104
  'name' => 'Donate',
105
- 'description' => 'Add PayPal and 2CO donate buttons to receive charity payments.',
106
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/donate/?k=a8b2e2a56914fb1765dd20297c26401b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
107
  'settings' => 'admin.php?page=donate.php'
108
  ),
109
  'email-queue/email-queue.php' => array(
110
- 'category' => array( 'other' ),
111
  'name' => 'Email Queue',
112
- 'description' => 'Automatically add outgoing email messages to queue instead of sending them immediately.',
113
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/email-queue/?k=e345e1b6623f0dca119bc2d9433b130b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
114
  'settings' => 'admin.php?page=mlq_settings'
115
  ),
116
  'error-log-viewer/error-log-viewer.php' => array(
117
- 'category' => array( 'utilities' ),
118
  'name' => 'Error Log Viewer',
119
- 'description' => 'Get latest error log messages to diagnose website problems. Define and fix issues faster.',
120
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/error-log-viewer/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
121
  'settings' => 'admin.php?page=rrrlgvwr.php&tab=settings'
122
  ),
123
  'facebook-button-plugin/facebook-button-plugin.php' => array(
124
- 'category' => array( 'social' ),
125
  'name' => 'Facebook Button',
126
- 'description' => 'Add Facebook Like, Share and Profile buttons to WordPress posts, pages and widgets.',
127
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=05ec4f12327f55848335802581467d55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
128
  'settings' => 'admin.php?page=facebook-button-plugin.php',
129
  'pro_version' => 'facebook-button-pro/facebook-button-pro.php',
130
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/buy/?k=8da168e60a831cfb3525417c333ad275&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
131
  'pro_settings' => 'admin.php?page=facebook-button-pro.php'
132
  ),
133
- 'bws-featured-posts/bws-featured-posts.php' => array(
134
- 'category' => array( 'content-and-media' ),
135
- 'name' => 'Featured Posts',
136
- 'description' => 'Add featured posts to WordPress posts or widgets. Highlight important information.',
137
- 'link' => 'https://bestwebsoft.com/products/wordpress/plugins/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
138
- 'settings' => 'admin.php?page=featured-posts.php'
139
- ),
140
  'gallery-plugin/gallery-plugin.php' => array(
141
- 'category' => array( 'content-and-media', 'recommended' ),
142
  'name' => 'Gallery',
143
- 'description' => 'Add beautiful galleries, albums & images to your Wordpress website in few clicks.',
144
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery/?k=2da21c0a64eec7ebf16337fa134c5f78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
145
  'settings' => 'admin.php?page=gallery-plugin.php',
146
  'pro_version' => 'gallery-plugin-pro/gallery-plugin-pro.php',
@@ -148,16 +132,16 @@ $bws_plugins = array(
148
  'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
149
  ),
150
  'gallery-categories/gallery-categories.php' => array(
151
- 'category' => array( 'content-and-media' ),
152
  'name' => 'Gallery Categories',
153
- 'description' => 'Add unlimited gallery categories. Organize images to make the navigation through content easier.',
154
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery-categories/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
155
  'settings' => ''
156
  ),
157
  'google-one/google-plus-one.php' => array(
158
- 'category' => array( 'social' ),
159
  'name' => 'Google +1',
160
- 'description' => 'Add Google +1 Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.',
161
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
162
  'settings' => 'admin.php?page=google-plus-one.php',
163
  'pro_version' => 'google-one-pro/google-plus-one-pro.php',
@@ -165,9 +149,9 @@ $bws_plugins = array(
165
  'pro_settings' => 'admin.php?page=google-plus-one-pro.php'
166
  ),
167
  'adsense-plugin/adsense-plugin.php' => array(
168
- 'category' => array( 'advertisement' ),
169
  'name' => 'Google AdSense',
170
- 'description' => 'Add Adsense ads to pages, posts, custom posts, search results, categories, tags, pages, and widgets.',
171
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
172
  'settings' => 'admin.php?page=adsense-plugin.php',
173
  'pro_version' => 'adsense-pro/adsense-pro.php',
@@ -175,9 +159,9 @@ $bws_plugins = array(
175
  'pro_settings' => 'admin.php?page=adsense-pro.php'
176
  ),
177
  'bws-google-analytics/bws-google-analytics.php' => array(
178
- 'category' => array( 'site-stats' ),
179
  'name' => 'Google Analytics',
180
- 'description' => 'Add Google Analytics code to WordPress website and track basic stats.',
181
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
182
  'settings' => 'admin.php?page=bws-google-analytics.php',
183
  'pro_version' => 'bws-google-analytics-pro/bws-google-analytics-pro.php',
@@ -187,7 +171,7 @@ $bws_plugins = array(
187
  'google-captcha/google-captcha.php' => array(
188
  'category' => array( 'security', 'recommended' ),
189
  'name' => 'Google Captcha (reCAPTCHA)',
190
- 'description' => 'Protect WordPress website forms from spam entries with Google Captcha (reCaptcha).',
191
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
192
  'settings' => 'admin.php?page=google-captcha.php',
193
  'pro_version' => 'google-captcha-pro/google-captcha-pro.php',
@@ -195,9 +179,9 @@ $bws_plugins = array(
195
  'pro_settings' => 'admin.php?page=google-captcha-pro.php'
196
  ),
197
  'bws-google-maps/bws-google-maps.php' => array(
198
- 'category' => array( 'content-and-media' ),
199
  'name' => 'Google Maps',
200
- 'description' => 'Add customized Google maps to WordPress posts, pages and widgets.',
201
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
202
  'settings' => 'admin.php?page=bws-google-maps.php',
203
  'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php',
@@ -205,9 +189,9 @@ $bws_plugins = array(
205
  'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
206
  ),
207
  'google-sitemap-plugin/google-sitemap-plugin.php' => array(
208
- 'category' => array( 'other', 'recommended' ),
209
  'name' => 'Google Sitemap',
210
- 'description' => 'Generate and add XML sitemap to WordPress website. Help search engines index your blog.',
211
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
212
  'settings' => 'admin.php?page=google-sitemap-plugin.php',
213
  'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
@@ -215,16 +199,16 @@ $bws_plugins = array(
215
  'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
216
  ),
217
  'google-shortlink/google-shortlink.php' => array(
218
- 'category' => array( 'other' ),
219
  'name' => 'Google Shortlink',
220
- 'description' => 'Replace external WordPress website links with Google shortlinks and track click stats.',
221
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
222
  'settings' => 'admin.php?page=gglshrtlnk_options'
223
  ),
224
  'htaccess/htaccess.php' => array(
225
  'category' => array( 'security' ),
226
  'name' => 'Htaccess',
227
- 'description' => 'Protect WordPress website – allow and deny access for certain IP addresses, hostnames, etc.',
228
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=2b865fcd56a935d22c5c4f1bba52ed46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
229
  'settings' => 'admin.php?page=htaccess.php',
230
  'pro_version' => 'htaccess-pro/htaccess-pro.php',
@@ -232,23 +216,16 @@ $bws_plugins = array(
232
  'pro_settings' => 'admin.php?page=htaccess-pro.php'
233
  ),
234
  'job-board/job-board.php' => array(
235
- 'category' => array( 'content-and-media' ),
236
  'name' => 'Job Board',
237
- 'description' => 'Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates.',
238
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
239
  'settings' => 'admin.php?page=job-board.php'
240
  ),
241
- 'bws-latest-posts/bws-latest-posts.php' => array(
242
- 'category' => array( 'content-and-media' ),
243
- 'name' => 'Latest Posts',
244
- 'description' => 'Add latest posts or latest posts for selected categories widgets to WordPress website.',
245
- 'link' => 'https://bestwebsoft.com/products/wordpress/plugins/latest-posts/?k=ef4e125aadadd8d219140daa184a9399&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
246
- 'settings' => 'admin.php?page=latest-posts.php'
247
- ),
248
  'limit-attempts/limit-attempts.php' => array(
249
  'category' => array( 'security', 'recommended' ),
250
  'name' => 'Limit Attempts',
251
- 'description' => 'Protect WordPress website against brute force attacks. Limit rate of login attempts.',
252
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
253
  'settings' => 'admin.php?page=limit-attempts.php',
254
  'pro_version' => 'limit-attempts-pro/limit-attempts-pro.php',
@@ -256,9 +233,9 @@ $bws_plugins = array(
256
  'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
257
  ),
258
  'bws-linkedin/bws-linkedin.php' => array(
259
- 'category' => array( 'social' ),
260
  'name' => 'LinkedIn',
261
- 'description' => 'Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.',
262
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/linkedin/?k=d63c7319622ccc5f589dd2d545c1d77c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
263
  'settings' => 'admin.php?page=linkedin.php',
264
  'pro_version' => 'bws-linkedin-pro/bws-linkedin-pro.php',
@@ -266,9 +243,9 @@ $bws_plugins = array(
266
  'pro_settings' => 'admin.php?page=linkedin-pro.php'
267
  ),
268
  'multilanguage/multilanguage.php' => array(
269
- 'category' => array( 'content-and-media', 'recommended' ),
270
  'name' => 'Multilanguage',
271
- 'description' => 'Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.',
272
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
273
  'settings' => 'admin.php?page=mltlngg_settings',
274
  'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
@@ -276,9 +253,9 @@ $bws_plugins = array(
276
  'pro_settings' => 'admin.php?page=mltlnggpr_settings'
277
  ),
278
  'pagination/pagination.php' => array(
279
- 'category' => array( 'content-and-media' ),
280
  'name' => 'Pagination',
281
- 'description' => 'Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation.',
282
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pagination/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
283
  'settings' => 'admin.php?page=pagination.php',
284
  'pro_version' => 'pagination-pro/pagination-pro.php',
@@ -286,9 +263,9 @@ $bws_plugins = array(
286
  'pro_settings' => 'admin.php?page=pagination-pro.php'
287
  ),
288
  'pdf-print/pdf-print.php' => array(
289
- 'category' => array( 'other' ),
290
  'name' => 'PDF & Print',
291
- 'description' => 'Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance.',
292
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pdf-print/?k=bfefdfb522a4c0ff0141daa3f271840c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
293
  'settings' => 'admin.php?page=pdf-print.php',
294
  'pro_version' => 'pdf-print-pro/pdf-print-pro.php',
@@ -296,26 +273,19 @@ $bws_plugins = array(
296
  'pro_settings' => 'admin.php?page=pdf-print-pro.php'
297
  ),
298
  'bws-pinterest/bws-pinterest.php' => array(
299
- 'category' => array( 'social' ),
300
  'name' => 'Pinterest',
301
- 'description' => 'Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets.',
302
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/?k=504107b6213f247a67fe7ffb94e97c78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
303
  'settings' => 'admin.php?page=pinterest.php',
304
  'pro_version' => 'bws-pinterest-pro/bws-pinterest-pro.php',
305
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/buy/?k=ab0069edd1914a3ca8f541bfd88bb0bb&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
306
  'pro_settings' => 'admin.php?page=pinterest-pro.php'
307
  ),
308
- 'bws-popular-posts/bws-popular-posts.php' => array(
309
- 'category' => array( 'content-and-media', 'recommended' ),
310
- 'name' => 'Popular Posts',
311
- 'description' => 'Track views, comments and add most popular posts to Wordpress widgets.',
312
- 'link' => 'https://bestwebsoft.com/products/wordpress/plugins/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
313
- 'settings' => 'admin.php?page=popular-posts.php'
314
- ),
315
  'portfolio/portfolio.php' => array(
316
- 'category' => array( 'content-and-media', 'recommended' ),
317
  'name' => 'Portfolio',
318
- 'description' => 'Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients.',
319
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
320
  'settings' => 'admin.php?page=portfolio.php',
321
  'pro_version' => 'portfolio-pro/portfolio-pro.php',
@@ -323,23 +293,23 @@ $bws_plugins = array(
323
  'pro_settings' => 'admin.php?page=portfolio-pro.php'
324
  ),
325
  'post-to-csv/post-to-csv.php' => array(
326
- 'category' => array( 'utilities' ),
327
  'name' => 'Post to CSV',
328
- 'description' => 'Export WordPress posts to CSV file format easily. Configure data order.',
329
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
330
  'settings' => 'admin.php?page=post-to-csv.php'
331
  ),
332
  'profile-extra-fields/profile-extra-fields.php' => array(
333
- 'category' => array( 'management' ),
334
  'name' => 'Profile Extra Fields',
335
- 'description' => 'Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values.',
336
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
337
  'settings' => 'admin.php?page=profile-extra-fields.php'
338
  ),
339
  'promobar/promobar.php' => array(
340
- 'category' => array( 'advertisement' ),
341
  'name' => 'PromoBar',
342
- 'description' => 'Add and display HTML advertisement on WordPress website. Customize bar styles and appearance.',
343
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/promobar/?k=619eac2232d9cfa382c4e678c3b14766&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
344
  'settings' => 'admin.php?page=promobar.php',
345
  'pro_version' => 'promobar-pro/promobar-pro.php',
@@ -347,23 +317,23 @@ $bws_plugins = array(
347
  'pro_settings' => 'admin.php?page=promobar-pro.php'
348
  ),
349
  'quotes-and-tips/quotes-and-tips.php' => array(
350
- 'category' => array( 'content-and-media' ),
351
  'name' => 'Quotes and Tips',
352
- 'description' => 'Add customizable quotes and tips blocks to WordPress posts, pages and widgets.',
353
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
354
  'settings' => 'admin.php?page=quotes-and-tips.php'
355
  ),
356
  'rating-bws/rating-bws.php' => array(
357
- 'category' => array( 'content-and-media' ),
358
  'name' => 'Rating',
359
- 'description' => 'Add rating plugin to your WordPress website to receive feedback from your customers.',
360
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/rating/?k=c00e0824bb999735a3224616ef51f4c5&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
361
  'settings' => 'admin.php?page=rating.php'
362
  ),
363
  'realty/realty.php' => array(
364
- 'category' => array( 'content-and-media' ),
365
  'name' => 'Realty',
366
- 'description' => 'Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily.',
367
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/realty/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
368
  'settings' => 'admin.php?page=realty_settings',
369
  'pro_version' => 'realty-pro/realty-pro.php',
@@ -371,40 +341,47 @@ $bws_plugins = array(
371
  'pro_settings' => 'admin.php?page=realty_pro_settings'
372
  ),
373
  're-attacher/re-attacher.php' => array(
374
- 'category' => array( 'utilities' ),
375
  'name' => 'Re-attacher',
376
- 'description' => 'Attach, unattach and re-attach media files quickly to WordPress posts and pages.',
377
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/re-attacher/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
378
  'settings' => 'admin.php?page=re-attacher.php'
379
  ),
380
  'relevant/related-posts-plugin.php' => array(
381
- 'category' => array( 'content-and-media', 'recommended' ),
382
- 'name' => 'Relevant - Related Posts',
383
- 'description' => 'Add related posts to WordPress posts or widgets. Link your readers to relevant content.',
384
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/related-posts/?k=73fb737037f7141e66415ec259f7e426&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
385
  'settings' => 'admin.php?page=related-posts-plugin.php'
386
  ),
387
  'sender/sender.php' => array(
388
- 'category' => array( 'social', 'recommended' ),
389
  'name' => 'Sender',
390
- 'description' => 'Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports.',
391
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
392
  'settings' => 'admin.php?page=sndr_settings',
393
  'pro_version' => 'sender-pro/sender-pro.php',
394
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/buy/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
395
  'pro_settings' => 'admin.php?page=sndrpr_settings'
396
  ),
 
 
 
 
 
 
 
397
  'bws-smtp/bws-smtp.php' => array(
398
- 'category' => array( 'utilities' ),
399
  'name' => 'SMTP',
400
- 'description' => 'Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services.',
401
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
402
  'settings' => 'admin.php?page=bwssmtp_settings'
403
  ),
404
  'social-buttons-pack/social-buttons-pack.php' => array(
405
- 'category' => array( 'social', 'recommended' ),
406
  'name' => 'Social Buttons Pack',
407
- 'description' => 'Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn.',
408
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
409
  'settings' => 'admin.php?page=social-buttons.php',
410
  'pro_version' => 'social-buttons-pack-pro/social-buttons-pack-pro.php',
@@ -412,16 +389,16 @@ $bws_plugins = array(
412
  'pro_settings' => 'admin.php?page=social-buttons.php'
413
  ),
414
  'social-login-bws/social-login-bws.php' => array(
415
- 'category' => array( 'social' ),
416
  'name' => 'Social Login',
417
- 'description' => 'Add social media login, registration, and commenting to your WordPress website.',
418
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-login/?k=62817c9c94f24129e40894e1d9c3f49d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
419
  'settings' => 'admin.php?page=social-login.php'
420
  ),
421
  'subscriber/subscriber.php' => array(
422
- 'category' => array( 'social', 'recommended' ),
423
  'name' => 'Subscriber',
424
- 'description' => 'Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users.',
425
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
426
  'settings' => 'admin.php?page=sbscrbr_settings_page',
427
  'pro_version' => 'subscriber-pro/subscriber-pro.php',
@@ -429,16 +406,16 @@ $bws_plugins = array(
429
  'pro_settings' => 'admin.php?page=sbscrbrpr_settings_page'
430
  ),
431
  'bws-testimonials/bws-testimonials.php' => array(
432
- 'category' => array( 'content-and-media', 'recommended' ),
433
  'name' => 'Testimonials',
434
- 'description' => 'Add testimonials and feedbacks from your customers to WordPress posts, pages and widgets.',
435
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
436
  'settings' => 'admin.php?page=testimonials.php'
437
  ),
438
  'timesheet/timesheet.php' => array(
439
- 'category' => array( 'management' ),
440
  'name' => 'Timesheet',
441
- 'description' => 'Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports.',
442
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
443
  'settings' => 'admin.php?page=timesheet_settings',
444
  'pro_version' => 'timesheet-pro/timesheet-pro.php',
@@ -446,9 +423,9 @@ $bws_plugins = array(
446
  'pro_settings' => 'admin.php?page=timesheet_pro_settings'
447
  ),
448
  'twitter-plugin/twitter.php' => array(
449
- 'category' => array( 'social' ),
450
  'name' => 'Twitter',
451
- 'description' => 'Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts, pages and widgets.',
452
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/twitter/?k=f8cb514e25bd7ec4974d64435c5eb333&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
453
  'settings' => 'admin.php?page=twitter.php',
454
  'pro_version' => 'twitter-pro/twitter-pro.php',
@@ -456,9 +433,9 @@ $bws_plugins = array(
456
  'pro_settings' => 'admin.php?page=twitter-pro.php'
457
  ),
458
  'updater/updater.php' => array(
459
- 'category' => array( 'utilities', 'recommended' ),
460
  'name' => 'Updater',
461
- 'description' => 'Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.',
462
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/updater/?k=66f3ecd4c1912009d395c4bb30f779d1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
463
  'settings' => 'admin.php?page=updater-options',
464
  'pro_version' => 'updater-pro/updater_pro.php',
@@ -466,9 +443,9 @@ $bws_plugins = array(
466
  'pro_settings' => 'admin.php?page=updater-pro-options'
467
  ),
468
  'user-role/user-role.php' => array(
469
- 'category' => array( 'utilities' ),
470
  'name' => 'User Role',
471
- 'description' => 'Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles.',
472
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
473
  'settings' => 'admin.php?page=user-role.php',
474
  'pro_version' => 'user-role-pro/user-role-pro.php',
@@ -476,9 +453,9 @@ $bws_plugins = array(
476
  'pro_settings' => 'admin.php?page=user-role-pro.php'
477
  ),
478
  'visitors-online/visitors-online.php' => array(
479
- 'category' => array( 'site-stats' ),
480
  'name' => 'Visitors Online',
481
- 'description' => 'Display live count of online visitors who are currently browsing your WordPress website.',
482
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
483
  'settings' => 'admin.php?page=visitors-online.php',
484
  'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
@@ -486,9 +463,9 @@ $bws_plugins = array(
486
  'pro_settings' => 'admin.php?page=visitors-online-pro.php'
487
  ),
488
  'zendesk-help-center/zendesk-help-center.php' => array(
489
- 'category' => array( 'utilities' ),
490
  'name' => 'Zendesk Help Center',
491
- 'description' => 'Backup and export Zendesk Help Center content automatically to your WordPress website database.',
492
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
493
  'settings' => 'admin.php?page=zendesk_hc.php&action=settings',
494
  'pro_version' => 'zendesk-help-center-pro/zendesk-help-center-pro.php',
4
  */
5
 
6
  $bws_plugins_category = array(
7
+ 'admin-tools' => array( 'name' => __( 'Admin Tools', 'bestwebsoft' ) ),
8
+ 'content' => array( 'name' => __( 'Content', 'bestwebsoft' ) ),
9
+ 'ecommerce' => array( 'name' => __( 'eCommerce', 'bestwebsoft' ) ),
10
+ 'marketing' => array( 'name' => __( 'Marketing', 'bestwebsoft' ) ),
11
+ 'navigation' => array( 'name' => __( 'Navigation', 'bestwebsoft' ) ),
12
+ 'recommended' => array( 'name' => __( 'Recommended', 'bestwebsoft' ) ),
13
+ 'security' => array( 'name' => __( 'Security', 'bestwebsoft' ) ),
14
+ 'seo' => array( 'name' => __( 'SEO', 'bestwebsoft' ) ),
15
+ 'smm' => array( 'name' => __( 'SMM', 'bestwebsoft' ) ),
16
  );
17
 
18
  $bws_plugins = array(
19
  'captcha/captcha.php' => array(
20
  'category' => array( 'security', 'recommended' ),
21
  'name' => 'Captcha',
22
+ 'description' => __( 'Protect WordPress website forms from spam entries by means of math logic.', 'bestwebsoft' ),
23
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
24
  'settings' => 'admin.php?page=captcha.php',
25
  'pro_version' => 'captcha-pro/captcha_pro.php',
27
  'pro_settings' => 'admin.php?page=captcha_pro.php'
28
  ),
29
  'car-rental/car-rental.php' => array(
30
+ 'category' => array( 'ecommerce' ),
31
  'name' => 'Car Rental',
32
+ 'description' => __( 'Create your personal car rental/booking and reservation website.', 'bestwebsoft' ),
33
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/car-rental/?k=444cac6df9a0d3a9763ab4753d24941b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
34
  'settings' => 'admin.php?page=car-rental-settings',
35
  'pro_version' => 'car-rental-pro/car-rental-pro.php',
37
  'pro_settings' => 'admin.php?page=car-rental-pro-settings'
38
  ),
39
  'contact-form-plugin/contact_form.php' => array(
40
+ 'category' => array( 'marketing', 'recommended' ),
41
  'name' => 'Contact Form',
42
+ 'description' => __( 'Allow customers to reach you using secure contact form plugin any website must have.', 'bestwebsoft' ),
43
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=012327ef413e5b527883e031d43b088b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
44
  'settings' => 'admin.php?page=contact_form.php',
45
  'pro_version' => 'contact-form-pro/contact_form_pro.php',
47
  'pro_settings' => 'admin.php?page=contact_form_pro.php'
48
  ),
49
  'contact-form-multi/contact-form-multi.php' => array(
50
+ 'category' => array( 'marketing', 'recommended' ),
51
  'name' => 'Contact Form Multi',
52
+ 'description' => __( 'Add unlimited number of contact forms to WordPress website.', 'bestwebsoft' ),
53
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
54
  'settings' => '',
55
  'pro_version' => 'contact-form-multi-pro/contact-form-multi-pro.php',
57
  'pro_settings' => ''
58
  ),
59
  'contact-form-to-db/contact_form_to_db.php' => array(
60
+ 'category' => array( 'admin-tools', 'recommended' ),
61
  'name' => 'Contact Form to DB',
62
+ 'description' => __( 'Save and manage Contact Form messages. Never lose important data.', 'bestwebsoft' ),
63
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
64
  'settings' => 'admin.php?page=cntctfrmtdb_settings',
65
  'pro_version' => 'contact-form-to-db-pro/contact_form_to_db_pro.php',
67
  'pro_settings' => 'admin.php?page=cntctfrmtdbpr_settings'
68
  ),
69
  'custom-admin-page/custom-admin-page.php' => array(
70
+ 'category' => array( 'admin-tools' ),
71
  'name' => 'Custom Admin Page',
72
+ 'description' => __( 'Add unlimited custom pages to WordPress admin dashboard.', 'bestwebsoft' ),
73
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-admin-page/?k=9ac03f16c25e845e8e055a221c3e1467&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
74
  'settings' => 'admin.php?page=custom-admin-page.php'
75
  ),
76
  'custom-fields-search/custom-fields-search.php' => array(
77
+ 'category' => array( 'navigation' ),
78
  'name' => 'Custom Fields Search',
79
+ 'description' => __( 'Add custom fields to WordPress website search results.', 'bestwebsoft' ),
80
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-fields-search/?k=f3f8285bb069250c42c6ffac95ed3284&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
81
  'settings' => 'admin.php?page=custom_fields_search.php'
82
  ),
83
  'custom-search-plugin/custom-search-plugin.php' => array(
84
+ 'category' => array( 'navigation' ),
85
  'name' => 'Custom Search',
86
+ 'description' => __( 'Add custom post types and taxonomies to WordPress website search results.', 'bestwebsoft' ),
87
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
88
  'settings' => 'admin.php?page=custom_search.php',
89
  'pro_version' => 'custom-search-pro/custom-search-pro.php',
90
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/buy/?k=062b652ac6ac8ba863c9f30fc21d62c6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
91
  'pro_settings' => 'admin.php?page=custom_search_pro.php'
92
  ),
 
 
 
 
 
 
 
 
 
93
  'donate-button/donate.php' => array(
94
+ 'category' => array( 'ecommerce' ),
95
  'name' => 'Donate',
96
+ 'description' => __( 'Add PayPal and 2CO donate buttons to receive charity payments.', 'bestwebsoft' ),
97
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/donate/?k=a8b2e2a56914fb1765dd20297c26401b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
98
  'settings' => 'admin.php?page=donate.php'
99
  ),
100
  'email-queue/email-queue.php' => array(
101
+ 'category' => array( 'admin-tools' ),
102
  'name' => 'Email Queue',
103
+ 'description' => __( 'Automatically add outgoing email messages to queue instead of sending them immediately.', 'bestwebsoft' ),
104
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/email-queue/?k=e345e1b6623f0dca119bc2d9433b130b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
105
  'settings' => 'admin.php?page=mlq_settings'
106
  ),
107
  'error-log-viewer/error-log-viewer.php' => array(
108
+ 'category' => array( 'admin-tools' ),
109
  'name' => 'Error Log Viewer',
110
+ 'description' => __( 'Get latest error log messages to diagnose website problems. Define and fix issues faster.', 'bestwebsoft' ),
111
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/error-log-viewer/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
112
  'settings' => 'admin.php?page=rrrlgvwr.php&tab=settings'
113
  ),
114
  'facebook-button-plugin/facebook-button-plugin.php' => array(
115
+ 'category' => array( 'smm' ),
116
  'name' => 'Facebook Button',
117
+ 'description' => __( 'Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and widgets.', 'bestwebsoft' ),
118
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=05ec4f12327f55848335802581467d55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
119
  'settings' => 'admin.php?page=facebook-button-plugin.php',
120
  'pro_version' => 'facebook-button-pro/facebook-button-pro.php',
121
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/buy/?k=8da168e60a831cfb3525417c333ad275&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
122
  'pro_settings' => 'admin.php?page=facebook-button-pro.php'
123
  ),
 
 
 
 
 
 
 
124
  'gallery-plugin/gallery-plugin.php' => array(
125
+ 'category' => array( 'content', 'recommended' ),
126
  'name' => 'Gallery',
127
+ 'description' => __( 'Add beautiful galleries, albums & images to your WordPress website in a few clicks.', 'bestwebsoft' ),
128
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery/?k=2da21c0a64eec7ebf16337fa134c5f78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
129
  'settings' => 'admin.php?page=gallery-plugin.php',
130
  'pro_version' => 'gallery-plugin-pro/gallery-plugin-pro.php',
132
  'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
133
  ),
134
  'gallery-categories/gallery-categories.php' => array(
135
+ 'category' => array( 'content' ),
136
  'name' => 'Gallery Categories',
137
+ 'description' => __( 'Add unlimited gallery categories. Organize images to make the navigation through content easier.', 'bestwebsoft' ),
138
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery-categories/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
139
  'settings' => ''
140
  ),
141
  'google-one/google-plus-one.php' => array(
142
+ 'category' => array( 'smm' ),
143
  'name' => 'Google +1',
144
+ 'description' => __( 'Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.', 'bestwebsoft' ),
145
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
146
  'settings' => 'admin.php?page=google-plus-one.php',
147
  'pro_version' => 'google-one-pro/google-plus-one-pro.php',
149
  'pro_settings' => 'admin.php?page=google-plus-one-pro.php'
150
  ),
151
  'adsense-plugin/adsense-plugin.php' => array(
152
+ 'category' => array( 'marketing' ),
153
  'name' => 'Google AdSense',
154
+ 'description' => __( 'Add Adsense ads to WordPress website pages, posts, custom posts, search results, categories, tags, and widgets.', 'bestwebsoft' ),
155
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
156
  'settings' => 'admin.php?page=adsense-plugin.php',
157
  'pro_version' => 'adsense-pro/adsense-pro.php',
159
  'pro_settings' => 'admin.php?page=adsense-pro.php'
160
  ),
161
  'bws-google-analytics/bws-google-analytics.php' => array(
162
+ 'category' => array( 'admin-tools' ),
163
  'name' => 'Google Analytics',
164
+ 'description' => __( 'Add Google Analytics code to WordPress website and track basic stats.', 'bestwebsoft' ),
165
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
166
  'settings' => 'admin.php?page=bws-google-analytics.php',
167
  'pro_version' => 'bws-google-analytics-pro/bws-google-analytics-pro.php',
171
  'google-captcha/google-captcha.php' => array(
172
  'category' => array( 'security', 'recommended' ),
173
  'name' => 'Google Captcha (reCAPTCHA)',
174
+ 'description' => __( 'Protect WordPress website forms from spam entries with Google Captcha (reCaptcha).', 'bestwebsoft' ),
175
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
176
  'settings' => 'admin.php?page=google-captcha.php',
177
  'pro_version' => 'google-captcha-pro/google-captcha-pro.php',
179
  'pro_settings' => 'admin.php?page=google-captcha-pro.php'
180
  ),
181
  'bws-google-maps/bws-google-maps.php' => array(
182
+ 'category' => array( 'content' ),
183
  'name' => 'Google Maps',
184
+ 'description' => __( 'Add customized Google maps to WordPress posts, pages and widgets.', 'bestwebsoft' ),
185
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
186
  'settings' => 'admin.php?page=bws-google-maps.php',
187
  'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php',
189
  'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
190
  ),
191
  'google-sitemap-plugin/google-sitemap-plugin.php' => array(
192
+ 'category' => array( 'seo', 'recommended' ),
193
  'name' => 'Google Sitemap',
194
+ 'description' => __( 'Generate and add XML sitemap to WordPress website. Help search engines index your blog.', 'bestwebsoft' ),
195
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
196
  'settings' => 'admin.php?page=google-sitemap-plugin.php',
197
  'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
199
  'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
200
  ),
201
  'google-shortlink/google-shortlink.php' => array(
202
+ 'category' => array( 'seo' ),
203
  'name' => 'Google Shortlink',
204
+ 'description' => __( 'Replace external WordPress website links with Google shortlinks and track click stats.', 'bestwebsoft' ),
205
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
206
  'settings' => 'admin.php?page=gglshrtlnk_options'
207
  ),
208
  'htaccess/htaccess.php' => array(
209
  'category' => array( 'security' ),
210
  'name' => 'Htaccess',
211
+ 'description' => __( 'Protect WordPress website – allow and deny access for certain IP addresses, hostnames, etc.', 'bestwebsoft' ),
212
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=2b865fcd56a935d22c5c4f1bba52ed46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
213
  'settings' => 'admin.php?page=htaccess.php',
214
  'pro_version' => 'htaccess-pro/htaccess-pro.php',
216
  'pro_settings' => 'admin.php?page=htaccess-pro.php'
217
  ),
218
  'job-board/job-board.php' => array(
219
+ 'category' => array( 'ecommerce' ),
220
  'name' => 'Job Board',
221
+ 'description' => __( 'Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates.', 'bestwebsoft' ),
222
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
223
  'settings' => 'admin.php?page=job-board.php'
224
  ),
 
 
 
 
 
 
 
225
  'limit-attempts/limit-attempts.php' => array(
226
  'category' => array( 'security', 'recommended' ),
227
  'name' => 'Limit Attempts',
228
+ 'description' => __( 'Protect WordPress website against brute force attacks. Limit rate of login attempts.', 'bestwebsoft' ),
229
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
230
  'settings' => 'admin.php?page=limit-attempts.php',
231
  'pro_version' => 'limit-attempts-pro/limit-attempts-pro.php',
233
  'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
234
  ),
235
  'bws-linkedin/bws-linkedin.php' => array(
236
+ 'category' => array( 'smm' ),
237
  'name' => 'LinkedIn',
238
+ 'description' => __( 'Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.', 'bestwebsoft' ),
239
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/linkedin/?k=d63c7319622ccc5f589dd2d545c1d77c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
240
  'settings' => 'admin.php?page=linkedin.php',
241
  'pro_version' => 'bws-linkedin-pro/bws-linkedin-pro.php',
243
  'pro_settings' => 'admin.php?page=linkedin-pro.php'
244
  ),
245
  'multilanguage/multilanguage.php' => array(
246
+ 'category' => array( 'content', 'recommended' ),
247
  'name' => 'Multilanguage',
248
+ 'description' => __( 'Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.', 'bestwebsoft' ),
249
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
250
  'settings' => 'admin.php?page=mltlngg_settings',
251
  'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
253
  'pro_settings' => 'admin.php?page=mltlnggpr_settings'
254
  ),
255
  'pagination/pagination.php' => array(
256
+ 'category' => array( 'navigation' ),
257
  'name' => 'Pagination',
258
+ 'description' => __( 'Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation.', 'bestwebsoft' ),
259
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pagination/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
260
  'settings' => 'admin.php?page=pagination.php',
261
  'pro_version' => 'pagination-pro/pagination-pro.php',
263
  'pro_settings' => 'admin.php?page=pagination-pro.php'
264
  ),
265
  'pdf-print/pdf-print.php' => array(
266
+ 'category' => array( 'content' ),
267
  'name' => 'PDF & Print',
268
+ 'description' => __( 'Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance.', 'bestwebsoft' ),
269
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pdf-print/?k=bfefdfb522a4c0ff0141daa3f271840c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
270
  'settings' => 'admin.php?page=pdf-print.php',
271
  'pro_version' => 'pdf-print-pro/pdf-print-pro.php',
273
  'pro_settings' => 'admin.php?page=pdf-print-pro.php'
274
  ),
275
  'bws-pinterest/bws-pinterest.php' => array(
276
+ 'category' => array( 'smm' ),
277
  'name' => 'Pinterest',
278
+ 'description' => __( 'Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets.', 'bestwebsoft' ),
279
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/?k=504107b6213f247a67fe7ffb94e97c78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
280
  'settings' => 'admin.php?page=pinterest.php',
281
  'pro_version' => 'bws-pinterest-pro/bws-pinterest-pro.php',
282
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/buy/?k=ab0069edd1914a3ca8f541bfd88bb0bb&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
283
  'pro_settings' => 'admin.php?page=pinterest-pro.php'
284
  ),
 
 
 
 
 
 
 
285
  'portfolio/portfolio.php' => array(
286
+ 'category' => array( 'content', 'recommended' ),
287
  'name' => 'Portfolio',
288
+ 'description' => __( 'Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients.', 'bestwebsoft' ),
289
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
290
  'settings' => 'admin.php?page=portfolio.php',
291
  'pro_version' => 'portfolio-pro/portfolio-pro.php',
293
  'pro_settings' => 'admin.php?page=portfolio-pro.php'
294
  ),
295
  'post-to-csv/post-to-csv.php' => array(
296
+ 'category' => array( 'admin-tools' ),
297
  'name' => 'Post to CSV',
298
+ 'description' => __( 'Export WordPress posts to CSV file format easily. Configure data order.', 'bestwebsoft' ),
299
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
300
  'settings' => 'admin.php?page=post-to-csv.php'
301
  ),
302
  'profile-extra-fields/profile-extra-fields.php' => array(
303
+ 'category' => array( 'admin-tools' ),
304
  'name' => 'Profile Extra Fields',
305
+ 'description' => __( 'Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values.', 'bestwebsoft' ),
306
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
307
  'settings' => 'admin.php?page=profile-extra-fields.php'
308
  ),
309
  'promobar/promobar.php' => array(
310
+ 'category' => array( 'marketing' ),
311
  'name' => 'PromoBar',
312
+ 'description' => __( 'Add and display HTML advertisement banner on WordPress website. Customize bar styles and appearance.', 'bestwebsoft' ),
313
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/promobar/?k=619eac2232d9cfa382c4e678c3b14766&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
314
  'settings' => 'admin.php?page=promobar.php',
315
  'pro_version' => 'promobar-pro/promobar-pro.php',
317
  'pro_settings' => 'admin.php?page=promobar-pro.php'
318
  ),
319
  'quotes-and-tips/quotes-and-tips.php' => array(
320
+ 'category' => array( 'content' ),
321
  'name' => 'Quotes and Tips',
322
+ 'description' => __( 'Add customizable quotes and tips blocks to WordPress posts, pages and widgets.', 'bestwebsoft' ),
323
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
324
  'settings' => 'admin.php?page=quotes-and-tips.php'
325
  ),
326
  'rating-bws/rating-bws.php' => array(
327
+ 'category' => array( 'marketing' ),
328
  'name' => 'Rating',
329
+ 'description' => __( 'Add rating plugin to your WordPress website to receive feedback from your customers.', 'bestwebsoft' ),
330
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/rating/?k=c00e0824bb999735a3224616ef51f4c5&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
331
  'settings' => 'admin.php?page=rating.php'
332
  ),
333
  'realty/realty.php' => array(
334
+ 'category' => array( 'ecommerce' ),
335
  'name' => 'Realty',
336
+ 'description' => __( 'Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily.', 'bestwebsoft' ),
337
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/realty/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
338
  'settings' => 'admin.php?page=realty_settings',
339
  'pro_version' => 'realty-pro/realty-pro.php',
341
  'pro_settings' => 'admin.php?page=realty_pro_settings'
342
  ),
343
  're-attacher/re-attacher.php' => array(
344
+ 'category' => array( 'admin-tools' ),
345
  'name' => 'Re-attacher',
346
+ 'description' => __( 'Attach, un-attach and re-attach media files quickly to WordPress posts and pages.', 'bestwebsoft' ),
347
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/re-attacher/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
348
  'settings' => 'admin.php?page=re-attacher.php'
349
  ),
350
  'relevant/related-posts-plugin.php' => array(
351
+ 'category' => array( 'marketing', 'recommended' ),
352
+ 'name' => 'Relevant - Related, Featured, Latest, and Popular Posts',
353
+ 'description' => __( 'Add related, featured, latest, and popular posts to your WordPress website. Connect your blog readers with a relevant content.', 'bestwebsoft' ),
354
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/related-posts/?k=73fb737037f7141e66415ec259f7e426&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
355
  'settings' => 'admin.php?page=related-posts-plugin.php'
356
  ),
357
  'sender/sender.php' => array(
358
+ 'category' => array( 'marketing', 'recommended' ),
359
  'name' => 'Sender',
360
+ 'description' => __( 'Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports.', 'bestwebsoft' ),
361
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
362
  'settings' => 'admin.php?page=sndr_settings',
363
  'pro_version' => 'sender-pro/sender-pro.php',
364
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/buy/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
365
  'pro_settings' => 'admin.php?page=sndrpr_settings'
366
  ),
367
+ 'slider-bws/slider-bws.php' => array(
368
+ 'category' => array( 'content' ),
369
+ 'name' => 'Slider',
370
+ 'description' => __( 'The best responsive slider plugin for your WordPress website. Create beautifully animated slides just in a few clicks.', 'bestwebsoft' ),
371
+ 'link' => 'https://bestwebsoft.com/products/wordpress/plugins/slider/?k=02acebf8531b2995e7de8474ae28e290&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
372
+ 'settings' => 'admin.php?page=slider-settings.php'
373
+ ),
374
  'bws-smtp/bws-smtp.php' => array(
375
+ 'category' => array( 'admin-tools' ),
376
  'name' => 'SMTP',
377
+ 'description' => __( 'Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services.', 'bestwebsoft' ),
378
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
379
  'settings' => 'admin.php?page=bwssmtp_settings'
380
  ),
381
  'social-buttons-pack/social-buttons-pack.php' => array(
382
+ 'category' => array( 'smm', 'recommended' ),
383
  'name' => 'Social Buttons Pack',
384
+ 'description' => __( 'Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn.', 'bestwebsoft' ),
385
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
386
  'settings' => 'admin.php?page=social-buttons.php',
387
  'pro_version' => 'social-buttons-pack-pro/social-buttons-pack-pro.php',
389
  'pro_settings' => 'admin.php?page=social-buttons.php'
390
  ),
391
  'social-login-bws/social-login-bws.php' => array(
392
+ 'category' => array( 'smm' ),
393
  'name' => 'Social Login',
394
+ 'description' => __( 'Add social media login, registration, and commenting to your WordPress website.', 'bestwebsoft' ),
395
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-login/?k=62817c9c94f24129e40894e1d9c3f49d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
396
  'settings' => 'admin.php?page=social-login.php'
397
  ),
398
  'subscriber/subscriber.php' => array(
399
+ 'category' => array( 'marketing', 'recommended' ),
400
  'name' => 'Subscriber',
401
+ 'description' => __( 'Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users.', 'bestwebsoft' ),
402
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
403
  'settings' => 'admin.php?page=sbscrbr_settings_page',
404
  'pro_version' => 'subscriber-pro/subscriber-pro.php',
406
  'pro_settings' => 'admin.php?page=sbscrbrpr_settings_page'
407
  ),
408
  'bws-testimonials/bws-testimonials.php' => array(
409
+ 'category' => array( 'marketing', 'recommended' ),
410
  'name' => 'Testimonials',
411
+ 'description' => __( 'Add testimonials and feedbacks from your customers to WordPress website posts, pages, and widgets.', 'bestwebsoft' ),
412
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
413
  'settings' => 'admin.php?page=testimonials.php'
414
  ),
415
  'timesheet/timesheet.php' => array(
416
+ 'category' => array( 'admin-tools' ),
417
  'name' => 'Timesheet',
418
+ 'description' => __( 'Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports.', 'bestwebsoft' ),
419
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
420
  'settings' => 'admin.php?page=timesheet_settings',
421
  'pro_version' => 'timesheet-pro/timesheet-pro.php',
423
  'pro_settings' => 'admin.php?page=timesheet_pro_settings'
424
  ),
425
  'twitter-plugin/twitter.php' => array(
426
+ 'category' => array( 'smm' ),
427
  'name' => 'Twitter',
428
+ 'description' => __( 'Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts and pages.', 'bestwebsoft' ),
429
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/twitter/?k=f8cb514e25bd7ec4974d64435c5eb333&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
430
  'settings' => 'admin.php?page=twitter.php',
431
  'pro_version' => 'twitter-pro/twitter-pro.php',
433
  'pro_settings' => 'admin.php?page=twitter-pro.php'
434
  ),
435
  'updater/updater.php' => array(
436
+ 'category' => array( 'admin-tools', 'recommended' ),
437
  'name' => 'Updater',
438
+ 'description' => __( 'Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.', 'bestwebsoft' ),
439
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/updater/?k=66f3ecd4c1912009d395c4bb30f779d1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
440
  'settings' => 'admin.php?page=updater-options',
441
  'pro_version' => 'updater-pro/updater_pro.php',
443
  'pro_settings' => 'admin.php?page=updater-pro-options'
444
  ),
445
  'user-role/user-role.php' => array(
446
+ 'category' => array( 'admin-tools' ),
447
  'name' => 'User Role',
448
+ 'description' => __( 'Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles.', 'bestwebsoft' ),
449
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
450
  'settings' => 'admin.php?page=user-role.php',
451
  'pro_version' => 'user-role-pro/user-role-pro.php',
453
  'pro_settings' => 'admin.php?page=user-role-pro.php'
454
  ),
455
  'visitors-online/visitors-online.php' => array(
456
+ 'category' => array( 'admin-tools' ),
457
  'name' => 'Visitors Online',
458
+ 'description' => __( 'Display live count of online visitors who are currently browsing your WordPress website.', 'bestwebsoft' ),
459
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
460
  'settings' => 'admin.php?page=visitors-online.php',
461
  'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
463
  'pro_settings' => 'admin.php?page=visitors-online-pro.php'
464
  ),
465
  'zendesk-help-center/zendesk-help-center.php' => array(
466
+ 'category' => array( 'admin-tools' ),
467
  'name' => 'Zendesk Help Center',
468
+ 'description' => __( 'Backup and export Zendesk Help Center content automatically to your WordPress website database.', 'bestwebsoft' ),
469
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
470
  'settings' => 'admin.php?page=zendesk_hc.php&action=settings',
471
  'pro_version' => 'zendesk-help-center-pro/zendesk-help-center-pro.php',
contact_form.php CHANGED
@@ -6,7 +6,7 @@ Description: Simple contact form plugin any WordPress website must have.
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
- Version: 4.0.6
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
@@ -27,11 +27,6 @@ License: GPLv2 or later
27
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
 
30
- /**
31
- * @todo remove file after 01.04.2017
32
- */
33
- require_once( dirname( __FILE__ ) . '/includes/deprecated.php' );
34
-
35
  /**
36
  * Add Wordpress page 'bws_panel' and sub-page of this plugin to admin-panel.
37
  * @return void
@@ -60,7 +55,7 @@ if ( ! function_exists ( 'cntctfrm_init' ) ) {
60
  $cntctfrm_plugin_info = get_plugin_data( __FILE__ );
61
  }
62
  /* Function check if plugin is compatible with current WP version */
63
- bws_wp_min_version_check( plugin_basename( __FILE__ ), $cntctfrm_plugin_info, '3.8' );
64
 
65
  if ( ! is_admin() )
66
  cntctfrm_check_and_send();
@@ -152,13 +147,18 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
152
 
153
  if ( ! isset( $option_defaults ) )
154
  $option_defaults = cntctfrm_get_option_defaults();
155
- /**
156
- * @since 3.98
157
- * @todo delete after 25.04.2017
158
- */
159
- $cntctfrmmlt_options = cntctfrm_options_update( $cntctfrmmlt_options, $option_defaults, $contact_form_multi_active );
160
 
 
161
  $cntctfrmmlt_options = array_merge( $option_defaults, $cntctfrmmlt_options );
 
 
 
 
 
 
 
 
 
162
  $cntctfrmmlt_options['plugin_option_version'] = $cntctfrm_plugin_info["Version"];
163
  update_option( 'cntctfrmmlt_options', $cntctfrmmlt_options );
164
  }
@@ -194,13 +194,18 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
194
 
195
  if ( ! isset( $option_defaults ) )
196
  $option_defaults = cntctfrm_get_option_defaults();
197
- /**
198
- * @since 3.98
199
- * @todo delete after 25.04.2017
200
- */
201
- $cntctfrm_options = cntctfrm_options_update( $cntctfrm_options, $option_defaults, $contact_form_multi_active );
202
 
 
203
  $cntctfrm_options = array_merge( $option_defaults, $cntctfrm_options );
 
 
 
 
 
 
 
 
 
204
  $cntctfrm_options['plugin_option_version'] = $cntctfrm_plugin_info["Version"];
205
  /* show pro features */
206
  $cntctfrm_options['hide_premium_options'] = array();
@@ -323,20 +328,25 @@ if ( ! function_exists( 'cntctfrm_get_option_defaults' ) ) {
323
  'layout' => 1,
324
  'submit_position' => 'left',
325
  'order_fields' => array(
326
- 'first_column' => array(
327
- 'cntctfrm_contact_name',
328
- 'cntctfrm_contact_address',
329
- 'cntctfrm_contact_email',
330
- 'cntctfrm_contact_phone',
331
- 'cntctfrm_contact_subject',
332
- 'cntctfrm_contact_message',
333
- 'cntctfrm_contact_attachment',
334
- 'cntctfrm_contact_send_copy',
335
- 'cntctfrm_subscribe',
336
- 'cntctfrm_captcha'
337
- ),
338
- 'second_column' => array()
339
- )
 
 
 
 
 
340
  );
341
 
342
  return $option_defaults;
@@ -412,190 +422,67 @@ if ( ! function_exists( 'cntctfrm_related_plugins' ) ) {
412
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
413
 
414
  /* Get Captcha options */
415
- if ( is_plugin_active( 'captcha/captcha.php' ) ) {
 
 
 
416
  $cptch_options = get_option( 'cptch_options' );
417
 
418
- $captcha_enabled = 0;
419
-
420
- if ( isset( $cptch_options['forms']['bws_contact']['enable'] ) ) {
421
- $captcha_enabled = $cptch_options['forms']['bws_contact']['enable'];
422
- } else {
423
- if ( isset( $cptch_options['cptch_contact_form'] ) ) {
424
- $captcha_enabled = $cptch_options['cptch_contact_form'];
425
- }
426
-
427
- if ( isset( $cptch_options['contact_form'] ) ) {
428
- $captcha_enabled = $cptch_options['contact_form'];
429
- }
430
- }
431
 
432
- $label = isset( $cptch_options['label_form'] ) ? 'label_form' : 'cptch_label_form';
433
- $required_symbol = isset( $cptch_options['required_symbol'] ) ? 'required_symbol' : 'cptch_required_symbol';
434
  $cntctfrm_related_plugins['captcha'] = array(
435
- 'enabled' => $captcha_enabled,
436
  'options' => $cptch_options,
437
- 'options_name' => 'cptch_options',
438
- 'label' => $label,
439
- 'required_symbol' => $required_symbol,
440
- 'settings_page' => 'captcha.php'
441
- );
442
- } elseif ( is_plugin_active( 'captcha-plus/captcha-plus.php' ) ) {
443
- if ( $cptchpls_options = get_option( 'cptchpls_options' ) ) {
444
- $options_name = 'cptchpls_options';
445
- } elseif ( $cptchpls_options = get_option( 'cptch_options' ) ) {
446
- $options_name = 'cptch_options';
447
- }
448
-
449
- $captcha_enabled = 0;
450
-
451
- if ( isset( $cptchpls_options['forms']['bws_contact']['enable'] ) ) {
452
- $captcha_enabled = $cptchpls_options['forms']['bws_contact']['enable'];
453
- } else {
454
- if ( isset( $cptchpls_options['cptch_contact_form'] ) ) {
455
- $captcha_enabled = $cptchpls_options['cptch_contact_form'];
456
- }
457
-
458
- if ( isset( $cptchpls_options['contact_form'] ) ) {
459
- $captcha_enabled = $cptchpls_options['contact_form'];
460
- }
461
- }
462
-
463
- $label = isset( $cptchpls_options['label_form'] ) ? 'label_form' : 'cptchpls_label_form';
464
- $required_symbol = isset( $cptchpls_options['required_symbol'] ) ? 'required_symbol' : 'cptchpls_required_symbol';
465
- $cntctfrm_related_plugins['captcha'] = array(
466
- 'enabled' => $captcha_enabled,
467
- 'options' => $cptchpls_options,
468
- 'options_name' => $options_name,
469
- 'label' => $label,
470
- 'required_symbol' => $required_symbol,
471
- 'settings_page' => 'captcha-plus.php'
472
- );
473
- } elseif ( is_plugin_active( 'captcha-pro/captcha_pro.php' ) ) {
474
- if ( $cptchpr_options = get_option( 'cptchpr_options' ) ) {
475
- $options_name = 'cptchpr_options';
476
- } elseif ( $cptchpr_options = get_option( 'cptch_options' ) ) {
477
- $options_name = 'cptch_options';
478
- }
479
-
480
- $captcha_enabled = 0;
481
-
482
- if ( isset( $cptchpr_options['forms']['bws_contact']['enable'] ) ) {
483
- $captcha_enabled = $cptchpr_options['forms']['bws_contact']['enable'];
484
- } else {
485
- if ( isset( $cptchpr_options['cptch_contact_form'] ) ) {
486
- $captcha_enabled = $cptchpr_options['cptch_contact_form'];
487
- }
488
-
489
- if ( isset( $cptchpr_options['contact_form'] ) ) {
490
- $captcha_enabled = $cptchpr_options['contact_form'];
491
- }
492
- }
493
-
494
- $label = isset( $cptchpr_options['label_form'] ) ? 'label_form' : 'cptchpr_label_form';
495
- $required_symbol = isset( $cptchpr_options['required_symbol'] ) ? 'required_symbol' : 'cptchpr_required_symbol';
496
-
497
- $cntctfrm_related_plugins['captcha'] = array(
498
- 'enabled' => $captcha_enabled,
499
- 'options' => $cptchpr_options,
500
- 'options_name' => $options_name,
501
- 'label' => $label,
502
- 'required_symbol' => $required_symbol,
503
- 'settings_page' => 'captcha_pro.php'
504
  );
505
  }
506
 
507
  /* Get Google Captcha options */
508
- if ( is_plugin_active( 'google-captcha/google-captcha.php' ) ) {
509
  $gglcptch_options = get_option( 'gglcptch_options' );
 
510
 
511
  $cntctfrm_related_plugins['google-captcha'] = array(
512
  'options' => $gglcptch_options,
513
- 'options_name' => 'gglcptch_options',
514
- 'settings_page' => 'google-captcha.php'
515
- );
516
- } elseif ( is_plugin_active( 'google-captcha-pro/google-captcha-pro.php' ) ) {
517
- if ( $gglcptchpr_options = get_option( 'gglcptchpr_options' ) ) {
518
- $options_name = 'gglcptchpr_options';
519
- } elseif ( $gglcptchpr_options = get_option( 'gglcptch_options' ) ) {
520
- $options_name = 'gglcptch_options';
521
- }
522
- $cntctfrm_related_plugins['google-captcha'] = array(
523
- 'options' => $gglcptchpr_options,
524
- 'options_name' => $options_name,
525
- 'settings_page' => 'google-captcha-pro.php'
526
  );
527
  }
528
 
529
  /* Get Subscriber options */
530
  if ( is_multisite() ) {
531
- if ( is_plugin_active_for_network( 'subscriber/subscriber.php' ) ) {
532
  $sbscrbr_options = get_site_option( 'sbscrbr_options' );
 
533
 
534
  $cntctfrm_related_plugins['subscriber'] = array(
535
  'options' => $sbscrbr_options,
536
- 'options_name' => 'sbscrbr_options',
537
- 'settings_page' => 'sbscrbr_settings_page'
538
- );
539
- } elseif ( is_plugin_active_for_network( 'subscriber-pro/subscriber-pro.php' ) ) {
540
- if ( $sbscrbrpr_options = get_site_option( 'sbscrbrpr_options' ) ) {
541
- $options_name = 'sbscrbrpr_options';
542
- } elseif ( $sbscrbrpr_options = get_site_option( 'sbscrbr_options' ) ) {
543
- $options_name = 'sbscrbr_options';
544
- }
545
-
546
- $cntctfrm_related_plugins['subscriber'] = array(
547
- 'options' => $sbscrbrpr_options,
548
- 'options_name' => $options_name,
549
- 'settings_page' => 'sbscrbrpr_settings_page'
550
  );
551
  }
552
  } else {
553
- if ( is_plugin_active( 'subscriber/subscriber.php' ) ) {
554
  $sbscrbr_options = get_option( 'sbscrbr_options' );
 
555
 
556
  $cntctfrm_related_plugins['subscriber'] = array(
557
  'options' => $sbscrbr_options,
558
- 'options_name' => 'sbscrbr_options',
559
- 'settings_page' => 'sbscrbr_settings_page'
560
- );
561
- } elseif ( is_plugin_active( 'subscriber-pro/subscriber-pro.php' ) ) {
562
- if ( $sbscrbrpr_options = get_option( 'sbscrbrpr_options' ) ) {
563
- $options_name = 'sbscrbrpr_options';
564
- } elseif ( $sbscrbrpr_options = get_option( 'sbscrbr_options' ) ) {
565
- $options_name = 'sbscrbr_options';
566
- }
567
-
568
- $cntctfrm_related_plugins['subscriber'] = array(
569
- 'options' => $sbscrbrpr_options,
570
- 'options_name' => $options_name,
571
- 'settings_page' => 'sbscrbrpr_settings_page'
572
  );
573
  }
574
  }
575
 
576
  /* Get Contact Form to DB options */
577
- if ( is_plugin_active( 'contact-form-to-db/contact_form_to_db.php' ) ) {
578
  $cntctfrmtdb_options = get_option( 'cntctfrmtdb_options' );
579
 
580
- $save_option = isset( $cntctfrmtdb_options['save_messages_to_db'] ) ? 'save_messages_to_db' : 'cntctfrmtdb_save_messages_to_db';
581
  $cntctfrm_related_plugins['contact-form-to-db'] = array(
582
  'options' => $cntctfrmtdb_options,
583
- 'options_name' => 'cntctfrmtdb_options',
584
- 'save_option' => $save_option,
585
- 'settings_page' => 'cntctfrmtdb_settings'
586
- );
587
- } elseif ( is_plugin_active( 'contact-form-to-db-pro/contact_form_to_db_pro.php' ) ) {
588
- if ( $cntctfrmtdbpr_options = get_option( 'cntctfrmtdbpr_options' ) ) {
589
- $options_name = 'cntctfrmtdbpr_options';
590
- } elseif ( $cntctfrmtdbpr_options = get_option( 'cntctfrmtdb_options' ) ) {
591
- $options_name = 'cntctfrmtdb_options';
592
- }
593
- $save_option = isset( $cntctfrmtdbpr_options['save_messages_to_db'] ) ? 'save_messages_to_db' : 'cntctfrmtdbpr_save_messages_to_db';
594
- $cntctfrm_related_plugins['contact-form-to-db'] = array(
595
- 'options' => $cntctfrmtdbpr_options,
596
- 'options_name' => $options_name,
597
- 'save_option' => $save_option,
598
- 'settings_page' => 'cntctfrmtdbpr_settings'
599
  );
600
  }
601
  }
@@ -605,16 +492,10 @@ if ( ! function_exists( 'cntctfrm_check_cf_multi_active' ) ) {
605
  function cntctfrm_check_cf_multi_active() {
606
  /* Check contact-form-multi (free) plugin */
607
  if ( is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) )
608
- $contact_form_multi_active = true;
609
 
610
  /* Check contact-form-multi-pro plugin */
611
  if ( is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) )
612
- $contact_form_multi_pro_active = true;
613
-
614
- if ( isset( $contact_form_multi_active ) )
615
- return "free";
616
-
617
- if ( isset( $contact_form_multi_pro_active ) )
618
  return "pro";
619
 
620
  return false;
@@ -638,7 +519,7 @@ if ( ! function_exists( 'cntctfrm_get_ordered_fields' ) ) {
638
  $display_captcha = $display_google_captcha = $display_subscriber = false;
639
 
640
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) )
641
- $display_captcha = ! empty( $cntctfrm_related_plugins['captcha']['enabled'] );
642
 
643
  if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) )
644
  $display_google_captcha = ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] );
@@ -717,6 +598,14 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
717
  }
718
  }
719
 
 
 
 
 
 
 
 
 
720
  $layout = ( isset( $_POST['cntctfrm_layout'] ) ) ? (int) $_POST['cntctfrm_layout'] : 1;
721
 
722
  $submit_position = ( isset( $_POST['cntctfrm_submit_position'] ) ) ? stripslashes( esc_html( $_POST['cntctfrm_submit_position'] ) ) : 'left';
@@ -807,32 +696,30 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
807
  } else {
808
  /* Update related plugins options if Contact Form Multi is not active */
809
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
810
- $cptch_enable = isset( $_POST['cntctfrm_display_captcha'] ) ? 1 : 0;
811
- $cntctfrm_related_plugins['captcha']['enabled'] = $cptch_enable;
812
- $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] = $cptch_enable;
813
- update_option( $cntctfrm_related_plugins['captcha']['options_name'], $cntctfrm_related_plugins['captcha']['options'] );
814
  }
815
 
816
  if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) ) {
817
  $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] = isset( $_POST['cntctfrm_display_google_captcha'] ) ? 1 : 0;
818
- update_option( $cntctfrm_related_plugins['google-captcha']['options_name'], $cntctfrm_related_plugins['google-captcha']['options'] );
819
  }
820
 
821
  if ( is_multisite() ) {
822
  if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
823
  $cntctfrm_related_plugins['subscriber']['options']['contact_form'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
824
- update_site_option( $cntctfrm_related_plugins['subscriber']['options_name'], $cntctfrm_related_plugins['subscriber']['options'] );
825
  }
826
  } else {
827
  if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
828
  $cntctfrm_related_plugins['subscriber']['options']['contact_form'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
829
- update_option( $cntctfrm_related_plugins['subscriber']['options_name'], $cntctfrm_related_plugins['subscriber']['options'] );
830
  }
831
  }
832
 
833
  if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
834
- $cntctfrm_related_plugins['contact-form-to-db']['options'][ $cntctfrm_related_plugins['contact-form-to-db']['save_option'] ] = isset( $_POST['cntctfrm_save_email_to_db'] ) ? 1 : 0;
835
- update_option( $cntctfrm_related_plugins['contact-form-to-db']['options_name'], $cntctfrm_related_plugins['contact-form-to-db']['options'] );
836
  }
837
  }
838
 
@@ -1118,17 +1005,17 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1118
  <tr valign="top">
1119
  <th scope="row"><?php _e( "The user's email address", 'contact-form-plugin' ); ?>: </th>
1120
  <td colspan="2">
1121
- <label><input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php if ( $cntctfrm_options['select_email'] == 'user' ) echo 'checked="checked" '; ?>/>
1122
  <select class="cntctfrm_user_email" name="cntctfrm_user_email">
1123
  <option disabled><?php _e( "Select a username", 'contact-form-plugin' ); ?></option>
1124
  <?php foreach ( $userslogin as $key => $value ) {
1125
  if ( isset( $value->data ) ) {
1126
  if ( $value->data->user_email != '' ) { ?>
1127
- <option value="<?php echo $value->data->user_login; ?>" <?php if ( $cntctfrm_options['user_email'] == $value->data->user_login ) echo 'selected="selected" '; ?>><?php echo $value->data->user_login; ?></option>
1128
  <?php }
1129
  } else {
1130
  if ( $value->user_email != '' ) { ?>
1131
- <option value="<?php echo $value->user_login; ?>" <?php if ( $cntctfrm_options['user_email'] == $value->user_login ) echo 'selected="selected" '; ?>><?php echo $value->user_login; ?></option>
1132
  <?php }
1133
  }
1134
  } ?>
@@ -1139,7 +1026,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1139
  <tr valign="top">
1140
  <th scope="row"><?php _e( "Use this email address", 'contact-form-plugin' ); ?>:</th>
1141
  <td colspan="2">
1142
- <label><input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php if ( 'custom' == $cntctfrm_options['select_email'] ) echo 'checked="checked" '; ?>/>
1143
  <input type="text" name="cntctfrm_custom_email" value="<?php echo $cntctfrm_options['custom_email']; ?>" maxlength="500" />
1144
  <span class="bws_info cntctfrm_info"><?php _e( "Enter the email address for receiving messages", 'contact-form-plugin' ); ?>.</span></label>
1145
  </td>
@@ -1181,18 +1068,18 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1181
  if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
1182
  $save_emails = false;
1183
  if ( ! $contact_form_multi_active ) {
1184
- $save_emails = ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options'][ $cntctfrm_related_plugins['contact-form-to-db']['save_option'] ] ) ? true : false;
1185
  } else {
1186
  $save_emails = ! empty( $cntctfrm_options['save_email_to_db'] ) ? true : false;
1187
  }
1188
- if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options'][ $cntctfrm_related_plugins['contact-form-to-db']['save_option'] ] ) ) { ?>
1189
- <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php if ( $save_emails ) echo 'checked="checked"'; ?> />
1190
  <span class="bws_info"> (<?php _e( 'Using', 'contact-form-plugin' ); ?>
1191
  <a href="<?php echo self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ); ?>" target="_blank">Contact Form to DB by BestWebSoft</a>)
1192
  </span>
1193
  </label>
1194
  <?php } else { ?>
1195
- <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" disabled="disabled" <?php if ( $save_emails ) echo 'checked="checked"'; ?> /></label>
1196
  <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1197
  <?php printf( '<a href="%s" target="_blank"> Contact Form to DB %s</a>&nbsp;)',
1198
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ),
@@ -1200,7 +1087,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1200
  </span>
1201
  <?php }
1202
  } else { ?>
1203
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php if ( ! empty( $cntctfrm_options["save_email_to_db"] ) ) echo 'checked="checked"'; ?> />
1204
  <span class="bws_info">(<?php _e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft)
1205
  <?php printf( '<a href="%s" target="_blank">%s Contact Form to DB</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
1206
  </span>
@@ -1225,12 +1112,12 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1225
  <td colspan="2">
1226
  <fieldset>
1227
  <label>
1228
- <input type='radio' name='cntctfrm_mail_method' value='wp-mail' <?php if ( 'wp-mail' == $cntctfrm_options['mail_method'] ) echo 'checked="checked" '; ?>/>
1229
  <?php _e( 'Wp-mail', 'contact-form-plugin' ); ?>
1230
  </label>
1231
  <label><span class="bws_info">(<?php _e( 'You can use the Wordpress wp_mail function for mailing', 'contact-form-plugin' ); ?>)</span></label><br />
1232
  <label>
1233
- <input type='radio' name='cntctfrm_mail_method' value='mail' <?php if ( 'mail' == $cntctfrm_options['mail_method'] ) echo 'checked="checked" '; ?>/>
1234
  <?php _e( 'Mail', 'contact-form-plugin' ); ?>
1235
  </label>
1236
  <label><span class="bws_info">(<?php _e( 'You can use the PHP mail function for mailing', 'contact-form-plugin' ); ?>)</span></label>
@@ -1246,12 +1133,12 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1246
  <td colspan="2"><?php _e( "Name", 'contact-form-plugin' ); ?></td>
1247
  </tr>
1248
  <tr>
1249
- <td class="cntctfrm_radio_from_name"><input type="radio" id="cntctfrm_select_from_custom_field" name="cntctfrm_select_from_field" value="custom" <?php if ( 'custom' == $cntctfrm_options['select_from_field'] ) echo 'checked="checked" '; ?> /></td>
1250
  <td><input type="text" name="cntctfrm_from_field" value="<?php echo stripslashes( $cntctfrm_options['from_field'] ); ?>" size="18" maxlength="100" /></td>
1251
  </tr>
1252
  <tr>
1253
  <td class="cntctfrm_radio_from_name">
1254
- <input type="radio" id="cntctfrm_select_from_field" name="cntctfrm_select_from_field" value="user_name" <?php if ( 'user_name' == $cntctfrm_options['select_from_field'] ) echo 'checked="checked" '; ?>/>
1255
  </td>
1256
  <td>
1257
  <label for="cntctfrm_select_from_field"><?php _e( "User name", 'contact-form-plugin' ); ?></label>
@@ -1270,12 +1157,12 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1270
  <td colspan="2"><?php _e( "Email", 'contact-form-plugin' ); ?></td>
1271
  </tr>
1272
  <tr>
1273
- <td class="cntctfrm_radio_from_email"><input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php if ( 'custom' == $cntctfrm_options['from_email'] ) echo 'checked="checked" '; ?>/></td>
1274
  <td><input type="text" name="cntctfrm_custom_from_email" value="<?php echo $cntctfrm_options['custom_from_email']; ?>" maxlength="100" /></td>
1275
  </tr>
1276
  <tr>
1277
  <td class="cntctfrm_radio_from_email">
1278
- <input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php if ( 'user' == $cntctfrm_options['from_email'] ) echo 'checked="checked" '; ?>/>
1279
  </td>
1280
  <td>
1281
  <label for="cntctfrm_from_email"><?php _e( "User email", 'contact-form-plugin' ); ?></label>
@@ -1335,11 +1222,11 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1335
  <tr valign="top">
1336
  <td><?php _e( "Name", 'contact-form-plugin' ); ?></td>
1337
  <td>
1338
- <label><input type="checkbox" name="cntctfrm_display_name_field" value="1" <?php if ( '1' == $cntctfrm_options['display_name_field'] ) echo 'checked="checked" '; ?>/>
1339
  <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1340
  </td>
1341
  <td>
1342
- <label><input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php if ( '1' == $cntctfrm_options['required_name_field'] ) echo 'checked="checked" '; ?> />
1343
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1344
  </td>
1345
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
@@ -1382,11 +1269,11 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1382
  <tr valign="top">
1383
  <td><?php _e( "Address", 'contact-form-plugin' ); ?></td>
1384
  <td>
1385
- <label><input type="checkbox" id="cntctfrm_display_address_field" name="cntctfrm_display_address_field" value="1" <?php if ( '1' == $cntctfrm_options['display_address_field'] ) echo 'checked="checked" '; ?>/>
1386
  <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1387
  </td>
1388
  <td>
1389
- <label><input type="checkbox" id="cntctfrm_required_address_field" name="cntctfrm_required_address_field" value="1" <?php if ( '1' == $cntctfrm_options['required_address_field'] ) echo 'checked="checked" '; ?>/>
1390
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1391
  </td>
1392
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
@@ -1399,7 +1286,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1399
  <td><?php _e( "Email Address", 'contact-form-plugin' ); ?></td>
1400
  <td></td>
1401
  <td>
1402
- <label><input type="checkbox" id="cntctfrm_required_email_field" name="cntctfrm_required_email_field" value="1" <?php if ( '1' == $cntctfrm_options['required_email_field'] ) echo 'checked="checked" '; ?>/>
1403
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1404
  </td>
1405
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
@@ -1421,11 +1308,11 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1421
  <tr valign="top">
1422
  <td><?php _e( "Phone number", 'contact-form-plugin' ); ?></td>
1423
  <td>
1424
- <label><input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php if ( '1' == $cntctfrm_options['display_phone_field'] ) echo 'checked="checked" '; ?>/>
1425
  <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1426
  </td>
1427
  <td>
1428
- <label><input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php if ( '1' == $cntctfrm_options['required_phone_field'] ) echo 'checked="checked" '; ?>/>
1429
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1430
  </td>
1431
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
@@ -1438,7 +1325,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1438
  <td><?php _e( "Subject", 'contact-form-plugin' ); ?></td>
1439
  <td></td>
1440
  <td>
1441
- <label><input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php if ( '1' == $cntctfrm_options['required_subject_field'] ) echo 'checked="checked" '; ?>/>
1442
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1443
  </td>
1444
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
@@ -1462,7 +1349,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1462
  <td><?php _e( "Message", 'contact-form-plugin' ); ?></td>
1463
  <td></td>
1464
  <td>
1465
- <label><input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php if ( '1' == $cntctfrm_options['required_message_field'] ) echo 'checked="checked" '; ?>/>
1466
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1467
  </td>
1468
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
@@ -1503,7 +1390,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1503
  </div>
1504
  </td>
1505
  <td>
1506
- <label><input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php if ( '1' == $cntctfrm_options['attachment'] ) echo 'checked="checked" '; ?>/>
1507
  <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1508
  </td>
1509
  <td></td>
@@ -1521,14 +1408,14 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1521
  <td colspan="3"><fieldset>
1522
  <div>
1523
  <label>
1524
- <input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php if ( '1' == $cntctfrm_options['attachment_explanations'] && '1' == $cntctfrm_options['attachment'] ) echo 'checked="checked" '; ?>/>
1525
  <?php _e( "Tips below the Attachment", 'contact-form-plugin' ); ?>
1526
  </label>
1527
  <?php echo bws_add_help_box( '<img src="' . plugins_url( 'images/tooltip_attachment_tips.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
1528
  </div>
1529
  <div>
1530
  <label>
1531
- <input type="checkbox" id="cntctfrm_send_copy" name="cntctfrm_send_copy" value="1" <?php if ( '1' == $cntctfrm_options['send_copy'] ) echo 'checked="checked" '; ?>/>
1532
  <?php _e( "'Send me a copy' block", 'contact-form-plugin' ); ?>
1533
  </label>
1534
  <?php echo bws_add_help_box( '<img src="' . plugins_url( 'images/tooltip_sendme_block.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
@@ -1542,9 +1429,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1542
  $display_subscriber = ! empty( $cntctfrm_options['display_subscribe'] ) ? true : false;
1543
  }
1544
  if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ) { ?>
1545
- <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php if ( $display_subscriber ) echo 'checked="checked"'; ?> /> Subscriber by BestWebSoft</label>
1546
  <?php } else { ?>
1547
- <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" disabled="disabled" <?php if ( $display_subscriber ) echo 'checked="checked"'; ?> /> Subscriber by BestWebSoft</label>
1548
  <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1549
  <?php printf( '<a href="%s" target="_blank"> Subscriber %s</a>&nbsp;)',
1550
  network_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['subscriber']['settings_page'] ),
@@ -1552,7 +1439,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1552
  </span>
1553
  <?php }
1554
  } else { ?>
1555
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php if ( isset( $cntctfrm_options['display_subscribe'] ) && 1 == $cntctfrm_options['display_subscribe'] ) echo 'checked="checked"'; ?> /> Subscriber by BestWebSoft</label>
1556
  <span class="bws_info">
1557
  <?php if ( ! is_multisite() ) {
1558
  printf( '<a href="%s" target="_blank"> %s Subscriber</a>', admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) );
@@ -1571,7 +1458,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1571
  <div style="clear: both;">
1572
  <?php if ( array_key_exists( 'captcha/captcha.php', $all_plugins ) || array_key_exists( 'captcha-plus/captcha-plus.php', $all_plugins ) || array_key_exists( 'captcha-pro/captcha_pro.php', $all_plugins ) ) {
1573
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
1574
- $captcha_enabled = ! empty( $cntctfrm_related_plugins['captcha']['enabled'] ) ? true : false;
1575
 
1576
  if ( ! $contact_form_multi_active ) {
1577
  $display_captcha = $captcha_enabled;
@@ -1580,13 +1467,13 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1580
  }
1581
 
1582
  if ( ! $contact_form_multi_active ) { ?>
1583
- <label><input type="checkbox" name="cntctfrm_display_captcha" value="1" <?php if ( $display_captcha ) echo 'checked="checked"'; ?> /> Captcha by BestWebSoft </label>
1584
  <?php } else {
1585
  if ( $captcha_enabled ) { ?>
1586
- <label><input type="checkbox" name="cntctfrm_display_captcha" value="1" <?php if ( $display_captcha ) echo 'checked="checked"'; ?> /> Captcha by BestWebSoft </label>
1587
  <?php } else { ?>
1588
  <label>
1589
- <input type="checkbox" name="cntctfrm_display_captcha" value="1" disabled="disabled" <?php if ( $display_captcha ) echo 'checked="checked"'; ?> /> Captcha by BestWebSoft
1590
  <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1591
  <?php printf( '<a href="%s" target="_blank"> Captcha %s</a>&nbsp;)',
1592
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['captcha']['settings_page'] ),
@@ -1618,10 +1505,10 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1618
  }
1619
 
1620
  if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) { ?>
1621
- <label><input type="checkbox" name="cntctfrm_display_google_captcha" value="1" <?php if ( $display_google_captcha ) echo 'checked="checked"'; ?> /> Google Captcha (reCaptcha) by BestWebSoft</label>
1622
  <?php } else { ?>
1623
  <label>
1624
- <input type="checkbox" name="cntctfrm_display_google_captcha" value="1" disabled="disabled" <?php if ( $display_google_captcha ) echo 'checked="checked"'; ?> /> Google Captcha (reCaptcha) by BestWebSoft
1625
  <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1626
  <?php printf( '<a href="%s" target="_blank"> Google Captcha %s</a>&nbsp;)',
1627
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['google-captcha']['settings_page'] ),
@@ -1669,24 +1556,24 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1669
  <tr valign="top">
1670
  <th scope="row"><?php _e( "Delete an attachment file from the server after the email is sent", 'contact-form-plugin' ); ?> </th>
1671
  <td colspan="3">
1672
- <input type="checkbox" id="cntctfrm_delete_attached_file" name="cntctfrm_delete_attached_file" value="1" <?php if ( '1' == $cntctfrm_options['delete_attached_file'] ) echo 'checked="checked" '; ?>/>
1673
  </td>
1674
  </tr>
1675
  <tr valign="top">
1676
  <th scope="row"><?php _e( "Email in HTML format sending", 'contact-form-plugin' ); ?></th>
1677
- <td colspan="2"><input type="checkbox" name="cntctfrm_html_email" value="1" <?php if ( '1' == $cntctfrm_options['html_email'] ) echo 'checked="checked" '; ?>/></td>
1678
  </tr>
1679
  <tr valign="top">
1680
  <th scope="row"><?php _e( "Display additional info in the email", 'contact-form-plugin' ); ?></th>
1681
  <td style="width:15px;" class="cntctfrm_td_top_align">
1682
- <input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php if ( '1' == $cntctfrm_options['display_add_info'] ) echo 'checked="checked" '; ?>/>
1683
  </td>
1684
  <td class="cntctfrm_display_add_info_block" <?php if ( '0' == $cntctfrm_options['display_add_info'] ) echo 'style="display:none"'; ?>>
1685
  <fieldset>
1686
- <label><input type="checkbox" id="cntctfrm_display_sent_from" name="cntctfrm_display_sent_from" value="1" <?php if ( '1' == $cntctfrm_options['display_sent_from'] ) echo 'checked="checked" '; ?>/> <?php _e( "Sent from (IP address)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Sent from (IP address): 127.0.0.1", 'contact-form-plugin' ); ?></label><br />
1687
- <label><input type="checkbox" id="cntctfrm_display_date_time" name="cntctfrm_display_date_time" value="1" <?php if ( '1' == $cntctfrm_options['display_date_time'] ) echo 'checked="checked" '; ?>/> <?php _e( "Date/Time", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Date/Time: August 19, 2013 8:50 pm", 'contact-form-plugin' ); ?></label><br />
1688
- <label><input type="checkbox" id="cntctfrm_display_coming_from" name="cntctfrm_display_coming_from" value="1" <?php if ( '1' == $cntctfrm_options['display_coming_from'] ) echo 'checked="checked" '; ?>/> <?php _e( "Sent from (referer)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/", 'contact-form-plugin' ); ?></label><br />
1689
- <label><input type="checkbox" id="cntctfrm_display_user_agent" name="cntctfrm_display_user_agent" value="1" <?php if ( '1' == $cntctfrm_options['display_user_agent'] ) echo 'checked="checked" '; ?>/> <?php _e( "Using (user agent)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36", 'contact-form-plugin' ); ?></label>
1690
  </fieldset>
1691
  </td>
1692
  </tr>
@@ -1706,7 +1593,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1706
  <tr valign="top">
1707
  <th scope="row"><?php _e( "Change the names of the contact form fields and error messages", 'contact-form-plugin' ); ?></th>
1708
  <td style="width:15px;" class="cntctfrm_td_top_align">
1709
- <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" value="1" <?php if ( $cntctfrm_options['change_label'] == '1' ) echo 'checked="checked" '; ?>/>
1710
  </td>
1711
  <td class="cntctfrm_change_label_block" <?php if ( '0' == $cntctfrm_options['change_label'] ) echo 'style="display:none"'; ?>>
1712
  <div class="cntctfrm_label_language_tab <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? 'cntctfrm_active' : ''; ?>" id="cntctfrm_label_default"><?php _e( 'Default', 'contact-form-plugin' ); ?>
@@ -1798,13 +1685,13 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1798
  <tr valign="top">
1799
  <th scope="row"><?php _e( 'Use the changed names of the contact form fields in the email', 'contact-form-plugin' ); ?></th>
1800
  <td colspan="2">
1801
- <input type="checkbox" name="cntctfrm_change_label_in_email" value="1" <?php if ( $cntctfrm_options['change_label_in_email'] == '1' ) echo 'checked="checked" '; ?>/>
1802
  </td>
1803
  </tr>
1804
  <tr valign="top">
1805
  <th scope="row"><?php _e( "Action after email is sent", 'contact-form-plugin' ); ?></th>
1806
  <td colspan="2" class="cntctfrm_action_after_send_block">
1807
- <label><input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php if ( '1' == $cntctfrm_options['action_after_send'] ) echo 'checked="checked" '; ?>/> <?php _e( "Display text", 'contact-form-plugin' ); ?></label><br />
1808
  <div class="cntctfrm_label_language_tab <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? 'cntctfrm_active' : ''; ?>" id="cntctfrm_text_default"><?php _e( 'Default', 'contact-form-plugin' ); ?>
1809
  <noscript>
1810
  <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
@@ -1843,7 +1730,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1843
  } ?>
1844
  <div id="cntctfrm_before"></div>
1845
  <br />
1846
- <label><input type="radio" id="cntctfrm_action_after_send_url" name="cntctfrm_action_after_send" value="0" <?php if ( '0' == $cntctfrm_options['action_after_send'] ) echo 'checked="checked" '; ?> /> <?php _e( "Redirect to the page", 'contact-form-plugin' ); ?></label><br />
1847
  <label><input type="text" maxlength="250" name="cntctfrm_redirect_url" value="<?php echo $cntctfrm_options['redirect_url']; ?>" /> <span class="bws_info"><?php _e( "Url", 'contact-form-plugin' ); ?></span></label>
1848
  </td>
1849
  </tr>
@@ -1912,10 +1799,10 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1912
  <th scope="row"><?php _e( "Form layout", 'contact-form-plugin' ); ?></th>
1913
  <td colspan="2">
1914
  <fieldset>
1915
- <input id="cntctfrm_layout_one_column" name="cntctfrm_layout" type="radio" value="1" <?php if ( $cntctfrm_options['layout'] === 1 ) echo 'checked="checked"' ?>>
1916
  <label for="cntctfrm_layout_one_column"><?php _e( 'One column', 'contact-form-plugin' ); ?></label>
1917
  <br/>
1918
- <input id="cntctfrm_layout_two_columns" name="cntctfrm_layout" type="radio" value="2" <?php if ( $cntctfrm_options['layout'] === 2 ) echo 'checked="checked"' ?>>
1919
  <label for="cntctfrm_layout_two_columns"><?php _e( 'Two columns', 'contact-form-plugin' ); ?></label>
1920
  </fieldset>
1921
  </td>
@@ -1924,14 +1811,35 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1924
  <th scope="row"><?php _e( "Submit position", 'contact-form-plugin' ); ?></th>
1925
  <td colspan="2">
1926
  <fieldset>
1927
- <input id="cntctfrm_submit_position_left" name="cntctfrm_submit_position" type="radio" value="left" <?php if ( $cntctfrm_options['submit_position'] == 'left' ) echo 'checked="checked"' ?>>
1928
  <label for="cntctfrm_submit_position_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1929
  <br/>
1930
- <input id="cntctfrm_submit_position_right" name="cntctfrm_submit_position" type="radio" value="right" <?php if ( $cntctfrm_options['submit_position'] == 'right' ) echo 'checked="checked"' ?>>
1931
  <label for="cntctfrm_submit_position_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1932
  </fieldset>
1933
  </td>
1934
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1935
  </table>
1936
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1937
  <div class="bws_pro_version_bloc">
@@ -2162,10 +2070,16 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2162
  <div id="<?php echo is_rtl() ? 'cntctfrm_left_table' : 'cntctfrm_right_table' ?>">
2163
  <h3><?php _e( 'Contact Form | Preview', 'contact-form-plugin' ); ?></h3>
2164
  <span class="bws_info"><?php _e( 'Drag the necessary field to sort fields.', 'contact-form-plugin' ); ?></span>
2165
- <?php
2166
- $classes = ( $cntctfrm_options['layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
2167
- $classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
2168
- ?>
 
 
 
 
 
 
2169
  <div id="cntctfrm_contact_form" class="cntctfrm_contact_form<?php echo $classes; ?>">
2170
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['form_error']['default']; ?></div>
2171
  <div id="cntctfrm_wrap">
@@ -2306,13 +2220,13 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2306
  $display_captcha_label = '';
2307
 
2308
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) &&
2309
- ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['enabled'] ) ) || ! empty( $cntctfrm_options['display_captcha'] ) ) ) {
2310
 
2311
  $display_captcha = true;
2312
 
2313
- $captcha_label = isset( $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['label'] ] ) ? $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['label'] ] : '';
2314
  if ( ! empty( $captcha_label ) ) {
2315
- $captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['required_symbol'] ] ) ) ? $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['required_symbol'] ] : '' );
2316
  $display_captcha_label = $captcha_label . $captcha_required_symbol;
2317
  }
2318
  }
@@ -2327,12 +2241,14 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2327
  <label><?php echo $display_captcha_label; ?></label>
2328
  </div>
2329
  <div class="cntctfrm_input cntctfrm_input_captcha">
2330
- <input type="hidden" value="1" name="cntctfrm_captcha"/>
2331
  <?php if ( isset( $display_captcha ) ) { ?>
2332
  <img src="<?php echo plugins_url( 'images/cptch.png', __FILE__ ); ?>">
 
2333
  <?php }
2334
  if ( isset( $display_google_captcha ) ) { ?>
2335
- <img src="<?php echo plugins_url( 'images/google-captcha.png', __FILE__ ); ?>">
 
 
2336
  <?php } ?>
2337
  </div>
2338
  </li>
@@ -2372,12 +2288,10 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2372
  <div class="clear"></div>
2373
  </div>
2374
  </div>
2375
- <div id="cntctfrm_shortcode" class="cntctfrm_one_column">
2376
- <?php _e( "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget", 'contact-form-plugin' ); ?>:<br/>
2377
- <div>
2378
- <div id="cntctfrm_shortcode_code">
2379
- <span class="cntctfrm_shortcode">[bestwebsoft_contact_form<?php if ( $contact_form_multi_active ) printf( ' id=%s', $_SESSION['cntctfrmmlt_id_form'] ); ?>]</span>
2380
- </div>
2381
  </div>
2382
  </div>
2383
  </div>
@@ -2406,7 +2320,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2406
  /* Display contact form in front end - page or post */
2407
  if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2408
  function cntctfrm_display_form( $atts = array( 'lang' => 'default' ) ) {
2409
- global $cntctfrm_error_message, $cntctfrm_options, $cntctfrm_result, $cntctfrmmlt_ide, $cntctfrmmlt_active_plugin, $cntctfrm_form_count, $cntctfrm_related_plugins;
2410
 
2411
  if ( empty( $cntctfrm_related_plugins ) )
2412
  cntctfrm_related_plugins();
@@ -2414,7 +2328,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2414
  $contact_form_multi_active = cntctfrm_check_cf_multi_active();
2415
 
2416
  if ( ! wp_script_is( 'cntctfrm_frontend_script', 'registered' ) )
2417
- wp_register_script( 'cntctfrm_frontend_script', plugins_url( 'js/cntctfrm.js', __FILE__ ), array( 'jquery' ), false, true );
2418
 
2419
  $cntctfrm_form_count = empty( $cntctfrm_form_count ) ? 1 : ++$cntctfrm_form_count;
2420
  $form_countid = ( $cntctfrm_form_count == 1 ? '' : '_' . $cntctfrm_form_count );
@@ -2461,6 +2375,8 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2461
  extract( shortcode_atts( array( 'lang' => 'default' ), $atts ) );
2462
  $options_name = 'cntctfrm_options';
2463
  }
 
 
2464
  /* check lang and replace with en default if need */
2465
  foreach ( $cntctfrm_options as $key => $value ) {
2466
  if ( is_array( $value ) && array_key_exists( 'default', $value ) && ( ! array_key_exists( $lang, $value ) || ( isset( $cntctfrm_options[ $key ][ $lang ] ) && $cntctfrm_options[ $key ][ $lang ] == '' ) ) ) {
@@ -2474,12 +2390,12 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2474
 
2475
  $form_submited = isset( $_POST['cntctfrm_form_submited'] ) ? $_POST['cntctfrm_form_submited'] : 0;
2476
 
2477
- $name = ( isset( $_POST['cntctfrm_contact_name'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_name'] ) ) : "";
2478
- $address = ( isset( $_POST['cntctfrm_contact_address'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_address'] ) ) : "";
2479
- $email = ( isset( $_POST['cntctfrm_contact_email'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_email'] ) ) : "";
2480
- $subject = ( isset( $_POST['cntctfrm_contact_subject'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_subject'] ) ) : "";
2481
- $message = ( isset( $_POST['cntctfrm_contact_message'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_message'] ) ) : "";
2482
- $phone = ( isset( $_POST['cntctfrm_contact_phone'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_phone'] ) ) : "";
2483
 
2484
  $name = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $name ) ) );
2485
  $address = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $address ) ) );
@@ -2509,6 +2425,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2509
 
2510
  $classes = ( $cntctfrm_options['layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
2511
  $classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
 
2512
 
2513
  /* Output form */
2514
  $content .= '<form method="post" id="cntctfrm_contact_form' . $form_countid . '" class="cntctfrm_contact_form' . $classes . '"';
@@ -2655,7 +2572,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2655
  $removed_filters = cntctfrm_handle_captcha_filters( 'remove_filters' );
2656
  if ( has_filter( 'cntctfrm_display_captcha' ) ) {
2657
  $display_captcha_label = '';
2658
- if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) && ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['enabled'] ) ) || ( $contact_form_multi_active && ! empty( $cntctfrm_options['display_captcha'] ) ) ) ) {
2659
  $display_captcha = true;
2660
  }
2661
  if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) && ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) || ( $contact_form_multi_active && ! empty( $cntctfrm_options['display_google_captcha'] ) ) ) ) {
@@ -2664,9 +2581,9 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2664
 
2665
  if ( ! empty( $display_captcha ) ) {
2666
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
2667
- $captcha_label = isset( $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['label'] ] ) ? $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['label'] ] : '';
2668
  if ( ! empty( $captcha_label ) ) {
2669
- $captcha_required_symbol = sprintf( '<span class="required">%s</span>', ( ! empty( $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['required_symbol'] ] ) ) ? $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['required_symbol'] ] : '' );
2670
  $display_captcha_label = $captcha_label . $captcha_required_symbol;
2671
  }
2672
  }
@@ -2680,7 +2597,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2680
  if ( isset( $cntctfrm_error_message['error_captcha'] ) && $cntctfrm_form_count == $form_submited )
2681
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_captcha'] . '</div>';
2682
  $content .= '<div class="cntctfrm_input cntctfrm_input_captcha">';
2683
- $content .= apply_filters( 'cntctfrm_display_captcha', ( $cntctfrm_form_count == $form_submited ) ? $cntctfrm_error_message : false, '', 'bws_contact' );
2684
  $content .= '</div>';
2685
  $content .= '</div>';
2686
  }
@@ -2753,7 +2670,7 @@ if ( ! function_exists( 'cntctfrm_handle_captcha_filters' ) ) {
2753
 
2754
  $removed_filters = $remove_captcha = array();
2755
 
2756
- if ( ! ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) && ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['enabled'] ) ) || ( $contact_form_multi_active && ! empty( $cntctfrm_options['display_captcha'] ) ) ) ) )
2757
  $remove_captcha[] = 'captcha';
2758
 
2759
  if ( ! ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) && ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) || ( $contact_form_multi_active && ! empty( $cntctfrm_options['display_google_captcha'] ) ) ) ) )
@@ -2790,7 +2707,7 @@ if ( ! function_exists( 'cntctfrm_handle_captcha_filters' ) ) {
2790
  } elseif ( 'add_filters' == $action && ! empty( $removed_filters ) ) {
2791
  foreach ( $removed_filters as $function_array ) {
2792
  foreach ( $function_array as $tag => $function ) {
2793
- add_filter( $tag, $function );
2794
  }
2795
  }
2796
  }
@@ -2836,12 +2753,12 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
2836
  $cntctfrm_path_of_uploaded_file = $cntctfrm_result = "";
2837
  /* Error messages array */
2838
  $cntctfrm_error_message = array();
2839
- $name = isset( $_POST['cntctfrm_contact_name'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_name'] ) ) : "";
2840
- $address = isset( $_POST['cntctfrm_contact_address'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_address'] ) ) : "";
2841
  $email = isset( $_POST['cntctfrm_contact_email'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_email'] ) ) : "";
2842
- $subject = isset( $_POST['cntctfrm_contact_subject'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_subject'] ) ) : "";
2843
- $message = isset( $_POST['cntctfrm_contact_message'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_message'] ) ) : "";
2844
- $phone = isset( $_POST['cntctfrm_contact_phone'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_phone'] ) ) : "";
2845
 
2846
  $name = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $name ) ) );
2847
  $address = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $address ) ) );
@@ -2928,13 +2845,23 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
2928
 
2929
  cntctfrm_handle_captcha_filters( 'add_filters', $removed_filters );
2930
 
2931
- if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) && ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['enabled'] ) ) || ( $contact_form_multi_active && ! empty( $cntctfrm_options['display_captcha'] ) ) ) ) {
 
 
 
 
 
 
 
 
 
2932
  if ( false === $result ) { /* for CAPTCHA older than PRO - v1.0.7, PLUS - v1.1.0 v FREE - 1.2.5 */
2933
  $cntctfrm_error_message['error_captcha'] = $cntctfrm_options['captcha_error'][ $language ];
2934
  } else if ( ! empty( $result ) && ( is_string( $result ) || is_wp_error( $result ) ) ) {
2935
  $cntctfrm_error_message['error_captcha'] = is_string( $result ) ? $result : $result->get_error_message();
2936
  }
2937
  }
 
2938
  if ( isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) {
2939
 
2940
  $new_filename = 'cntctfrm_' . md5( sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] ) . time() . $email . mt_rand() ) . '_' . sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] );
@@ -3021,7 +2948,7 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
3021
 
3022
  $save_emails = false;
3023
  if ( ! $contact_form_multi_active && array_key_exists( 'contact-form-to-db' , $cntctfrm_related_plugins ) )
3024
- $save_emails = ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options'][ $cntctfrm_related_plugins['contact-form-to-db']['save_option'] ] );
3025
  else
3026
  $save_emails = ! empty( $cntctfrm_options['save_email_to_db'] );
3027
 
@@ -3040,12 +2967,12 @@ if ( ! function_exists( 'cntctfrm_send_mail' ) ) {
3040
 
3041
  $lang = isset( $_POST['cntctfrm_language'] ) ? $_POST['cntctfrm_language'] : 'default';
3042
 
3043
- $name = isset( $_POST['cntctfrm_contact_name'] ) ? $_POST['cntctfrm_contact_name'] : "";
3044
- $address = isset( $_POST['cntctfrm_contact_address'] ) ? $_POST['cntctfrm_contact_address'] : "";
3045
- $email = isset( $_POST['cntctfrm_contact_email'] ) ? stripslashes( $_POST['cntctfrm_contact_email'] ) : "";
3046
- $subject = isset( $_POST['cntctfrm_contact_subject'] ) ? $_POST['cntctfrm_contact_subject'] : "";
3047
- $message = isset( $_POST['cntctfrm_contact_message'] ) ? $_POST['cntctfrm_contact_message'] : "";
3048
- $phone = isset( $_POST['cntctfrm_contact_phone'] ) ? $_POST['cntctfrm_contact_phone'] : "";
3049
  $user_agent = cntctfrm_clean_input( $_SERVER['HTTP_USER_AGENT'] );
3050
 
3051
  $name = stripslashes( strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $name ) ) ) );
@@ -3444,9 +3371,11 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
3444
  if ( wp_is_mobile() )
3445
  wp_enqueue_script( 'jquery-touch-punch' );
3446
 
3447
- wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'jquery-ui-sortable' ) );
3448
  wp_localize_script( 'cntctfrm_script', 'cntctfrm_ajax', $script_vars );
3449
 
 
 
3450
  if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] )
3451
  bws_plugins_include_codemirror();
3452
 
@@ -3490,8 +3419,21 @@ if ( ! function_exists( 'cntctfrm_wp_enqueue_style' ) ) {
3490
 
3491
  if ( ! function_exists ( 'cntctfrm_wp_footer' ) ) {
3492
  function cntctfrm_wp_footer() {
3493
- if ( wp_script_is( 'cntctfrm_frontend_script', 'registered' ) ) {
3494
- wp_enqueue_script( 'cntctfrm_frontend_script', plugins_url( 'js/cntctfrm.js', __FILE__ ), array( 'jquery' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
3495
  }
3496
  }
3497
  }
@@ -3650,12 +3592,6 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
3650
  bws_plugin_suggest_feature_banner( $cntctfrm_plugin_info, 'cntctfrm_options', 'contact-form-plugin' );
3651
  }
3652
 
3653
- /**
3654
- * @since 4.0.3
3655
- * @todo delete after 01.04.2017
3656
- */
3657
- echo cntctfrm_display_deprecated_shortcode_message();
3658
-
3659
  if ( empty( $bstwbsftwppdtplgns_banner_array ) )
3660
  bws_get_banner_array();
3661
 
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
+ Version: 4.0.7
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
27
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
 
 
 
 
 
 
30
  /**
31
  * Add Wordpress page 'bws_panel' and sub-page of this plugin to admin-panel.
32
  * @return void
55
  $cntctfrm_plugin_info = get_plugin_data( __FILE__ );
56
  }
57
  /* Function check if plugin is compatible with current WP version */
58
+ bws_wp_min_version_check( plugin_basename( __FILE__ ), $cntctfrm_plugin_info, '3.9' );
59
 
60
  if ( ! is_admin() )
61
  cntctfrm_check_and_send();
147
 
148
  if ( ! isset( $option_defaults ) )
149
  $option_defaults = cntctfrm_get_option_defaults();
 
 
 
 
 
150
 
151
+ /* array_merge */
152
  $cntctfrmmlt_options = array_merge( $option_defaults, $cntctfrmmlt_options );
153
+ foreach ( $option_defaults as $key => $value ) {
154
+ if ( is_array( $value ) ) {
155
+ foreach ( $value as $key2 => $value2 ) {
156
+ if ( ! isset( $cntctfrmmlt_options[ $key ][ $key2 ] ) )
157
+ $cntctfrmmlt_options[ $key ][ $key2 ] = $option_defaults[ $key ][ $key2 ];
158
+ }
159
+ }
160
+ }
161
+
162
  $cntctfrmmlt_options['plugin_option_version'] = $cntctfrm_plugin_info["Version"];
163
  update_option( 'cntctfrmmlt_options', $cntctfrmmlt_options );
164
  }
194
 
195
  if ( ! isset( $option_defaults ) )
196
  $option_defaults = cntctfrm_get_option_defaults();
 
 
 
 
 
197
 
198
+ /* array_merge */
199
  $cntctfrm_options = array_merge( $option_defaults, $cntctfrm_options );
200
+ foreach ( $option_defaults as $key => $value ) {
201
+ if ( is_array( $value ) ) {
202
+ foreach ( $value as $key2 => $value2 ) {
203
+ if ( ! isset( $cntctfrm_options[ $key ][ $key2 ] ) )
204
+ $cntctfrm_options[ $key ][ $key2 ] = $option_defaults[ $key ][ $key2 ];
205
+ }
206
+ }
207
+ }
208
+
209
  $cntctfrm_options['plugin_option_version'] = $cntctfrm_plugin_info["Version"];
210
  /* show pro features */
211
  $cntctfrm_options['hide_premium_options'] = array();
328
  'layout' => 1,
329
  'submit_position' => 'left',
330
  'order_fields' => array(
331
+ 'first_column' => array(
332
+ 'cntctfrm_contact_name',
333
+ 'cntctfrm_contact_address',
334
+ 'cntctfrm_contact_email',
335
+ 'cntctfrm_contact_phone',
336
+ 'cntctfrm_contact_subject',
337
+ 'cntctfrm_contact_message',
338
+ 'cntctfrm_contact_attachment',
339
+ 'cntctfrm_contact_send_copy',
340
+ 'cntctfrm_subscribe',
341
+ 'cntctfrm_captcha'
342
+ ),
343
+ 'second_column' => array()
344
+ ),
345
+ 'width' => array(
346
+ 'type' => 'default',
347
+ 'input_value' => '100',
348
+ 'input_unit' => '%'
349
+ )
350
  );
351
 
352
  return $option_defaults;
422
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
423
 
424
  /* Get Captcha options */
425
+ $free_active = is_plugin_active( 'captcha/captcha.php' );
426
+ $plus_active = is_plugin_active( 'captcha-plus/captcha-plus.php' );
427
+ $pro_active = is_plugin_active( 'captcha-pro/captcha_pro.php' );
428
+ if ( $free_active || $plus_active || $pro_active ) {
429
  $cptch_options = get_option( 'cptch_options' );
430
 
431
+ if ( $free_active )
432
+ $settings_page = 'captcha.php';
433
+ elseif ( $pro_active )
434
+ $settings_page = 'captcha_pro.php';
435
+ else
436
+ $settings_page = 'captcha-plus.php';
 
 
 
 
 
 
 
437
 
 
 
438
  $cntctfrm_related_plugins['captcha'] = array(
 
439
  'options' => $cptch_options,
440
+ 'settings_page' => $settings_page
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
441
  );
442
  }
443
 
444
  /* Get Google Captcha options */
445
+ if ( is_plugin_active( 'google-captcha/google-captcha.php' ) || is_plugin_active( 'google-captcha-pro/google-captcha-pro.php' ) ) {
446
  $gglcptch_options = get_option( 'gglcptch_options' );
447
+ $settings_page = is_plugin_active( 'google-captcha/google-captcha.php' ) ? 'google-captcha.php' : 'google-captcha-pro.php';
448
 
449
  $cntctfrm_related_plugins['google-captcha'] = array(
450
  'options' => $gglcptch_options,
451
+ 'settings_page' => $settings_page
 
 
 
 
 
 
 
 
 
 
 
 
452
  );
453
  }
454
 
455
  /* Get Subscriber options */
456
  if ( is_multisite() ) {
457
+ if ( is_plugin_active_for_network( 'subscriber/subscriber.php' ) || is_plugin_active_for_network( 'subscriber-pro/subscriber-pro.php' ) ) {
458
  $sbscrbr_options = get_site_option( 'sbscrbr_options' );
459
+ $settings_page = is_plugin_active_for_network( 'subscriber/subscriber.php' ) ? 'sbscrbr_settings_page' : 'sbscrbrpr_settings_page';
460
 
461
  $cntctfrm_related_plugins['subscriber'] = array(
462
  'options' => $sbscrbr_options,
463
+ 'settings_page' => $settings_page
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  );
465
  }
466
  } else {
467
+ if ( is_plugin_active( 'subscriber/subscriber.php' ) || is_plugin_active( 'subscriber-pro/subscriber-pro.php' ) ) {
468
  $sbscrbr_options = get_option( 'sbscrbr_options' );
469
+ $settings_page = is_plugin_active( 'subscriber/subscriber.php' ) ? 'sbscrbr_settings_page' : 'sbscrbrpr_settings_page';
470
 
471
  $cntctfrm_related_plugins['subscriber'] = array(
472
  'options' => $sbscrbr_options,
473
+ 'settings_page' => $settings_page
 
 
 
 
 
 
 
 
 
 
 
 
 
474
  );
475
  }
476
  }
477
 
478
  /* Get Contact Form to DB options */
479
+ if ( is_plugin_active( 'contact-form-to-db/contact_form_to_db.php' ) || is_plugin_active( 'contact-form-to-db-pro/contact_form_to_db_pro.php' ) ) {
480
  $cntctfrmtdb_options = get_option( 'cntctfrmtdb_options' );
481
 
482
+ $settings_page = is_plugin_active( 'contact-form-to-db/contact_form_to_db.php' ) ? 'cntctfrmtdb_settings' : 'cntctfrmtdbpr_settings';
483
  $cntctfrm_related_plugins['contact-form-to-db'] = array(
484
  'options' => $cntctfrmtdb_options,
485
+ 'settings_page' => $settings_page
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
486
  );
487
  }
488
  }
492
  function cntctfrm_check_cf_multi_active() {
493
  /* Check contact-form-multi (free) plugin */
494
  if ( is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) )
495
+ return "free";
496
 
497
  /* Check contact-form-multi-pro plugin */
498
  if ( is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) )
 
 
 
 
 
 
499
  return "pro";
500
 
501
  return false;
519
  $display_captcha = $display_google_captcha = $display_subscriber = false;
520
 
521
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) )
522
+ $display_captcha = ! empty( $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] );
523
 
524
  if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) )
525
  $display_google_captcha = ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] );
598
  }
599
  }
600
 
601
+ if ( isset( $_POST['cntctfrm_width_type'] ) && in_array( $_POST['cntctfrm_width_type'], array( 'default', 'custom' ) ) ) {
602
+ $cntctfrm_options['width']['type'] = $_POST['cntctfrm_width_type'];
603
+ if ( 'custom' == $_POST['cntctfrm_width_type'] ) {
604
+ $cntctfrm_options['width']['input_value'] = ( isset( $_POST['cntctfrm_input_width_value'] ) ) ? (int) $_POST[ 'cntctfrm_input_width_value' ] : 100;
605
+ $cntctfrm_options['width']['input_unit'] = ( isset( $_POST['cntctfrm_input_width_unit'] ) && in_array( $_POST['cntctfrm_input_width_unit'], array( '%', 'px' ) ) ) ? $_POST[ 'cntctfrm_input_width_unit' ] : '%';
606
+ }
607
+ }
608
+
609
  $layout = ( isset( $_POST['cntctfrm_layout'] ) ) ? (int) $_POST['cntctfrm_layout'] : 1;
610
 
611
  $submit_position = ( isset( $_POST['cntctfrm_submit_position'] ) ) ? stripslashes( esc_html( $_POST['cntctfrm_submit_position'] ) ) : 'left';
696
  } else {
697
  /* Update related plugins options if Contact Form Multi is not active */
698
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
699
+ $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] = isset( $_POST['cntctfrm_display_captcha'] ) ? 1 : 0;
700
+ update_option( 'cptch_options', $cntctfrm_related_plugins['captcha']['options'] );
 
 
701
  }
702
 
703
  if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) ) {
704
  $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] = isset( $_POST['cntctfrm_display_google_captcha'] ) ? 1 : 0;
705
+ update_option( 'gglcptch_options', $cntctfrm_related_plugins['google-captcha']['options'] );
706
  }
707
 
708
  if ( is_multisite() ) {
709
  if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
710
  $cntctfrm_related_plugins['subscriber']['options']['contact_form'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
711
+ update_site_option( 'sbscrbr_options', $cntctfrm_related_plugins['subscriber']['options'] );
712
  }
713
  } else {
714
  if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
715
  $cntctfrm_related_plugins['subscriber']['options']['contact_form'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
716
+ update_option( 'sbscrbr_options', $cntctfrm_related_plugins['subscriber']['options'] );
717
  }
718
  }
719
 
720
  if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
721
+ $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] = isset( $_POST['cntctfrm_save_email_to_db'] ) ? 1 : 0;
722
+ update_option( 'cntctfrmtdb_options', $cntctfrm_related_plugins['contact-form-to-db']['options'] );
723
  }
724
  }
725
 
1005
  <tr valign="top">
1006
  <th scope="row"><?php _e( "The user's email address", 'contact-form-plugin' ); ?>: </th>
1007
  <td colspan="2">
1008
+ <label><input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php checked( 'user', $cntctfrm_options['select_email'] ); ?> />
1009
  <select class="cntctfrm_user_email" name="cntctfrm_user_email">
1010
  <option disabled><?php _e( "Select a username", 'contact-form-plugin' ); ?></option>
1011
  <?php foreach ( $userslogin as $key => $value ) {
1012
  if ( isset( $value->data ) ) {
1013
  if ( $value->data->user_email != '' ) { ?>
1014
+ <option value="<?php echo $value->data->user_login; ?>" <?php selected( $value->data->user_login, $cntctfrm_options['user_email'] ); ?>><?php echo $value->data->user_login; ?></option>
1015
  <?php }
1016
  } else {
1017
  if ( $value->user_email != '' ) { ?>
1018
+ <option value="<?php echo $value->user_login; ?>" <?php selected( $value->user_login, $cntctfrm_options['user_email'] ); ?>><?php echo $value->user_login; ?></option>
1019
  <?php }
1020
  }
1021
  } ?>
1026
  <tr valign="top">
1027
  <th scope="row"><?php _e( "Use this email address", 'contact-form-plugin' ); ?>:</th>
1028
  <td colspan="2">
1029
+ <label><input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php checked( 'custom', $cntctfrm_options['select_email'] ); ?> />
1030
  <input type="text" name="cntctfrm_custom_email" value="<?php echo $cntctfrm_options['custom_email']; ?>" maxlength="500" />
1031
  <span class="bws_info cntctfrm_info"><?php _e( "Enter the email address for receiving messages", 'contact-form-plugin' ); ?>.</span></label>
1032
  </td>
1068
  if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
1069
  $save_emails = false;
1070
  if ( ! $contact_form_multi_active ) {
1071
+ $save_emails = ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] ) ? true : false;
1072
  } else {
1073
  $save_emails = ! empty( $cntctfrm_options['save_email_to_db'] ) ? true : false;
1074
  }
1075
+ if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] ) ) { ?>
1076
+ <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php checked( $save_emails ); ?> />
1077
  <span class="bws_info"> (<?php _e( 'Using', 'contact-form-plugin' ); ?>
1078
  <a href="<?php echo self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ); ?>" target="_blank">Contact Form to DB by BestWebSoft</a>)
1079
  </span>
1080
  </label>
1081
  <?php } else { ?>
1082
+ <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" disabled="disabled" <?php checked( $save_emails ); ?> /></label>
1083
  <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1084
  <?php printf( '<a href="%s" target="_blank"> Contact Form to DB %s</a>&nbsp;)',
1085
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ),
1087
  </span>
1088
  <?php }
1089
  } else { ?>
1090
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php checked( ! empty( $cntctfrm_options["save_email_to_db"] ) ); ?> />
1091
  <span class="bws_info">(<?php _e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft)
1092
  <?php printf( '<a href="%s" target="_blank">%s Contact Form to DB</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
1093
  </span>
1112
  <td colspan="2">
1113
  <fieldset>
1114
  <label>
1115
+ <input type='radio' name='cntctfrm_mail_method' value='wp-mail' <?php checked( 'wp-mail', $cntctfrm_options['mail_method'] ); ?> />
1116
  <?php _e( 'Wp-mail', 'contact-form-plugin' ); ?>
1117
  </label>
1118
  <label><span class="bws_info">(<?php _e( 'You can use the Wordpress wp_mail function for mailing', 'contact-form-plugin' ); ?>)</span></label><br />
1119
  <label>
1120
+ <input type='radio' name='cntctfrm_mail_method' value='mail' <?php checked( 'mail', $cntctfrm_options['mail_method'] ); ?> />
1121
  <?php _e( 'Mail', 'contact-form-plugin' ); ?>
1122
  </label>
1123
  <label><span class="bws_info">(<?php _e( 'You can use the PHP mail function for mailing', 'contact-form-plugin' ); ?>)</span></label>
1133
  <td colspan="2"><?php _e( "Name", 'contact-form-plugin' ); ?></td>
1134
  </tr>
1135
  <tr>
1136
+ <td class="cntctfrm_radio_from_name"><input type="radio" id="cntctfrm_select_from_custom_field" name="cntctfrm_select_from_field" value="custom" <?php checked( 'custom', $cntctfrm_options['select_from_field'] ); ?> /></td>
1137
  <td><input type="text" name="cntctfrm_from_field" value="<?php echo stripslashes( $cntctfrm_options['from_field'] ); ?>" size="18" maxlength="100" /></td>
1138
  </tr>
1139
  <tr>
1140
  <td class="cntctfrm_radio_from_name">
1141
+ <input type="radio" id="cntctfrm_select_from_field" name="cntctfrm_select_from_field" value="user_name" <?php checked( 'user_name', $cntctfrm_options['select_from_field'] ); ?>/>
1142
  </td>
1143
  <td>
1144
  <label for="cntctfrm_select_from_field"><?php _e( "User name", 'contact-form-plugin' ); ?></label>
1157
  <td colspan="2"><?php _e( "Email", 'contact-form-plugin' ); ?></td>
1158
  </tr>
1159
  <tr>
1160
+ <td class="cntctfrm_radio_from_email"><input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php checked( 'custom', $cntctfrm_options['from_email'] ); ?> /></td>
1161
  <td><input type="text" name="cntctfrm_custom_from_email" value="<?php echo $cntctfrm_options['custom_from_email']; ?>" maxlength="100" /></td>
1162
  </tr>
1163
  <tr>
1164
  <td class="cntctfrm_radio_from_email">
1165
+ <input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php checked( 'user', $cntctfrm_options['from_email'] ); ?> />
1166
  </td>
1167
  <td>
1168
  <label for="cntctfrm_from_email"><?php _e( "User email", 'contact-form-plugin' ); ?></label>
1222
  <tr valign="top">
1223
  <td><?php _e( "Name", 'contact-form-plugin' ); ?></td>
1224
  <td>
1225
+ <label><input type="checkbox" name="cntctfrm_display_name_field" value="1" <?php checked( '1', $cntctfrm_options['display_name_field'] ); ?> />
1226
  <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1227
  </td>
1228
  <td>
1229
+ <label><input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php checked( '1', $cntctfrm_options['required_name_field'] ); ?> />
1230
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1231
  </td>
1232
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1269
  <tr valign="top">
1270
  <td><?php _e( "Address", 'contact-form-plugin' ); ?></td>
1271
  <td>
1272
+ <label><input type="checkbox" id="cntctfrm_display_address_field" name="cntctfrm_display_address_field" value="1" <?php checked( '1', $cntctfrm_options['display_address_field'] ); ?> />
1273
  <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1274
  </td>
1275
  <td>
1276
+ <label><input type="checkbox" id="cntctfrm_required_address_field" name="cntctfrm_required_address_field" value="1" <?php checked( '1', $cntctfrm_options['required_address_field'] ); ?> />
1277
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1278
  </td>
1279
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1286
  <td><?php _e( "Email Address", 'contact-form-plugin' ); ?></td>
1287
  <td></td>
1288
  <td>
1289
+ <label><input type="checkbox" id="cntctfrm_required_email_field" name="cntctfrm_required_email_field" value="1" <?php checked( '1', $cntctfrm_options['required_email_field'] ); ?> />
1290
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1291
  </td>
1292
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1308
  <tr valign="top">
1309
  <td><?php _e( "Phone number", 'contact-form-plugin' ); ?></td>
1310
  <td>
1311
+ <label><input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php checked( '1', $cntctfrm_options['display_phone_field'] ); ?> />
1312
  <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1313
  </td>
1314
  <td>
1315
+ <label><input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php checked( '1', $cntctfrm_options['required_phone_field'] ); ?> />
1316
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1317
  </td>
1318
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1325
  <td><?php _e( "Subject", 'contact-form-plugin' ); ?></td>
1326
  <td></td>
1327
  <td>
1328
+ <label><input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php checked( '1', $cntctfrm_options['required_subject_field'] ); ?> />
1329
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1330
  </td>
1331
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1349
  <td><?php _e( "Message", 'contact-form-plugin' ); ?></td>
1350
  <td></td>
1351
  <td>
1352
+ <label><input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php checked( '1', $cntctfrm_options['required_message_field'] ); ?> />
1353
  <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1354
  </td>
1355
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1390
  </div>
1391
  </td>
1392
  <td>
1393
+ <label><input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php checked( '1', $cntctfrm_options['attachment'] ); ?> />
1394
  <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1395
  </td>
1396
  <td></td>
1408
  <td colspan="3"><fieldset>
1409
  <div>
1410
  <label>
1411
+ <input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php checked( '1' == $cntctfrm_options['attachment_explanations'] && '1' == $cntctfrm_options['attachment'] ); ?> />
1412
  <?php _e( "Tips below the Attachment", 'contact-form-plugin' ); ?>
1413
  </label>
1414
  <?php echo bws_add_help_box( '<img src="' . plugins_url( 'images/tooltip_attachment_tips.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
1415
  </div>
1416
  <div>
1417
  <label>
1418
+ <input type="checkbox" id="cntctfrm_send_copy" name="cntctfrm_send_copy" value="1" <?php checked( '1', $cntctfrm_options['send_copy'] ); ?> />
1419
  <?php _e( "'Send me a copy' block", 'contact-form-plugin' ); ?>
1420
  </label>
1421
  <?php echo bws_add_help_box( '<img src="' . plugins_url( 'images/tooltip_sendme_block.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
1429
  $display_subscriber = ! empty( $cntctfrm_options['display_subscribe'] ) ? true : false;
1430
  }
1431
  if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ) { ?>
1432
+ <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php checked( $display_subscriber ); ?> /> Subscriber by BestWebSoft</label>
1433
  <?php } else { ?>
1434
+ <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" disabled="disabled" <?php checked( $display_subscriber ); ?> /> Subscriber by BestWebSoft</label>
1435
  <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1436
  <?php printf( '<a href="%s" target="_blank"> Subscriber %s</a>&nbsp;)',
1437
  network_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['subscriber']['settings_page'] ),
1439
  </span>
1440
  <?php }
1441
  } else { ?>
1442
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php checked( isset( $cntctfrm_options['display_subscribe'] ) && 1 == $cntctfrm_options['display_subscribe'] ); ?> /> Subscriber by BestWebSoft</label>
1443
  <span class="bws_info">
1444
  <?php if ( ! is_multisite() ) {
1445
  printf( '<a href="%s" target="_blank"> %s Subscriber</a>', admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) );
1458
  <div style="clear: both;">
1459
  <?php if ( array_key_exists( 'captcha/captcha.php', $all_plugins ) || array_key_exists( 'captcha-plus/captcha-plus.php', $all_plugins ) || array_key_exists( 'captcha-pro/captcha_pro.php', $all_plugins ) ) {
1460
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
1461
+ $captcha_enabled = ! empty( $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] ) ? true : false;
1462
 
1463
  if ( ! $contact_form_multi_active ) {
1464
  $display_captcha = $captcha_enabled;
1467
  }
1468
 
1469
  if ( ! $contact_form_multi_active ) { ?>
1470
+ <label><input type="checkbox" name="cntctfrm_display_captcha" value="1" <?php checked( $display_captcha ); ?> /> Captcha by BestWebSoft </label>
1471
  <?php } else {
1472
  if ( $captcha_enabled ) { ?>
1473
+ <label><input type="checkbox" name="cntctfrm_display_captcha" value="1" <?php checked( $display_captcha ); ?> /> Captcha by BestWebSoft </label>
1474
  <?php } else { ?>
1475
  <label>
1476
+ <input type="checkbox" name="cntctfrm_display_captcha" value="1" disabled="disabled" <?php checked( $display_captcha ); ?> /> Captcha by BestWebSoft
1477
  <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1478
  <?php printf( '<a href="%s" target="_blank"> Captcha %s</a>&nbsp;)',
1479
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['captcha']['settings_page'] ),
1505
  }
1506
 
1507
  if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) { ?>
1508
+ <label><input type="checkbox" name="cntctfrm_display_google_captcha" value="1" <?php checked( $display_google_captcha ); ?> /> Google Captcha (reCaptcha) by BestWebSoft</label>
1509
  <?php } else { ?>
1510
  <label>
1511
+ <input type="checkbox" name="cntctfrm_display_google_captcha" value="1" disabled="disabled" <?php checked( $display_google_captcha ); ?> /> Google Captcha (reCaptcha) by BestWebSoft
1512
  <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1513
  <?php printf( '<a href="%s" target="_blank"> Google Captcha %s</a>&nbsp;)',
1514
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['google-captcha']['settings_page'] ),
1556
  <tr valign="top">
1557
  <th scope="row"><?php _e( "Delete an attachment file from the server after the email is sent", 'contact-form-plugin' ); ?> </th>
1558
  <td colspan="3">
1559
+ <input type="checkbox" id="cntctfrm_delete_attached_file" name="cntctfrm_delete_attached_file" value="1" <?php checked( '1', $cntctfrm_options['delete_attached_file'] ); ?> />
1560
  </td>
1561
  </tr>
1562
  <tr valign="top">
1563
  <th scope="row"><?php _e( "Email in HTML format sending", 'contact-form-plugin' ); ?></th>
1564
+ <td colspan="2"><input type="checkbox" name="cntctfrm_html_email" value="1" <?php checked( '1', $cntctfrm_options['html_email'] ); ?> /></td>
1565
  </tr>
1566
  <tr valign="top">
1567
  <th scope="row"><?php _e( "Display additional info in the email", 'contact-form-plugin' ); ?></th>
1568
  <td style="width:15px;" class="cntctfrm_td_top_align">
1569
+ <input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php checked( '1', $cntctfrm_options['display_add_info'] ); ?> />
1570
  </td>
1571
  <td class="cntctfrm_display_add_info_block" <?php if ( '0' == $cntctfrm_options['display_add_info'] ) echo 'style="display:none"'; ?>>
1572
  <fieldset>
1573
+ <label><input type="checkbox" id="cntctfrm_display_sent_from" name="cntctfrm_display_sent_from" value="1" <?php checked( '1', $cntctfrm_options['display_sent_from'] ); ?> /> <?php _e( "Sent from (IP address)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Sent from (IP address): 127.0.0.1", 'contact-form-plugin' ); ?></label><br />
1574
+ <label><input type="checkbox" id="cntctfrm_display_date_time" name="cntctfrm_display_date_time" value="1" <?php checked( '1', $cntctfrm_options['display_date_time'] ); ?> /> <?php _e( "Date/Time", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Date/Time: August 19, 2013 8:50 pm", 'contact-form-plugin' ); ?></label><br />
1575
+ <label><input type="checkbox" id="cntctfrm_display_coming_from" name="cntctfrm_display_coming_from" value="1" <?php checked( '1', $cntctfrm_options['display_coming_from'] ); ?> /> <?php _e( "Sent from (referer)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/", 'contact-form-plugin' ); ?></label><br />
1576
+ <label><input type="checkbox" id="cntctfrm_display_user_agent" name="cntctfrm_display_user_agent" value="1" <?php checked( '1', $cntctfrm_options['display_user_agent'] ); ?> /> <?php _e( "Using (user agent)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36", 'contact-form-plugin' ); ?></label>
1577
  </fieldset>
1578
  </td>
1579
  </tr>
1593
  <tr valign="top">
1594
  <th scope="row"><?php _e( "Change the names of the contact form fields and error messages", 'contact-form-plugin' ); ?></th>
1595
  <td style="width:15px;" class="cntctfrm_td_top_align">
1596
+ <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" value="1" <?php checked( '1', $cntctfrm_options['change_label'] ); ?> />
1597
  </td>
1598
  <td class="cntctfrm_change_label_block" <?php if ( '0' == $cntctfrm_options['change_label'] ) echo 'style="display:none"'; ?>>
1599
  <div class="cntctfrm_label_language_tab <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? 'cntctfrm_active' : ''; ?>" id="cntctfrm_label_default"><?php _e( 'Default', 'contact-form-plugin' ); ?>
1685
  <tr valign="top">
1686
  <th scope="row"><?php _e( 'Use the changed names of the contact form fields in the email', 'contact-form-plugin' ); ?></th>
1687
  <td colspan="2">
1688
+ <input type="checkbox" name="cntctfrm_change_label_in_email" value="1" <?php checked( '1', $cntctfrm_options['change_label_in_email'] ); ?> />
1689
  </td>
1690
  </tr>
1691
  <tr valign="top">
1692
  <th scope="row"><?php _e( "Action after email is sent", 'contact-form-plugin' ); ?></th>
1693
  <td colspan="2" class="cntctfrm_action_after_send_block">
1694
+ <label><input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php checked( '1', $cntctfrm_options['action_after_send'] ); ?> /> <?php _e( "Display text", 'contact-form-plugin' ); ?></label><br />
1695
  <div class="cntctfrm_label_language_tab <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? 'cntctfrm_active' : ''; ?>" id="cntctfrm_text_default"><?php _e( 'Default', 'contact-form-plugin' ); ?>
1696
  <noscript>
1697
  <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
1730
  } ?>
1731
  <div id="cntctfrm_before"></div>
1732
  <br />
1733
+ <label><input type="radio" id="cntctfrm_action_after_send_url" name="cntctfrm_action_after_send" value="0" <?php checked( '0', $cntctfrm_options['action_after_send'] ); ?> /> <?php _e( "Redirect to the page", 'contact-form-plugin' ); ?></label><br />
1734
  <label><input type="text" maxlength="250" name="cntctfrm_redirect_url" value="<?php echo $cntctfrm_options['redirect_url']; ?>" /> <span class="bws_info"><?php _e( "Url", 'contact-form-plugin' ); ?></span></label>
1735
  </td>
1736
  </tr>
1799
  <th scope="row"><?php _e( "Form layout", 'contact-form-plugin' ); ?></th>
1800
  <td colspan="2">
1801
  <fieldset>
1802
+ <input id="cntctfrm_layout_one_column" name="cntctfrm_layout" type="radio" value="1" <?php checked( (int) $cntctfrm_options['layout'] === 1 ); ?> />
1803
  <label for="cntctfrm_layout_one_column"><?php _e( 'One column', 'contact-form-plugin' ); ?></label>
1804
  <br/>
1805
+ <input id="cntctfrm_layout_two_columns" name="cntctfrm_layout" type="radio" value="2" <?php checked( (int) $cntctfrm_options['layout'] === 2 ); ?> />
1806
  <label for="cntctfrm_layout_two_columns"><?php _e( 'Two columns', 'contact-form-plugin' ); ?></label>
1807
  </fieldset>
1808
  </td>
1811
  <th scope="row"><?php _e( "Submit position", 'contact-form-plugin' ); ?></th>
1812
  <td colspan="2">
1813
  <fieldset>
1814
+ <input id="cntctfrm_submit_position_left" name="cntctfrm_submit_position" type="radio" value="left" <?php checked( 'left', $cntctfrm_options['submit_position'] ); ?> />
1815
  <label for="cntctfrm_submit_position_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1816
  <br/>
1817
+ <input id="cntctfrm_submit_position_right" name="cntctfrm_submit_position" type="radio" value="right" <?php checked( 'right', $cntctfrm_options['submit_position'] ); ?> />
1818
  <label for="cntctfrm_submit_position_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1819
  </fieldset>
1820
  </td>
1821
  </tr>
1822
+ <tr valign="top" id="cntctfrm_width">
1823
+ <th scope="row"><?php _e( 'Width', 'contact-form-plugin' ); ?></th>
1824
+ <td colspan="2">
1825
+ <fieldset>
1826
+ <label>
1827
+ <input type="radio" name="cntctfrm_width_type" value="default" <?php checked( 'default', $cntctfrm_options['width']['type'] ); ?> /> <?php _e( 'Default', 'contact-form-plugin' ); ?>
1828
+ </label>
1829
+ <br />
1830
+ <label>
1831
+ <input type="radio" name="cntctfrm_width_type" value="custom" <?php checked( 'custom', $cntctfrm_options['width']['type'] ); ?> /> <?php _e( 'Custom', 'contact-form-plugin' ); ?>
1832
+ </label>
1833
+ </fieldset>
1834
+ <div class="cntctfrm_width_params" <?php if ( 'custom' != $cntctfrm_options['width']['type'] ) echo 'style="display: none;"'; ?>>
1835
+ <input type="number" name="cntctfrm_input_width_value" value="<?php echo $cntctfrm_options['width']['input_value']; ?>" min="1" max="9999" step="1">
1836
+ <select name="cntctfrm_input_width_unit">
1837
+ <option value="%" <?php selected( '%', $cntctfrm_options['width']['input_unit'] ); ?>>%</option>
1838
+ <option value="px" <?php selected( 'px', $cntctfrm_options['width']['input_unit'] ); ?>><?php _e( 'px', 'contact-form-plugin' ) ?></option>
1839
+ </select>
1840
+ </div>
1841
+ </td>
1842
+ </tr>
1843
  </table>
1844
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1845
  <div class="bws_pro_version_bloc">
2070
  <div id="<?php echo is_rtl() ? 'cntctfrm_left_table' : 'cntctfrm_right_table' ?>">
2071
  <h3><?php _e( 'Contact Form | Preview', 'contact-form-plugin' ); ?></h3>
2072
  <span class="bws_info"><?php _e( 'Drag the necessary field to sort fields.', 'contact-form-plugin' ); ?></span>
2073
+ <?php $classes = ( $cntctfrm_options['layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
2074
+ $classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
2075
+ $classes .= ( 'custom' != $cntctfrm_options['width']['type'] ) ? ' cntctfrm_width_default' : ' cntctfrm_width_custom';
2076
+ if ( 'custom' == $cntctfrm_options['width']['type'] ) { ?>
2077
+ <style id="cntctfrm_custom_styles" type="text/css">
2078
+ .cntctfrm_contact_form.cntctfrm_width_custom {
2079
+ max-width: <?php printf( '%d%s', $cntctfrm_options['width']['input_value'], $cntctfrm_options['width']['input_unit'] ); ?>;
2080
+ }
2081
+ </style>
2082
+ <?php } ?>
2083
  <div id="cntctfrm_contact_form" class="cntctfrm_contact_form<?php echo $classes; ?>">
2084
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['form_error']['default']; ?></div>
2085
  <div id="cntctfrm_wrap">
2220
  $display_captcha_label = '';
2221
 
2222
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) &&
2223
+ ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] ) ) || ! empty( $cntctfrm_options['display_captcha'] ) ) ) {
2224
 
2225
  $display_captcha = true;
2226
 
2227
+ $captcha_label = isset( $cntctfrm_related_plugins['captcha']['options']['title'] ) ? $cntctfrm_related_plugins['captcha']['options']['title'] : '';
2228
  if ( ! empty( $captcha_label ) ) {
2229
+ $captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cntctfrm_related_plugins['captcha']['options']['required_symbol'] ) ) ? $cntctfrm_related_plugins['captcha']['options']['required_symbol'] : '' );
2230
  $display_captcha_label = $captcha_label . $captcha_required_symbol;
2231
  }
2232
  }
2241
  <label><?php echo $display_captcha_label; ?></label>
2242
  </div>
2243
  <div class="cntctfrm_input cntctfrm_input_captcha">
 
2244
  <?php if ( isset( $display_captcha ) ) { ?>
2245
  <img src="<?php echo plugins_url( 'images/cptch.png', __FILE__ ); ?>">
2246
+ <input type="hidden" value="1" name="cntctfrm_captcha"/>
2247
  <?php }
2248
  if ( isset( $display_google_captcha ) ) { ?>
2249
+ <div id="gglcptch_preview">
2250
+ <img src="<?php echo plugins_url( 'images/google-captcha.png', __FILE__ ); ?>">
2251
+ </div>
2252
  <?php } ?>
2253
  </div>
2254
  </li>
2288
  <div class="clear"></div>
2289
  </div>
2290
  </div>
2291
+ <div id="cntctfrm_shortcode">
2292
+ <div><?php _e( "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget", 'contact-form-plugin' ); ?>:<br/></div>
2293
+ <div id="cntctfrm_shortcode_code">
2294
+ <span class="cntctfrm_shortcode">[bestwebsoft_contact_form<?php if ( $contact_form_multi_active ) printf( ' id=%s', $_SESSION['cntctfrmmlt_id_form'] ); ?>]</span>
 
 
2295
  </div>
2296
  </div>
2297
  </div>
2320
  /* Display contact form in front end - page or post */
2321
  if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2322
  function cntctfrm_display_form( $atts = array( 'lang' => 'default' ) ) {
2323
+ global $cntctfrm_error_message, $cntctfrm_options, $cntctfrm_plugin_info, $cntctfrm_result, $cntctfrmmlt_ide, $cntctfrmmlt_active_plugin, $cntctfrm_form_count, $cntctfrm_related_plugins, $cntctfrm_stile_options;
2324
 
2325
  if ( empty( $cntctfrm_related_plugins ) )
2326
  cntctfrm_related_plugins();
2328
  $contact_form_multi_active = cntctfrm_check_cf_multi_active();
2329
 
2330
  if ( ! wp_script_is( 'cntctfrm_frontend_script', 'registered' ) )
2331
+ wp_register_script( 'cntctfrm_frontend_script', plugins_url( 'js/cntctfrm.js', __FILE__ ), array( 'jquery' ), $cntctfrm_plugin_info["Version"], true );
2332
 
2333
  $cntctfrm_form_count = empty( $cntctfrm_form_count ) ? 1 : ++$cntctfrm_form_count;
2334
  $form_countid = ( $cntctfrm_form_count == 1 ? '' : '_' . $cntctfrm_form_count );
2375
  extract( shortcode_atts( array( 'lang' => 'default' ), $atts ) );
2376
  $options_name = 'cntctfrm_options';
2377
  }
2378
+
2379
+ $cntctfrm_stile_options[ $cntctfrm_form_count ] = $options_name;
2380
  /* check lang and replace with en default if need */
2381
  foreach ( $cntctfrm_options as $key => $value ) {
2382
  if ( is_array( $value ) && array_key_exists( 'default', $value ) && ( ! array_key_exists( $lang, $value ) || ( isset( $cntctfrm_options[ $key ][ $lang ] ) && $cntctfrm_options[ $key ][ $lang ] == '' ) ) ) {
2390
 
2391
  $form_submited = isset( $_POST['cntctfrm_form_submited'] ) ? $_POST['cntctfrm_form_submited'] : 0;
2392
 
2393
+ $name = ( isset( $_POST['cntctfrm_contact_name'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_name'] ) ) : "";
2394
+ $address = ( isset( $_POST['cntctfrm_contact_address'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_address'] ) ) : "";
2395
+ $email = ( isset( $_POST['cntctfrm_contact_email'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_email'] ) ) : "";
2396
+ $subject = ( isset( $_POST['cntctfrm_contact_subject'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_subject'] ) ) : "";
2397
+ $message = ( isset( $_POST['cntctfrm_contact_message'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_message'] ) ) : "";
2398
+ $phone = ( isset( $_POST['cntctfrm_contact_phone'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_phone'] ) ) : "";
2399
 
2400
  $name = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $name ) ) );
2401
  $address = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $address ) ) );
2425
 
2426
  $classes = ( $cntctfrm_options['layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
2427
  $classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
2428
+ $classes .= ( 'custom' != $cntctfrm_options['width']['type'] ) ? ' cntctfrm_width_default' : ' cntctfrm_width_custom';
2429
 
2430
  /* Output form */
2431
  $content .= '<form method="post" id="cntctfrm_contact_form' . $form_countid . '" class="cntctfrm_contact_form' . $classes . '"';
2572
  $removed_filters = cntctfrm_handle_captcha_filters( 'remove_filters' );
2573
  if ( has_filter( 'cntctfrm_display_captcha' ) ) {
2574
  $display_captcha_label = '';
2575
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) && ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] ) ) || ( $contact_form_multi_active && ! empty( $cntctfrm_options['display_captcha'] ) ) ) ) {
2576
  $display_captcha = true;
2577
  }
2578
  if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) && ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) || ( $contact_form_multi_active && ! empty( $cntctfrm_options['display_google_captcha'] ) ) ) ) {
2581
 
2582
  if ( ! empty( $display_captcha ) ) {
2583
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
2584
+ $captcha_label = isset( $cntctfrm_related_plugins['captcha']['options']['title'] ) ? $cntctfrm_related_plugins['captcha']['options']['title'] : '';
2585
  if ( ! empty( $captcha_label ) ) {
2586
+ $captcha_required_symbol = sprintf( '<span class="required">%s</span>', ( ! empty( $cntctfrm_related_plugins['captcha']['options']['required_symbol'] ) ) ? $cntctfrm_related_plugins['captcha']['options']['required_symbol'] : '' );
2587
  $display_captcha_label = $captcha_label . $captcha_required_symbol;
2588
  }
2589
  }
2597
  if ( isset( $cntctfrm_error_message['error_captcha'] ) && $cntctfrm_form_count == $form_submited )
2598
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_captcha'] . '</div>';
2599
  $content .= '<div class="cntctfrm_input cntctfrm_input_captcha">';
2600
+ $content .= apply_filters( 'cntctfrm_display_captcha', '', 'bws_contact' );
2601
  $content .= '</div>';
2602
  $content .= '</div>';
2603
  }
2670
 
2671
  $removed_filters = $remove_captcha = array();
2672
 
2673
+ if ( ! ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) && ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] ) ) || ( $contact_form_multi_active && ! empty( $cntctfrm_options['display_captcha'] ) ) ) ) )
2674
  $remove_captcha[] = 'captcha';
2675
 
2676
  if ( ! ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) && ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) || ( $contact_form_multi_active && ! empty( $cntctfrm_options['display_google_captcha'] ) ) ) ) )
2707
  } elseif ( 'add_filters' == $action && ! empty( $removed_filters ) ) {
2708
  foreach ( $removed_filters as $function_array ) {
2709
  foreach ( $function_array as $tag => $function ) {
2710
+ add_filter( $tag, $function, 10, 2 );
2711
  }
2712
  }
2713
  }
2753
  $cntctfrm_path_of_uploaded_file = $cntctfrm_result = "";
2754
  /* Error messages array */
2755
  $cntctfrm_error_message = array();
2756
+ $name = isset( $_POST['cntctfrm_contact_name'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_name'] ) : "";
2757
+ $address = isset( $_POST['cntctfrm_contact_address'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_address'] ) : "";
2758
  $email = isset( $_POST['cntctfrm_contact_email'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_email'] ) ) : "";
2759
+ $subject = isset( $_POST['cntctfrm_contact_subject'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_subject'] ) : "";
2760
+ $message = isset( $_POST['cntctfrm_contact_message'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_message'] ) : "";
2761
+ $phone = isset( $_POST['cntctfrm_contact_phone'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_phone'] ) : "";
2762
 
2763
  $name = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $name ) ) );
2764
  $address = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $address ) ) );
2845
 
2846
  cntctfrm_handle_captcha_filters( 'add_filters', $removed_filters );
2847
 
2848
+ if (
2849
+ (
2850
+ array_key_exists( 'captcha', $cntctfrm_related_plugins ) &&
2851
+ (
2852
+ ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] ) ) ||
2853
+ ( $contact_form_multi_active && ! empty( $cntctfrm_options['display_captcha'] ) )
2854
+ )
2855
+ ) ||
2856
+ ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) )
2857
+ ) {
2858
  if ( false === $result ) { /* for CAPTCHA older than PRO - v1.0.7, PLUS - v1.1.0 v FREE - 1.2.5 */
2859
  $cntctfrm_error_message['error_captcha'] = $cntctfrm_options['captcha_error'][ $language ];
2860
  } else if ( ! empty( $result ) && ( is_string( $result ) || is_wp_error( $result ) ) ) {
2861
  $cntctfrm_error_message['error_captcha'] = is_string( $result ) ? $result : $result->get_error_message();
2862
  }
2863
  }
2864
+
2865
  if ( isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) {
2866
 
2867
  $new_filename = 'cntctfrm_' . md5( sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] ) . time() . $email . mt_rand() ) . '_' . sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] );
2948
 
2949
  $save_emails = false;
2950
  if ( ! $contact_form_multi_active && array_key_exists( 'contact-form-to-db' , $cntctfrm_related_plugins ) )
2951
+ $save_emails = ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] );
2952
  else
2953
  $save_emails = ! empty( $cntctfrm_options['save_email_to_db'] );
2954
 
2967
 
2968
  $lang = isset( $_POST['cntctfrm_language'] ) ? $_POST['cntctfrm_language'] : 'default';
2969
 
2970
+ $name = isset( $_POST['cntctfrm_contact_name'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_name'] ) : "";
2971
+ $address = isset( $_POST['cntctfrm_contact_address'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_address'] ) : "";
2972
+ $email = isset( $_POST['cntctfrm_contact_email'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_email'] ) ) : "";
2973
+ $subject = isset( $_POST['cntctfrm_contact_subject'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_subject'] ) : "";
2974
+ $message = isset( $_POST['cntctfrm_contact_message'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_message'] ) : "";
2975
+ $phone = isset( $_POST['cntctfrm_contact_phone'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_phone'] ) : "";
2976
  $user_agent = cntctfrm_clean_input( $_SERVER['HTTP_USER_AGENT'] );
2977
 
2978
  $name = stripslashes( strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $name ) ) ) );
3371
  if ( wp_is_mobile() )
3372
  wp_enqueue_script( 'jquery-touch-punch' );
3373
 
3374
+ wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'jquery-ui-sortable' ), $cntctfrm_plugin_info["Version"] );
3375
  wp_localize_script( 'cntctfrm_script', 'cntctfrm_ajax', $script_vars );
3376
 
3377
+ bws_enqueue_settings_scripts();
3378
+
3379
  if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] )
3380
  bws_plugins_include_codemirror();
3381
 
3419
 
3420
  if ( ! function_exists ( 'cntctfrm_wp_footer' ) ) {
3421
  function cntctfrm_wp_footer() {
3422
+ global $cntctfrm_form_count, $cntctfrm_stile_options, $cntctfrm_plugin_info;
3423
+
3424
+ if ( wp_script_is( 'cntctfrm_frontend_script', 'registered' ) )
3425
+ wp_enqueue_script( 'cntctfrm_frontend_script' );
3426
+
3427
+ for ( $count = 1; $count <= $cntctfrm_form_count; $count++ ) {
3428
+ $form_countid = ( 1 == $count ? '#cntctfrm_contact_form' : '#cntctfrm_contact_form_' . $count );
3429
+ $options = get_option( $cntctfrm_stile_options[ $count ] );
3430
+ if ( 'custom' == $options['width']['type'] ) { ?>
3431
+ <style id="cntctfrm_custom_styles__<?php echo $count; ?>" type="text/css">
3432
+ <?php echo $form_countid; ?>.cntctfrm_width_custom {
3433
+ max-width: <?php printf( '%d%s', $options['width']['input_value'], $options['width']['input_unit'] ); ?>;
3434
+ }
3435
+ </style>
3436
+ <?php }
3437
  }
3438
  }
3439
  }
3592
  bws_plugin_suggest_feature_banner( $cntctfrm_plugin_info, 'cntctfrm_options', 'contact-form-plugin' );
3593
  }
3594
 
 
 
 
 
 
 
3595
  if ( empty( $bstwbsftwppdtplgns_banner_array ) )
3596
  bws_get_banner_array();
3597
 
css/form_style.css CHANGED
@@ -46,14 +46,13 @@
46
  .cntctfrm_input,
47
  .cntctfrm_select,
48
  .cntctfrm_checkbox {
49
- max-width: 320px;
 
 
50
  }
51
  .cntctfrm_input.cntctfrm_input_submit {
52
  max-width: 100%;
53
  }
54
- .cntctfrm_input_captcha {
55
- margin: 20px 0;
56
- }
57
  .cntctfrm_contact_form input[type="text"],
58
  .cntctfrm_contact_form input[type="file"],
59
  .cntctfrm_contact_form select,
@@ -66,6 +65,24 @@
66
  margin: 0 !important;
67
  box-sizing: border-box;
68
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  .cntctfrm_contact_attachment_extensions {
70
  font-size: 10px !important;
71
  }
@@ -87,27 +104,37 @@
87
  position: relative;
88
  }
89
  .cntctfrm_error_text {
 
90
  color: red;
91
  text-align: left;
92
  }
93
  #cntctfrm_contact_attachment {
94
- margin-bottom:0;
95
  }
96
  .cntctfrm_contact_form div {
97
  clear: both;
98
  }
99
- .cntctfrm_one_column {
100
  max-width: 320px;
101
  width: 100%;
102
  }
103
- .cntctfrm_two_columns {
 
 
 
 
104
  max-width: 650px;
105
  width: 100%;
106
  }
 
 
 
 
 
 
107
  .cntctfrm_column {
108
  position: relative;
109
  min-height: 1px;
110
- max-width: 320px;
111
  width: 100%;
112
  padding: 0;
113
  margin: 0;
@@ -119,14 +146,29 @@
119
  .cntctfrm_rtl .cntctfrm_column {
120
  float: right;
121
  }
122
- .cntctfrm_ltr.cntctfrm_two_columns #cntctfrm_first_column,
123
- .cntctfrm_ltr.cntctfrm_two_columns #cntctfrm_submit_first_column {
124
  margin: 0 10px 0 0;
125
  }
126
- .cntctfrm_rtl.cntctfrm_two_columns #cntctfrm_first_column,
127
- .cntctfrm_rtl.cntctfrm_two_columns #cntctfrm_submit_first_column {
 
 
 
 
 
 
 
 
128
  margin: 0 0 0 10px;
129
  }
130
  .cntctfrm_field_wrap {
131
  margin: 0 0 5px;
 
 
 
 
 
 
 
132
  }
46
  .cntctfrm_input,
47
  .cntctfrm_select,
48
  .cntctfrm_checkbox {
49
+ box-sizing: border-box;
50
+ /* max-width: 320px;*/
51
+ width: 100%;
52
  }
53
  .cntctfrm_input.cntctfrm_input_submit {
54
  max-width: 100%;
55
  }
 
 
 
56
  .cntctfrm_contact_form input[type="text"],
57
  .cntctfrm_contact_form input[type="file"],
58
  .cntctfrm_contact_form select,
65
  margin: 0 !important;
66
  box-sizing: border-box;
67
  }
68
+ .cntctfrm_contact_form.cntctfrm_width_default input[type="text"],
69
+ .cntctfrm_contact_form.cntctfrm_width_default input[type="file"],
70
+ .cntctfrm_contact_form.cntctfrm_width_default select,
71
+ .cntctfrm_contact_form.cntctfrm_width_default textarea,
72
+ .widget .cntctfrm_contact_form.cntctfrm_width_default input[type="text"],
73
+ .widget .cntctfrm_contact_form.cntctfrm_width_default input[type="file"],
74
+ .widget .cntctfrm_contact_form.cntctfrm_width_default select,
75
+ .widget .cntctfrm_contact_form.cntctfrm_width_default textarea {
76
+ max-width: 320px;
77
+ }
78
+ .cntctfrm_contact_form input[type="checkbox"],
79
+ .cntctfrm_contact_form input[type="radio"]
80
+ .cntctfrm_contact_form input[type="submit"],
81
+ .widget .cntctfrm_contact_form input[type="checkbox"],
82
+ .widget .cntctfrm_contact_form input[type="radio"],
83
+ .widget .cntctfrm_contact_form input[type="submit"] {
84
+ margin: 0;
85
+ }
86
  .cntctfrm_contact_attachment_extensions {
87
  font-size: 10px !important;
88
  }
104
  position: relative;
105
  }
106
  .cntctfrm_error_text {
107
+ margin: 5px 0;
108
  color: red;
109
  text-align: left;
110
  }
111
  #cntctfrm_contact_attachment {
112
+ margin-bottom: 0;
113
  }
114
  .cntctfrm_contact_form div {
115
  clear: both;
116
  }
117
+ .cntctfrm_one_column.cntctfrm_width_default {
118
  max-width: 320px;
119
  width: 100%;
120
  }
121
+ .cntctfrm_one_column.cntctfrm_width_custom {
122
+ max-width: 100%;
123
+ width: 100%;
124
+ }
125
+ .cntctfrm_two_columns.cntctfrm_width_default {
126
  max-width: 650px;
127
  width: 100%;
128
  }
129
+ .cntctfrm_two_columns.cntctfrm_width_custom .cntctfrm_column {
130
+ max-width: 49%;
131
+ }
132
+ .cntctfrm_one_column.cntctfrm_width_custom .cntctfrm_column {
133
+ max-width: 100%;
134
+ }
135
  .cntctfrm_column {
136
  position: relative;
137
  min-height: 1px;
 
138
  width: 100%;
139
  padding: 0;
140
  margin: 0;
146
  .cntctfrm_rtl .cntctfrm_column {
147
  float: right;
148
  }
149
+ .cntctfrm_ltr.cntctfrm_two_columns.cntctfrm_width_default #cntctfrm_first_column,
150
+ .cntctfrm_ltr.cntctfrm_two_columns.cntctfrm_width_default #cntctfrm_submit_first_column {
151
  margin: 0 10px 0 0;
152
  }
153
+ .cntctfrm_rtl.cntctfrm_two_columns.cntctfrm_width_default #cntctfrm_first_column,
154
+ .cntctfrm_rtl.cntctfrm_two_columns.cntctfrm_width_default #cntctfrm_submit_first_column {
155
+ margin: 0 0 0 2%;
156
+ }
157
+ .cntctfrm_ltr.cntctfrm_two_columns.cntctfrm_width_custom #cntctfrm_first_column,
158
+ .cntctfrm_ltr.cntctfrm_two_columns.cntctfrm_width_custom #cntctfrm_submit_first_column {
159
+ margin: 0 2% 0 0;
160
+ }
161
+ .cntctfrm_rtl.cntctfrm_two_columns.cntctfrm_width_custom #cntctfrm_first_column,
162
+ .cntctfrm_rtl.cntctfrm_two_columns.cntctfrm_width_custom #cntctfrm_submit_first_column {
163
  margin: 0 0 0 10px;
164
  }
165
  .cntctfrm_field_wrap {
166
  margin: 0 0 5px;
167
+ }
168
+ .cntctfrm_contact_form label,
169
+ .cntctfrm_contact_form .cntctfrm_contact_submit {
170
+ display: inline;
171
+ }
172
+ .cntctfrm_contact_form .cptch_input {
173
+ max-width: 100% !important;
174
  }
css/style.css CHANGED
@@ -122,6 +122,7 @@
122
  margin: 20px 0;
123
  }
124
  #cntctfrm_shortcode_code {
 
125
  height: 20px;
126
  margin: 10px 0 0;
127
  background: #EAEAEA;
@@ -193,17 +194,20 @@ td.cntctfrm_td_top_align {
193
  vertical-align: top;
194
  }
195
  /* appearance settings preview contact form */
 
 
 
196
  #cntctfrm_contact_form {
197
  margin: 15px 0 0;
198
  padding: 5px;
199
  }
200
- .cntctfrm_one_column {
201
  max-width: 330px !important;
202
  }
203
- .cntctfrm_two_columns {
204
  max-width: 674px !important;
205
  }
206
- .cntctfrm_column {
207
  max-width: 330px !important;
208
  }
209
  #cntctfrm_first_column,
@@ -211,6 +215,9 @@ td.cntctfrm_td_top_align {
211
  min-height: 50px !important;
212
  border: 1px dashed transparent;
213
  }
 
 
 
214
  #cntctfrm_first_column li,
215
  #cntctfrm_second_column li {
216
  display: block;
@@ -279,14 +286,12 @@ td.cntctfrm_td_top_align {
279
  .cntctfrm_how_to_use > h2 {
280
  clear: both;
281
  }
282
-
283
  #cntctfrm_table_from_name,
284
  #cntctfrm_table_from_email,
285
  .cntctfrm_td_name,
286
  .cntctfrm_td_email {
287
  width: 100%;
288
  }
289
-
290
  .cntctfrm_info {
291
  display: inline-block;
292
  }
122
  margin: 20px 0;
123
  }
124
  #cntctfrm_shortcode_code {
125
+ display: inline-block;
126
  height: 20px;
127
  margin: 10px 0 0;
128
  background: #EAEAEA;
194
  vertical-align: top;
195
  }
196
  /* appearance settings preview contact form */
197
+ #gglcptch_preview {
198
+ margin: 10px 0 0;
199
+ }
200
  #cntctfrm_contact_form {
201
  margin: 15px 0 0;
202
  padding: 5px;
203
  }
204
+ .cntctfrm_width_default.cntctfrm_one_column {
205
  max-width: 330px !important;
206
  }
207
+ .cntctfrm_width_default.cntctfrm_two_columns {
208
  max-width: 674px !important;
209
  }
210
+ .cntctfrm_width_default .cntctfrm_column {
211
  max-width: 330px !important;
212
  }
213
  #cntctfrm_first_column,
215
  min-height: 50px !important;
216
  border: 1px dashed transparent;
217
  }
218
+ .cntctfrm_width_custom #cntctfrm_first_column {
219
+ margin: 0 1% 0 0 !important;
220
+ }
221
  #cntctfrm_first_column li,
222
  #cntctfrm_second_column li {
223
  display: block;
286
  .cntctfrm_how_to_use > h2 {
287
  clear: both;
288
  }
 
289
  #cntctfrm_table_from_name,
290
  #cntctfrm_table_from_email,
291
  .cntctfrm_td_name,
292
  .cntctfrm_td_email {
293
  width: 100%;
294
  }
 
295
  .cntctfrm_info {
296
  display: inline-block;
297
  }
includes/deprecated.php DELETED
@@ -1,209 +0,0 @@
1
- <?php
2
- /**
3
- * Contains the list of the deprecated functions
4
- * @since 4.0.2
5
- */
6
-
7
- /**
8
- * @since 2.1.1
9
- * @todo delete after 25.04.2017
10
- */
11
- if ( ! function_exists( 'cntctfrm_options_update' ) ) {
12
- function cntctfrm_options_update( $cntctfrm_options, $cntctfrm_option_defaults, $contact_form_multi_active ) {
13
- global $cntctfrm_related_plugins;
14
-
15
- foreach ( $cntctfrm_option_defaults as $key => $value ) {
16
- if ( isset( $cntctfrm_options['cntctfrm_' . $key ] ) ) {
17
- $cntctfrm_options[ $key ] = $cntctfrm_options[ 'cntctfrm_' . $key ];
18
- unset( $cntctfrm_options[ 'cntctfrm_' . $key ] );
19
- }
20
- }
21
-
22
- foreach ( array( 'display_captcha', 'display_google_captcha', 'display_subscribe', 'save_email_to_db' ) as $key ) {
23
- if ( isset( $cntctfrm_options['cntctfrm_' . $key ] ) ) {
24
- $cntctfrm_options[ $key ] = $cntctfrm_options[ 'cntctfrm_' . $key ];
25
- unset( $cntctfrm_options[ 'cntctfrm_' . $key ] );
26
- }
27
- }
28
-
29
- if ( $contact_form_multi_active ) {
30
- if ( empty( $cntctfrm_related_plugins ) )
31
- cntctfrm_related_plugins();
32
-
33
- if ( ! isset( $cntctfrm_options['display_captcha'] ) ) {
34
- if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) )
35
- $cntctfrm_options['display_captcha'] = $cntctfrm_related_plugins['captcha']['enabled'];
36
- else
37
- $cntctfrm_options['display_captcha'] = false;
38
- }
39
- if ( ! isset( $cntctfrm_options['display_google_captcha'] ) ) {
40
- if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) )
41
- $cntctfrm_options['display_google_captcha'] = $cntctfrm_related_plugins['google-captcha']['options']['contact_form'];
42
- else
43
- $cntctfrm_options['display_google_captcha'] = false;
44
- }
45
- if ( ! isset( $cntctfrm_options['display_subscribe'] ) ) {
46
- if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) )
47
- $cntctfrm_options['display_subscribe'] = $cntctfrm_related_plugins['subscriber']['options']['contact_form'];
48
- else
49
- $cntctfrm_options['display_subscribe'] = false;
50
- }
51
- if ( ! isset( $cntctfrm_options['save_email_to_db'] ) ) {
52
- if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) )
53
- $cntctfrm_options['save_email_to_db'] = ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options'][ $cntctfrm_related_plugins['contact-form-to-db']['save_option'] ] ) ? true : false;
54
- else
55
- $cntctfrm_options['save_email_to_db'] = false;
56
- }
57
- }
58
-
59
- if ( ! isset( $cntctfrm_options['cntctfrm_name_label']['default'] ) && isset( $cntctfrm_options['cntctfrm_name_label']['en'] ) ) {
60
- $cntctfrm_options['cntctfrm_name_label']['default'] = $cntctfrm_options['cntctfrm_name_label']['en'];
61
- unset( $cntctfrm_options['cntctfrm_name_label']['en'] );
62
- $cntctfrm_options['cntctfrm_address_label']['default'] = $cntctfrm_options['cntctfrm_address_label']['en'];
63
- unset( $cntctfrm_options['cntctfrm_address_label']['en'] );
64
- $cntctfrm_options['cntctfrm_email_label']['default'] = $cntctfrm_options['cntctfrm_email_label']['en'];
65
- unset( $cntctfrm_options['cntctfrm_email_label']['en'] );
66
- $cntctfrm_options['cntctfrm_phone_label']['default'] = $cntctfrm_options['cntctfrm_phone_label']['en'];
67
- unset( $cntctfrm_options['cntctfrm_phone_label']['en'] );
68
- $cntctfrm_options['cntctfrm_subject_label']['default'] = $cntctfrm_options['cntctfrm_subject_label']['en'];
69
- unset( $cntctfrm_options['cntctfrm_subject_label']['en'] );
70
- $cntctfrm_options['cntctfrm_message_label']['default'] = $cntctfrm_options['cntctfrm_message_label']['en'];
71
- unset( $cntctfrm_options['cntctfrm_message_label']['en'] );
72
- $cntctfrm_options['cntctfrm_attachment_label']['default'] = $cntctfrm_options['cntctfrm_attachment_label']['en'];
73
- unset( $cntctfrm_options['cntctfrm_attachment_label']['en'] );
74
- $cntctfrm_options['cntctfrm_attachment_tooltip']['default'] = $cntctfrm_options['cntctfrm_attachment_tooltip']['en'];
75
- unset( $cntctfrm_options['cntctfrm_attachment_tooltip']['en'] );
76
- $cntctfrm_options['cntctfrm_send_copy_label']['default'] = $cntctfrm_options['cntctfrm_send_copy_label']['en'];
77
- unset( $cntctfrm_options['cntctfrm_send_copy_label']['en'] );
78
- $cntctfrm_options['cntctfrm_submit_label']['default'] = $cntctfrm_options['cntctfrm_submit_label']['en'];
79
- unset( $cntctfrm_options['cntctfrm_submit_label']['en'] );
80
- $cntctfrm_options['cntctfrm_name_error']['default'] = $cntctfrm_options['cntctfrm_name_error']['en'];
81
- unset( $cntctfrm_options['cntctfrm_name_error']['en'] );
82
- $cntctfrm_options['cntctfrm_address_error']['default'] = $cntctfrm_options['cntctfrm_address_error']['en'];
83
- unset( $cntctfrm_options['cntctfrm_address_error']['en'] );
84
- $cntctfrm_options['cntctfrm_email_error']['default'] = $cntctfrm_options['cntctfrm_email_error']['en'];
85
- unset( $cntctfrm_options['cntctfrm_email_error']['en'] );
86
- $cntctfrm_options['cntctfrm_phone_error']['default'] = $cntctfrm_options['cntctfrm_phone_error']['en'];
87
- unset( $cntctfrm_options['cntctfrm_phone_error']['en'] );
88
- $cntctfrm_options['cntctfrm_subject_error']['default'] = $cntctfrm_options['cntctfrm_subject_error']['en'];
89
- unset( $cntctfrm_options['cntctfrm_subject_error']['en'] );
90
- $cntctfrm_options['cntctfrm_message_error']['default'] = $cntctfrm_options['cntctfrm_message_error']['en'];
91
- unset( $cntctfrm_options['cntctfrm_message_error']['en'] );
92
- $cntctfrm_options['cntctfrm_attachment_error']['default'] = $cntctfrm_options['cntctfrm_attachment_error']['en'];
93
- unset( $cntctfrm_options['cntctfrm_attachment_error']['en'] );
94
- $cntctfrm_options['cntctfrm_attachment_upload_error']['default'] = $cntctfrm_options['cntctfrm_attachment_upload_error']['en'];
95
- unset( $cntctfrm_options['cntctfrm_attachment_upload_error']['en'] );
96
- $cntctfrm_options['cntctfrm_attachment_move_error']['default'] = $cntctfrm_options['cntctfrm_attachment_move_error']['en'];
97
- unset( $cntctfrm_options['cntctfrm_attachment_move_error']['en'] );
98
- $cntctfrm_options['cntctfrm_attachment_size_error']['default'] = $cntctfrm_options['cntctfrm_attachment_size_error']['en'];
99
- unset( $cntctfrm_options['cntctfrm_attachment_size_error']['en'] );
100
- $cntctfrm_options['cntctfrm_captcha_error']['default'] = $cntctfrm_options['cntctfrm_captcha_error']['en'];
101
- unset( $cntctfrm_options['cntctfrm_captcha_error']['en'] );
102
- $cntctfrm_options['cntctfrm_form_error']['default'] = $cntctfrm_options['cntctfrm_form_error']['en'];
103
- unset( $cntctfrm_options['cntctfrm_form_error']['en'] );
104
- $cntctfrm_options['cntctfrm_thank_text']['default'] = $cntctfrm_options['cntctfrm_thank_text']['en'];
105
- unset( $cntctfrm_options['cntctfrm_thank_text']['en'] );
106
- }
107
-
108
- if ( empty( $cntctfrm_options['cntctfrm_language'] ) && isset( $cntctfrm_options['cntctfrm_name_label'] ) && ! is_array( $cntctfrm_options['cntctfrm_name_label'] ) ) {
109
- $cntctfrm_options['cntctfrm_name_label'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_name_label']['default'] );
110
- $cntctfrm_options['cntctfrm_address_label'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_address_label']['default'] );
111
- $cntctfrm_options['cntctfrm_email_label'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_email_label']['default'] );
112
- $cntctfrm_options['cntctfrm_phone_label'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_phone_label']['default'] );
113
- $cntctfrm_options['cntctfrm_subject_label'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_subject_label']['default'] );
114
- $cntctfrm_options['cntctfrm_message_label'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_message_label']['default'] );
115
- $cntctfrm_options['cntctfrm_attachment_label'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_attachment_label']['default'] );
116
- $cntctfrm_options['cntctfrm_attachment_tooltip'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_attachment_tooltip']['default'] );
117
- $cntctfrm_options['cntctfrm_send_copy_label'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_send_copy_label']['default'] );
118
- $cntctfrm_options['cntctfrm_thank_text'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_thank_text']['default'] );
119
- $cntctfrm_options['cntctfrm_submit_label'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_submit_label']['default'] );
120
- $cntctfrm_options['cntctfrm_name_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_name_error']['default'] );
121
- $cntctfrm_options['cntctfrm_address_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_address_error']['default'] );
122
- $cntctfrm_options['cntctfrm_email_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_email_error']['default'] );
123
- $cntctfrm_options['cntctfrm_phone_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_phone_error']['default'] );
124
- $cntctfrm_options['cntctfrm_subject_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_subject_error']['default'] );
125
- $cntctfrm_options['cntctfrm_message_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_message_error']['default'] );
126
- $cntctfrm_options['cntctfrm_attachment_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_attachment_error']['default'] );
127
- $cntctfrm_options['cntctfrm_attachment_upload_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_attachment_upload_error']['default'] );
128
- $cntctfrm_options['cntctfrm_attachment_move_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_attachment_move_error']['default'] );
129
- $cntctfrm_options['cntctfrm_attachment_size_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_attachment_size_error']['default'] );
130
- $cntctfrm_options['cntctfrm_captcha_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_captcha_error']['default'] );
131
- $cntctfrm_options['cntctfrm_form_error'] = array( 'default' => $cntctfrm_option_defaults['cntctfrm_form_error']['default'] );
132
- }
133
-
134
- return $cntctfrm_options;
135
- }
136
- }
137
-
138
- /**
139
- * Display message about deprecated shortcode
140
- * @since 4.0.3
141
- * @todo delete after 01.04.2017
142
- */
143
- if ( ! function_exists( 'cntctfrm_display_deprecated_shortcode_message' ) ) {
144
- function cntctfrm_display_deprecated_shortcode_message() {
145
- global $cntctfrm_plugin_info;
146
-
147
- /* get options to avoid conflict with CF Multi */
148
- $options = get_option( 'cntctfrm_options' );
149
-
150
- if ( empty( $options['deprecated_shortcode'] ) )
151
- return '';
152
-
153
- if ( isset( $_GET['cntctfrm_nonce'] ) && wp_verify_nonce( $_GET['cntctfrm_nonce'], 'cntctfrm_clean_deprecated' ) ) {
154
- unset( $options['deprecated_shortcode'] );
155
- update_option( 'cntctfrm_options', $options );
156
- return '';
157
- }
158
-
159
- $url = add_query_arg(
160
- array(
161
- 'cntctfrm_clean_deprecated' => '1',
162
- 'cntctfrm_nonce' => wp_create_nonce( 'cntctfrm_clean_deprecated' )
163
- ),
164
- ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']
165
- );
166
- $close_link = "<a href=\"{$url}\" class=\"close_icon notice-dismiss\"></a>";
167
-
168
- $message = sprintf( __( "Deprecated shortcode %1s from the %2s plugin is used on your site. Please replace it with %3s. If you close this message it'll appear again after deprecated shortcode reuse.", 'contact-form-pro' ), '<strong>[contact_form]</strong>', $cntctfrm_plugin_info['Name'], '<strong>[bestwebsoft_contact_form]</strong>' );
169
-
170
- return
171
- "<style type=\"text/css\">
172
- .cntctfrm_deprecated_error {
173
- position: relative;
174
- }
175
- div.error.cntctfrm_deprecated_error p {
176
- margin-left: 15px;
177
- margin-right: 15px;
178
- }
179
- .cntctfrm_deprecated_error a {
180
- text-decoration: none;
181
- }
182
- </style>
183
- <div class=\"cntctfrm_deprecated_error error\"><p>{$message}</p>{$close_link}</div>";
184
- }
185
- }
186
-
187
- /**
188
- * Adds information about deprecated shortcode to plugin settings during its call
189
- * @since 4.0.3
190
- * @todo delete after 01.04.2017
191
- */
192
- if ( ! function_exists( 'cntctfrm_detect_deprecated' ) ) {
193
- function cntctfrm_detect_deprecated( $atts = array( 'lang' => 'default' ) ) {
194
- /* get options to avoid conflict with CF Multi */
195
- $options = get_option( 'cntctfrm_options' );
196
- if ( empty( $options['deprecated_shortcode'] ) ) {
197
- $options['deprecated_shortcode'] = 1;
198
- update_option( 'cntctfrm_options', $options );
199
- }
200
-
201
- return cntctfrm_display_form( $atts );
202
- }
203
- }
204
-
205
- /**
206
- * @deprecated sinse 4.0.3
207
- * @todo delete after 01.04.2017
208
- */
209
- add_shortcode( 'contact_form', 'cntctfrm_detect_deprecated' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/cntctfrm.js CHANGED
@@ -1,7 +1,7 @@
1
  (function($) {
2
  $(document).ready( function() {
3
  $(window).resize(function() {
4
- $( '.cntctfrm_contact_form.cntctfrm_two_columns' ).each( function() {
5
  var $cntctfrm_form = $( this ),
6
  $parent = $cntctfrm_form.parent(),
7
  $cntctfrm_column = $cntctfrm_form.find( '.cntctfrm_column' ),
@@ -10,7 +10,7 @@
10
  max_column_width = 320,
11
  min_form_width = min_column_width * 2 + margin,
12
  max_form_width = max_column_width * 2 + margin;
13
- if( $parent.width() < max_form_width ) {
14
  var new_column_width = Math.floor( ( $parent.width() - margin ) / 2 );
15
  if ( new_column_width * 2 + margin >= min_form_width ) {
16
  $cntctfrm_column.css( 'max-width', new_column_width );
1
  (function($) {
2
  $(document).ready( function() {
3
  $(window).resize(function() {
4
+ $( '.cntctfrm_contact_form.cntctfrm_width_default.cntctfrm_two_columns' ).each( function() {
5
  var $cntctfrm_form = $( this ),
6
  $parent = $cntctfrm_form.parent(),
7
  $cntctfrm_column = $cntctfrm_form.find( '.cntctfrm_column' ),
10
  max_column_width = 320,
11
  min_form_width = min_column_width * 2 + margin,
12
  max_form_width = max_column_width * 2 + margin;
13
+ if ( $parent.width() < max_form_width ) {
14
  var new_column_width = Math.floor( ( $parent.width() - margin ) / 2 );
15
  if ( new_column_width * 2 + margin >= min_form_width ) {
16
  $cntctfrm_column.css( 'max-width', new_column_width );
js/script.js CHANGED
@@ -24,6 +24,10 @@
24
  $( '#cntctfrm_from_custom_email' ).attr( 'checked', 'checked' );
25
  });
26
 
 
 
 
 
27
  $( 'input[name="cntctfrm_redirect_url"]' ).focus( function() {
28
  $( '#cntctfrm_action_after_send_url' ).attr( 'checked', 'checked' );
29
  });
@@ -77,6 +81,35 @@
77
  });
78
 
79
  /* change form layout in the settings page appearance tab */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  $( 'input[name="cntctfrm_layout"]' ).change( function() {
81
  var form_layout = $( this ).val();
82
  if ( form_layout == 1 ) {
24
  $( '#cntctfrm_from_custom_email' ).attr( 'checked', 'checked' );
25
  });
26
 
27
+ $( 'input[name^="cntctfrm_thank_text"]' ).focus( function() {
28
+ $( '#cntctfrm_action_after_send' ).attr( 'checked', 'checked' );
29
+ });
30
+
31
  $( 'input[name="cntctfrm_redirect_url"]' ).focus( function() {
32
  $( '#cntctfrm_action_after_send_url' ).attr( 'checked', 'checked' );
33
  });
81
  });
82
 
83
  /* change form layout in the settings page appearance tab */
84
+ $( 'input[name="cntctfrm_width_type"]' ).change( function() {
85
+ cntctfrm_change_width();
86
+ });
87
+
88
+ function cntctfrm_change_width() {
89
+ var $form = $( '#cntctfrm_contact_form' ),
90
+ width = $( 'input[name="cntctfrm_width_type"]' ).filter( ':checked' ).val();
91
+
92
+ if ( 'custom' != width ) {
93
+ $form.attr( 'class', function() {
94
+ return this.className = this.className.replace( 'cntctfrm_width_custom', 'cntctfrm_width_default' );
95
+ });
96
+ $( '.cntctfrm_width_params' ).hide();
97
+ } else {
98
+ $form.attr( 'class', function() {
99
+ return this.className = this.className.replace( 'cntctfrm_width_default', 'cntctfrm_width_custom' );
100
+ });
101
+ $( '.cntctfrm_width_params' ).show();
102
+ }
103
+ }
104
+
105
+ $( 'input[name="cntctfrm_width_type"]' ).change( function() {
106
+ if ( 'custom' != $( this ).filter( ':checked' ).val() ) {
107
+ $( '.cntctfrm_width_params' ).hide();
108
+ } else {
109
+ $( '.cntctfrm_width_params' ).show();
110
+ }
111
+ }).trigger( 'change' );
112
+
113
  $( 'input[name="cntctfrm_layout"]' ).change( function() {
114
  var form_layout = $( this ).val();
115
  if ( form_layout == 1 ) {
languages/contact-form-plugin-af_ZA.mo CHANGED
Binary file
languages/contact-form-plugin-af_ZA.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: 2017-02-27 16:22+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:22+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Aldu <alducornelissen@gmail.com>\n"
9
  "Language: af\n"
@@ -17,54 +17,54 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:42 contact_form.php:1066
21
  msgid "Contact Form Settings"
22
  msgstr "Kontak Form Verstellings"
23
 
24
- #: contact_form.php:42
25
  msgid "Contact Form"
26
  msgstr "Kontak Form"
27
 
28
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
29
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
30
- #: contact_form.php:3138 contact_form.php:3184
31
  msgid "Name"
32
  msgstr "Naam"
33
 
34
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
35
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
36
- #: contact_form.php:3190
37
  msgid "Address"
38
  msgstr "Adres: "
39
 
40
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
41
- #: contact_form.php:1767
42
  msgid "Email Address"
43
  msgstr "Epos Adres:"
44
 
45
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
46
- #: contact_form.php:1768
47
  msgid "Phone number"
48
  msgstr "Telefoon nommer:"
49
 
50
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
51
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
52
- #: contact_form.php:3199
53
  msgid "Subject"
54
  msgstr "Onderwerp"
55
 
56
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
57
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
58
- #: contact_form.php:3203
59
  msgid "Message"
60
  msgstr "Boodskap"
61
 
62
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
63
- #: contact_form.php:2040
64
  msgid "Attachment"
65
  msgstr "Aanhegsel:"
66
 
67
- #: contact_form.php:302
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -72,77 +72,77 @@ msgstr ""
72
  "Ondersteunde datalêer tipes: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
76
  msgid "Send me a copy"
77
  msgstr "Stuur vir my 'n kopie"
78
 
79
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
80
  msgid "Submit"
81
  msgstr "Dien in"
82
 
83
- #: contact_form.php:305
84
  msgid "Your name is required."
85
  msgstr "Jou naam word benodig."
86
 
87
- #: contact_form.php:306
88
  msgid "Address is required."
89
  msgstr "Adres word benodig."
90
 
91
- #: contact_form.php:307
92
  msgid "A valid email address is required."
93
  msgstr "'n Geldige epos adres word benodig."
94
 
95
- #: contact_form.php:308
96
  msgid "Phone number is required."
97
  msgstr "'n Telefoon nommer word benodig."
98
 
99
- #: contact_form.php:309
100
  msgid "Subject is required."
101
  msgstr "'n Onderwerp word benodig."
102
 
103
- #: contact_form.php:310
104
  msgid "Message text is required."
105
  msgstr "'n Boodskap teks word benodig ."
106
 
107
- #: contact_form.php:311
108
  msgid "File format is not valid."
109
  msgstr "Datalêer formaat is nie geldig nie."
110
 
111
- #: contact_form.php:312
112
  msgid "File upload error."
113
  msgstr "Oplaai van datalêer foutief."
114
 
115
- #: contact_form.php:313
116
  msgid "The file could not be uploaded."
117
  msgstr "Die datalêer kon nie opgelaai word nie."
118
 
119
- #: contact_form.php:314
120
  msgid "This file is too large."
121
  msgstr "Die datalêer is te groot."
122
 
123
- #: contact_form.php:315
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Vul asseblief die CAPTCHA in."
126
 
127
- #: contact_form.php:316
128
  msgid "Please make corrections below and try again."
129
  msgstr "Korregeer asseblief die foute hierdoner en probeer weer."
130
 
131
- #: contact_form.php:318
132
  msgid "Thank you for contacting us."
133
  msgstr "Dankie dat jy ons gekontak het."
134
 
135
- #: contact_form.php:761 contact_form.php:1023
136
  msgid "Settings saved."
137
  msgstr "Verstellings is gestoor."
138
 
139
- #: contact_form.php:968
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
- #: contact_form.php:978
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
@@ -150,12 +150,12 @@ msgstr ""
150
  "As die 'Redirect to page' opsie geselekteer is moet die URL veld in die "
151
  "volgende formaat wees"
152
 
153
- #: contact_form.php:985
154
  #, fuzzy
155
  msgid "Such user does not exist."
156
  msgstr "Hierdie gebruiker bestaan nie. Die instellings is nie gestoor nie."
157
 
158
- #: contact_form.php:995
159
  #, fuzzy
160
  msgid ""
161
  "Please enter a valid email address in the 'Use this email address' field."
@@ -163,63 +163,63 @@ msgstr ""
163
  "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
164
  "is nie gestoor nie."
165
 
166
- #: contact_form.php:1003
167
  #, fuzzy
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
171
  "is nie gestoor nie."
172
 
173
- #: contact_form.php:1025
174
  #, fuzzy
175
  msgid "Settings are not saved."
176
  msgstr "Verstellings is gestoor."
177
 
178
- #: contact_form.php:1063
179
  msgid "All plugin settings were restored."
180
  msgstr ""
181
 
182
- #: contact_form.php:1069
183
  msgid "How to Use Step-by-step Instruction"
184
  msgstr ""
185
 
186
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
187
  msgid "Settings"
188
  msgstr "Verstellings"
189
 
190
- #: contact_form.php:1073
191
  #, fuzzy
192
  msgid "Additional settings"
193
  msgstr "Addisionele opsies"
194
 
195
- #: contact_form.php:1074
196
  msgid "Appearance"
197
  msgstr ""
198
 
199
- #: contact_form.php:1075
200
  msgid "Custom code"
201
  msgstr ""
202
 
203
- #: contact_form.php:1076
204
  msgid "Go PRO"
205
  msgstr "Gaan PRO"
206
 
207
- #: contact_form.php:1087
208
  #, fuzzy
209
  msgid "Notice"
210
  msgstr "Kennisgewing:"
211
 
212
- #: contact_form.php:1091
213
  msgid "NEW_FORM"
214
  msgstr ""
215
 
216
- #: contact_form.php:1092
217
  msgid ""
218
  "If you want to create multiple contact forms, please install the Contact "
219
  "Form Multi plugin."
220
  msgstr ""
221
 
222
- #: contact_form.php:1101
223
  #, fuzzy, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -228,7 +228,7 @@ msgstr ""
228
  "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
229
  "kortkode na u post, bladsy of widget:"
230
 
231
- #: contact_form.php:1107
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -237,7 +237,7 @@ msgid ""
237
  "language."
238
  msgstr ""
239
 
240
- #: contact_form.php:1116
241
  msgid ""
242
  "If you leave the fields empty, the messages will be sent to the email "
243
  "address specified during registration."
@@ -245,17 +245,17 @@ msgstr ""
245
  "As u die velde leeg laat, sal die boodskappe gestuur word na die epos adres "
246
  "wat gespesifiseer was gedurende registrasie"
247
 
248
- #: contact_form.php:1119
249
  #, fuzzy
250
  msgid "The user's email address"
251
  msgstr "Die gebruiker se epos adres:"
252
 
253
- #: contact_form.php:1123
254
  #, fuzzy
255
  msgid "Select a username"
256
  msgstr "Skep 'n gebruikersnaam"
257
 
258
- #: contact_form.php:1136
259
  #, fuzzy
260
  msgid ""
261
  "Select a username of the person who should get the messages from the contact "
@@ -264,111 +264,111 @@ msgstr ""
264
  "Sleutel 'n gebruikersnaam in vir die persoon wat die boodskappe moet kry van "
265
  "die kontak vorm."
266
 
267
- #: contact_form.php:1140
268
  #, fuzzy
269
  msgid "Use this email address"
270
  msgstr "Gebruik hierdie epos adres:"
271
 
272
- #: contact_form.php:1144
273
  #, fuzzy
274
  msgid "Enter the email address for receiving messages"
275
  msgstr "Sleutel in die epos adres in waar u die boodskappe aangestuur wil he."
276
 
277
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
278
- #: contact_form.php:1939 contact_form.php:3471
279
  msgid "Close"
280
  msgstr ""
281
 
282
- #: contact_form.php:1155
283
  #, fuzzy
284
  msgid "Add department selectbox to the contact form"
285
  msgstr "Voeg 'n departementele keuse-boks by die kontak vorm:"
286
 
287
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
288
- #: contact_form.php:2145
289
  msgid "If you upgrade to Pro version all your settings will be saved."
290
  msgstr "As u opgradeer na die Pro weergawe sal die verstellings gestoor word."
291
 
292
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
293
- #: contact_form.php:1880 contact_form.php:2152
294
  msgid "Upgrade to Pro"
295
  msgstr ""
296
 
297
- #: contact_form.php:1178
298
  msgid "Save emails to the database"
299
  msgstr "Stoor eposse na die databasis."
300
 
301
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
302
  msgid "Using"
303
  msgstr "In Gebruik"
304
 
305
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
306
- #: contact_form.php:1625
307
  msgid "Please activate the appropriate option on"
308
  msgstr ""
309
 
310
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
311
- #: contact_form.php:1628
312
  #, fuzzy
313
  msgid "settings page"
314
  msgstr "Die verstelling bladsy"
315
 
316
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
317
- #: contact_form.php:1635
318
  msgid "Activate"
319
  msgstr "Aktiveer"
320
 
321
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
322
- #: contact_form.php:1640
323
  msgid "Download"
324
  msgstr "Download"
325
 
326
- #: contact_form.php:1224
327
  msgid "Sending method"
328
  msgstr ""
329
 
330
- #: contact_form.php:1229
331
  msgid "Wp-mail"
332
  msgstr "Wp-mail"
333
 
334
- #: contact_form.php:1231
335
  #, fuzzy
336
  msgid "You can use the Wordpress wp_mail function for mailing"
337
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
338
 
339
- #: contact_form.php:1234
340
  msgid "Mail"
341
  msgstr "Mail"
342
 
343
- #: contact_form.php:1236
344
  #, fuzzy
345
  msgid "You can use the PHP mail function for mailing"
346
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
347
 
348
- #: contact_form.php:1241
349
  msgid "'FROM' field"
350
  msgstr ""
351
 
352
- #: contact_form.php:1257
353
  msgid "User name"
354
  msgstr "Gebruikersnaam"
355
 
356
- #: contact_form.php:1259
357
  msgid ""
358
  "The name of the user who fills the form will be used in the field 'From'."
359
  msgstr ""
360
  "Die naam van die gebruiker wie die vorm invul sal gebruik word vir die 'From/"
361
  "Van' veld."
362
 
363
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
364
  msgid "Email"
365
  msgstr "Epos"
366
 
367
- #: contact_form.php:1281
368
  msgid "User email"
369
  msgstr "Gebruiker epos"
370
 
371
- #: contact_form.php:1283
372
  msgid ""
373
  "The email address of the user who fills the form will be used in the field "
374
  "'From'."
@@ -376,142 +376,142 @@ msgstr ""
376
  "Die epos adres van die gebruiker wie die vorm invul sal gebruik word in die "
377
  "'From/van' veld."
378
 
379
- #: contact_form.php:1292
380
  msgid ""
381
  "If this option is changed, email messages may be moved to the spam folder or "
382
  "email delivery failures may occur."
383
  msgstr ""
384
 
385
- #: contact_form.php:1301
386
  msgid "Required symbol"
387
  msgstr "Benodigde simbool"
388
 
389
- #: contact_form.php:1311
390
  msgid "Fields"
391
  msgstr "Velde"
392
 
393
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
394
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
395
  msgid "Used"
396
  msgstr "Gebruik"
397
 
398
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
399
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
400
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
401
  msgid "Required"
402
  msgstr "Benodig"
403
 
404
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
405
- #: contact_form.php:1447 contact_form.php:1471
406
  msgid "Visible"
407
  msgstr "Sigbaar"
408
 
409
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
410
- #: contact_form.php:1451 contact_form.php:1475
411
  msgid "Disabled for editing"
412
  msgstr "Gedeaktiveer vir wysiging"
413
 
414
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
415
- #: contact_form.php:1479
416
  msgid "Field's default value"
417
  msgstr "Veld se verstekwaarde"
418
 
419
- #: contact_form.php:1324
420
  msgid "Department selectbox"
421
  msgstr ""
422
 
423
- #: contact_form.php:1356
424
  msgid "Use User's name as a default value if the user is logged in."
425
  msgstr ""
426
 
427
- #: contact_form.php:1357 contact_form.php:1417
428
  msgid ""
429
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
430
  "in users."
431
  msgstr ""
432
 
433
- #: contact_form.php:1363
434
  msgid "Location selectbox"
435
  msgstr ""
436
 
437
- #: contact_form.php:1416
438
  msgid "Use User's email as a default value if the user is logged in."
439
  msgstr ""
440
 
441
- #: contact_form.php:1500
442
  msgid "Attachment block"
443
  msgstr "Aanhegsel blok"
444
 
445
- #: contact_form.php:1502
446
  msgid "Users can attach the following file formats"
447
  msgstr "Gebruikers kan die volgende dataleêr formate aanheg"
448
 
449
- #: contact_form.php:1520
450
  msgid "Add to the form"
451
  msgstr "Voeg by die vorm by"
452
 
453
- #: contact_form.php:1525
454
  msgid "Tips below the Attachment"
455
  msgstr "Wenke onder die Aanhegsel"
456
 
457
- #: contact_form.php:1532
458
  msgid "'Send me a copy' block"
459
  msgstr "'Stuur vir my 'n kopie' blok"
460
 
461
- #: contact_form.php:1560
462
  msgid "Activate for network"
463
  msgstr ""
464
 
465
- #: contact_form.php:1651
466
  msgid "Agreement checkbox"
467
  msgstr "Ooreenstemming checkbox"
468
 
469
- #: contact_form.php:1651
470
  msgid "Required checkbox for submitting the form"
471
  msgstr "Benodigde checkbox om die vorm in te dien"
472
 
473
- #: contact_form.php:1652
474
  msgid "Optional checkbox"
475
  msgstr "Opsie checkbox"
476
 
477
- #: contact_form.php:1652
478
  msgid "Optional checkbox, the results of which will be displayed in email"
479
  msgstr "Opsionele checkbox, die resultate waarvan in die epos sal verskyn"
480
 
481
- #: contact_form.php:1670
482
  msgid "Delete an attachment file from the server after the email is sent"
483
  msgstr "Verwyder 'n aanhegsel dataleêr van die server na epos gestuur is"
484
 
485
- #: contact_form.php:1676
486
  msgid "Email in HTML format sending"
487
  msgstr "E-Mail in HTML Format"
488
 
489
- #: contact_form.php:1680
490
  msgid "Display additional info in the email"
491
  msgstr "Toon addisionele inligting in die epos"
492
 
493
- #: contact_form.php:1686
494
  #, fuzzy
495
  msgid "Sent from (IP address)"
496
  msgstr "Gestuur van (IP-Adres)"
497
 
498
- #: contact_form.php:1686
499
  msgid "Example: Sent from (IP address):\t127.0.0.1"
500
  msgstr "Voorbeeld: Gestuur van (IP-Adres):\t127.0.0.1"
501
 
502
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
503
  msgid "Date/Time"
504
  msgstr "Datum/Tyd"
505
 
506
- #: contact_form.php:1687
507
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
508
  msgstr "Voorbeeld: Datum/Tyd:\tAugustus 19, 2013 8:50 pm"
509
 
510
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
511
  msgid "Sent from (referer)"
512
  msgstr "Gestuur van (referer)"
513
 
514
- #: contact_form.php:1688
515
  #, fuzzy
516
  msgid ""
517
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
@@ -519,11 +519,11 @@ msgstr ""
519
  "Voorbeeld: Gestuur van (referer):\thttp://bestwebsoft.com/kontakte/kontak-"
520
  "ons/"
521
 
522
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
523
  msgid "Using (user agent)"
524
  msgstr "Gebruik (user agent)"
525
 
526
- #: contact_form.php:1689
527
  msgid ""
528
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
529
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -531,137 +531,137 @@ msgstr ""
531
  "Voorbeeld: Gebruik (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
532
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
533
 
534
- #: contact_form.php:1694
535
  msgid "Language settings for the field names in the form"
536
  msgstr "Taal verstellings vir die naamvelde in die vorm"
537
 
538
- #: contact_form.php:1703
539
  msgid "Add a language"
540
  msgstr "Voeg 'n taal by"
541
 
542
- #: contact_form.php:1707
543
  msgid "Change the names of the contact form fields and error messages"
544
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
545
 
546
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
547
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
548
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
549
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
550
- #: contact_form.php:2132 contact_form.php:2137
551
  msgid "Default"
552
  msgstr "Verstek"
553
 
554
- #: contact_form.php:1725 contact_form.php:1763
555
  msgid "click to expand/hide the list"
556
  msgstr "Kliek om uit te brei/lys te versteek"
557
 
558
- #: contact_form.php:1734 contact_form.php:1772
559
  msgid "Tips below the Attachment block"
560
  msgstr "Wenke onder toe Aanhegsel blok"
561
 
562
- #: contact_form.php:1737 contact_form.php:1775
563
  msgid "Error message for the Name field"
564
  msgstr "FFoutboodskap vir die Naamveld"
565
 
566
- #: contact_form.php:1738 contact_form.php:1776
567
  msgid "Error message for the Address field"
568
  msgstr "Foutboodskap vir die Adres veld"
569
 
570
- #: contact_form.php:1739 contact_form.php:1777
571
  msgid "Error message for the Email field"
572
  msgstr "Foutboodskap vir die Epos veld"
573
 
574
- #: contact_form.php:1740 contact_form.php:1778
575
  msgid "Error message for the Phone field"
576
  msgstr "Foutboodskap vir die Telefoon Nommer veld"
577
 
578
- #: contact_form.php:1741 contact_form.php:1779
579
  msgid "Error message for the Subject field"
580
  msgstr "Foutboodskap vir die Onderwerp veld"
581
 
582
- #: contact_form.php:1742 contact_form.php:1780
583
  msgid "Error message for the Message field"
584
  msgstr "Foutboodskap vir die Boodskap veld"
585
 
586
- #: contact_form.php:1743 contact_form.php:1781
587
  msgid "Error message about the file type for the Attachment field"
588
  msgstr "Foutboodskap oor die dataleêr tipe vir die Aanhegsel veld"
589
 
590
- #: contact_form.php:1744 contact_form.php:1782
591
  msgid ""
592
  "Error message while uploading a file for the Attachment field to the server"
593
  msgstr ""
594
  "Foutboodskap tydens dataleêr oplaai vir die Aanhegsel veld na die server"
595
 
596
- #: contact_form.php:1745 contact_form.php:1783
597
  msgid "Error message while moving the file for the Attachment field"
598
  msgstr "Foutboodskap tydens die skuif van dataleêr vir die Aanhegsel veld"
599
 
600
- #: contact_form.php:1746 contact_form.php:1784
601
  msgid "Error message when file size limit for the Attachment field is exceeded"
602
  msgstr ""
603
  "Foutboodskap wanneer die dataleêr limiet vir die Aanhegsel veld oorskry is"
604
 
605
- #: contact_form.php:1747 contact_form.php:1785
606
  msgid "Error message for the Captcha field"
607
  msgstr "Foutboodskap vir die Captcha veld"
608
 
609
- #: contact_form.php:1748 contact_form.php:1786
610
  msgid "Error message for the whole form"
611
  msgstr "Foutboodskap vir die hele vorm"
612
 
613
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
614
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
615
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
616
- #: contact_form.php:3540
617
  msgid "Use shortcode"
618
  msgstr "Gebruik kortkode"
619
 
620
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
621
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
622
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
623
- #: contact_form.php:3540
624
  msgid "for this language"
625
  msgstr "vir hierdie taal"
626
 
627
- #: contact_form.php:1799
628
  #, fuzzy
629
  msgid "Use the changed names of the contact form fields in the email"
630
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
631
 
632
- #: contact_form.php:1805
633
  msgid "Action after email is sent"
634
  msgstr "Aksie na epos gestuur is"
635
 
636
- #: contact_form.php:1807
637
  msgid "Display text"
638
  msgstr "Toon teks"
639
 
640
- #: contact_form.php:1821 contact_form.php:1835
641
  msgid "Text"
642
  msgstr "teks"
643
 
644
- #: contact_form.php:1846
645
  msgid "Redirect to the page"
646
  msgstr "Herlei na die bladsy"
647
 
648
- #: contact_form.php:1847
649
  msgid "Url"
650
  msgstr "Url"
651
 
652
- #: contact_form.php:1858
653
  msgid "Add field 'Reply-To' to the email header"
654
  msgstr ""
655
 
656
- #: contact_form.php:1860
657
  msgid "Field 'Reply-To' will be initialized by user email"
658
  msgstr ""
659
 
660
- #: contact_form.php:1864
661
  msgid "Auto Response"
662
  msgstr ""
663
 
664
- #: contact_form.php:1868
665
  #, php-format
666
  msgid ""
667
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -669,182 +669,194 @@ msgid ""
669
  "name."
670
  msgstr ""
671
 
672
- #: contact_form.php:1890 contact_form.php:2389
673
  msgid "Save Changes"
674
  msgstr "Stoor veranderinge"
675
 
676
- #: contact_form.php:1903
677
  #, php-format
678
  msgid ""
679
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
680
  msgstr ""
681
 
682
- #: contact_form.php:1903 contact_form.php:1912
683
  msgid "Form layout"
684
  msgstr ""
685
 
686
- #: contact_form.php:1903 contact_form.php:1924
687
  #, fuzzy
688
  msgid "Submit position"
689
  msgstr "Indien knoppie"
690
 
691
- #: contact_form.php:1916
692
  msgid "One column"
693
  msgstr ""
694
 
695
- #: contact_form.php:1919
696
  msgid "Two columns"
697
  msgstr ""
698
 
699
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
700
- #: contact_form.php:1980
701
  msgid "Left"
702
  msgstr ""
703
 
704
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
705
- #: contact_form.php:1986
706
  msgid "Right"
707
  msgstr ""
708
 
709
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
710
  msgid "Form align"
711
  msgstr ""
712
 
713
- #: contact_form.php:1950 contact_form.php:1983
714
  msgid "Center"
715
  msgstr ""
716
 
717
- #: contact_form.php:1958
718
  #, fuzzy
719
  msgid "Labels position"
720
  msgstr "Indien knoppie"
721
 
722
- #: contact_form.php:1962
723
  msgid "Top"
724
  msgstr ""
725
 
726
- #: contact_form.php:1971
727
  msgid "Bottom"
728
  msgstr ""
729
 
730
- #: contact_form.php:1976
731
  msgid "Labels align"
732
  msgstr ""
733
 
734
- #: contact_form.php:1991
735
  msgid "Errors output"
736
  msgstr "Foutboodskap uitset"
737
 
738
- #: contact_form.php:1994
739
  msgid "Display error messages"
740
  msgstr "Toon foutboodskappe"
741
 
742
- #: contact_form.php:1995
743
  msgid "Color of the input field errors."
744
  msgstr "Kleur van die inset veld foutboodskappe"
745
 
746
- #: contact_form.php:1996
747
  msgid "Display error messages & color of the input field errors"
748
  msgstr "Toon foutboodskappe & kleur van die inset veld foutboodskappe"
749
 
750
- #: contact_form.php:2001
751
  msgid "Add placeholder to the input blocks"
752
  msgstr "Voeg 'n plekhouer by die inset blokke"
753
 
754
- #: contact_form.php:2007
755
  msgid "Add tooltips"
756
  msgstr "Voeg tool-wenke"
757
 
758
- #: contact_form.php:2021
759
  msgid "Email address"
760
  msgstr "Epos Adres:"
761
 
762
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
763
  msgid "Phone Number"
764
  msgstr "Telefoon Nommer:"
765
 
766
- #: contact_form.php:2052
767
  msgid "Style options"
768
  msgstr "Styl opsies"
769
 
770
- #: contact_form.php:2056
771
  msgid "Text color"
772
  msgstr "Teks kleur"
773
 
774
- #: contact_form.php:2061
775
  msgid "Label text color"
776
  msgstr "Etiket teks kleur"
777
 
778
- #: contact_form.php:2066
779
  msgid "Placeholder color"
780
  msgstr "Plekhouer kleur"
781
 
782
- #: contact_form.php:2071
783
  msgid "Errors color"
784
  msgstr "Foutboodskap kleur"
785
 
786
- #: contact_form.php:2076
787
  msgid "Error text color"
788
  msgstr "Foutboodskap teks kleur"
789
 
790
- #: contact_form.php:2081
791
  msgid "Background color of the input field errors"
792
  msgstr "Agtergrond kleur van die inset veld foutboodskappe"
793
 
794
- #: contact_form.php:2086
795
  msgid "Border color of the input field errors"
796
  msgstr "Rand-kleur van die inset veld foutboodskappe"
797
 
798
- #: contact_form.php:2091
799
  msgid "Placeholder color of the input field errors"
800
  msgstr "Plekhouer kleur van die inset veld foutboodskappe"
801
 
802
- #: contact_form.php:2096
803
  msgid "Input fields"
804
  msgstr "Inset velde"
805
 
806
- #: contact_form.php:2101
807
  msgid "Input fields background color"
808
  msgstr "Inset velde agtergrond kleur"
809
 
810
- #: contact_form.php:2106
811
  msgid "Text fields color"
812
  msgstr "Teks velde kleur"
813
 
814
- #: contact_form.php:2110
815
  msgid "Border width in px, numbers only"
816
  msgstr "Rand wydte in px, nommers alleenlik"
817
 
818
- #: contact_form.php:2115 contact_form.php:2139
819
  msgid "Border color"
820
  msgstr "Rand kleur"
821
 
822
- #: contact_form.php:2120
823
  msgid "Submit button"
824
  msgstr "Indien knoppie"
825
 
826
- #: contact_form.php:2124
827
  msgid "Width in px, numbers only"
828
  msgstr "Wydte in px, nommers alleenlik"
829
 
830
- #: contact_form.php:2129
831
  msgid "Button color"
832
  msgstr "Knoppie Kleur"
833
 
834
- #: contact_form.php:2134
835
  msgid "Button text color"
836
  msgstr "Knoppie teks kleur"
837
 
838
- #: contact_form.php:2163
839
  #, fuzzy
840
  msgid "Contact Form | Preview"
841
  msgstr "Kontak Vorm Pro | Voorskou"
842
 
843
- #: contact_form.php:2164
844
  msgid "Drag the necessary field to sort fields."
845
  msgstr ""
846
 
847
- #: contact_form.php:2376
848
  #, fuzzy
849
  msgid ""
850
  "If you would like to add the Contact Form to your website, just copy and "
@@ -853,23 +865,23 @@ msgstr ""
853
  "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
854
  "kortkode na u post, bladsy of widget:"
855
 
856
- #: contact_form.php:2504
857
  msgid "Sorry, email message could not be delivered."
858
  msgstr "Verskoning, die epos kon nie gestuur word nie."
859
 
860
- #: contact_form.php:3094 contact_form.php:3096
861
  msgid "Sent from (ip address)"
862
  msgstr "Gestuur van (IP-Adres)"
863
 
864
- #: contact_form.php:3124
865
  msgid "Contact from"
866
  msgstr "Kontak Vorm"
867
 
868
- #: contact_form.php:3129 contact_form.php:3178
869
  msgid "Site"
870
  msgstr "Webtuiste"
871
 
872
- #: contact_form.php:3308
873
  msgid ""
874
  "If you can see this MIME, it means that the MIME type is not supported by "
875
  "your email client!"
@@ -877,68 +889,60 @@ msgstr ""
877
  "As u die MIME kan sie, beteken dit dat die MIME tipe nie ondersteun word "
878
  "deur u epos klient nie!"
879
 
880
- #: contact_form.php:3391
881
  msgid "FAQ"
882
  msgstr "Gereeld Gestelde Vrae (FAQ)"
883
 
884
- #: contact_form.php:3392
885
  msgid "Support"
886
  msgstr "Steun"
887
 
888
- #: contact_form.php:3441
889
  msgid "Are you sure that you want to delete this language data?"
890
  msgstr "Is u seker dat u die taal data wil verwyder?"
891
 
892
- #: contact_form.php:3462
893
  #, fuzzy
894
  msgid "Add multiple forms"
895
  msgstr "Voeg by die vorm by"
896
 
897
- #: contact_form.php:3462
898
  msgid ""
899
  "Install Contact Form Multi plugin to create unlimited number of contact "
900
  "forms."
901
  msgstr ""
902
 
903
- #: contact_form.php:3467
904
  msgid "Learn more"
905
  msgstr ""
906
 
907
- #: contact_form.php:3693
908
  msgid "Close notice"
909
  msgstr ""
910
 
911
- #: contact_form.php:3698
912
  #, fuzzy
913
  msgid "allows to store your messages to the database."
914
  msgstr "Stoor eposse na die databasis."
915
 
916
- #: contact_form.php:3699
917
  msgid "Manage messages that have been sent from your website."
918
  msgstr ""
919
 
920
- #: contact_form.php:3702
921
  msgid "Learn More"
922
  msgstr ""
923
 
924
- #: contact_form.php:3762
925
  #, fuzzy
926
  msgid "Contact form"
927
  msgstr "Kontak Vorm"
928
 
929
- #: contact_form.php:3775 contact_form.php:3785
930
  #, fuzzy
931
  msgid "Language"
932
  msgstr "Voeg 'n taal by"
933
 
934
- #: includes/deprecated.php:168
935
- #, php-format
936
- msgid ""
937
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
938
- "replace it with %3s. If you close this message it'll appear again after "
939
- "deprecated shortcode reuse."
940
- msgstr ""
941
-
942
  #~ msgid "Name:"
943
  #~ msgstr "Naam:"
944
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:15+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Aldu <alducornelissen@gmail.com>\n"
9
  "Language: af\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:37 contact_form.php:1064
21
  msgid "Contact Form Settings"
22
  msgstr "Kontak Form Verstellings"
23
 
24
+ #: contact_form.php:37
25
  msgid "Contact Form"
26
  msgstr "Kontak Form"
27
 
28
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
29
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
30
+ #: contact_form.php:3181 contact_form.php:3227
31
  msgid "Name"
32
  msgstr "Naam"
33
 
34
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
35
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
36
+ #: contact_form.php:3233
37
  msgid "Address"
38
  msgstr "Adres: "
39
 
40
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
41
+ #: contact_form.php:1765
42
  msgid "Email Address"
43
  msgstr "Epos Adres:"
44
 
45
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
46
+ #: contact_form.php:1766
47
  msgid "Phone number"
48
  msgstr "Telefoon nommer:"
49
 
50
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
51
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
52
+ #: contact_form.php:3242
53
  msgid "Subject"
54
  msgstr "Onderwerp"
55
 
56
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
57
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
58
+ #: contact_form.php:3246
59
  msgid "Message"
60
  msgstr "Boodskap"
61
 
62
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
63
+ #: contact_form.php:2058
64
  msgid "Attachment"
65
  msgstr "Aanhegsel:"
66
 
67
+ #: contact_form.php:287
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
72
  "Ondersteunde datalêer tipes: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
76
  msgid "Send me a copy"
77
  msgstr "Stuur vir my 'n kopie"
78
 
79
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
80
  msgid "Submit"
81
  msgstr "Dien in"
82
 
83
+ #: contact_form.php:290
84
  msgid "Your name is required."
85
  msgstr "Jou naam word benodig."
86
 
87
+ #: contact_form.php:291
88
  msgid "Address is required."
89
  msgstr "Adres word benodig."
90
 
91
+ #: contact_form.php:292
92
  msgid "A valid email address is required."
93
  msgstr "'n Geldige epos adres word benodig."
94
 
95
+ #: contact_form.php:293
96
  msgid "Phone number is required."
97
  msgstr "'n Telefoon nommer word benodig."
98
 
99
+ #: contact_form.php:294
100
  msgid "Subject is required."
101
  msgstr "'n Onderwerp word benodig."
102
 
103
+ #: contact_form.php:295
104
  msgid "Message text is required."
105
  msgstr "'n Boodskap teks word benodig ."
106
 
107
+ #: contact_form.php:296
108
  msgid "File format is not valid."
109
  msgstr "Datalêer formaat is nie geldig nie."
110
 
111
+ #: contact_form.php:297
112
  msgid "File upload error."
113
  msgstr "Oplaai van datalêer foutief."
114
 
115
+ #: contact_form.php:298
116
  msgid "The file could not be uploaded."
117
  msgstr "Die datalêer kon nie opgelaai word nie."
118
 
119
+ #: contact_form.php:299
120
  msgid "This file is too large."
121
  msgstr "Die datalêer is te groot."
122
 
123
+ #: contact_form.php:300
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Vul asseblief die CAPTCHA in."
126
 
127
+ #: contact_form.php:301
128
  msgid "Please make corrections below and try again."
129
  msgstr "Korregeer asseblief die foute hierdoner en probeer weer."
130
 
131
+ #: contact_form.php:303
132
  msgid "Thank you for contacting us."
133
  msgstr "Dankie dat jy ons gekontak het."
134
 
135
+ #: contact_form.php:759 contact_form.php:1021
136
  msgid "Settings saved."
137
  msgstr "Verstellings is gestoor."
138
 
139
+ #: contact_form.php:966
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
+ #: contact_form.php:976
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
150
  "As die 'Redirect to page' opsie geselekteer is moet die URL veld in die "
151
  "volgende formaat wees"
152
 
153
+ #: contact_form.php:983
154
  #, fuzzy
155
  msgid "Such user does not exist."
156
  msgstr "Hierdie gebruiker bestaan nie. Die instellings is nie gestoor nie."
157
 
158
+ #: contact_form.php:993
159
  #, fuzzy
160
  msgid ""
161
  "Please enter a valid email address in the 'Use this email address' field."
163
  "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
164
  "is nie gestoor nie."
165
 
166
+ #: contact_form.php:1001
167
  #, fuzzy
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
171
  "is nie gestoor nie."
172
 
173
+ #: contact_form.php:1023
174
  #, fuzzy
175
  msgid "Settings are not saved."
176
  msgstr "Verstellings is gestoor."
177
 
178
+ #: contact_form.php:1061
179
  msgid "All plugin settings were restored."
180
  msgstr ""
181
 
182
+ #: contact_form.php:1067
183
  msgid "How to Use Step-by-step Instruction"
184
  msgstr ""
185
 
186
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
187
  msgid "Settings"
188
  msgstr "Verstellings"
189
 
190
+ #: contact_form.php:1071
191
  #, fuzzy
192
  msgid "Additional settings"
193
  msgstr "Addisionele opsies"
194
 
195
+ #: contact_form.php:1072
196
  msgid "Appearance"
197
  msgstr ""
198
 
199
+ #: contact_form.php:1073
200
  msgid "Custom code"
201
  msgstr ""
202
 
203
+ #: contact_form.php:1074
204
  msgid "Go PRO"
205
  msgstr "Gaan PRO"
206
 
207
+ #: contact_form.php:1085
208
  #, fuzzy
209
  msgid "Notice"
210
  msgstr "Kennisgewing:"
211
 
212
+ #: contact_form.php:1089
213
  msgid "NEW_FORM"
214
  msgstr ""
215
 
216
+ #: contact_form.php:1090
217
  msgid ""
218
  "If you want to create multiple contact forms, please install the Contact "
219
  "Form Multi plugin."
220
  msgstr ""
221
 
222
+ #: contact_form.php:1099
223
  #, fuzzy, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
228
  "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
229
  "kortkode na u post, bladsy of widget:"
230
 
231
+ #: contact_form.php:1105
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
237
  "language."
238
  msgstr ""
239
 
240
+ #: contact_form.php:1114
241
  msgid ""
242
  "If you leave the fields empty, the messages will be sent to the email "
243
  "address specified during registration."
245
  "As u die velde leeg laat, sal die boodskappe gestuur word na die epos adres "
246
  "wat gespesifiseer was gedurende registrasie"
247
 
248
+ #: contact_form.php:1117
249
  #, fuzzy
250
  msgid "The user's email address"
251
  msgstr "Die gebruiker se epos adres:"
252
 
253
+ #: contact_form.php:1121
254
  #, fuzzy
255
  msgid "Select a username"
256
  msgstr "Skep 'n gebruikersnaam"
257
 
258
+ #: contact_form.php:1134
259
  #, fuzzy
260
  msgid ""
261
  "Select a username of the person who should get the messages from the contact "
264
  "Sleutel 'n gebruikersnaam in vir die persoon wat die boodskappe moet kry van "
265
  "die kontak vorm."
266
 
267
+ #: contact_form.php:1138
268
  #, fuzzy
269
  msgid "Use this email address"
270
  msgstr "Gebruik hierdie epos adres:"
271
 
272
+ #: contact_form.php:1142
273
  #, fuzzy
274
  msgid "Enter the email address for receiving messages"
275
  msgstr "Sleutel in die epos adres in waar u die boodskappe aangestuur wil he."
276
 
277
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
278
+ #: contact_form.php:1957 contact_form.php:3514
279
  msgid "Close"
280
  msgstr ""
281
 
282
+ #: contact_form.php:1153
283
  #, fuzzy
284
  msgid "Add department selectbox to the contact form"
285
  msgstr "Voeg 'n departementele keuse-boks by die kontak vorm:"
286
 
287
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
288
+ #: contact_form.php:2163
289
  msgid "If you upgrade to Pro version all your settings will be saved."
290
  msgstr "As u opgradeer na die Pro weergawe sal die verstellings gestoor word."
291
 
292
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
293
+ #: contact_form.php:1878 contact_form.php:2170
294
  msgid "Upgrade to Pro"
295
  msgstr ""
296
 
297
+ #: contact_form.php:1176
298
  msgid "Save emails to the database"
299
  msgstr "Stoor eposse na die databasis."
300
 
301
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
302
  msgid "Using"
303
  msgstr "In Gebruik"
304
 
305
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
306
+ #: contact_form.php:1623
307
  msgid "Please activate the appropriate option on"
308
  msgstr ""
309
 
310
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
311
+ #: contact_form.php:1626
312
  #, fuzzy
313
  msgid "settings page"
314
  msgstr "Die verstelling bladsy"
315
 
316
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
317
+ #: contact_form.php:1633
318
  msgid "Activate"
319
  msgstr "Aktiveer"
320
 
321
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
322
+ #: contact_form.php:1638
323
  msgid "Download"
324
  msgstr "Download"
325
 
326
+ #: contact_form.php:1222
327
  msgid "Sending method"
328
  msgstr ""
329
 
330
+ #: contact_form.php:1227
331
  msgid "Wp-mail"
332
  msgstr "Wp-mail"
333
 
334
+ #: contact_form.php:1229
335
  #, fuzzy
336
  msgid "You can use the Wordpress wp_mail function for mailing"
337
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
338
 
339
+ #: contact_form.php:1232
340
  msgid "Mail"
341
  msgstr "Mail"
342
 
343
+ #: contact_form.php:1234
344
  #, fuzzy
345
  msgid "You can use the PHP mail function for mailing"
346
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
347
 
348
+ #: contact_form.php:1239
349
  msgid "'FROM' field"
350
  msgstr ""
351
 
352
+ #: contact_form.php:1255
353
  msgid "User name"
354
  msgstr "Gebruikersnaam"
355
 
356
+ #: contact_form.php:1257
357
  msgid ""
358
  "The name of the user who fills the form will be used in the field 'From'."
359
  msgstr ""
360
  "Die naam van die gebruiker wie die vorm invul sal gebruik word vir die 'From/"
361
  "Van' veld."
362
 
363
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
364
  msgid "Email"
365
  msgstr "Epos"
366
 
367
+ #: contact_form.php:1279
368
  msgid "User email"
369
  msgstr "Gebruiker epos"
370
 
371
+ #: contact_form.php:1281
372
  msgid ""
373
  "The email address of the user who fills the form will be used in the field "
374
  "'From'."
376
  "Die epos adres van die gebruiker wie die vorm invul sal gebruik word in die "
377
  "'From/van' veld."
378
 
379
+ #: contact_form.php:1290
380
  msgid ""
381
  "If this option is changed, email messages may be moved to the spam folder or "
382
  "email delivery failures may occur."
383
  msgstr ""
384
 
385
+ #: contact_form.php:1299
386
  msgid "Required symbol"
387
  msgstr "Benodigde simbool"
388
 
389
+ #: contact_form.php:1309
390
  msgid "Fields"
391
  msgstr "Velde"
392
 
393
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
394
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
395
  msgid "Used"
396
  msgstr "Gebruik"
397
 
398
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
399
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
400
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
401
  msgid "Required"
402
  msgstr "Benodig"
403
 
404
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
405
+ #: contact_form.php:1445 contact_form.php:1469
406
  msgid "Visible"
407
  msgstr "Sigbaar"
408
 
409
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
410
+ #: contact_form.php:1449 contact_form.php:1473
411
  msgid "Disabled for editing"
412
  msgstr "Gedeaktiveer vir wysiging"
413
 
414
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
415
+ #: contact_form.php:1477
416
  msgid "Field's default value"
417
  msgstr "Veld se verstekwaarde"
418
 
419
+ #: contact_form.php:1322
420
  msgid "Department selectbox"
421
  msgstr ""
422
 
423
+ #: contact_form.php:1354
424
  msgid "Use User's name as a default value if the user is logged in."
425
  msgstr ""
426
 
427
+ #: contact_form.php:1355 contact_form.php:1415
428
  msgid ""
429
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
430
  "in users."
431
  msgstr ""
432
 
433
+ #: contact_form.php:1361
434
  msgid "Location selectbox"
435
  msgstr ""
436
 
437
+ #: contact_form.php:1414
438
  msgid "Use User's email as a default value if the user is logged in."
439
  msgstr ""
440
 
441
+ #: contact_form.php:1498
442
  msgid "Attachment block"
443
  msgstr "Aanhegsel blok"
444
 
445
+ #: contact_form.php:1500
446
  msgid "Users can attach the following file formats"
447
  msgstr "Gebruikers kan die volgende dataleêr formate aanheg"
448
 
449
+ #: contact_form.php:1518
450
  msgid "Add to the form"
451
  msgstr "Voeg by die vorm by"
452
 
453
+ #: contact_form.php:1523
454
  msgid "Tips below the Attachment"
455
  msgstr "Wenke onder die Aanhegsel"
456
 
457
+ #: contact_form.php:1530
458
  msgid "'Send me a copy' block"
459
  msgstr "'Stuur vir my 'n kopie' blok"
460
 
461
+ #: contact_form.php:1558
462
  msgid "Activate for network"
463
  msgstr ""
464
 
465
+ #: contact_form.php:1649
466
  msgid "Agreement checkbox"
467
  msgstr "Ooreenstemming checkbox"
468
 
469
+ #: contact_form.php:1649
470
  msgid "Required checkbox for submitting the form"
471
  msgstr "Benodigde checkbox om die vorm in te dien"
472
 
473
+ #: contact_form.php:1650
474
  msgid "Optional checkbox"
475
  msgstr "Opsie checkbox"
476
 
477
+ #: contact_form.php:1650
478
  msgid "Optional checkbox, the results of which will be displayed in email"
479
  msgstr "Opsionele checkbox, die resultate waarvan in die epos sal verskyn"
480
 
481
+ #: contact_form.php:1668
482
  msgid "Delete an attachment file from the server after the email is sent"
483
  msgstr "Verwyder 'n aanhegsel dataleêr van die server na epos gestuur is"
484
 
485
+ #: contact_form.php:1674
486
  msgid "Email in HTML format sending"
487
  msgstr "E-Mail in HTML Format"
488
 
489
+ #: contact_form.php:1678
490
  msgid "Display additional info in the email"
491
  msgstr "Toon addisionele inligting in die epos"
492
 
493
+ #: contact_form.php:1684
494
  #, fuzzy
495
  msgid "Sent from (IP address)"
496
  msgstr "Gestuur van (IP-Adres)"
497
 
498
+ #: contact_form.php:1684
499
  msgid "Example: Sent from (IP address):\t127.0.0.1"
500
  msgstr "Voorbeeld: Gestuur van (IP-Adres):\t127.0.0.1"
501
 
502
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
503
  msgid "Date/Time"
504
  msgstr "Datum/Tyd"
505
 
506
+ #: contact_form.php:1685
507
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
508
  msgstr "Voorbeeld: Datum/Tyd:\tAugustus 19, 2013 8:50 pm"
509
 
510
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
511
  msgid "Sent from (referer)"
512
  msgstr "Gestuur van (referer)"
513
 
514
+ #: contact_form.php:1686
515
  #, fuzzy
516
  msgid ""
517
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
519
  "Voorbeeld: Gestuur van (referer):\thttp://bestwebsoft.com/kontakte/kontak-"
520
  "ons/"
521
 
522
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
523
  msgid "Using (user agent)"
524
  msgstr "Gebruik (user agent)"
525
 
526
+ #: contact_form.php:1687
527
  msgid ""
528
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
529
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
531
  "Voorbeeld: Gebruik (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
532
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
533
 
534
+ #: contact_form.php:1692
535
  msgid "Language settings for the field names in the form"
536
  msgstr "Taal verstellings vir die naamvelde in die vorm"
537
 
538
+ #: contact_form.php:1701
539
  msgid "Add a language"
540
  msgstr "Voeg 'n taal by"
541
 
542
+ #: contact_form.php:1705
543
  msgid "Change the names of the contact form fields and error messages"
544
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
545
 
546
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
547
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
548
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
549
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
550
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
551
  msgid "Default"
552
  msgstr "Verstek"
553
 
554
+ #: contact_form.php:1723 contact_form.php:1761
555
  msgid "click to expand/hide the list"
556
  msgstr "Kliek om uit te brei/lys te versteek"
557
 
558
+ #: contact_form.php:1732 contact_form.php:1770
559
  msgid "Tips below the Attachment block"
560
  msgstr "Wenke onder toe Aanhegsel blok"
561
 
562
+ #: contact_form.php:1735 contact_form.php:1773
563
  msgid "Error message for the Name field"
564
  msgstr "FFoutboodskap vir die Naamveld"
565
 
566
+ #: contact_form.php:1736 contact_form.php:1774
567
  msgid "Error message for the Address field"
568
  msgstr "Foutboodskap vir die Adres veld"
569
 
570
+ #: contact_form.php:1737 contact_form.php:1775
571
  msgid "Error message for the Email field"
572
  msgstr "Foutboodskap vir die Epos veld"
573
 
574
+ #: contact_form.php:1738 contact_form.php:1776
575
  msgid "Error message for the Phone field"
576
  msgstr "Foutboodskap vir die Telefoon Nommer veld"
577
 
578
+ #: contact_form.php:1739 contact_form.php:1777
579
  msgid "Error message for the Subject field"
580
  msgstr "Foutboodskap vir die Onderwerp veld"
581
 
582
+ #: contact_form.php:1740 contact_form.php:1778
583
  msgid "Error message for the Message field"
584
  msgstr "Foutboodskap vir die Boodskap veld"
585
 
586
+ #: contact_form.php:1741 contact_form.php:1779
587
  msgid "Error message about the file type for the Attachment field"
588
  msgstr "Foutboodskap oor die dataleêr tipe vir die Aanhegsel veld"
589
 
590
+ #: contact_form.php:1742 contact_form.php:1780
591
  msgid ""
592
  "Error message while uploading a file for the Attachment field to the server"
593
  msgstr ""
594
  "Foutboodskap tydens dataleêr oplaai vir die Aanhegsel veld na die server"
595
 
596
+ #: contact_form.php:1743 contact_form.php:1781
597
  msgid "Error message while moving the file for the Attachment field"
598
  msgstr "Foutboodskap tydens die skuif van dataleêr vir die Aanhegsel veld"
599
 
600
+ #: contact_form.php:1744 contact_form.php:1782
601
  msgid "Error message when file size limit for the Attachment field is exceeded"
602
  msgstr ""
603
  "Foutboodskap wanneer die dataleêr limiet vir die Aanhegsel veld oorskry is"
604
 
605
+ #: contact_form.php:1745 contact_form.php:1783
606
  msgid "Error message for the Captcha field"
607
  msgstr "Foutboodskap vir die Captcha veld"
608
 
609
+ #: contact_form.php:1746 contact_form.php:1784
610
  msgid "Error message for the whole form"
611
  msgstr "Foutboodskap vir die hele vorm"
612
 
613
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
614
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
615
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
616
+ #: contact_form.php:3604
617
  msgid "Use shortcode"
618
  msgstr "Gebruik kortkode"
619
 
620
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
621
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
622
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
623
+ #: contact_form.php:3604
624
  msgid "for this language"
625
  msgstr "vir hierdie taal"
626
 
627
+ #: contact_form.php:1797
628
  #, fuzzy
629
  msgid "Use the changed names of the contact form fields in the email"
630
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
631
 
632
+ #: contact_form.php:1803
633
  msgid "Action after email is sent"
634
  msgstr "Aksie na epos gestuur is"
635
 
636
+ #: contact_form.php:1805
637
  msgid "Display text"
638
  msgstr "Toon teks"
639
 
640
+ #: contact_form.php:1819 contact_form.php:1833
641
  msgid "Text"
642
  msgstr "teks"
643
 
644
+ #: contact_form.php:1844
645
  msgid "Redirect to the page"
646
  msgstr "Herlei na die bladsy"
647
 
648
+ #: contact_form.php:1845
649
  msgid "Url"
650
  msgstr "Url"
651
 
652
+ #: contact_form.php:1856
653
  msgid "Add field 'Reply-To' to the email header"
654
  msgstr ""
655
 
656
+ #: contact_form.php:1858
657
  msgid "Field 'Reply-To' will be initialized by user email"
658
  msgstr ""
659
 
660
+ #: contact_form.php:1862
661
  msgid "Auto Response"
662
  msgstr ""
663
 
664
+ #: contact_form.php:1866
665
  #, php-format
666
  msgid ""
667
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
669
  "name."
670
  msgstr ""
671
 
672
+ #: contact_form.php:1888 contact_form.php:2419
673
  msgid "Save Changes"
674
  msgstr "Stoor veranderinge"
675
 
676
+ #: contact_form.php:1901
677
  #, php-format
678
  msgid ""
679
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
680
  msgstr ""
681
 
682
+ #: contact_form.php:1901 contact_form.php:1910
683
  msgid "Form layout"
684
  msgstr ""
685
 
686
+ #: contact_form.php:1901 contact_form.php:1922
687
  #, fuzzy
688
  msgid "Submit position"
689
  msgstr "Indien knoppie"
690
 
691
+ #: contact_form.php:1914
692
  msgid "One column"
693
  msgstr ""
694
 
695
+ #: contact_form.php:1917
696
  msgid "Two columns"
697
  msgstr ""
698
 
699
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
700
+ #: contact_form.php:1998
701
  msgid "Left"
702
  msgstr ""
703
 
704
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
705
+ #: contact_form.php:2004
706
  msgid "Right"
707
  msgstr ""
708
 
709
+ #: contact_form.php:1934
710
+ msgid "Width"
711
+ msgstr ""
712
+
713
+ #: contact_form.php:1941
714
+ msgid "Custom"
715
+ msgstr ""
716
+
717
+ #: contact_form.php:1948
718
+ msgid "px"
719
+ msgstr ""
720
+
721
+ #: contact_form.php:1961
722
  msgid "Form align"
723
  msgstr ""
724
 
725
+ #: contact_form.php:1968 contact_form.php:2001
726
  msgid "Center"
727
  msgstr ""
728
 
729
+ #: contact_form.php:1976
730
  #, fuzzy
731
  msgid "Labels position"
732
  msgstr "Indien knoppie"
733
 
734
+ #: contact_form.php:1980
735
  msgid "Top"
736
  msgstr ""
737
 
738
+ #: contact_form.php:1989
739
  msgid "Bottom"
740
  msgstr ""
741
 
742
+ #: contact_form.php:1994
743
  msgid "Labels align"
744
  msgstr ""
745
 
746
+ #: contact_form.php:2009
747
  msgid "Errors output"
748
  msgstr "Foutboodskap uitset"
749
 
750
+ #: contact_form.php:2012
751
  msgid "Display error messages"
752
  msgstr "Toon foutboodskappe"
753
 
754
+ #: contact_form.php:2013
755
  msgid "Color of the input field errors."
756
  msgstr "Kleur van die inset veld foutboodskappe"
757
 
758
+ #: contact_form.php:2014
759
  msgid "Display error messages & color of the input field errors"
760
  msgstr "Toon foutboodskappe & kleur van die inset veld foutboodskappe"
761
 
762
+ #: contact_form.php:2019
763
  msgid "Add placeholder to the input blocks"
764
  msgstr "Voeg 'n plekhouer by die inset blokke"
765
 
766
+ #: contact_form.php:2025
767
  msgid "Add tooltips"
768
  msgstr "Voeg tool-wenke"
769
 
770
+ #: contact_form.php:2039
771
  msgid "Email address"
772
  msgstr "Epos Adres:"
773
 
774
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
775
  msgid "Phone Number"
776
  msgstr "Telefoon Nommer:"
777
 
778
+ #: contact_form.php:2070
779
  msgid "Style options"
780
  msgstr "Styl opsies"
781
 
782
+ #: contact_form.php:2074
783
  msgid "Text color"
784
  msgstr "Teks kleur"
785
 
786
+ #: contact_form.php:2079
787
  msgid "Label text color"
788
  msgstr "Etiket teks kleur"
789
 
790
+ #: contact_form.php:2084
791
  msgid "Placeholder color"
792
  msgstr "Plekhouer kleur"
793
 
794
+ #: contact_form.php:2089
795
  msgid "Errors color"
796
  msgstr "Foutboodskap kleur"
797
 
798
+ #: contact_form.php:2094
799
  msgid "Error text color"
800
  msgstr "Foutboodskap teks kleur"
801
 
802
+ #: contact_form.php:2099
803
  msgid "Background color of the input field errors"
804
  msgstr "Agtergrond kleur van die inset veld foutboodskappe"
805
 
806
+ #: contact_form.php:2104
807
  msgid "Border color of the input field errors"
808
  msgstr "Rand-kleur van die inset veld foutboodskappe"
809
 
810
+ #: contact_form.php:2109
811
  msgid "Placeholder color of the input field errors"
812
  msgstr "Plekhouer kleur van die inset veld foutboodskappe"
813
 
814
+ #: contact_form.php:2114
815
  msgid "Input fields"
816
  msgstr "Inset velde"
817
 
818
+ #: contact_form.php:2119
819
  msgid "Input fields background color"
820
  msgstr "Inset velde agtergrond kleur"
821
 
822
+ #: contact_form.php:2124
823
  msgid "Text fields color"
824
  msgstr "Teks velde kleur"
825
 
826
+ #: contact_form.php:2128
827
  msgid "Border width in px, numbers only"
828
  msgstr "Rand wydte in px, nommers alleenlik"
829
 
830
+ #: contact_form.php:2133 contact_form.php:2157
831
  msgid "Border color"
832
  msgstr "Rand kleur"
833
 
834
+ #: contact_form.php:2138
835
  msgid "Submit button"
836
  msgstr "Indien knoppie"
837
 
838
+ #: contact_form.php:2142
839
  msgid "Width in px, numbers only"
840
  msgstr "Wydte in px, nommers alleenlik"
841
 
842
+ #: contact_form.php:2147
843
  msgid "Button color"
844
  msgstr "Knoppie Kleur"
845
 
846
+ #: contact_form.php:2152
847
  msgid "Button text color"
848
  msgstr "Knoppie teks kleur"
849
 
850
+ #: contact_form.php:2181
851
  #, fuzzy
852
  msgid "Contact Form | Preview"
853
  msgstr "Kontak Vorm Pro | Voorskou"
854
 
855
+ #: contact_form.php:2182
856
  msgid "Drag the necessary field to sort fields."
857
  msgstr ""
858
 
859
+ #: contact_form.php:2408
860
  #, fuzzy
861
  msgid ""
862
  "If you would like to add the Contact Form to your website, just copy and "
865
  "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
866
  "kortkode na u post, bladsy of widget:"
867
 
868
+ #: contact_form.php:2536
869
  msgid "Sorry, email message could not be delivered."
870
  msgstr "Verskoning, die epos kon nie gestuur word nie."
871
 
872
+ #: contact_form.php:3137 contact_form.php:3139
873
  msgid "Sent from (ip address)"
874
  msgstr "Gestuur van (IP-Adres)"
875
 
876
+ #: contact_form.php:3167
877
  msgid "Contact from"
878
  msgstr "Kontak Vorm"
879
 
880
+ #: contact_form.php:3172 contact_form.php:3221
881
  msgid "Site"
882
  msgstr "Webtuiste"
883
 
884
+ #: contact_form.php:3351
885
  msgid ""
886
  "If you can see this MIME, it means that the MIME type is not supported by "
887
  "your email client!"
889
  "As u die MIME kan sie, beteken dit dat die MIME tipe nie ondersteun word "
890
  "deur u epos klient nie!"
891
 
892
+ #: contact_form.php:3434
893
  msgid "FAQ"
894
  msgstr "Gereeld Gestelde Vrae (FAQ)"
895
 
896
+ #: contact_form.php:3435
897
  msgid "Support"
898
  msgstr "Steun"
899
 
900
+ #: contact_form.php:3484
901
  msgid "Are you sure that you want to delete this language data?"
902
  msgstr "Is u seker dat u die taal data wil verwyder?"
903
 
904
+ #: contact_form.php:3505
905
  #, fuzzy
906
  msgid "Add multiple forms"
907
  msgstr "Voeg by die vorm by"
908
 
909
+ #: contact_form.php:3505
910
  msgid ""
911
  "Install Contact Form Multi plugin to create unlimited number of contact "
912
  "forms."
913
  msgstr ""
914
 
915
+ #: contact_form.php:3510
916
  msgid "Learn more"
917
  msgstr ""
918
 
919
+ #: contact_form.php:3751
920
  msgid "Close notice"
921
  msgstr ""
922
 
923
+ #: contact_form.php:3756
924
  #, fuzzy
925
  msgid "allows to store your messages to the database."
926
  msgstr "Stoor eposse na die databasis."
927
 
928
+ #: contact_form.php:3757
929
  msgid "Manage messages that have been sent from your website."
930
  msgstr ""
931
 
932
+ #: contact_form.php:3760
933
  msgid "Learn More"
934
  msgstr ""
935
 
936
+ #: contact_form.php:3820
937
  #, fuzzy
938
  msgid "Contact form"
939
  msgstr "Kontak Vorm"
940
 
941
+ #: contact_form.php:3833 contact_form.php:3843
942
  #, fuzzy
943
  msgid "Language"
944
  msgstr "Voeg 'n taal by"
945
 
 
 
 
 
 
 
 
 
946
  #~ msgid "Name:"
947
  #~ msgstr "Naam:"
948
 
languages/contact-form-plugin-ca.mo CHANGED
Binary file
languages/contact-form-plugin-ca.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: 2017-02-27 16:22+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:22+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Kenneth <kenneth@snollocer.net>\n"
9
  "Language: ca_ES\n"
@@ -16,55 +16,55 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:42 contact_form.php:1066
20
  msgid "Contact Form Settings"
21
  msgstr "Opcions Contact Form"
22
 
23
- #: contact_form.php:42
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
28
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
29
- #: contact_form.php:3138 contact_form.php:3184
30
  msgid "Name"
31
  msgstr "Nom"
32
 
33
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
34
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
35
- #: contact_form.php:3190
36
  msgid "Address"
37
  msgstr "Adreça:"
38
 
39
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
40
- #: contact_form.php:1767
41
  msgid "Email Address"
42
  msgstr "Adreça de correu electrònic:"
43
 
44
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
45
- #: contact_form.php:1768
46
  #, fuzzy
47
  msgid "Phone number"
48
  msgstr "Nombre de telèfon"
49
 
50
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
51
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
52
- #: contact_form.php:3199
53
  msgid "Subject"
54
  msgstr "Assumpte"
55
 
56
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
57
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
58
- #: contact_form.php:3203
59
  msgid "Message"
60
  msgstr "MIssatge"
61
 
62
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
63
- #: contact_form.php:2040
64
  msgid "Attachment"
65
  msgstr "Adjunt:"
66
 
67
- #: contact_form.php:302
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -72,77 +72,77 @@ msgstr ""
72
  "Formats de fitxer suportats: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
76
  msgid "Send me a copy"
77
  msgstr "Envia'm una còpia"
78
 
79
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
80
  msgid "Submit"
81
  msgstr "Enviar"
82
 
83
- #: contact_form.php:305
84
  msgid "Your name is required."
85
  msgstr "El seu nom es obligatori."
86
 
87
- #: contact_form.php:306
88
  msgid "Address is required."
89
  msgstr "Una adreça vàlida és obligatòria."
90
 
91
- #: contact_form.php:307
92
  msgid "A valid email address is required."
93
  msgstr "Una Adreça de correu electrònic és obligatòria."
94
 
95
- #: contact_form.php:308
96
  msgid "Phone number is required."
97
  msgstr "El seu nombre de telèfon és obligatori."
98
 
99
- #: contact_form.php:309
100
  msgid "Subject is required."
101
  msgstr "L'assumpte és obligatori."
102
 
103
- #: contact_form.php:310
104
  msgid "Message text is required."
105
  msgstr "El missatge és obligatori."
106
 
107
- #: contact_form.php:311
108
  msgid "File format is not valid."
109
  msgstr "El format de l'adjunt és incorrecte."
110
 
111
- #: contact_form.php:312
112
  msgid "File upload error."
113
  msgstr "Error de càrrega del fitxer"
114
 
115
- #: contact_form.php:313
116
  msgid "The file could not be uploaded."
117
  msgstr "El fitxer no ha pogut ser carregat"
118
 
119
- #: contact_form.php:314
120
  msgid "This file is too large."
121
  msgstr "Aquest document és massa gran."
122
 
123
- #: contact_form.php:315
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Si us plau completi el CAPTCHA"
126
 
127
- #: contact_form.php:316
128
  msgid "Please make corrections below and try again."
129
  msgstr "Si us plau, corregeixi les dades i provi un altre cop."
130
 
131
- #: contact_form.php:318
132
  msgid "Thank you for contacting us."
133
  msgstr "Gràcies per contactar amb nosaltres"
134
 
135
- #: contact_form.php:761 contact_form.php:1023
136
  msgid "Settings saved."
137
  msgstr "Configuració desada."
138
 
139
- #: contact_form.php:968
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
- #: contact_form.php:978
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
@@ -150,12 +150,12 @@ msgstr ""
150
  "Si l'opció de 'redireccionament a la pàgina' està seleccionat llavors el "
151
  "camp URL ha d'estar en el següent format"
152
 
153
- #: contact_form.php:985
154
  #, fuzzy
155
  msgid "Such user does not exist."
156
  msgstr "Usuari inexistent. Els canvis no s'han desat."
157
 
158
- #: contact_form.php:995
159
  #, fuzzy
160
  msgid ""
161
  "Please enter a valid email address in the 'Use this email address' field."
@@ -163,62 +163,62 @@ msgstr ""
163
  "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
164
  "no s'han desat."
165
 
166
- #: contact_form.php:1003
167
  #, fuzzy
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
171
  "no s'han desat."
172
 
173
- #: contact_form.php:1025
174
  #, fuzzy
175
  msgid "Settings are not saved."
176
  msgstr "Configuració desada."
177
 
178
- #: contact_form.php:1063
179
  msgid "All plugin settings were restored."
180
  msgstr ""
181
 
182
- #: contact_form.php:1069
183
  msgid "How to Use Step-by-step Instruction"
184
  msgstr ""
185
 
186
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
187
  msgid "Settings"
188
  msgstr "Configuració"
189
 
190
- #: contact_form.php:1073
191
  #, fuzzy
192
  msgid "Additional settings"
193
  msgstr "Opcions addicionals"
194
 
195
- #: contact_form.php:1074
196
  msgid "Appearance"
197
  msgstr ""
198
 
199
- #: contact_form.php:1075
200
  msgid "Custom code"
201
  msgstr ""
202
 
203
- #: contact_form.php:1076
204
  msgid "Go PRO"
205
  msgstr ""
206
 
207
- #: contact_form.php:1087
208
  msgid "Notice"
209
  msgstr ""
210
 
211
- #: contact_form.php:1091
212
  msgid "NEW_FORM"
213
  msgstr ""
214
 
215
- #: contact_form.php:1092
216
  msgid ""
217
  "If you want to create multiple contact forms, please install the Contact "
218
  "Form Multi plugin."
219
  msgstr ""
220
 
221
- #: contact_form.php:1101
222
  #, fuzzy, php-format
223
  msgid ""
224
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -227,7 +227,7 @@ msgstr ""
227
  "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el "
228
  "seu missatge, pàgina o widget:"
229
 
230
- #: contact_form.php:1107
231
  #, php-format
232
  msgid ""
233
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -236,7 +236,7 @@ msgid ""
236
  "language."
237
  msgstr ""
238
 
239
- #: contact_form.php:1116
240
  msgid ""
241
  "If you leave the fields empty, the messages will be sent to the email "
242
  "address specified during registration."
@@ -244,114 +244,114 @@ msgstr ""
244
  "Si la informació d'aquest camp queda buida, s'usarà l'adreça especificada "
245
  "durant el registre."
246
 
247
- #: contact_form.php:1119
248
  #, fuzzy
249
  msgid "The user's email address"
250
  msgstr "Adreça de correu electrònic de l'usuari:"
251
 
252
- #: contact_form.php:1123
253
  #, fuzzy
254
  msgid "Select a username"
255
  msgstr "Seleccioni un nom d'usuari"
256
 
257
- #: contact_form.php:1136
258
  #, fuzzy
259
  msgid ""
260
  "Select a username of the person who should get the messages from the contact "
261
  "form."
262
  msgstr "Introdueixi el nom de l'usuari que rebrà missatges des de contact form"
263
 
264
- #: contact_form.php:1140
265
  #, fuzzy
266
  msgid "Use this email address"
267
  msgstr "Usi aquesta adreça de correu electrònic::"
268
 
269
- #: contact_form.php:1144
270
  #, fuzzy
271
  msgid "Enter the email address for receiving messages"
272
  msgstr ""
273
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
274
 
275
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
276
- #: contact_form.php:1939 contact_form.php:3471
277
  msgid "Close"
278
  msgstr ""
279
 
280
- #: contact_form.php:1155
281
  msgid "Add department selectbox to the contact form"
282
  msgstr ""
283
 
284
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
285
- #: contact_form.php:2145
286
  msgid "If you upgrade to Pro version all your settings will be saved."
287
  msgstr ""
288
 
289
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
290
- #: contact_form.php:1880 contact_form.php:2152
291
  msgid "Upgrade to Pro"
292
  msgstr ""
293
 
294
- #: contact_form.php:1178
295
  msgid "Save emails to the database"
296
  msgstr ""
297
 
298
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
299
  msgid "Using"
300
  msgstr ""
301
 
302
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
303
- #: contact_form.php:1625
304
  msgid "Please activate the appropriate option on"
305
  msgstr ""
306
 
307
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
308
- #: contact_form.php:1628
309
  #, fuzzy
310
  msgid "settings page"
311
  msgstr "Configuració extra"
312
 
313
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
314
- #: contact_form.php:1635
315
  #, fuzzy
316
  msgid "Activate"
317
  msgstr "Captcha activat"
318
 
319
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
320
- #: contact_form.php:1640
321
  msgid "Download"
322
  msgstr "Descarregar"
323
 
324
- #: contact_form.php:1224
325
  msgid "Sending method"
326
  msgstr ""
327
 
328
- #: contact_form.php:1229
329
  msgid "Wp-mail"
330
  msgstr "Wp-mail"
331
 
332
- #: contact_form.php:1231
333
  #, fuzzy
334
  msgid "You can use the Wordpress wp_mail function for mailing"
335
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
336
 
337
- #: contact_form.php:1234
338
  msgid "Mail"
339
  msgstr "Mail"
340
 
341
- #: contact_form.php:1236
342
  #, fuzzy
343
  msgid "You can use the PHP mail function for mailing"
344
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
345
 
346
- #: contact_form.php:1241
347
  msgid "'FROM' field"
348
  msgstr ""
349
 
350
- #: contact_form.php:1257
351
  msgid "User name"
352
  msgstr ""
353
 
354
- #: contact_form.php:1259
355
  #, fuzzy
356
  msgid ""
357
  "The name of the user who fills the form will be used in the field 'From'."
@@ -359,15 +359,15 @@ msgstr ""
359
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
360
  "posar al camp 'From'."
361
 
362
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
363
  msgid "Email"
364
  msgstr "Adreça de correu electrònic"
365
 
366
- #: contact_form.php:1281
367
  msgid "User email"
368
  msgstr ""
369
 
370
- #: contact_form.php:1283
371
  msgid ""
372
  "The email address of the user who fills the form will be used in the field "
373
  "'From'."
@@ -375,297 +375,297 @@ msgstr ""
375
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
376
  "posar al camp 'From'."
377
 
378
- #: contact_form.php:1292
379
  msgid ""
380
  "If this option is changed, email messages may be moved to the spam folder or "
381
  "email delivery failures may occur."
382
  msgstr ""
383
 
384
- #: contact_form.php:1301
385
  #, fuzzy
386
  msgid "Required symbol"
387
  msgstr "Camps requerits"
388
 
389
- #: contact_form.php:1311
390
  msgid "Fields"
391
  msgstr ""
392
 
393
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
394
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
395
  msgid "Used"
396
  msgstr ""
397
 
398
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
399
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
400
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
401
  #, fuzzy
402
  msgid "Required"
403
  msgstr "Camps requerits"
404
 
405
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
406
- #: contact_form.php:1447 contact_form.php:1471
407
  msgid "Visible"
408
  msgstr ""
409
 
410
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
411
- #: contact_form.php:1451 contact_form.php:1475
412
  msgid "Disabled for editing"
413
  msgstr ""
414
 
415
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
416
- #: contact_form.php:1479
417
  msgid "Field's default value"
418
  msgstr ""
419
 
420
- #: contact_form.php:1324
421
  msgid "Department selectbox"
422
  msgstr ""
423
 
424
- #: contact_form.php:1356
425
  msgid "Use User's name as a default value if the user is logged in."
426
  msgstr ""
427
 
428
- #: contact_form.php:1357 contact_form.php:1417
429
  msgid ""
430
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
431
  "in users."
432
  msgstr ""
433
 
434
- #: contact_form.php:1363
435
  msgid "Location selectbox"
436
  msgstr ""
437
 
438
- #: contact_form.php:1416
439
  msgid "Use User's email as a default value if the user is logged in."
440
  msgstr ""
441
 
442
- #: contact_form.php:1500
443
  msgid "Attachment block"
444
  msgstr "Adjunt blocat"
445
 
446
- #: contact_form.php:1502
447
  msgid "Users can attach the following file formats"
448
  msgstr "Els usuaris poden adjuntar els següents formats d'arxiu"
449
 
450
- #: contact_form.php:1520
451
  msgid "Add to the form"
452
  msgstr ""
453
 
454
- #: contact_form.php:1525
455
  #, fuzzy
456
  msgid "Tips below the Attachment"
457
  msgstr "Consells del blocatge de l'adjunt"
458
 
459
- #: contact_form.php:1532
460
  #, fuzzy
461
  msgid "'Send me a copy' block"
462
  msgstr "Envia'm una còpia"
463
 
464
- #: contact_form.php:1560
465
  #, fuzzy
466
  msgid "Activate for network"
467
  msgstr "Plugin activat"
468
 
469
- #: contact_form.php:1651
470
  msgid "Agreement checkbox"
471
  msgstr ""
472
 
473
- #: contact_form.php:1651
474
  msgid "Required checkbox for submitting the form"
475
  msgstr ""
476
 
477
- #: contact_form.php:1652
478
  msgid "Optional checkbox"
479
  msgstr ""
480
 
481
- #: contact_form.php:1652
482
  msgid "Optional checkbox, the results of which will be displayed in email"
483
  msgstr ""
484
 
485
- #: contact_form.php:1670
486
  msgid "Delete an attachment file from the server after the email is sent"
487
  msgstr ""
488
 
489
- #: contact_form.php:1676
490
  msgid "Email in HTML format sending"
491
  msgstr ""
492
 
493
- #: contact_form.php:1680
494
  msgid "Display additional info in the email"
495
  msgstr "Mostra informació addicional al correu electrònic,"
496
 
497
- #: contact_form.php:1686
498
  #, fuzzy
499
  msgid "Sent from (IP address)"
500
  msgstr "Enviat des de (adreça IP)"
501
 
502
- #: contact_form.php:1686
503
  #, fuzzy
504
  msgid "Example: Sent from (IP address):\t127.0.0.1"
505
  msgstr "Enviat des de (adreça IP)"
506
 
507
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
508
  msgid "Date/Time"
509
  msgstr "Data/hora"
510
 
511
- #: contact_form.php:1687
512
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
513
  msgstr ""
514
 
515
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
516
  msgid "Sent from (referer)"
517
  msgstr "Enviat des de (referent)"
518
 
519
- #: contact_form.php:1688
520
  msgid ""
521
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
522
  msgstr ""
523
 
524
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
525
  msgid "Using (user agent)"
526
  msgstr "Usant (user agent)"
527
 
528
- #: contact_form.php:1689
529
  msgid ""
530
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
531
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
532
  msgstr ""
533
 
534
- #: contact_form.php:1694
535
  msgid "Language settings for the field names in the form"
536
  msgstr "Configuració de la llengua als noms dels camps del formulari"
537
 
538
- #: contact_form.php:1703
539
  msgid "Add a language"
540
  msgstr "Afegeix lengua"
541
 
542
- #: contact_form.php:1707
543
  msgid "Change the names of the contact form fields and error messages"
544
  msgstr ""
545
  "Modifica els noms dels camps i els missatges d'error del formulari de "
546
  "contacte"
547
 
548
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
549
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
550
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
551
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
552
- #: contact_form.php:2132 contact_form.php:2137
553
  msgid "Default"
554
  msgstr "Per defecte"
555
 
556
- #: contact_form.php:1725 contact_form.php:1763
557
  msgid "click to expand/hide the list"
558
  msgstr ""
559
 
560
- #: contact_form.php:1734 contact_form.php:1772
561
  #, fuzzy
562
  msgid "Tips below the Attachment block"
563
  msgstr "Consells del blocatge de l'adjunt"
564
 
565
- #: contact_form.php:1737 contact_form.php:1775
566
  msgid "Error message for the Name field"
567
  msgstr "Missatge d'error per al camp 'Nom'"
568
 
569
- #: contact_form.php:1738 contact_form.php:1776
570
  msgid "Error message for the Address field"
571
  msgstr "Missatge d'error per al camp 'Adreça'"
572
 
573
- #: contact_form.php:1739 contact_form.php:1777
574
  msgid "Error message for the Email field"
575
  msgstr "Missatge d'error per al camp 'Adreça de correu electrònic'"
576
 
577
- #: contact_form.php:1740 contact_form.php:1778
578
  msgid "Error message for the Phone field"
579
  msgstr "Missatge d'error per al camp 'Telèfon\""
580
 
581
- #: contact_form.php:1741 contact_form.php:1779
582
  msgid "Error message for the Subject field"
583
  msgstr "Missatge d'error per al camp 'Assumpte'"
584
 
585
- #: contact_form.php:1742 contact_form.php:1780
586
  msgid "Error message for the Message field"
587
  msgstr "Missatge d'error per al camp 'Missatge'"
588
 
589
- #: contact_form.php:1743 contact_form.php:1781
590
  msgid "Error message about the file type for the Attachment field"
591
  msgstr "Missatge d'error sobre el tipus de per al camp 'Adjunt'"
592
 
593
- #: contact_form.php:1744 contact_form.php:1782
594
  msgid ""
595
  "Error message while uploading a file for the Attachment field to the server"
596
  msgstr "Missatge d'error al carregar al servidor un fitxer per al camp Adjunt"
597
 
598
- #: contact_form.php:1745 contact_form.php:1783
599
  msgid "Error message while moving the file for the Attachment field"
600
  msgstr "Missatge d'error al mourerun fitxer per al camp Adjunt"
601
 
602
- #: contact_form.php:1746 contact_form.php:1784
603
  msgid "Error message when file size limit for the Attachment field is exceeded"
604
  msgstr ""
605
  "Missatge d'error al superar el límit de mida de fitxer per al camp Adjunt"
606
 
607
- #: contact_form.php:1747 contact_form.php:1785
608
  msgid "Error message for the Captcha field"
609
  msgstr "Missatge d'error al camp Captcha"
610
 
611
- #: contact_form.php:1748 contact_form.php:1786
612
  msgid "Error message for the whole form"
613
  msgstr "Missatge d'error a tot el formulari"
614
 
615
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
616
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
617
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
618
- #: contact_form.php:3540
619
  msgid "Use shortcode"
620
  msgstr "useu un codi curt"
621
 
622
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
623
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
624
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
625
- #: contact_form.php:3540
626
  msgid "for this language"
627
  msgstr "Per aquesta llengua"
628
 
629
- #: contact_form.php:1799
630
  #, fuzzy
631
  msgid "Use the changed names of the contact form fields in the email"
632
  msgstr ""
633
  "Modifica els noms dels camps i els missatges d'error del formulari de "
634
  "contacte"
635
 
636
- #: contact_form.php:1805
637
  msgid "Action after email is sent"
638
  msgstr "Accions després d'enviar un correu electrònic."
639
 
640
- #: contact_form.php:1807
641
  msgid "Display text"
642
  msgstr "Mostra el text"
643
 
644
- #: contact_form.php:1821 contact_form.php:1835
645
  msgid "Text"
646
  msgstr "Text"
647
 
648
- #: contact_form.php:1846
649
  msgid "Redirect to the page"
650
  msgstr "Redirigir a la pàgina"
651
 
652
- #: contact_form.php:1847
653
  msgid "Url"
654
  msgstr "Url"
655
 
656
- #: contact_form.php:1858
657
  msgid "Add field 'Reply-To' to the email header"
658
  msgstr ""
659
 
660
- #: contact_form.php:1860
661
  msgid "Field 'Reply-To' will be initialized by user email"
662
  msgstr ""
663
 
664
- #: contact_form.php:1864
665
  msgid "Auto Response"
666
  msgstr ""
667
 
668
- #: contact_form.php:1868
669
  #, php-format
670
  msgid ""
671
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -673,183 +673,195 @@ msgid ""
673
  "name."
674
  msgstr ""
675
 
676
- #: contact_form.php:1890 contact_form.php:2389
677
  msgid "Save Changes"
678
  msgstr "Desar els canvis"
679
 
680
- #: contact_form.php:1903
681
  #, php-format
682
  msgid ""
683
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
684
  msgstr ""
685
 
686
- #: contact_form.php:1903 contact_form.php:1912
687
  msgid "Form layout"
688
  msgstr ""
689
 
690
- #: contact_form.php:1903 contact_form.php:1924
691
  #, fuzzy
692
  msgid "Submit position"
693
  msgstr "Enviar"
694
 
695
- #: contact_form.php:1916
696
  msgid "One column"
697
  msgstr ""
698
 
699
- #: contact_form.php:1919
700
  msgid "Two columns"
701
  msgstr ""
702
 
703
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
704
- #: contact_form.php:1980
705
  msgid "Left"
706
  msgstr ""
707
 
708
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
709
- #: contact_form.php:1986
710
  msgid "Right"
711
  msgstr ""
712
 
713
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
714
  msgid "Form align"
715
  msgstr ""
716
 
717
- #: contact_form.php:1950 contact_form.php:1983
718
  msgid "Center"
719
  msgstr ""
720
 
721
- #: contact_form.php:1958
722
  #, fuzzy
723
  msgid "Labels position"
724
  msgstr "Enviar"
725
 
726
- #: contact_form.php:1962
727
  msgid "Top"
728
  msgstr ""
729
 
730
- #: contact_form.php:1971
731
  msgid "Bottom"
732
  msgstr ""
733
 
734
- #: contact_form.php:1976
735
  msgid "Labels align"
736
  msgstr ""
737
 
738
- #: contact_form.php:1991
739
  msgid "Errors output"
740
  msgstr "Errors de sortida"
741
 
742
- #: contact_form.php:1994
743
  msgid "Display error messages"
744
  msgstr "Mostra els missatges d'error"
745
 
746
- #: contact_form.php:1995
747
  msgid "Color of the input field errors."
748
  msgstr "Color dels errors al camp d'entrada"
749
 
750
- #: contact_form.php:1996
751
  msgid "Display error messages & color of the input field errors"
752
  msgstr "Mostra els missatges d'error i el color dels errors del camp d'entrada"
753
 
754
- #: contact_form.php:2001
755
  msgid "Add placeholder to the input blocks"
756
  msgstr "Afegeix marcador de posició als blocs d'entrada"
757
 
758
- #: contact_form.php:2007
759
  msgid "Add tooltips"
760
  msgstr "Afegir consells sobre les eines"
761
 
762
- #: contact_form.php:2021
763
  msgid "Email address"
764
  msgstr "Adreça de correu electrònic:"
765
 
766
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
767
  msgid "Phone Number"
768
  msgstr "Nombre de telèfon"
769
 
770
- #: contact_form.php:2052
771
  msgid "Style options"
772
  msgstr "Opcions d'estil"
773
 
774
- #: contact_form.php:2056
775
  msgid "Text color"
776
  msgstr "Color del text"
777
 
778
- #: contact_form.php:2061
779
  msgid "Label text color"
780
  msgstr "Color del text de l'etiqeta"
781
 
782
- #: contact_form.php:2066
783
  msgid "Placeholder color"
784
  msgstr "Color del marcador de posició"
785
 
786
- #: contact_form.php:2071
787
  msgid "Errors color"
788
  msgstr "Color dels errors"
789
 
790
- #: contact_form.php:2076
791
  msgid "Error text color"
792
  msgstr "Color del text d'error"
793
 
794
- #: contact_form.php:2081
795
  msgid "Background color of the input field errors"
796
  msgstr "Color de fons dels errors del camp d'entrada"
797
 
798
- #: contact_form.php:2086
799
  msgid "Border color of the input field errors"
800
  msgstr "Color de la vora dels errors del camp d'entrada"
801
 
802
- #: contact_form.php:2091
803
  msgid "Placeholder color of the input field errors"
804
  msgstr "Color del marcador de posició dels errors del camp d'entrada"
805
 
806
- #: contact_form.php:2096
807
  msgid "Input fields"
808
  msgstr "Visualitza l'adjunt"
809
 
810
- #: contact_form.php:2101
811
  msgid "Input fields background color"
812
  msgstr "Color de fons dels camps d'entrada"
813
 
814
- #: contact_form.php:2106
815
  msgid "Text fields color"
816
  msgstr "Color dels camps de text"
817
 
818
- #: contact_form.php:2110
819
  msgid "Border width in px, numbers only"
820
  msgstr "Ample de vora en px, sols nombres"
821
 
822
- #: contact_form.php:2115 contact_form.php:2139
823
  msgid "Border color"
824
  msgstr "Color de la vora"
825
 
826
- #: contact_form.php:2120
827
  msgid "Submit button"
828
  msgstr "Enviar"
829
 
830
  # #: contact_form.php:928
831
- #: contact_form.php:2124
832
  msgid "Width in px, numbers only"
833
  msgstr "Ample en px, sols nombres"
834
 
835
- #: contact_form.php:2129
836
  msgid "Button color"
837
  msgstr "Color del botó"
838
 
839
- #: contact_form.php:2134
840
  msgid "Button text color"
841
  msgstr "Color del text del botó"
842
 
843
- #: contact_form.php:2163
844
  #, fuzzy
845
  msgid "Contact Form | Preview"
846
  msgstr "Contact Form Pro | Vista prèvia"
847
 
848
- #: contact_form.php:2164
849
  msgid "Drag the necessary field to sort fields."
850
  msgstr ""
851
 
852
- #: contact_form.php:2376
853
  #, fuzzy
854
  msgid ""
855
  "If you would like to add the Contact Form to your website, just copy and "
@@ -858,23 +870,23 @@ msgstr ""
858
  "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el "
859
  "seu missatge, pàgina o widget:"
860
 
861
- #: contact_form.php:2504
862
  msgid "Sorry, email message could not be delivered."
863
  msgstr "Ho sentim, el seu e-mail no ha pogut ser lliurat."
864
 
865
- #: contact_form.php:3094 contact_form.php:3096
866
  msgid "Sent from (ip address)"
867
  msgstr "Enviat des de (adreça IP)"
868
 
869
- #: contact_form.php:3124
870
  msgid "Contact from"
871
  msgstr "Contact from"
872
 
873
- #: contact_form.php:3129 contact_form.php:3178
874
  msgid "Site"
875
  msgstr "Lloc"
876
 
877
- #: contact_form.php:3308
878
  msgid ""
879
  "If you can see this MIME, it means that the MIME type is not supported by "
880
  "your email client!"
@@ -882,68 +894,60 @@ msgstr ""
882
  "Si pot veure aquest MIME, vol dir que el tipus MIME no és compatible amb el "
883
  "seu client de correu electrònic!"
884
 
885
- #: contact_form.php:3391
886
  msgid "FAQ"
887
  msgstr "FAQ"
888
 
889
- #: contact_form.php:3392
890
  msgid "Support"
891
  msgstr "Suport"
892
 
893
- #: contact_form.php:3441
894
  msgid "Are you sure that you want to delete this language data?"
895
  msgstr "Està vostè segur que vol esborrar aquest idioma?"
896
 
897
- #: contact_form.php:3462
898
  #, fuzzy
899
  msgid "Add multiple forms"
900
  msgstr "Afegir consells sobre les eines"
901
 
902
- #: contact_form.php:3462
903
  msgid ""
904
  "Install Contact Form Multi plugin to create unlimited number of contact "
905
  "forms."
906
  msgstr ""
907
 
908
- #: contact_form.php:3467
909
  #, fuzzy
910
  msgid "Learn more"
911
  msgstr "Llegir més"
912
 
913
- #: contact_form.php:3693
914
  msgid "Close notice"
915
  msgstr ""
916
 
917
- #: contact_form.php:3698
918
  msgid "allows to store your messages to the database."
919
  msgstr ""
920
 
921
- #: contact_form.php:3699
922
  msgid "Manage messages that have been sent from your website."
923
  msgstr ""
924
 
925
- #: contact_form.php:3702
926
  msgid "Learn More"
927
  msgstr ""
928
 
929
- #: contact_form.php:3762
930
  #, fuzzy
931
  msgid "Contact form"
932
  msgstr "Contact from"
933
 
934
- #: contact_form.php:3775 contact_form.php:3785
935
  #, fuzzy
936
  msgid "Language"
937
  msgstr "Afegeix lengua"
938
 
939
- #: includes/deprecated.php:168
940
- #, php-format
941
- msgid ""
942
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
943
- "replace it with %3s. If you close this message it'll appear again after "
944
- "deprecated shortcode reuse."
945
- msgstr ""
946
-
947
  #~ msgid "Name:"
948
  #~ msgstr "Nom:"
949
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:15+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Kenneth <kenneth@snollocer.net>\n"
9
  "Language: ca_ES\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:37 contact_form.php:1064
20
  msgid "Contact Form Settings"
21
  msgstr "Opcions Contact Form"
22
 
23
+ #: contact_form.php:37
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
28
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
29
+ #: contact_form.php:3181 contact_form.php:3227
30
  msgid "Name"
31
  msgstr "Nom"
32
 
33
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
34
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
35
+ #: contact_form.php:3233
36
  msgid "Address"
37
  msgstr "Adreça:"
38
 
39
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
40
+ #: contact_form.php:1765
41
  msgid "Email Address"
42
  msgstr "Adreça de correu electrònic:"
43
 
44
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
45
+ #: contact_form.php:1766
46
  #, fuzzy
47
  msgid "Phone number"
48
  msgstr "Nombre de telèfon"
49
 
50
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
51
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
52
+ #: contact_form.php:3242
53
  msgid "Subject"
54
  msgstr "Assumpte"
55
 
56
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
57
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
58
+ #: contact_form.php:3246
59
  msgid "Message"
60
  msgstr "MIssatge"
61
 
62
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
63
+ #: contact_form.php:2058
64
  msgid "Attachment"
65
  msgstr "Adjunt:"
66
 
67
+ #: contact_form.php:287
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
72
  "Formats de fitxer suportats: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
76
  msgid "Send me a copy"
77
  msgstr "Envia'm una còpia"
78
 
79
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
80
  msgid "Submit"
81
  msgstr "Enviar"
82
 
83
+ #: contact_form.php:290
84
  msgid "Your name is required."
85
  msgstr "El seu nom es obligatori."
86
 
87
+ #: contact_form.php:291
88
  msgid "Address is required."
89
  msgstr "Una adreça vàlida és obligatòria."
90
 
91
+ #: contact_form.php:292
92
  msgid "A valid email address is required."
93
  msgstr "Una Adreça de correu electrònic és obligatòria."
94
 
95
+ #: contact_form.php:293
96
  msgid "Phone number is required."
97
  msgstr "El seu nombre de telèfon és obligatori."
98
 
99
+ #: contact_form.php:294
100
  msgid "Subject is required."
101
  msgstr "L'assumpte és obligatori."
102
 
103
+ #: contact_form.php:295
104
  msgid "Message text is required."
105
  msgstr "El missatge és obligatori."
106
 
107
+ #: contact_form.php:296
108
  msgid "File format is not valid."
109
  msgstr "El format de l'adjunt és incorrecte."
110
 
111
+ #: contact_form.php:297
112
  msgid "File upload error."
113
  msgstr "Error de càrrega del fitxer"
114
 
115
+ #: contact_form.php:298
116
  msgid "The file could not be uploaded."
117
  msgstr "El fitxer no ha pogut ser carregat"
118
 
119
+ #: contact_form.php:299
120
  msgid "This file is too large."
121
  msgstr "Aquest document és massa gran."
122
 
123
+ #: contact_form.php:300
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Si us plau completi el CAPTCHA"
126
 
127
+ #: contact_form.php:301
128
  msgid "Please make corrections below and try again."
129
  msgstr "Si us plau, corregeixi les dades i provi un altre cop."
130
 
131
+ #: contact_form.php:303
132
  msgid "Thank you for contacting us."
133
  msgstr "Gràcies per contactar amb nosaltres"
134
 
135
+ #: contact_form.php:759 contact_form.php:1021
136
  msgid "Settings saved."
137
  msgstr "Configuració desada."
138
 
139
+ #: contact_form.php:966
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
+ #: contact_form.php:976
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
150
  "Si l'opció de 'redireccionament a la pàgina' està seleccionat llavors el "
151
  "camp URL ha d'estar en el següent format"
152
 
153
+ #: contact_form.php:983
154
  #, fuzzy
155
  msgid "Such user does not exist."
156
  msgstr "Usuari inexistent. Els canvis no s'han desat."
157
 
158
+ #: contact_form.php:993
159
  #, fuzzy
160
  msgid ""
161
  "Please enter a valid email address in the 'Use this email address' field."
163
  "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
164
  "no s'han desat."
165
 
166
+ #: contact_form.php:1001
167
  #, fuzzy
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
171
  "no s'han desat."
172
 
173
+ #: contact_form.php:1023
174
  #, fuzzy
175
  msgid "Settings are not saved."
176
  msgstr "Configuració desada."
177
 
178
+ #: contact_form.php:1061
179
  msgid "All plugin settings were restored."
180
  msgstr ""
181
 
182
+ #: contact_form.php:1067
183
  msgid "How to Use Step-by-step Instruction"
184
  msgstr ""
185
 
186
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
187
  msgid "Settings"
188
  msgstr "Configuració"
189
 
190
+ #: contact_form.php:1071
191
  #, fuzzy
192
  msgid "Additional settings"
193
  msgstr "Opcions addicionals"
194
 
195
+ #: contact_form.php:1072
196
  msgid "Appearance"
197
  msgstr ""
198
 
199
+ #: contact_form.php:1073
200
  msgid "Custom code"
201
  msgstr ""
202
 
203
+ #: contact_form.php:1074
204
  msgid "Go PRO"
205
  msgstr ""
206
 
207
+ #: contact_form.php:1085
208
  msgid "Notice"
209
  msgstr ""
210
 
211
+ #: contact_form.php:1089
212
  msgid "NEW_FORM"
213
  msgstr ""
214
 
215
+ #: contact_form.php:1090
216
  msgid ""
217
  "If you want to create multiple contact forms, please install the Contact "
218
  "Form Multi plugin."
219
  msgstr ""
220
 
221
+ #: contact_form.php:1099
222
  #, fuzzy, php-format
223
  msgid ""
224
  "If you would like to add a Contact Form to your page or post, please use %s "
227
  "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el "
228
  "seu missatge, pàgina o widget:"
229
 
230
+ #: contact_form.php:1105
231
  #, php-format
232
  msgid ""
233
  "You can add the Contact Form to your page or post by clicking on %s button "
236
  "language."
237
  msgstr ""
238
 
239
+ #: contact_form.php:1114
240
  msgid ""
241
  "If you leave the fields empty, the messages will be sent to the email "
242
  "address specified during registration."
244
  "Si la informació d'aquest camp queda buida, s'usarà l'adreça especificada "
245
  "durant el registre."
246
 
247
+ #: contact_form.php:1117
248
  #, fuzzy
249
  msgid "The user's email address"
250
  msgstr "Adreça de correu electrònic de l'usuari:"
251
 
252
+ #: contact_form.php:1121
253
  #, fuzzy
254
  msgid "Select a username"
255
  msgstr "Seleccioni un nom d'usuari"
256
 
257
+ #: contact_form.php:1134
258
  #, fuzzy
259
  msgid ""
260
  "Select a username of the person who should get the messages from the contact "
261
  "form."
262
  msgstr "Introdueixi el nom de l'usuari que rebrà missatges des de contact form"
263
 
264
+ #: contact_form.php:1138
265
  #, fuzzy
266
  msgid "Use this email address"
267
  msgstr "Usi aquesta adreça de correu electrònic::"
268
 
269
+ #: contact_form.php:1142
270
  #, fuzzy
271
  msgid "Enter the email address for receiving messages"
272
  msgstr ""
273
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
274
 
275
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
276
+ #: contact_form.php:1957 contact_form.php:3514
277
  msgid "Close"
278
  msgstr ""
279
 
280
+ #: contact_form.php:1153
281
  msgid "Add department selectbox to the contact form"
282
  msgstr ""
283
 
284
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
285
+ #: contact_form.php:2163
286
  msgid "If you upgrade to Pro version all your settings will be saved."
287
  msgstr ""
288
 
289
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
290
+ #: contact_form.php:1878 contact_form.php:2170
291
  msgid "Upgrade to Pro"
292
  msgstr ""
293
 
294
+ #: contact_form.php:1176
295
  msgid "Save emails to the database"
296
  msgstr ""
297
 
298
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
299
  msgid "Using"
300
  msgstr ""
301
 
302
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
303
+ #: contact_form.php:1623
304
  msgid "Please activate the appropriate option on"
305
  msgstr ""
306
 
307
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
308
+ #: contact_form.php:1626
309
  #, fuzzy
310
  msgid "settings page"
311
  msgstr "Configuració extra"
312
 
313
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
314
+ #: contact_form.php:1633
315
  #, fuzzy
316
  msgid "Activate"
317
  msgstr "Captcha activat"
318
 
319
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
320
+ #: contact_form.php:1638
321
  msgid "Download"
322
  msgstr "Descarregar"
323
 
324
+ #: contact_form.php:1222
325
  msgid "Sending method"
326
  msgstr ""
327
 
328
+ #: contact_form.php:1227
329
  msgid "Wp-mail"
330
  msgstr "Wp-mail"
331
 
332
+ #: contact_form.php:1229
333
  #, fuzzy
334
  msgid "You can use the Wordpress wp_mail function for mailing"
335
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
336
 
337
+ #: contact_form.php:1232
338
  msgid "Mail"
339
  msgstr "Mail"
340
 
341
+ #: contact_form.php:1234
342
  #, fuzzy
343
  msgid "You can use the PHP mail function for mailing"
344
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
345
 
346
+ #: contact_form.php:1239
347
  msgid "'FROM' field"
348
  msgstr ""
349
 
350
+ #: contact_form.php:1255
351
  msgid "User name"
352
  msgstr ""
353
 
354
+ #: contact_form.php:1257
355
  #, fuzzy
356
  msgid ""
357
  "The name of the user who fills the form will be used in the field 'From'."
359
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
360
  "posar al camp 'From'."
361
 
362
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
363
  msgid "Email"
364
  msgstr "Adreça de correu electrònic"
365
 
366
+ #: contact_form.php:1279
367
  msgid "User email"
368
  msgstr ""
369
 
370
+ #: contact_form.php:1281
371
  msgid ""
372
  "The email address of the user who fills the form will be used in the field "
373
  "'From'."
375
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
376
  "posar al camp 'From'."
377
 
378
+ #: contact_form.php:1290
379
  msgid ""
380
  "If this option is changed, email messages may be moved to the spam folder or "
381
  "email delivery failures may occur."
382
  msgstr ""
383
 
384
+ #: contact_form.php:1299
385
  #, fuzzy
386
  msgid "Required symbol"
387
  msgstr "Camps requerits"
388
 
389
+ #: contact_form.php:1309
390
  msgid "Fields"
391
  msgstr ""
392
 
393
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
394
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
395
  msgid "Used"
396
  msgstr ""
397
 
398
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
399
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
400
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
401
  #, fuzzy
402
  msgid "Required"
403
  msgstr "Camps requerits"
404
 
405
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
406
+ #: contact_form.php:1445 contact_form.php:1469
407
  msgid "Visible"
408
  msgstr ""
409
 
410
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
411
+ #: contact_form.php:1449 contact_form.php:1473
412
  msgid "Disabled for editing"
413
  msgstr ""
414
 
415
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
416
+ #: contact_form.php:1477
417
  msgid "Field's default value"
418
  msgstr ""
419
 
420
+ #: contact_form.php:1322
421
  msgid "Department selectbox"
422
  msgstr ""
423
 
424
+ #: contact_form.php:1354
425
  msgid "Use User's name as a default value if the user is logged in."
426
  msgstr ""
427
 
428
+ #: contact_form.php:1355 contact_form.php:1415
429
  msgid ""
430
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
431
  "in users."
432
  msgstr ""
433
 
434
+ #: contact_form.php:1361
435
  msgid "Location selectbox"
436
  msgstr ""
437
 
438
+ #: contact_form.php:1414
439
  msgid "Use User's email as a default value if the user is logged in."
440
  msgstr ""
441
 
442
+ #: contact_form.php:1498
443
  msgid "Attachment block"
444
  msgstr "Adjunt blocat"
445
 
446
+ #: contact_form.php:1500
447
  msgid "Users can attach the following file formats"
448
  msgstr "Els usuaris poden adjuntar els següents formats d'arxiu"
449
 
450
+ #: contact_form.php:1518
451
  msgid "Add to the form"
452
  msgstr ""
453
 
454
+ #: contact_form.php:1523
455
  #, fuzzy
456
  msgid "Tips below the Attachment"
457
  msgstr "Consells del blocatge de l'adjunt"
458
 
459
+ #: contact_form.php:1530
460
  #, fuzzy
461
  msgid "'Send me a copy' block"
462
  msgstr "Envia'm una còpia"
463
 
464
+ #: contact_form.php:1558
465
  #, fuzzy
466
  msgid "Activate for network"
467
  msgstr "Plugin activat"
468
 
469
+ #: contact_form.php:1649
470
  msgid "Agreement checkbox"
471
  msgstr ""
472
 
473
+ #: contact_form.php:1649
474
  msgid "Required checkbox for submitting the form"
475
  msgstr ""
476
 
477
+ #: contact_form.php:1650
478
  msgid "Optional checkbox"
479
  msgstr ""
480
 
481
+ #: contact_form.php:1650
482
  msgid "Optional checkbox, the results of which will be displayed in email"
483
  msgstr ""
484
 
485
+ #: contact_form.php:1668
486
  msgid "Delete an attachment file from the server after the email is sent"
487
  msgstr ""
488
 
489
+ #: contact_form.php:1674
490
  msgid "Email in HTML format sending"
491
  msgstr ""
492
 
493
+ #: contact_form.php:1678
494
  msgid "Display additional info in the email"
495
  msgstr "Mostra informació addicional al correu electrònic,"
496
 
497
+ #: contact_form.php:1684
498
  #, fuzzy
499
  msgid "Sent from (IP address)"
500
  msgstr "Enviat des de (adreça IP)"
501
 
502
+ #: contact_form.php:1684
503
  #, fuzzy
504
  msgid "Example: Sent from (IP address):\t127.0.0.1"
505
  msgstr "Enviat des de (adreça IP)"
506
 
507
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
508
  msgid "Date/Time"
509
  msgstr "Data/hora"
510
 
511
+ #: contact_form.php:1685
512
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
513
  msgstr ""
514
 
515
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
516
  msgid "Sent from (referer)"
517
  msgstr "Enviat des de (referent)"
518
 
519
+ #: contact_form.php:1686
520
  msgid ""
521
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
522
  msgstr ""
523
 
524
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
525
  msgid "Using (user agent)"
526
  msgstr "Usant (user agent)"
527
 
528
+ #: contact_form.php:1687
529
  msgid ""
530
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
531
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
532
  msgstr ""
533
 
534
+ #: contact_form.php:1692
535
  msgid "Language settings for the field names in the form"
536
  msgstr "Configuració de la llengua als noms dels camps del formulari"
537
 
538
+ #: contact_form.php:1701
539
  msgid "Add a language"
540
  msgstr "Afegeix lengua"
541
 
542
+ #: contact_form.php:1705
543
  msgid "Change the names of the contact form fields and error messages"
544
  msgstr ""
545
  "Modifica els noms dels camps i els missatges d'error del formulari de "
546
  "contacte"
547
 
548
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
549
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
550
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
551
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
552
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
553
  msgid "Default"
554
  msgstr "Per defecte"
555
 
556
+ #: contact_form.php:1723 contact_form.php:1761
557
  msgid "click to expand/hide the list"
558
  msgstr ""
559
 
560
+ #: contact_form.php:1732 contact_form.php:1770
561
  #, fuzzy
562
  msgid "Tips below the Attachment block"
563
  msgstr "Consells del blocatge de l'adjunt"
564
 
565
+ #: contact_form.php:1735 contact_form.php:1773
566
  msgid "Error message for the Name field"
567
  msgstr "Missatge d'error per al camp 'Nom'"
568
 
569
+ #: contact_form.php:1736 contact_form.php:1774
570
  msgid "Error message for the Address field"
571
  msgstr "Missatge d'error per al camp 'Adreça'"
572
 
573
+ #: contact_form.php:1737 contact_form.php:1775
574
  msgid "Error message for the Email field"
575
  msgstr "Missatge d'error per al camp 'Adreça de correu electrònic'"
576
 
577
+ #: contact_form.php:1738 contact_form.php:1776
578
  msgid "Error message for the Phone field"
579
  msgstr "Missatge d'error per al camp 'Telèfon\""
580
 
581
+ #: contact_form.php:1739 contact_form.php:1777
582
  msgid "Error message for the Subject field"
583
  msgstr "Missatge d'error per al camp 'Assumpte'"
584
 
585
+ #: contact_form.php:1740 contact_form.php:1778
586
  msgid "Error message for the Message field"
587
  msgstr "Missatge d'error per al camp 'Missatge'"
588
 
589
+ #: contact_form.php:1741 contact_form.php:1779
590
  msgid "Error message about the file type for the Attachment field"
591
  msgstr "Missatge d'error sobre el tipus de per al camp 'Adjunt'"
592
 
593
+ #: contact_form.php:1742 contact_form.php:1780
594
  msgid ""
595
  "Error message while uploading a file for the Attachment field to the server"
596
  msgstr "Missatge d'error al carregar al servidor un fitxer per al camp Adjunt"
597
 
598
+ #: contact_form.php:1743 contact_form.php:1781
599
  msgid "Error message while moving the file for the Attachment field"
600
  msgstr "Missatge d'error al mourerun fitxer per al camp Adjunt"
601
 
602
+ #: contact_form.php:1744 contact_form.php:1782
603
  msgid "Error message when file size limit for the Attachment field is exceeded"
604
  msgstr ""
605
  "Missatge d'error al superar el límit de mida de fitxer per al camp Adjunt"
606
 
607
+ #: contact_form.php:1745 contact_form.php:1783
608
  msgid "Error message for the Captcha field"
609
  msgstr "Missatge d'error al camp Captcha"
610
 
611
+ #: contact_form.php:1746 contact_form.php:1784
612
  msgid "Error message for the whole form"
613
  msgstr "Missatge d'error a tot el formulari"
614
 
615
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
616
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
617
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
618
+ #: contact_form.php:3604
619
  msgid "Use shortcode"
620
  msgstr "useu un codi curt"
621
 
622
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
623
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
624
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
625
+ #: contact_form.php:3604
626
  msgid "for this language"
627
  msgstr "Per aquesta llengua"
628
 
629
+ #: contact_form.php:1797
630
  #, fuzzy
631
  msgid "Use the changed names of the contact form fields in the email"
632
  msgstr ""
633
  "Modifica els noms dels camps i els missatges d'error del formulari de "
634
  "contacte"
635
 
636
+ #: contact_form.php:1803
637
  msgid "Action after email is sent"
638
  msgstr "Accions després d'enviar un correu electrònic."
639
 
640
+ #: contact_form.php:1805
641
  msgid "Display text"
642
  msgstr "Mostra el text"
643
 
644
+ #: contact_form.php:1819 contact_form.php:1833
645
  msgid "Text"
646
  msgstr "Text"
647
 
648
+ #: contact_form.php:1844
649
  msgid "Redirect to the page"
650
  msgstr "Redirigir a la pàgina"
651
 
652
+ #: contact_form.php:1845
653
  msgid "Url"
654
  msgstr "Url"
655
 
656
+ #: contact_form.php:1856
657
  msgid "Add field 'Reply-To' to the email header"
658
  msgstr ""
659
 
660
+ #: contact_form.php:1858
661
  msgid "Field 'Reply-To' will be initialized by user email"
662
  msgstr ""
663
 
664
+ #: contact_form.php:1862
665
  msgid "Auto Response"
666
  msgstr ""
667
 
668
+ #: contact_form.php:1866
669
  #, php-format
670
  msgid ""
671
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
673
  "name."
674
  msgstr ""
675
 
676
+ #: contact_form.php:1888 contact_form.php:2419
677
  msgid "Save Changes"
678
  msgstr "Desar els canvis"
679
 
680
+ #: contact_form.php:1901
681
  #, php-format
682
  msgid ""
683
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
684
  msgstr ""
685
 
686
+ #: contact_form.php:1901 contact_form.php:1910
687
  msgid "Form layout"
688
  msgstr ""
689
 
690
+ #: contact_form.php:1901 contact_form.php:1922
691
  #, fuzzy
692
  msgid "Submit position"
693
  msgstr "Enviar"
694
 
695
+ #: contact_form.php:1914
696
  msgid "One column"
697
  msgstr ""
698
 
699
+ #: contact_form.php:1917
700
  msgid "Two columns"
701
  msgstr ""
702
 
703
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
704
+ #: contact_form.php:1998
705
  msgid "Left"
706
  msgstr ""
707
 
708
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
709
+ #: contact_form.php:2004
710
  msgid "Right"
711
  msgstr ""
712
 
713
+ #: contact_form.php:1934
714
+ msgid "Width"
715
+ msgstr ""
716
+
717
+ #: contact_form.php:1941
718
+ msgid "Custom"
719
+ msgstr ""
720
+
721
+ #: contact_form.php:1948
722
+ msgid "px"
723
+ msgstr ""
724
+
725
+ #: contact_form.php:1961
726
  msgid "Form align"
727
  msgstr ""
728
 
729
+ #: contact_form.php:1968 contact_form.php:2001
730
  msgid "Center"
731
  msgstr ""
732
 
733
+ #: contact_form.php:1976
734
  #, fuzzy
735
  msgid "Labels position"
736
  msgstr "Enviar"
737
 
738
+ #: contact_form.php:1980
739
  msgid "Top"
740
  msgstr ""
741
 
742
+ #: contact_form.php:1989
743
  msgid "Bottom"
744
  msgstr ""
745
 
746
+ #: contact_form.php:1994
747
  msgid "Labels align"
748
  msgstr ""
749
 
750
+ #: contact_form.php:2009
751
  msgid "Errors output"
752
  msgstr "Errors de sortida"
753
 
754
+ #: contact_form.php:2012
755
  msgid "Display error messages"
756
  msgstr "Mostra els missatges d'error"
757
 
758
+ #: contact_form.php:2013
759
  msgid "Color of the input field errors."
760
  msgstr "Color dels errors al camp d'entrada"
761
 
762
+ #: contact_form.php:2014
763
  msgid "Display error messages & color of the input field errors"
764
  msgstr "Mostra els missatges d'error i el color dels errors del camp d'entrada"
765
 
766
+ #: contact_form.php:2019
767
  msgid "Add placeholder to the input blocks"
768
  msgstr "Afegeix marcador de posició als blocs d'entrada"
769
 
770
+ #: contact_form.php:2025
771
  msgid "Add tooltips"
772
  msgstr "Afegir consells sobre les eines"
773
 
774
+ #: contact_form.php:2039
775
  msgid "Email address"
776
  msgstr "Adreça de correu electrònic:"
777
 
778
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
779
  msgid "Phone Number"
780
  msgstr "Nombre de telèfon"
781
 
782
+ #: contact_form.php:2070
783
  msgid "Style options"
784
  msgstr "Opcions d'estil"
785
 
786
+ #: contact_form.php:2074
787
  msgid "Text color"
788
  msgstr "Color del text"
789
 
790
+ #: contact_form.php:2079
791
  msgid "Label text color"
792
  msgstr "Color del text de l'etiqeta"
793
 
794
+ #: contact_form.php:2084
795
  msgid "Placeholder color"
796
  msgstr "Color del marcador de posició"
797
 
798
+ #: contact_form.php:2089
799
  msgid "Errors color"
800
  msgstr "Color dels errors"
801
 
802
+ #: contact_form.php:2094
803
  msgid "Error text color"
804
  msgstr "Color del text d'error"
805
 
806
+ #: contact_form.php:2099
807
  msgid "Background color of the input field errors"
808
  msgstr "Color de fons dels errors del camp d'entrada"
809
 
810
+ #: contact_form.php:2104
811
  msgid "Border color of the input field errors"
812
  msgstr "Color de la vora dels errors del camp d'entrada"
813
 
814
+ #: contact_form.php:2109
815
  msgid "Placeholder color of the input field errors"
816
  msgstr "Color del marcador de posició dels errors del camp d'entrada"
817
 
818
+ #: contact_form.php:2114
819
  msgid "Input fields"
820
  msgstr "Visualitza l'adjunt"
821
 
822
+ #: contact_form.php:2119
823
  msgid "Input fields background color"
824
  msgstr "Color de fons dels camps d'entrada"
825
 
826
+ #: contact_form.php:2124
827
  msgid "Text fields color"
828
  msgstr "Color dels camps de text"
829
 
830
+ #: contact_form.php:2128
831
  msgid "Border width in px, numbers only"
832
  msgstr "Ample de vora en px, sols nombres"
833
 
834
+ #: contact_form.php:2133 contact_form.php:2157
835
  msgid "Border color"
836
  msgstr "Color de la vora"
837
 
838
+ #: contact_form.php:2138
839
  msgid "Submit button"
840
  msgstr "Enviar"
841
 
842
  # #: contact_form.php:928
843
+ #: contact_form.php:2142
844
  msgid "Width in px, numbers only"
845
  msgstr "Ample en px, sols nombres"
846
 
847
+ #: contact_form.php:2147
848
  msgid "Button color"
849
  msgstr "Color del botó"
850
 
851
+ #: contact_form.php:2152
852
  msgid "Button text color"
853
  msgstr "Color del text del botó"
854
 
855
+ #: contact_form.php:2181
856
  #, fuzzy
857
  msgid "Contact Form | Preview"
858
  msgstr "Contact Form Pro | Vista prèvia"
859
 
860
+ #: contact_form.php:2182
861
  msgid "Drag the necessary field to sort fields."
862
  msgstr ""
863
 
864
+ #: contact_form.php:2408
865
  #, fuzzy
866
  msgid ""
867
  "If you would like to add the Contact Form to your website, just copy and "
870
  "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el "
871
  "seu missatge, pàgina o widget:"
872
 
873
+ #: contact_form.php:2536
874
  msgid "Sorry, email message could not be delivered."
875
  msgstr "Ho sentim, el seu e-mail no ha pogut ser lliurat."
876
 
877
+ #: contact_form.php:3137 contact_form.php:3139
878
  msgid "Sent from (ip address)"
879
  msgstr "Enviat des de (adreça IP)"
880
 
881
+ #: contact_form.php:3167
882
  msgid "Contact from"
883
  msgstr "Contact from"
884
 
885
+ #: contact_form.php:3172 contact_form.php:3221
886
  msgid "Site"
887
  msgstr "Lloc"
888
 
889
+ #: contact_form.php:3351
890
  msgid ""
891
  "If you can see this MIME, it means that the MIME type is not supported by "
892
  "your email client!"
894
  "Si pot veure aquest MIME, vol dir que el tipus MIME no és compatible amb el "
895
  "seu client de correu electrònic!"
896
 
897
+ #: contact_form.php:3434
898
  msgid "FAQ"
899
  msgstr "FAQ"
900
 
901
+ #: contact_form.php:3435
902
  msgid "Support"
903
  msgstr "Suport"
904
 
905
+ #: contact_form.php:3484
906
  msgid "Are you sure that you want to delete this language data?"
907
  msgstr "Està vostè segur que vol esborrar aquest idioma?"
908
 
909
+ #: contact_form.php:3505
910
  #, fuzzy
911
  msgid "Add multiple forms"
912
  msgstr "Afegir consells sobre les eines"
913
 
914
+ #: contact_form.php:3505
915
  msgid ""
916
  "Install Contact Form Multi plugin to create unlimited number of contact "
917
  "forms."
918
  msgstr ""
919
 
920
+ #: contact_form.php:3510
921
  #, fuzzy
922
  msgid "Learn more"
923
  msgstr "Llegir més"
924
 
925
+ #: contact_form.php:3751
926
  msgid "Close notice"
927
  msgstr ""
928
 
929
+ #: contact_form.php:3756
930
  msgid "allows to store your messages to the database."
931
  msgstr ""
932
 
933
+ #: contact_form.php:3757
934
  msgid "Manage messages that have been sent from your website."
935
  msgstr ""
936
 
937
+ #: contact_form.php:3760
938
  msgid "Learn More"
939
  msgstr ""
940
 
941
+ #: contact_form.php:3820
942
  #, fuzzy
943
  msgid "Contact form"
944
  msgstr "Contact from"
945
 
946
+ #: contact_form.php:3833 contact_form.php:3843
947
  #, fuzzy
948
  msgid "Language"
949
  msgstr "Afegeix lengua"
950
 
 
 
 
 
 
 
 
 
951
  #~ msgid "Name:"
952
  #~ msgstr "Nom:"
953
 
languages/contact-form-plugin-cs_CZ.mo CHANGED
Binary file
languages/contact-form-plugin-cs_CZ.po CHANGED
@@ -6,8 +6,8 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Contact Form\n"
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2017-02-27 16:22+0300\n"
10
- "PO-Revision-Date: 2017-02-27 16:22+0300\n"
11
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
12
  "Language-Team: www.pamadessoft.cz <info@pamadessoft.cz>\n"
13
  "Language: cs_CZ\n"
@@ -21,54 +21,54 @@ msgstr ""
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: contact_form.php:42 contact_form.php:1066
25
  msgid "Contact Form Settings"
26
  msgstr "Nastavenie kontaktního formuláře"
27
 
28
- #: contact_form.php:42
29
  msgid "Contact Form"
30
  msgstr "Kontaktní formulář"
31
 
32
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
33
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
34
- #: contact_form.php:3138 contact_form.php:3184
35
  msgid "Name"
36
  msgstr "Jméno"
37
 
38
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
39
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
40
- #: contact_form.php:3190
41
  msgid "Address"
42
  msgstr "Adresa"
43
 
44
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
45
- #: contact_form.php:1767
46
  msgid "Email Address"
47
  msgstr "Vaše emailová adresa"
48
 
49
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
50
- #: contact_form.php:1768
51
  msgid "Phone number"
52
  msgstr "Telefonní číslo"
53
 
54
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
55
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
56
- #: contact_form.php:3199
57
  msgid "Subject"
58
  msgstr "Předmět"
59
 
60
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
61
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
62
- #: contact_form.php:3203
63
  msgid "Message"
64
  msgstr "Zpráva"
65
 
66
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
67
- #: contact_form.php:2040
68
  msgid "Attachment"
69
  msgstr "Příloha:"
70
 
71
- #: contact_form.php:302
72
  msgid ""
73
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
74
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -76,71 +76,71 @@ msgstr ""
76
  "Podporované typy souborů: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
77
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
78
 
79
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
80
  msgid "Send me a copy"
81
  msgstr "Pošlete mi kopii této zprávy"
82
 
83
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
84
  msgid "Submit"
85
  msgstr "Odeslat"
86
 
87
- #: contact_form.php:305
88
  msgid "Your name is required."
89
  msgstr "Zadejte prosím své jméno"
90
 
91
- #: contact_form.php:306
92
  msgid "Address is required."
93
  msgstr "Vyžaduje se adresa."
94
 
95
- #: contact_form.php:307
96
  msgid "A valid email address is required."
97
  msgstr "Je vyžadována platná e-mailová adresa."
98
 
99
- #: contact_form.php:308
100
  msgid "Phone number is required."
101
  msgstr "Telefonní číslo je požadováno."
102
 
103
- #: contact_form.php:309
104
  msgid "Subject is required."
105
  msgstr "Předmět je povinné pole."
106
 
107
- #: contact_form.php:310
108
  msgid "Message text is required."
109
  msgstr "Text zprávy je vyžadován."
110
 
111
- #: contact_form.php:311
112
  msgid "File format is not valid."
113
  msgstr "Formát souboru není platný."
114
 
115
- #: contact_form.php:312
116
  msgid "File upload error."
117
  msgstr "Chyba odeslání souboru."
118
 
119
- #: contact_form.php:313
120
  msgid "The file could not be uploaded."
121
  msgstr "Soubor nelze odeslat."
122
 
123
- #: contact_form.php:314
124
  msgid "This file is too large."
125
  msgstr "Tento soubor je příliš velký."
126
 
127
- #: contact_form.php:315
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Prosím opište CAPTCHA text."
130
 
131
- #: contact_form.php:316
132
  msgid "Please make corrections below and try again."
133
  msgstr "Prosím opravte chyby a zkuste to znovu."
134
 
135
- #: contact_form.php:318
136
  msgid "Thank you for contacting us."
137
  msgstr "Děkujeme za zprávu, budeme Vás kontaktovat."
138
 
139
- #: contact_form.php:761 contact_form.php:1023
140
  msgid "Settings saved."
141
  msgstr "Nastavení bylo uloženo."
142
 
143
- #: contact_form.php:968
144
  msgid ""
145
  "Email 'FROM' field option was changed, which may cause email messages being "
146
  "moved to the spam folder or email delivery failures."
@@ -148,7 +148,7 @@ msgstr ""
148
  "E-mailu z pole byla změněna, což může způsobit, e-mailové zprávy přesouvány "
149
  "do spam složky nebo e-mailem dodání selhání."
150
 
151
- #: contact_form.php:978
152
  msgid ""
153
  "If the 'Redirect to page' option is selected then the URL field should be in "
154
  "the following format"
@@ -156,62 +156,62 @@ msgstr ""
156
  "Pokud je vybrána možnost 'Přesměrovat na stránku' pak pole URL by měla být v "
157
  "následujícím formátu"
158
 
159
- #: contact_form.php:985
160
  msgid "Such user does not exist."
161
  msgstr "Takový uživatel neexistuje."
162
 
163
- #: contact_form.php:995
164
  msgid ""
165
  "Please enter a valid email address in the 'Use this email address' field."
166
  msgstr ""
167
  "Zadejte platnou e-mailovou adresu do pole \"Použít tuto e-mailovou adresu\"."
168
 
169
- #: contact_form.php:1003
170
  msgid "Please enter a valid email address in the 'FROM' field."
171
  msgstr "Zadejte prosím platnou e-mailovou adresu do pole 'Od'."
172
 
173
- #: contact_form.php:1025
174
  msgid "Settings are not saved."
175
  msgstr "Nastavení se neuložilo."
176
 
177
- #: contact_form.php:1063
178
  msgid "All plugin settings were restored."
179
  msgstr "Výchozí nastavení byla obnovena."
180
 
181
- #: contact_form.php:1069
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr "NÁVOD KROK ZA KROKEM"
184
 
185
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
186
  msgid "Settings"
187
  msgstr "Nastavení"
188
 
189
- #: contact_form.php:1073
190
  msgid "Additional settings"
191
  msgstr "Další nastavení"
192
 
193
- #: contact_form.php:1074
194
  msgid "Appearance"
195
  msgstr "Vzhled"
196
 
197
- #: contact_form.php:1075
198
  msgid "Custom code"
199
  msgstr ""
200
 
201
- #: contact_form.php:1076
202
  msgid "Go PRO"
203
  msgstr "Získat verzi Pro"
204
 
205
- #: contact_form.php:1087
206
  #, fuzzy
207
  msgid "Notice"
208
  msgstr "UPOZORNĚNÍ:"
209
 
210
- #: contact_form.php:1091
211
  msgid "NEW_FORM"
212
  msgstr "NEW_FORM"
213
 
214
- #: contact_form.php:1092
215
  msgid ""
216
  "If you want to create multiple contact forms, please install the Contact "
217
  "Form Multi plugin."
@@ -219,7 +219,7 @@ msgstr ""
219
  "Pokud chcete vytvořit více kontaktních formulářů, nainstalujte si prosím "
220
  "kontaktní formulář Multi plugin."
221
 
222
- #: contact_form.php:1101
223
  #, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -228,7 +228,7 @@ msgstr ""
228
  "Pokud chcete na stránku přidat kontaktní formulář nebo příspěvek, použijte "
229
  "tlačítko %s"
230
 
231
- #: contact_form.php:1107
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -241,7 +241,7 @@ msgstr ""
241
  "tlačítko není zobrazeno, použijte krátký %s nebo %s kde * je zkratka pro "
242
  "jazyk formuláře kontaktu."
243
 
244
- #: contact_form.php:1116
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
@@ -249,16 +249,16 @@ msgstr ""
249
  "Pokud necháte pole prázdné, zprávy bude zaslána na e-mailovou adresu zadanou "
250
  "během registrace."
251
 
252
- #: contact_form.php:1119
253
  #, fuzzy
254
  msgid "The user's email address"
255
  msgstr "E-mailová adresa uživatele:"
256
 
257
- #: contact_form.php:1123
258
  msgid "Select a username"
259
  msgstr "Vyberte uživatelské jméno"
260
 
261
- #: contact_form.php:1136
262
  #, fuzzy
263
  msgid ""
264
  "Select a username of the person who should get the messages from the contact "
@@ -267,109 +267,109 @@ msgstr ""
267
  "Zadejte uživatelské jméno osoby, která by měla získat zprávy z kontaktního "
268
  "formuláře."
269
 
270
- #: contact_form.php:1140
271
  #, fuzzy
272
  msgid "Use this email address"
273
  msgstr "Použíte tento email::"
274
 
275
- #: contact_form.php:1144
276
  #, fuzzy
277
  msgid "Enter the email address for receiving messages"
278
  msgstr "Zadejte e-mailovou adresu chcete zprávy předávat."
279
 
280
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
281
- #: contact_form.php:1939 contact_form.php:3471
282
  msgid "Close"
283
  msgstr "Zavřít"
284
 
285
- #: contact_form.php:1155
286
  #, fuzzy
287
  msgid "Add department selectbox to the contact form"
288
  msgstr "Přidáte oddělení selectbox kontaktní formulář:"
289
 
290
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
291
- #: contact_form.php:2145
292
  msgid "If you upgrade to Pro version all your settings will be saved."
293
  msgstr "Pokud upgradujete na verzi Pro všechna nastavení uložit."
294
 
295
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
296
- #: contact_form.php:1880 contact_form.php:2152
297
  msgid "Upgrade to Pro"
298
  msgstr ""
299
 
300
- #: contact_form.php:1178
301
  msgid "Save emails to the database"
302
  msgstr "Ukládání e-mailů do databáze"
303
 
304
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
305
  msgid "Using"
306
  msgstr "Použití"
307
 
308
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
309
- #: contact_form.php:1625
310
  msgid "Please activate the appropriate option on"
311
  msgstr ""
312
 
313
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
314
- #: contact_form.php:1628
315
  #, fuzzy
316
  msgid "settings page"
317
  msgstr "stránku nastavení"
318
 
319
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
320
- #: contact_form.php:1635
321
  msgid "Activate"
322
  msgstr "Aktivovat"
323
 
324
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
325
- #: contact_form.php:1640
326
  msgid "Download"
327
  msgstr "Stáhnout"
328
 
329
- #: contact_form.php:1224
330
  msgid "Sending method"
331
  msgstr ""
332
 
333
- #: contact_form.php:1229
334
  msgid "Wp-mail"
335
  msgstr "Wp-mail"
336
 
337
- #: contact_form.php:1231
338
  #, fuzzy
339
  msgid "You can use the Wordpress wp_mail function for mailing"
340
  msgstr "Můžete použít funkci wp_mail pro korespondenci"
341
 
342
- #: contact_form.php:1234
343
  msgid "Mail"
344
  msgstr "E-mail"
345
 
346
- #: contact_form.php:1236
347
  #, fuzzy
348
  msgid "You can use the PHP mail function for mailing"
349
  msgstr "Můžete použít funkci wp_mail pro korespondenci"
350
 
351
- #: contact_form.php:1241
352
  msgid "'FROM' field"
353
  msgstr "'Pole od'"
354
 
355
- #: contact_form.php:1257
356
  msgid "User name"
357
  msgstr "Uživatelské jméno"
358
 
359
- #: contact_form.php:1259
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
362
  msgstr "Jméno uživatele, který vyplňuje formulář bude použit v poli \"Od\"."
363
 
364
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
365
  msgid "Email"
366
  msgstr "E-mail"
367
 
368
- #: contact_form.php:1281
369
  msgid "User email"
370
  msgstr "Používateľský email"
371
 
372
- #: contact_form.php:1283
373
  msgid ""
374
  "The email address of the user who fills the form will be used in the field "
375
  "'From'."
@@ -377,7 +377,7 @@ msgstr ""
377
  "E-mailovou adresu uživatele, který vyplňuje formulář bude použit v poli \"Od"
378
  "\"."
379
 
380
- #: contact_form.php:1292
381
  msgid ""
382
  "If this option is changed, email messages may be moved to the spam folder or "
383
  "email delivery failures may occur."
@@ -385,51 +385,51 @@ msgstr ""
385
  "Je-li tato možnost změněná, e-mailové zprávy mohou být přesunuty do složky "
386
  "Nevyžádaná pošta nebo může dojít k selhání doručení e-mailu."
387
 
388
- #: contact_form.php:1301
389
  msgid "Required symbol"
390
  msgstr "Symbol pro povinné položky"
391
 
392
- #: contact_form.php:1311
393
  msgid "Fields"
394
  msgstr "Pole"
395
 
396
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
397
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
398
  msgid "Used"
399
  msgstr "Použité"
400
 
401
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
402
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
403
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
404
  msgid "Required"
405
  msgstr "Vyžadované"
406
 
407
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
408
- #: contact_form.php:1447 contact_form.php:1471
409
  msgid "Visible"
410
  msgstr "Viditelný"
411
 
412
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
413
- #: contact_form.php:1451 contact_form.php:1475
414
  msgid "Disabled for editing"
415
  msgstr "Zakázáno pro editaci"
416
 
417
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
418
- #: contact_form.php:1479
419
  msgid "Field's default value"
420
  msgstr "Výchozí hodnota pole"
421
 
422
- #: contact_form.php:1324
423
  msgid "Department selectbox"
424
  msgstr "Poloha výběrového oddílu"
425
 
426
- #: contact_form.php:1356
427
  msgid "Use User's name as a default value if the user is logged in."
428
  msgstr ""
429
  "Uživatelské jméno používejte jako výchozí hodnotu, pokud je uživatel "
430
  "přihlášen."
431
 
432
- #: contact_form.php:1357 contact_form.php:1417
433
  msgid ""
434
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
435
  "in users."
@@ -437,100 +437,100 @@ msgstr ""
437
  "'Viditelné' a 'Skryté pro editaci' je možné použít pouze pro přihlášené "
438
  "uživatele."
439
 
440
- #: contact_form.php:1363
441
  msgid "Location selectbox"
442
  msgstr "Poloha výberového oddielu"
443
 
444
- #: contact_form.php:1416
445
  msgid "Use User's email as a default value if the user is logged in."
446
  msgstr ""
447
  "Pomocí e-mailu uživatele jako výchozí hodnotu, pokud uživatel je přihlášen."
448
 
449
- #: contact_form.php:1500
450
  msgid "Attachment block"
451
  msgstr "Blok příloh"
452
 
453
- #: contact_form.php:1502
454
  msgid "Users can attach the following file formats"
455
  msgstr "Uživatelé mohou připojit následující formáty souborů"
456
 
457
- #: contact_form.php:1520
458
  msgid "Add to the form"
459
  msgstr "Přidejte do formuláře"
460
 
461
- #: contact_form.php:1525
462
  msgid "Tips below the Attachment"
463
  msgstr "Tipy pod přílohu"
464
 
465
- #: contact_form.php:1532
466
  msgid "'Send me a copy' block"
467
  msgstr "Zobrazit blok 'Zaslat kopii'"
468
 
469
- #: contact_form.php:1560
470
  #, fuzzy
471
  msgid "Activate for network"
472
  msgstr "Aktivované pluginy"
473
 
474
- #: contact_form.php:1651
475
  msgid "Agreement checkbox"
476
  msgstr "Označení souhlasu"
477
 
478
- #: contact_form.php:1651
479
  msgid "Required checkbox for submitting the form"
480
  msgstr "Vyžaduje označení souhlasu při odeslání formuláře"
481
 
482
- #: contact_form.php:1652
483
  msgid "Optional checkbox"
484
  msgstr "Volitelné zaškrtávací políčko"
485
 
486
- #: contact_form.php:1652
487
  msgid "Optional checkbox, the results of which will be displayed in email"
488
  msgstr "Volitelné zaškrtávací políčko, jeho výsledek bude zobrazený v emailu"
489
 
490
- #: contact_form.php:1670
491
  msgid "Delete an attachment file from the server after the email is sent"
492
  msgstr "Odstranit soubor přílohy ze serveru, po odeslání e-mailu"
493
 
494
- #: contact_form.php:1676
495
  msgid "Email in HTML format sending"
496
  msgstr "Povolit HTML formátovaní"
497
 
498
- #: contact_form.php:1680
499
  msgid "Display additional info in the email"
500
  msgstr "Zobrazit další informace v e-mailu"
501
 
502
- #: contact_form.php:1686
503
  #, fuzzy
504
  msgid "Sent from (IP address)"
505
  msgstr "Odeslané z (ip adresa)"
506
 
507
- #: contact_form.php:1686
508
  msgid "Example: Sent from (IP address):\t127.0.0.1"
509
  msgstr "Příklad: Zaslané z (IP addresa):\t127.0.0.1"
510
 
511
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
512
  msgid "Date/Time"
513
  msgstr "Datum / Čas"
514
 
515
- #: contact_form.php:1687
516
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
517
  msgstr "Příklad: Datum / čas: \tsrpen 19, 2013 8:50 pm"
518
 
519
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
520
  msgid "Sent from (referer)"
521
  msgstr "Odesláno z"
522
 
523
- #: contact_form.php:1688
524
  #, fuzzy
525
  msgid ""
526
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
527
  msgstr "Příklad: Zaslané (odkaz):\thttp://bestwebsoft.com/contacts/contact-us/"
528
 
529
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
530
  msgid "Using (user agent)"
531
  msgstr "Použití (uživatelský agent)"
532
 
533
- #: contact_form.php:1689
534
  msgid ""
535
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
536
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -538,135 +538,135 @@ msgstr ""
538
  "Příklad: Použití (uživatel agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
539
  "AppleWebKit/537.36 (KHTML, jako Gecko) Chrome/28.0.1500.95 Safari/537.36"
540
 
541
- #: contact_form.php:1694
542
  msgid "Language settings for the field names in the form"
543
  msgstr "Nastavení jazyka pro názvy polí ve formuláři"
544
 
545
- #: contact_form.php:1703
546
  msgid "Add a language"
547
  msgstr "Přidání jazyka"
548
 
549
- #: contact_form.php:1707
550
  msgid "Change the names of the contact form fields and error messages"
551
  msgstr "Změnit názvy polí formuláře kontaktu a chybových zpráv"
552
 
553
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
554
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
555
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
556
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
557
- #: contact_form.php:2132 contact_form.php:2137
558
  msgid "Default"
559
  msgstr "Základní"
560
 
561
- #: contact_form.php:1725 contact_form.php:1763
562
  msgid "click to expand/hide the list"
563
  msgstr "klepněte na rozbalit nebo skrýt seznam"
564
 
565
- #: contact_form.php:1734 contact_form.php:1772
566
  msgid "Tips below the Attachment block"
567
  msgstr "Zobrazení tipů pod blokem příloh"
568
 
569
- #: contact_form.php:1737 contact_form.php:1775
570
  msgid "Error message for the Name field"
571
  msgstr "Chybová zpráva pro pole Jméno"
572
 
573
- #: contact_form.php:1738 contact_form.php:1776
574
  msgid "Error message for the Address field"
575
  msgstr "Chybová zpráva pro pole Adresa"
576
 
577
- #: contact_form.php:1739 contact_form.php:1777
578
  msgid "Error message for the Email field"
579
  msgstr "Chybová zpráva pro pole E-mail"
580
 
581
- #: contact_form.php:1740 contact_form.php:1778
582
  msgid "Error message for the Phone field"
583
  msgstr "Chybová zpráva pro pole Telefon"
584
 
585
- #: contact_form.php:1741 contact_form.php:1779
586
  msgid "Error message for the Subject field"
587
  msgstr "Chybová zpráva pro pole Předmět"
588
 
589
- #: contact_form.php:1742 contact_form.php:1780
590
  msgid "Error message for the Message field"
591
  msgstr "Chybová zpráva pro pole Zpráva"
592
 
593
- #: contact_form.php:1743 contact_form.php:1781
594
  msgid "Error message about the file type for the Attachment field"
595
  msgstr "Chybová zpráva o typu souboru pro pole Příloha"
596
 
597
- #: contact_form.php:1744 contact_form.php:1782
598
  msgid ""
599
  "Error message while uploading a file for the Attachment field to the server"
600
  msgstr "Chybová správa při neúspěšném nahrávání souboru na server"
601
 
602
- #: contact_form.php:1745 contact_form.php:1783
603
  msgid "Error message while moving the file for the Attachment field"
604
  msgstr "Chybová správa při neúspěšném přesunu souboru do pole Příloha"
605
 
606
- #: contact_form.php:1746 contact_form.php:1784
607
  msgid "Error message when file size limit for the Attachment field is exceeded"
608
  msgstr ""
609
  "Chybová zpráva při překročení omezení velikosti souboru pro pole Příloha"
610
 
611
- #: contact_form.php:1747 contact_form.php:1785
612
  msgid "Error message for the Captcha field"
613
  msgstr "Chybová zpráva pro pole Captcha"
614
 
615
- #: contact_form.php:1748 contact_form.php:1786
616
  msgid "Error message for the whole form"
617
  msgstr "Chybová zpráva pro celý formulář"
618
 
619
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
620
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
621
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
622
- #: contact_form.php:3540
623
  msgid "Use shortcode"
624
  msgstr "Použijte shortcode"
625
 
626
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
627
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
628
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
629
- #: contact_form.php:3540
630
  msgid "for this language"
631
  msgstr "pro tento jazyk"
632
 
633
- #: contact_form.php:1799
634
  msgid "Use the changed names of the contact form fields in the email"
635
  msgstr "Použít změněné názvy polí kontaktní formuláře v e-mailu"
636
 
637
- #: contact_form.php:1805
638
  msgid "Action after email is sent"
639
  msgstr "Akce po odeslání e-mailu"
640
 
641
- #: contact_form.php:1807
642
  msgid "Display text"
643
  msgstr "Zobrazený text"
644
 
645
- #: contact_form.php:1821 contact_form.php:1835
646
  msgid "Text"
647
  msgstr "Text"
648
 
649
- #: contact_form.php:1846
650
  msgid "Redirect to the page"
651
  msgstr "Přesměrování na stránku"
652
 
653
- #: contact_form.php:1847
654
  msgid "Url"
655
  msgstr "Url"
656
 
657
- #: contact_form.php:1858
658
  msgid "Add field 'Reply-To' to the email header"
659
  msgstr "Přidat pole 'Odpovědět komu' do záhlaví e-mailu"
660
 
661
- #: contact_form.php:1860
662
  msgid "Field 'Reply-To' will be initialized by user email"
663
  msgstr "Pole 'Odpovědět komu' bude inicializováno mailem uživatele"
664
 
665
- #: contact_form.php:1864
666
  msgid "Auto Response"
667
  msgstr "Automatická odpověď"
668
 
669
- #: contact_form.php:1868
670
  #, php-format
671
  msgid ""
672
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -676,181 +676,193 @@ msgstr ""
676
  "Můžete použít %%NAME%% zobrazení dat z pole e-mail a %%MESAGE%% zobrazení "
677
  "dat z pole zpráv stejně jako %%SITENAME%% zobrazit název blogu."
678
 
679
- #: contact_form.php:1890 contact_form.php:2389
680
  msgid "Save Changes"
681
  msgstr "Uložit změny"
682
 
683
- #: contact_form.php:1903
684
  #, php-format
685
  msgid ""
686
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
687
  msgstr ""
688
  "Prosím povolte JavaScript změnit '%s', '%s' možnosti a pro třídění pole."
689
 
690
- #: contact_form.php:1903 contact_form.php:1912
691
  msgid "Form layout"
692
  msgstr "Rozložení formuláře"
693
 
694
- #: contact_form.php:1903 contact_form.php:1924
695
  msgid "Submit position"
696
  msgstr "Potvrzovací tlačítko"
697
 
698
- #: contact_form.php:1916
699
  msgid "One column"
700
  msgstr "Jeden sloupec"
701
 
702
- #: contact_form.php:1919
703
  msgid "Two columns"
704
  msgstr "Dva sloupce"
705
 
706
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
707
- #: contact_form.php:1980
708
  msgid "Left"
709
  msgstr "Vlevo"
710
 
711
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
712
- #: contact_form.php:1986
713
  msgid "Right"
714
  msgstr "Vpravo"
715
 
716
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
717
  msgid "Form align"
718
  msgstr ""
719
 
720
- #: contact_form.php:1950 contact_form.php:1983
721
  msgid "Center"
722
  msgstr ""
723
 
724
- #: contact_form.php:1958
725
  #, fuzzy
726
  msgid "Labels position"
727
  msgstr "Potvrzovací tlačítko"
728
 
729
- #: contact_form.php:1962
730
  msgid "Top"
731
  msgstr ""
732
 
733
- #: contact_form.php:1971
734
  msgid "Bottom"
735
  msgstr ""
736
 
737
- #: contact_form.php:1976
738
  msgid "Labels align"
739
  msgstr ""
740
 
741
- #: contact_form.php:1991
742
  msgid "Errors output"
743
  msgstr "Chybový výstup"
744
 
745
- #: contact_form.php:1994
746
  msgid "Display error messages"
747
  msgstr "Zobrazit chybové zprávy"
748
 
749
- #: contact_form.php:1995
750
  msgid "Color of the input field errors."
751
  msgstr "Barva chyby vstupního pole."
752
 
753
- #: contact_form.php:1996
754
  msgid "Display error messages & color of the input field errors"
755
  msgstr "Zobrazí chybové zprávy & barvu chybujícího vstupního pole"
756
 
757
- #: contact_form.php:2001
758
  msgid "Add placeholder to the input blocks"
759
  msgstr "Přidání zástupného symbolu do vstupních bloků"
760
 
761
- #: contact_form.php:2007
762
  msgid "Add tooltips"
763
  msgstr "Přidat popisky"
764
 
765
- #: contact_form.php:2021
766
  msgid "Email address"
767
  msgstr "E-mailová adresa"
768
 
769
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
770
  msgid "Phone Number"
771
  msgstr "Tel. číslo"
772
 
773
- #: contact_form.php:2052
774
  msgid "Style options"
775
  msgstr "Nastavení stylů"
776
 
777
- #: contact_form.php:2056
778
  msgid "Text color"
779
  msgstr "Barva textu"
780
 
781
- #: contact_form.php:2061
782
  msgid "Label text color"
783
  msgstr "Označení barvy textu"
784
 
785
- #: contact_form.php:2066
786
  msgid "Placeholder color"
787
  msgstr "Zástupný symbol barva"
788
 
789
- #: contact_form.php:2071
790
  msgid "Errors color"
791
  msgstr "Barva chyby"
792
 
793
- #: contact_form.php:2076
794
  msgid "Error text color"
795
  msgstr "Barva textu chyby"
796
 
797
- #: contact_form.php:2081
798
  msgid "Background color of the input field errors"
799
  msgstr "Barva pozadí chybujícího vstupního pole"
800
 
801
- #: contact_form.php:2086
802
  msgid "Border color of the input field errors"
803
  msgstr "Barva ohraničení chybujícího vstupního pole"
804
 
805
- #: contact_form.php:2091
806
  msgid "Placeholder color of the input field errors"
807
  msgstr "Barva zástupného symbolu v chybujícím poli"
808
 
809
- #: contact_form.php:2096
810
  msgid "Input fields"
811
  msgstr "Vstupní pole"
812
 
813
- #: contact_form.php:2101
814
  msgid "Input fields background color"
815
  msgstr "Barva pozadí vstupního pole"
816
 
817
- #: contact_form.php:2106
818
  msgid "Text fields color"
819
  msgstr "Barva textových polí"
820
 
821
- #: contact_form.php:2110
822
  msgid "Border width in px, numbers only"
823
  msgstr "Šířka okraje v px, pouze čísla"
824
 
825
- #: contact_form.php:2115 contact_form.php:2139
826
  msgid "Border color"
827
  msgstr "Barva ohraničení"
828
 
829
- #: contact_form.php:2120
830
  msgid "Submit button"
831
  msgstr "Odesílací tlačítko"
832
 
833
- #: contact_form.php:2124
834
  msgid "Width in px, numbers only"
835
  msgstr "Šířka v px, pouze čísla"
836
 
837
- #: contact_form.php:2129
838
  msgid "Button color"
839
  msgstr "Barva tlačítka"
840
 
841
- #: contact_form.php:2134
842
  msgid "Button text color"
843
  msgstr "Barva textu tlačítka"
844
 
845
- #: contact_form.php:2163
846
  msgid "Contact Form | Preview"
847
  msgstr "Kontaktní formulář | Náhled"
848
 
849
- #: contact_form.php:2164
850
  msgid "Drag the necessary field to sort fields."
851
  msgstr "Přetažením změníte pořadí polí."
852
 
853
- #: contact_form.php:2376
854
  #, fuzzy
855
  msgid ""
856
  "If you would like to add the Contact Form to your website, just copy and "
@@ -859,23 +871,23 @@ msgstr ""
859
  "Pokud byste chtěli přidat kontaktní formulář na webu, stačí zkopírovat a "
860
  "vložit tento shortcode nebo stránky nebo widget:"
861
 
862
- #: contact_form.php:2504
863
  msgid "Sorry, email message could not be delivered."
864
  msgstr "Nelze doručit e-mailovou zprávu."
865
 
866
- #: contact_form.php:3094 contact_form.php:3096
867
  msgid "Sent from (ip address)"
868
  msgstr "Odeslané z (ip adresa)"
869
 
870
- #: contact_form.php:3124
871
  msgid "Contact from"
872
  msgstr "Kontaktní formulář"
873
 
874
- #: contact_form.php:3129 contact_form.php:3178
875
  msgid "Site"
876
  msgstr "Stránka"
877
 
878
- #: contact_form.php:3308
879
  msgid ""
880
  "If you can see this MIME, it means that the MIME type is not supported by "
881
  "your email client!"
@@ -883,23 +895,23 @@ msgstr ""
883
  "Pokud vidíte tento MIME, znamená to, že váš e-mailový klient nepodporuje typ "
884
  "MIME!"
885
 
886
- #: contact_form.php:3391
887
  msgid "FAQ"
888
  msgstr "Často kladené otázky"
889
 
890
- #: contact_form.php:3392
891
  msgid "Support"
892
  msgstr "Podpora"
893
 
894
- #: contact_form.php:3441
895
  msgid "Are you sure that you want to delete this language data?"
896
  msgstr "Jste si jisti, že chcete odstranit nastavení pro tento jazyk?"
897
 
898
- #: contact_form.php:3462
899
  msgid "Add multiple forms"
900
  msgstr "Přidat více formulářů"
901
 
902
- #: contact_form.php:3462
903
  msgid ""
904
  "Install Contact Form Multi plugin to create unlimited number of contact "
905
  "forms."
@@ -907,42 +919,34 @@ msgstr ""
907
  "Pokud chcete vytvořit více kontaktních formulářů, nainstalujte si prosím "
908
  "kontaktní formulář Multi plugin."
909
 
910
- #: contact_form.php:3467
911
  msgid "Learn more"
912
  msgstr "Více informací"
913
 
914
- #: contact_form.php:3693
915
  msgid "Close notice"
916
  msgstr ""
917
 
918
- #: contact_form.php:3698
919
  msgid "allows to store your messages to the database."
920
  msgstr "umožňuje ukládání zpráv do databáze."
921
 
922
- #: contact_form.php:3699
923
  msgid "Manage messages that have been sent from your website."
924
  msgstr "Správa zpráv, které byly odeslány z vašeho webu."
925
 
926
- #: contact_form.php:3702
927
  msgid "Learn More"
928
  msgstr "Více informací"
929
 
930
- #: contact_form.php:3762
931
  msgid "Contact form"
932
  msgstr "Kontaktní formulář"
933
 
934
- #: contact_form.php:3775 contact_form.php:3785
935
  msgid "Language"
936
  msgstr "Přidání jazyka"
937
 
938
- #: includes/deprecated.php:168
939
- #, php-format
940
- msgid ""
941
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
942
- "replace it with %3s. If you close this message it'll appear again after "
943
- "deprecated shortcode reuse."
944
- msgstr ""
945
-
946
  #~ msgid "Unlock premium options by upgrading to Pro version"
947
  #~ msgstr "Odemknout možnosti prémiové aktualizací na verzi Pro"
948
 
6
  msgstr ""
7
  "Project-Id-Version: Contact Form\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
10
+ "PO-Revision-Date: 2017-05-23 15:15+0300\n"
11
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
12
  "Language-Team: www.pamadessoft.cz <info@pamadessoft.cz>\n"
13
  "Language: cs_CZ\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: contact_form.php:37 contact_form.php:1064
25
  msgid "Contact Form Settings"
26
  msgstr "Nastavenie kontaktního formuláře"
27
 
28
+ #: contact_form.php:37
29
  msgid "Contact Form"
30
  msgstr "Kontaktní formulář"
31
 
32
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
33
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
34
+ #: contact_form.php:3181 contact_form.php:3227
35
  msgid "Name"
36
  msgstr "Jméno"
37
 
38
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
39
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
40
+ #: contact_form.php:3233
41
  msgid "Address"
42
  msgstr "Adresa"
43
 
44
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
45
+ #: contact_form.php:1765
46
  msgid "Email Address"
47
  msgstr "Vaše emailová adresa"
48
 
49
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
50
+ #: contact_form.php:1766
51
  msgid "Phone number"
52
  msgstr "Telefonní číslo"
53
 
54
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
55
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
56
+ #: contact_form.php:3242
57
  msgid "Subject"
58
  msgstr "Předmět"
59
 
60
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
61
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
62
+ #: contact_form.php:3246
63
  msgid "Message"
64
  msgstr "Zpráva"
65
 
66
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
67
+ #: contact_form.php:2058
68
  msgid "Attachment"
69
  msgstr "Příloha:"
70
 
71
+ #: contact_form.php:287
72
  msgid ""
73
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
74
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
76
  "Podporované typy souborů: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
77
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
78
 
79
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
80
  msgid "Send me a copy"
81
  msgstr "Pošlete mi kopii této zprávy"
82
 
83
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
84
  msgid "Submit"
85
  msgstr "Odeslat"
86
 
87
+ #: contact_form.php:290
88
  msgid "Your name is required."
89
  msgstr "Zadejte prosím své jméno"
90
 
91
+ #: contact_form.php:291
92
  msgid "Address is required."
93
  msgstr "Vyžaduje se adresa."
94
 
95
+ #: contact_form.php:292
96
  msgid "A valid email address is required."
97
  msgstr "Je vyžadována platná e-mailová adresa."
98
 
99
+ #: contact_form.php:293
100
  msgid "Phone number is required."
101
  msgstr "Telefonní číslo je požadováno."
102
 
103
+ #: contact_form.php:294
104
  msgid "Subject is required."
105
  msgstr "Předmět je povinné pole."
106
 
107
+ #: contact_form.php:295
108
  msgid "Message text is required."
109
  msgstr "Text zprávy je vyžadován."
110
 
111
+ #: contact_form.php:296
112
  msgid "File format is not valid."
113
  msgstr "Formát souboru není platný."
114
 
115
+ #: contact_form.php:297
116
  msgid "File upload error."
117
  msgstr "Chyba odeslání souboru."
118
 
119
+ #: contact_form.php:298
120
  msgid "The file could not be uploaded."
121
  msgstr "Soubor nelze odeslat."
122
 
123
+ #: contact_form.php:299
124
  msgid "This file is too large."
125
  msgstr "Tento soubor je příliš velký."
126
 
127
+ #: contact_form.php:300
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Prosím opište CAPTCHA text."
130
 
131
+ #: contact_form.php:301
132
  msgid "Please make corrections below and try again."
133
  msgstr "Prosím opravte chyby a zkuste to znovu."
134
 
135
+ #: contact_form.php:303
136
  msgid "Thank you for contacting us."
137
  msgstr "Děkujeme za zprávu, budeme Vás kontaktovat."
138
 
139
+ #: contact_form.php:759 contact_form.php:1021
140
  msgid "Settings saved."
141
  msgstr "Nastavení bylo uloženo."
142
 
143
+ #: contact_form.php:966
144
  msgid ""
145
  "Email 'FROM' field option was changed, which may cause email messages being "
146
  "moved to the spam folder or email delivery failures."
148
  "E-mailu z pole byla změněna, což může způsobit, e-mailové zprávy přesouvány "
149
  "do spam složky nebo e-mailem dodání selhání."
150
 
151
+ #: contact_form.php:976
152
  msgid ""
153
  "If the 'Redirect to page' option is selected then the URL field should be in "
154
  "the following format"
156
  "Pokud je vybrána možnost 'Přesměrovat na stránku' pak pole URL by měla být v "
157
  "následujícím formátu"
158
 
159
+ #: contact_form.php:983
160
  msgid "Such user does not exist."
161
  msgstr "Takový uživatel neexistuje."
162
 
163
+ #: contact_form.php:993
164
  msgid ""
165
  "Please enter a valid email address in the 'Use this email address' field."
166
  msgstr ""
167
  "Zadejte platnou e-mailovou adresu do pole \"Použít tuto e-mailovou adresu\"."
168
 
169
+ #: contact_form.php:1001
170
  msgid "Please enter a valid email address in the 'FROM' field."
171
  msgstr "Zadejte prosím platnou e-mailovou adresu do pole 'Od'."
172
 
173
+ #: contact_form.php:1023
174
  msgid "Settings are not saved."
175
  msgstr "Nastavení se neuložilo."
176
 
177
+ #: contact_form.php:1061
178
  msgid "All plugin settings were restored."
179
  msgstr "Výchozí nastavení byla obnovena."
180
 
181
+ #: contact_form.php:1067
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr "NÁVOD KROK ZA KROKEM"
184
 
185
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
186
  msgid "Settings"
187
  msgstr "Nastavení"
188
 
189
+ #: contact_form.php:1071
190
  msgid "Additional settings"
191
  msgstr "Další nastavení"
192
 
193
+ #: contact_form.php:1072
194
  msgid "Appearance"
195
  msgstr "Vzhled"
196
 
197
+ #: contact_form.php:1073
198
  msgid "Custom code"
199
  msgstr ""
200
 
201
+ #: contact_form.php:1074
202
  msgid "Go PRO"
203
  msgstr "Získat verzi Pro"
204
 
205
+ #: contact_form.php:1085
206
  #, fuzzy
207
  msgid "Notice"
208
  msgstr "UPOZORNĚNÍ:"
209
 
210
+ #: contact_form.php:1089
211
  msgid "NEW_FORM"
212
  msgstr "NEW_FORM"
213
 
214
+ #: contact_form.php:1090
215
  msgid ""
216
  "If you want to create multiple contact forms, please install the Contact "
217
  "Form Multi plugin."
219
  "Pokud chcete vytvořit více kontaktních formulářů, nainstalujte si prosím "
220
  "kontaktní formulář Multi plugin."
221
 
222
+ #: contact_form.php:1099
223
  #, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
228
  "Pokud chcete na stránku přidat kontaktní formulář nebo příspěvek, použijte "
229
  "tlačítko %s"
230
 
231
+ #: contact_form.php:1105
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
241
  "tlačítko není zobrazeno, použijte krátký %s nebo %s kde * je zkratka pro "
242
  "jazyk formuláře kontaktu."
243
 
244
+ #: contact_form.php:1114
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
249
  "Pokud necháte pole prázdné, zprávy bude zaslána na e-mailovou adresu zadanou "
250
  "během registrace."
251
 
252
+ #: contact_form.php:1117
253
  #, fuzzy
254
  msgid "The user's email address"
255
  msgstr "E-mailová adresa uživatele:"
256
 
257
+ #: contact_form.php:1121
258
  msgid "Select a username"
259
  msgstr "Vyberte uživatelské jméno"
260
 
261
+ #: contact_form.php:1134
262
  #, fuzzy
263
  msgid ""
264
  "Select a username of the person who should get the messages from the contact "
267
  "Zadejte uživatelské jméno osoby, která by měla získat zprávy z kontaktního "
268
  "formuláře."
269
 
270
+ #: contact_form.php:1138
271
  #, fuzzy
272
  msgid "Use this email address"
273
  msgstr "Použíte tento email::"
274
 
275
+ #: contact_form.php:1142
276
  #, fuzzy
277
  msgid "Enter the email address for receiving messages"
278
  msgstr "Zadejte e-mailovou adresu chcete zprávy předávat."
279
 
280
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
281
+ #: contact_form.php:1957 contact_form.php:3514
282
  msgid "Close"
283
  msgstr "Zavřít"
284
 
285
+ #: contact_form.php:1153
286
  #, fuzzy
287
  msgid "Add department selectbox to the contact form"
288
  msgstr "Přidáte oddělení selectbox kontaktní formulář:"
289
 
290
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
291
+ #: contact_form.php:2163
292
  msgid "If you upgrade to Pro version all your settings will be saved."
293
  msgstr "Pokud upgradujete na verzi Pro všechna nastavení uložit."
294
 
295
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
296
+ #: contact_form.php:1878 contact_form.php:2170
297
  msgid "Upgrade to Pro"
298
  msgstr ""
299
 
300
+ #: contact_form.php:1176
301
  msgid "Save emails to the database"
302
  msgstr "Ukládání e-mailů do databáze"
303
 
304
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
305
  msgid "Using"
306
  msgstr "Použití"
307
 
308
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
309
+ #: contact_form.php:1623
310
  msgid "Please activate the appropriate option on"
311
  msgstr ""
312
 
313
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
314
+ #: contact_form.php:1626
315
  #, fuzzy
316
  msgid "settings page"
317
  msgstr "stránku nastavení"
318
 
319
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
320
+ #: contact_form.php:1633
321
  msgid "Activate"
322
  msgstr "Aktivovat"
323
 
324
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
325
+ #: contact_form.php:1638
326
  msgid "Download"
327
  msgstr "Stáhnout"
328
 
329
+ #: contact_form.php:1222
330
  msgid "Sending method"
331
  msgstr ""
332
 
333
+ #: contact_form.php:1227
334
  msgid "Wp-mail"
335
  msgstr "Wp-mail"
336
 
337
+ #: contact_form.php:1229
338
  #, fuzzy
339
  msgid "You can use the Wordpress wp_mail function for mailing"
340
  msgstr "Můžete použít funkci wp_mail pro korespondenci"
341
 
342
+ #: contact_form.php:1232
343
  msgid "Mail"
344
  msgstr "E-mail"
345
 
346
+ #: contact_form.php:1234
347
  #, fuzzy
348
  msgid "You can use the PHP mail function for mailing"
349
  msgstr "Můžete použít funkci wp_mail pro korespondenci"
350
 
351
+ #: contact_form.php:1239
352
  msgid "'FROM' field"
353
  msgstr "'Pole od'"
354
 
355
+ #: contact_form.php:1255
356
  msgid "User name"
357
  msgstr "Uživatelské jméno"
358
 
359
+ #: contact_form.php:1257
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
362
  msgstr "Jméno uživatele, který vyplňuje formulář bude použit v poli \"Od\"."
363
 
364
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
365
  msgid "Email"
366
  msgstr "E-mail"
367
 
368
+ #: contact_form.php:1279
369
  msgid "User email"
370
  msgstr "Používateľský email"
371
 
372
+ #: contact_form.php:1281
373
  msgid ""
374
  "The email address of the user who fills the form will be used in the field "
375
  "'From'."
377
  "E-mailovou adresu uživatele, který vyplňuje formulář bude použit v poli \"Od"
378
  "\"."
379
 
380
+ #: contact_form.php:1290
381
  msgid ""
382
  "If this option is changed, email messages may be moved to the spam folder or "
383
  "email delivery failures may occur."
385
  "Je-li tato možnost změněná, e-mailové zprávy mohou být přesunuty do složky "
386
  "Nevyžádaná pošta nebo může dojít k selhání doručení e-mailu."
387
 
388
+ #: contact_form.php:1299
389
  msgid "Required symbol"
390
  msgstr "Symbol pro povinné položky"
391
 
392
+ #: contact_form.php:1309
393
  msgid "Fields"
394
  msgstr "Pole"
395
 
396
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
397
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
398
  msgid "Used"
399
  msgstr "Použité"
400
 
401
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
402
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
403
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
404
  msgid "Required"
405
  msgstr "Vyžadované"
406
 
407
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
408
+ #: contact_form.php:1445 contact_form.php:1469
409
  msgid "Visible"
410
  msgstr "Viditelný"
411
 
412
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
413
+ #: contact_form.php:1449 contact_form.php:1473
414
  msgid "Disabled for editing"
415
  msgstr "Zakázáno pro editaci"
416
 
417
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
418
+ #: contact_form.php:1477
419
  msgid "Field's default value"
420
  msgstr "Výchozí hodnota pole"
421
 
422
+ #: contact_form.php:1322
423
  msgid "Department selectbox"
424
  msgstr "Poloha výběrového oddílu"
425
 
426
+ #: contact_form.php:1354
427
  msgid "Use User's name as a default value if the user is logged in."
428
  msgstr ""
429
  "Uživatelské jméno používejte jako výchozí hodnotu, pokud je uživatel "
430
  "přihlášen."
431
 
432
+ #: contact_form.php:1355 contact_form.php:1415
433
  msgid ""
434
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
435
  "in users."
437
  "'Viditelné' a 'Skryté pro editaci' je možné použít pouze pro přihlášené "
438
  "uživatele."
439
 
440
+ #: contact_form.php:1361
441
  msgid "Location selectbox"
442
  msgstr "Poloha výberového oddielu"
443
 
444
+ #: contact_form.php:1414
445
  msgid "Use User's email as a default value if the user is logged in."
446
  msgstr ""
447
  "Pomocí e-mailu uživatele jako výchozí hodnotu, pokud uživatel je přihlášen."
448
 
449
+ #: contact_form.php:1498
450
  msgid "Attachment block"
451
  msgstr "Blok příloh"
452
 
453
+ #: contact_form.php:1500
454
  msgid "Users can attach the following file formats"
455
  msgstr "Uživatelé mohou připojit následující formáty souborů"
456
 
457
+ #: contact_form.php:1518
458
  msgid "Add to the form"
459
  msgstr "Přidejte do formuláře"
460
 
461
+ #: contact_form.php:1523
462
  msgid "Tips below the Attachment"
463
  msgstr "Tipy pod přílohu"
464
 
465
+ #: contact_form.php:1530
466
  msgid "'Send me a copy' block"
467
  msgstr "Zobrazit blok 'Zaslat kopii'"
468
 
469
+ #: contact_form.php:1558
470
  #, fuzzy
471
  msgid "Activate for network"
472
  msgstr "Aktivované pluginy"
473
 
474
+ #: contact_form.php:1649
475
  msgid "Agreement checkbox"
476
  msgstr "Označení souhlasu"
477
 
478
+ #: contact_form.php:1649
479
  msgid "Required checkbox for submitting the form"
480
  msgstr "Vyžaduje označení souhlasu při odeslání formuláře"
481
 
482
+ #: contact_form.php:1650
483
  msgid "Optional checkbox"
484
  msgstr "Volitelné zaškrtávací políčko"
485
 
486
+ #: contact_form.php:1650
487
  msgid "Optional checkbox, the results of which will be displayed in email"
488
  msgstr "Volitelné zaškrtávací políčko, jeho výsledek bude zobrazený v emailu"
489
 
490
+ #: contact_form.php:1668
491
  msgid "Delete an attachment file from the server after the email is sent"
492
  msgstr "Odstranit soubor přílohy ze serveru, po odeslání e-mailu"
493
 
494
+ #: contact_form.php:1674
495
  msgid "Email in HTML format sending"
496
  msgstr "Povolit HTML formátovaní"
497
 
498
+ #: contact_form.php:1678
499
  msgid "Display additional info in the email"
500
  msgstr "Zobrazit další informace v e-mailu"
501
 
502
+ #: contact_form.php:1684
503
  #, fuzzy
504
  msgid "Sent from (IP address)"
505
  msgstr "Odeslané z (ip adresa)"
506
 
507
+ #: contact_form.php:1684
508
  msgid "Example: Sent from (IP address):\t127.0.0.1"
509
  msgstr "Příklad: Zaslané z (IP addresa):\t127.0.0.1"
510
 
511
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
512
  msgid "Date/Time"
513
  msgstr "Datum / Čas"
514
 
515
+ #: contact_form.php:1685
516
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
517
  msgstr "Příklad: Datum / čas: \tsrpen 19, 2013 8:50 pm"
518
 
519
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
520
  msgid "Sent from (referer)"
521
  msgstr "Odesláno z"
522
 
523
+ #: contact_form.php:1686
524
  #, fuzzy
525
  msgid ""
526
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
527
  msgstr "Příklad: Zaslané (odkaz):\thttp://bestwebsoft.com/contacts/contact-us/"
528
 
529
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
530
  msgid "Using (user agent)"
531
  msgstr "Použití (uživatelský agent)"
532
 
533
+ #: contact_form.php:1687
534
  msgid ""
535
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
536
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
538
  "Příklad: Použití (uživatel agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
539
  "AppleWebKit/537.36 (KHTML, jako Gecko) Chrome/28.0.1500.95 Safari/537.36"
540
 
541
+ #: contact_form.php:1692
542
  msgid "Language settings for the field names in the form"
543
  msgstr "Nastavení jazyka pro názvy polí ve formuláři"
544
 
545
+ #: contact_form.php:1701
546
  msgid "Add a language"
547
  msgstr "Přidání jazyka"
548
 
549
+ #: contact_form.php:1705
550
  msgid "Change the names of the contact form fields and error messages"
551
  msgstr "Změnit názvy polí formuláře kontaktu a chybových zpráv"
552
 
553
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
554
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
555
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
556
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
557
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
558
  msgid "Default"
559
  msgstr "Základní"
560
 
561
+ #: contact_form.php:1723 contact_form.php:1761
562
  msgid "click to expand/hide the list"
563
  msgstr "klepněte na rozbalit nebo skrýt seznam"
564
 
565
+ #: contact_form.php:1732 contact_form.php:1770
566
  msgid "Tips below the Attachment block"
567
  msgstr "Zobrazení tipů pod blokem příloh"
568
 
569
+ #: contact_form.php:1735 contact_form.php:1773
570
  msgid "Error message for the Name field"
571
  msgstr "Chybová zpráva pro pole Jméno"
572
 
573
+ #: contact_form.php:1736 contact_form.php:1774
574
  msgid "Error message for the Address field"
575
  msgstr "Chybová zpráva pro pole Adresa"
576
 
577
+ #: contact_form.php:1737 contact_form.php:1775
578
  msgid "Error message for the Email field"
579
  msgstr "Chybová zpráva pro pole E-mail"
580
 
581
+ #: contact_form.php:1738 contact_form.php:1776
582
  msgid "Error message for the Phone field"
583
  msgstr "Chybová zpráva pro pole Telefon"
584
 
585
+ #: contact_form.php:1739 contact_form.php:1777
586
  msgid "Error message for the Subject field"
587
  msgstr "Chybová zpráva pro pole Předmět"
588
 
589
+ #: contact_form.php:1740 contact_form.php:1778
590
  msgid "Error message for the Message field"
591
  msgstr "Chybová zpráva pro pole Zpráva"
592
 
593
+ #: contact_form.php:1741 contact_form.php:1779
594
  msgid "Error message about the file type for the Attachment field"
595
  msgstr "Chybová zpráva o typu souboru pro pole Příloha"
596
 
597
+ #: contact_form.php:1742 contact_form.php:1780
598
  msgid ""
599
  "Error message while uploading a file for the Attachment field to the server"
600
  msgstr "Chybová správa při neúspěšném nahrávání souboru na server"
601
 
602
+ #: contact_form.php:1743 contact_form.php:1781
603
  msgid "Error message while moving the file for the Attachment field"
604
  msgstr "Chybová správa při neúspěšném přesunu souboru do pole Příloha"
605
 
606
+ #: contact_form.php:1744 contact_form.php:1782
607
  msgid "Error message when file size limit for the Attachment field is exceeded"
608
  msgstr ""
609
  "Chybová zpráva při překročení omezení velikosti souboru pro pole Příloha"
610
 
611
+ #: contact_form.php:1745 contact_form.php:1783
612
  msgid "Error message for the Captcha field"
613
  msgstr "Chybová zpráva pro pole Captcha"
614
 
615
+ #: contact_form.php:1746 contact_form.php:1784
616
  msgid "Error message for the whole form"
617
  msgstr "Chybová zpráva pro celý formulář"
618
 
619
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
620
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
621
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
622
+ #: contact_form.php:3604
623
  msgid "Use shortcode"
624
  msgstr "Použijte shortcode"
625
 
626
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
627
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
628
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
629
+ #: contact_form.php:3604
630
  msgid "for this language"
631
  msgstr "pro tento jazyk"
632
 
633
+ #: contact_form.php:1797
634
  msgid "Use the changed names of the contact form fields in the email"
635
  msgstr "Použít změněné názvy polí kontaktní formuláře v e-mailu"
636
 
637
+ #: contact_form.php:1803
638
  msgid "Action after email is sent"
639
  msgstr "Akce po odeslání e-mailu"
640
 
641
+ #: contact_form.php:1805
642
  msgid "Display text"
643
  msgstr "Zobrazený text"
644
 
645
+ #: contact_form.php:1819 contact_form.php:1833
646
  msgid "Text"
647
  msgstr "Text"
648
 
649
+ #: contact_form.php:1844
650
  msgid "Redirect to the page"
651
  msgstr "Přesměrování na stránku"
652
 
653
+ #: contact_form.php:1845
654
  msgid "Url"
655
  msgstr "Url"
656
 
657
+ #: contact_form.php:1856
658
  msgid "Add field 'Reply-To' to the email header"
659
  msgstr "Přidat pole 'Odpovědět komu' do záhlaví e-mailu"
660
 
661
+ #: contact_form.php:1858
662
  msgid "Field 'Reply-To' will be initialized by user email"
663
  msgstr "Pole 'Odpovědět komu' bude inicializováno mailem uživatele"
664
 
665
+ #: contact_form.php:1862
666
  msgid "Auto Response"
667
  msgstr "Automatická odpověď"
668
 
669
+ #: contact_form.php:1866
670
  #, php-format
671
  msgid ""
672
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
676
  "Můžete použít %%NAME%% zobrazení dat z pole e-mail a %%MESAGE%% zobrazení "
677
  "dat z pole zpráv stejně jako %%SITENAME%% zobrazit název blogu."
678
 
679
+ #: contact_form.php:1888 contact_form.php:2419
680
  msgid "Save Changes"
681
  msgstr "Uložit změny"
682
 
683
+ #: contact_form.php:1901
684
  #, php-format
685
  msgid ""
686
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
687
  msgstr ""
688
  "Prosím povolte JavaScript změnit '%s', '%s' možnosti a pro třídění pole."
689
 
690
+ #: contact_form.php:1901 contact_form.php:1910
691
  msgid "Form layout"
692
  msgstr "Rozložení formuláře"
693
 
694
+ #: contact_form.php:1901 contact_form.php:1922
695
  msgid "Submit position"
696
  msgstr "Potvrzovací tlačítko"
697
 
698
+ #: contact_form.php:1914
699
  msgid "One column"
700
  msgstr "Jeden sloupec"
701
 
702
+ #: contact_form.php:1917
703
  msgid "Two columns"
704
  msgstr "Dva sloupce"
705
 
706
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
707
+ #: contact_form.php:1998
708
  msgid "Left"
709
  msgstr "Vlevo"
710
 
711
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
712
+ #: contact_form.php:2004
713
  msgid "Right"
714
  msgstr "Vpravo"
715
 
716
+ #: contact_form.php:1934
717
+ msgid "Width"
718
+ msgstr ""
719
+
720
+ #: contact_form.php:1941
721
+ msgid "Custom"
722
+ msgstr ""
723
+
724
+ #: contact_form.php:1948
725
+ msgid "px"
726
+ msgstr ""
727
+
728
+ #: contact_form.php:1961
729
  msgid "Form align"
730
  msgstr ""
731
 
732
+ #: contact_form.php:1968 contact_form.php:2001
733
  msgid "Center"
734
  msgstr ""
735
 
736
+ #: contact_form.php:1976
737
  #, fuzzy
738
  msgid "Labels position"
739
  msgstr "Potvrzovací tlačítko"
740
 
741
+ #: contact_form.php:1980
742
  msgid "Top"
743
  msgstr ""
744
 
745
+ #: contact_form.php:1989
746
  msgid "Bottom"
747
  msgstr ""
748
 
749
+ #: contact_form.php:1994
750
  msgid "Labels align"
751
  msgstr ""
752
 
753
+ #: contact_form.php:2009
754
  msgid "Errors output"
755
  msgstr "Chybový výstup"
756
 
757
+ #: contact_form.php:2012
758
  msgid "Display error messages"
759
  msgstr "Zobrazit chybové zprávy"
760
 
761
+ #: contact_form.php:2013
762
  msgid "Color of the input field errors."
763
  msgstr "Barva chyby vstupního pole."
764
 
765
+ #: contact_form.php:2014
766
  msgid "Display error messages & color of the input field errors"
767
  msgstr "Zobrazí chybové zprávy & barvu chybujícího vstupního pole"
768
 
769
+ #: contact_form.php:2019
770
  msgid "Add placeholder to the input blocks"
771
  msgstr "Přidání zástupného symbolu do vstupních bloků"
772
 
773
+ #: contact_form.php:2025
774
  msgid "Add tooltips"
775
  msgstr "Přidat popisky"
776
 
777
+ #: contact_form.php:2039
778
  msgid "Email address"
779
  msgstr "E-mailová adresa"
780
 
781
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
782
  msgid "Phone Number"
783
  msgstr "Tel. číslo"
784
 
785
+ #: contact_form.php:2070
786
  msgid "Style options"
787
  msgstr "Nastavení stylů"
788
 
789
+ #: contact_form.php:2074
790
  msgid "Text color"
791
  msgstr "Barva textu"
792
 
793
+ #: contact_form.php:2079
794
  msgid "Label text color"
795
  msgstr "Označení barvy textu"
796
 
797
+ #: contact_form.php:2084
798
  msgid "Placeholder color"
799
  msgstr "Zástupný symbol barva"
800
 
801
+ #: contact_form.php:2089
802
  msgid "Errors color"
803
  msgstr "Barva chyby"
804
 
805
+ #: contact_form.php:2094
806
  msgid "Error text color"
807
  msgstr "Barva textu chyby"
808
 
809
+ #: contact_form.php:2099
810
  msgid "Background color of the input field errors"
811
  msgstr "Barva pozadí chybujícího vstupního pole"
812
 
813
+ #: contact_form.php:2104
814
  msgid "Border color of the input field errors"
815
  msgstr "Barva ohraničení chybujícího vstupního pole"
816
 
817
+ #: contact_form.php:2109
818
  msgid "Placeholder color of the input field errors"
819
  msgstr "Barva zástupného symbolu v chybujícím poli"
820
 
821
+ #: contact_form.php:2114
822
  msgid "Input fields"
823
  msgstr "Vstupní pole"
824
 
825
+ #: contact_form.php:2119
826
  msgid "Input fields background color"
827
  msgstr "Barva pozadí vstupního pole"
828
 
829
+ #: contact_form.php:2124
830
  msgid "Text fields color"
831
  msgstr "Barva textových polí"
832
 
833
+ #: contact_form.php:2128
834
  msgid "Border width in px, numbers only"
835
  msgstr "Šířka okraje v px, pouze čísla"
836
 
837
+ #: contact_form.php:2133 contact_form.php:2157
838
  msgid "Border color"
839
  msgstr "Barva ohraničení"
840
 
841
+ #: contact_form.php:2138
842
  msgid "Submit button"
843
  msgstr "Odesílací tlačítko"
844
 
845
+ #: contact_form.php:2142
846
  msgid "Width in px, numbers only"
847
  msgstr "Šířka v px, pouze čísla"
848
 
849
+ #: contact_form.php:2147
850
  msgid "Button color"
851
  msgstr "Barva tlačítka"
852
 
853
+ #: contact_form.php:2152
854
  msgid "Button text color"
855
  msgstr "Barva textu tlačítka"
856
 
857
+ #: contact_form.php:2181
858
  msgid "Contact Form | Preview"
859
  msgstr "Kontaktní formulář | Náhled"
860
 
861
+ #: contact_form.php:2182
862
  msgid "Drag the necessary field to sort fields."
863
  msgstr "Přetažením změníte pořadí polí."
864
 
865
+ #: contact_form.php:2408
866
  #, fuzzy
867
  msgid ""
868
  "If you would like to add the Contact Form to your website, just copy and "
871
  "Pokud byste chtěli přidat kontaktní formulář na webu, stačí zkopírovat a "
872
  "vložit tento shortcode nebo stránky nebo widget:"
873
 
874
+ #: contact_form.php:2536
875
  msgid "Sorry, email message could not be delivered."
876
  msgstr "Nelze doručit e-mailovou zprávu."
877
 
878
+ #: contact_form.php:3137 contact_form.php:3139
879
  msgid "Sent from (ip address)"
880
  msgstr "Odeslané z (ip adresa)"
881
 
882
+ #: contact_form.php:3167
883
  msgid "Contact from"
884
  msgstr "Kontaktní formulář"
885
 
886
+ #: contact_form.php:3172 contact_form.php:3221
887
  msgid "Site"
888
  msgstr "Stránka"
889
 
890
+ #: contact_form.php:3351
891
  msgid ""
892
  "If you can see this MIME, it means that the MIME type is not supported by "
893
  "your email client!"
895
  "Pokud vidíte tento MIME, znamená to, že váš e-mailový klient nepodporuje typ "
896
  "MIME!"
897
 
898
+ #: contact_form.php:3434
899
  msgid "FAQ"
900
  msgstr "Často kladené otázky"
901
 
902
+ #: contact_form.php:3435
903
  msgid "Support"
904
  msgstr "Podpora"
905
 
906
+ #: contact_form.php:3484
907
  msgid "Are you sure that you want to delete this language data?"
908
  msgstr "Jste si jisti, že chcete odstranit nastavení pro tento jazyk?"
909
 
910
+ #: contact_form.php:3505
911
  msgid "Add multiple forms"
912
  msgstr "Přidat více formulářů"
913
 
914
+ #: contact_form.php:3505
915
  msgid ""
916
  "Install Contact Form Multi plugin to create unlimited number of contact "
917
  "forms."
919
  "Pokud chcete vytvořit více kontaktních formulářů, nainstalujte si prosím "
920
  "kontaktní formulář Multi plugin."
921
 
922
+ #: contact_form.php:3510
923
  msgid "Learn more"
924
  msgstr "Více informací"
925
 
926
+ #: contact_form.php:3751
927
  msgid "Close notice"
928
  msgstr ""
929
 
930
+ #: contact_form.php:3756
931
  msgid "allows to store your messages to the database."
932
  msgstr "umožňuje ukládání zpráv do databáze."
933
 
934
+ #: contact_form.php:3757
935
  msgid "Manage messages that have been sent from your website."
936
  msgstr "Správa zpráv, které byly odeslány z vašeho webu."
937
 
938
+ #: contact_form.php:3760
939
  msgid "Learn More"
940
  msgstr "Více informací"
941
 
942
+ #: contact_form.php:3820
943
  msgid "Contact form"
944
  msgstr "Kontaktní formulář"
945
 
946
+ #: contact_form.php:3833 contact_form.php:3843
947
  msgid "Language"
948
  msgstr "Přidání jazyka"
949
 
 
 
 
 
 
 
 
 
950
  #~ msgid "Unlock premium options by upgrading to Pro version"
951
  #~ msgstr "Odemknout možnosti prémiové aktualizací na verzi Pro"
952
 
languages/contact-form-plugin-da_DK.mo CHANGED
Binary file
languages/contact-form-plugin-da_DK.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-02-27 16:22+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:22+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: da_DA\n"
@@ -20,63 +20,63 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
- #: contact_form.php:42 contact_form.php:1066
24
  msgid "Contact Form Settings"
25
  msgstr "Kontakt Form Indstillinger"
26
 
27
  # @ contact_form
28
- #: contact_form.php:42
29
  msgid "Contact Form"
30
  msgstr "Kontaktformular"
31
 
32
  # @ contact_form
33
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
34
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
35
- #: contact_form.php:3138 contact_form.php:3184
36
  msgid "Name"
37
  msgstr "Navn:"
38
 
39
  # @ contact_form
40
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
41
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
42
- #: contact_form.php:3190
43
  msgid "Address"
44
  msgstr "Adresse:"
45
 
46
  # @ contact_form
47
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
48
- #: contact_form.php:1767
49
  msgid "Email Address"
50
  msgstr "E-mail-adresse:"
51
 
52
  # @ contact_form
53
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
54
- #: contact_form.php:1768
55
  msgid "Phone number"
56
  msgstr "Telefon:"
57
 
58
  # @ contact_form
59
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
60
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
61
- #: contact_form.php:3199
62
  msgid "Subject"
63
  msgstr "Emne:"
64
 
65
  # @ contact_form
66
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
67
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
68
- #: contact_form.php:3203
69
  msgid "Message"
70
  msgstr "Besked:"
71
 
72
  # @ contact_form
73
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
74
- #: contact_form.php:2040
75
  msgid "Attachment"
76
  msgstr "Vedhæft fil:"
77
 
78
  # @ contact_form
79
- #: contact_form.php:302
80
  msgid ""
81
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
82
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -85,86 +85,86 @@ msgstr ""
85
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
86
 
87
  # @ contact_form
88
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
89
  msgid "Send me a copy"
90
  msgstr "Send mig en kopi"
91
 
92
  # @ contact_form
93
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
94
  msgid "Submit"
95
  msgstr "Gennemfør"
96
 
97
  # @ contact_form
98
- #: contact_form.php:305
99
  msgid "Your name is required."
100
  msgstr "Dit navn er påkrævet."
101
 
102
  # @ contact_form
103
- #: contact_form.php:306
104
  msgid "Address is required."
105
  msgstr "Adresse er påkrævet."
106
 
107
  # @ contact_form
108
- #: contact_form.php:307
109
  msgid "A valid email address is required."
110
  msgstr "En gyldig email adresse er påkrævet."
111
 
112
  # @ contact_form
113
- #: contact_form.php:308
114
  msgid "Phone number is required."
115
  msgstr "Telefonnummer er påkrævet."
116
 
117
  # @ contact_form
118
- #: contact_form.php:309
119
  msgid "Subject is required."
120
  msgstr "Emne er påkrævet."
121
 
122
  # @ contact_form
123
- #: contact_form.php:310
124
  msgid "Message text is required."
125
  msgstr "Besked tekst er påkrævet."
126
 
127
  # @ contact_form
128
- #: contact_form.php:311
129
  msgid "File format is not valid."
130
  msgstr "Filformatet er ikke gyldig."
131
 
132
  # @ contact_form
133
- #: contact_form.php:312
134
  msgid "File upload error."
135
  msgstr "Upload fejl"
136
 
137
  # @ contact_form
138
- #: contact_form.php:313
139
  msgid "The file could not be uploaded."
140
  msgstr "Filen kunne ikke uploades."
141
 
142
  # @ contact_form
143
- #: contact_form.php:314
144
  msgid "This file is too large."
145
  msgstr "Denne fil er for stor."
146
 
147
  # @ contact_form
148
- #: contact_form.php:315
149
  msgid "Please fill out the CAPTCHA."
150
  msgstr "Udfyld CAPTCHA."
151
 
152
  # @ contact_form
153
- #: contact_form.php:316
154
  msgid "Please make corrections below and try again."
155
  msgstr "Venligst foretage korrektioner nedenfor, og prøv igen."
156
 
157
  # @ contact_form
158
- #: contact_form.php:318
159
  msgid "Thank you for contacting us."
160
  msgstr "Tak for din henvendelse."
161
 
162
  # @ contact_form
163
- #: contact_form.php:761 contact_form.php:1023
164
  msgid "Settings saved."
165
  msgstr "Ændringerne blev gemt."
166
 
167
- #: contact_form.php:968
168
  msgid ""
169
  "Email 'FROM' field option was changed, which may cause email messages being "
170
  "moved to the spam folder or email delivery failures."
@@ -173,7 +173,7 @@ msgstr ""
173
  "flyttes til spam omslag eller email levering fiaskoerne."
174
 
175
  # @ contact_form
176
- #: contact_form.php:978
177
  msgid ""
178
  "If the 'Redirect to page' option is selected then the URL field should be in "
179
  "the following format"
@@ -182,69 +182,69 @@ msgstr ""
182
  "følgende format"
183
 
184
  # @ contact_form
185
- #: contact_form.php:985
186
  msgid "Such user does not exist."
187
  msgstr "Sådan bruger findes ikke."
188
 
189
  # @ contact_form
190
- #: contact_form.php:995
191
  msgid ""
192
  "Please enter a valid email address in the 'Use this email address' field."
193
  msgstr "Angiv en gyldig e-mail-adresse i feltet 'Brug denne e-mail-adresse'."
194
 
195
  # @ contact_form
196
- #: contact_form.php:1003
197
  msgid "Please enter a valid email address in the 'FROM' field."
198
  msgstr "Indsæt en gyldig emailadresse i fra-feltet"
199
 
200
  # @ contact_form
201
- #: contact_form.php:1025
202
  msgid "Settings are not saved."
203
  msgstr "Ændringerne er ikke gemt"
204
 
205
- #: contact_form.php:1063
206
  msgid "All plugin settings were restored."
207
  msgstr "Alle plugin indstillinger blev gendannet."
208
 
209
- #: contact_form.php:1069
210
  msgid "How to Use Step-by-step Instruction"
211
  msgstr "Hvordan man bruger en trinvis instruktion"
212
 
213
  # @ contact_form
214
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
215
  msgid "Settings"
216
  msgstr "Indstillinger"
217
 
218
  # @ contact_form
219
- #: contact_form.php:1073
220
  msgid "Additional settings"
221
  msgstr "Yderligere indstillinger"
222
 
223
- #: contact_form.php:1074
224
  msgid "Appearance"
225
  msgstr "Udseende"
226
 
227
- #: contact_form.php:1075
228
  msgid "Custom code"
229
  msgstr ""
230
 
231
  # @ contact_form
232
- #: contact_form.php:1076
233
  msgid "Go PRO"
234
  msgstr "Gå PRO"
235
 
236
  # @ contact_form
237
- #: contact_form.php:1087
238
  #, fuzzy
239
  msgid "Notice"
240
  msgstr "Bemærk:"
241
 
242
- #: contact_form.php:1091
243
  msgid "NEW_FORM"
244
  msgstr "NEW_FORM"
245
 
246
  # @ contact_form
247
- #: contact_form.php:1092
248
  msgid ""
249
  "If you want to create multiple contact forms, please install the Contact "
250
  "Form Multi plugin."
@@ -253,7 +253,7 @@ msgstr ""
253
  "formular Multi stik."
254
 
255
  # @ contact_form
256
- #: contact_form.php:1101
257
  #, php-format
258
  msgid ""
259
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -262,7 +262,7 @@ msgstr ""
262
  "Hvis du ønsker at tilføje en kontakt formular på din side eller post, skal "
263
  "du bruge knappen for %s"
264
 
265
- #: contact_form.php:1107
266
  #, php-format
267
  msgid ""
268
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -276,7 +276,7 @@ msgstr ""
276
  "Form sprog."
277
 
278
  # @ contact_form
279
- #: contact_form.php:1116
280
  msgid ""
281
  "If you leave the fields empty, the messages will be sent to the email "
282
  "address specified during registration."
@@ -285,18 +285,18 @@ msgstr ""
285
  "angivet under registreringen."
286
 
287
  # @ contact_form
288
- #: contact_form.php:1119
289
  #, fuzzy
290
  msgid "The user's email address"
291
  msgstr "Brugerens e-mail-adresse:"
292
 
293
  # @ contact_form
294
- #: contact_form.php:1123
295
  msgid "Select a username"
296
  msgstr "Vælg et brugernavn."
297
 
298
  # @ contact_form
299
- #: contact_form.php:1136
300
  #, fuzzy
301
  msgid ""
302
  "Select a username of the person who should get the messages from the contact "
@@ -306,127 +306,127 @@ msgstr ""
306
  "kontaktpersonformularen."
307
 
308
  # @ contact_form
309
- #: contact_form.php:1140
310
  #, fuzzy
311
  msgid "Use this email address"
312
  msgstr "Brug denne e-mail-adresse:"
313
 
314
  # @ contact_form
315
- #: contact_form.php:1144
316
  #, fuzzy
317
  msgid "Enter the email address for receiving messages"
318
  msgstr "Indtast den e-mailadresse du vil have de meddelelser, der sendes til."
319
 
320
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
321
- #: contact_form.php:1939 contact_form.php:3471
322
  msgid "Close"
323
  msgstr "Luk"
324
 
325
  # @ contact_form
326
- #: contact_form.php:1155
327
  #, fuzzy
328
  msgid "Add department selectbox to the contact form"
329
  msgstr "Tilføje afdeling selectbox til kontakt formularen:"
330
 
331
  # @ contact_form
332
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
333
- #: contact_form.php:2145
334
  msgid "If you upgrade to Pro version all your settings will be saved."
335
  msgstr "Hvis du opgradere til Pro-version vil alle indstillingerne blive gemt."
336
 
337
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
338
- #: contact_form.php:1880 contact_form.php:2152
339
  msgid "Upgrade to Pro"
340
  msgstr ""
341
 
342
  # @ contact_form
343
- #: contact_form.php:1178
344
  msgid "Save emails to the database"
345
  msgstr "Gem dine emails i databasen"
346
 
347
  # @ contact_form
348
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
349
  msgid "Using"
350
  msgstr "Ved hjælp af"
351
 
352
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
353
- #: contact_form.php:1625
354
  msgid "Please activate the appropriate option on"
355
  msgstr ""
356
 
357
  # @ contact_form
358
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
359
- #: contact_form.php:1628
360
  #, fuzzy
361
  msgid "settings page"
362
  msgstr "Ændringerne blev gemt."
363
 
364
  # @ contact_form
365
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
366
- #: contact_form.php:1635
367
  msgid "Activate"
368
  msgstr "Aktiver"
369
 
370
  # @ contact_form
371
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
372
- #: contact_form.php:1640
373
  msgid "Download"
374
  msgstr "Download"
375
 
376
- #: contact_form.php:1224
377
  msgid "Sending method"
378
  msgstr ""
379
 
380
  # @ contact_form
381
- #: contact_form.php:1229
382
  msgid "Wp-mail"
383
  msgstr "WP-mail"
384
 
385
  # @ contact_form
386
- #: contact_form.php:1231
387
  #, fuzzy
388
  msgid "You can use the Wordpress wp_mail function for mailing"
389
  msgstr "Du kan bruge funktionen wp_mail til mailing"
390
 
391
  # @ contact_form
392
- #: contact_form.php:1234
393
  msgid "Mail"
394
  msgstr "E-post"
395
 
396
  # @ contact_form
397
- #: contact_form.php:1236
398
  #, fuzzy
399
  msgid "You can use the PHP mail function for mailing"
400
  msgstr "Du kan bruge funktionen wp_mail til mailing"
401
 
402
- #: contact_form.php:1241
403
  msgid "'FROM' field"
404
  msgstr "'Fra' feltet"
405
 
406
  # @ contact_form
407
- #: contact_form.php:1257
408
  msgid "User name"
409
  msgstr "Brugernavn"
410
 
411
  # @ contact_form
412
- #: contact_form.php:1259
413
  msgid ""
414
  "The name of the user who fills the form will be used in the field 'From'."
415
  msgstr ""
416
  "Navnet på den bruger, der udfylder formularen skal bruges i feltet 'Fra'."
417
 
418
  # @ contact_form
419
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
420
  msgid "Email"
421
  msgstr "e-mail"
422
 
423
  # @ contact_form
424
- #: contact_form.php:1281
425
  msgid "User email"
426
  msgstr "Bruger E-mail"
427
 
428
  # @ contact_form
429
- #: contact_form.php:1283
430
  msgid ""
431
  "The email address of the user who fills the form will be used in the field "
432
  "'From'."
@@ -434,7 +434,7 @@ msgstr ""
434
  "E-mail-adressen på den bruger, der udfylder formularen skal bruges i feltet "
435
  "'Fra'."
436
 
437
- #: contact_form.php:1292
438
  msgid ""
439
  "If this option is changed, email messages may be moved to the spam folder or "
440
  "email delivery failures may occur."
@@ -443,56 +443,56 @@ msgstr ""
443
  "mappen eller email levering fejl kan opstå."
444
 
445
  # @ contact_form
446
- #: contact_form.php:1301
447
  msgid "Required symbol"
448
  msgstr "Kræves symbol"
449
 
450
  # @ contact_form
451
- #: contact_form.php:1311
452
  msgid "Fields"
453
  msgstr "Felter"
454
 
455
  # @ contact_form
456
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
457
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
458
  msgid "Used"
459
  msgstr "Brugt"
460
 
461
  # @ contact_form
462
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
463
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
464
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
465
  msgid "Required"
466
  msgstr "Kræves"
467
 
468
  # @ contact_form
469
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
470
- #: contact_form.php:1447 contact_form.php:1471
471
  msgid "Visible"
472
  msgstr "Synlig"
473
 
474
  # @ contact_form
475
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
476
- #: contact_form.php:1451 contact_form.php:1475
477
  msgid "Disabled for editing"
478
  msgstr "Handicappede til redigering"
479
 
480
  # @ contact_form
481
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
482
- #: contact_form.php:1479
483
  msgid "Field's default value"
484
  msgstr "Feltets standardværdi"
485
 
486
  # @ contact_form
487
- #: contact_form.php:1324
488
  msgid "Department selectbox"
489
  msgstr "Afdeling selectbox"
490
 
491
- #: contact_form.php:1356
492
  msgid "Use User's name as a default value if the user is logged in."
493
  msgstr "Brug brugerens navn som standardværdi, hvis brugeren er logget på."
494
 
495
- #: contact_form.php:1357 contact_form.php:1417
496
  msgid ""
497
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
498
  "in users."
@@ -501,107 +501,107 @@ msgstr ""
501
  "journaliseret-i brugernes."
502
 
503
  # @ contact_form
504
- #: contact_form.php:1363
505
  msgid "Location selectbox"
506
  msgstr "Beliggenhed selectbox"
507
 
508
- #: contact_form.php:1416
509
  msgid "Use User's email as a default value if the user is logged in."
510
  msgstr ""
511
  "Brug brugerens e-mail som en standardværdi, hvis brugeren er logget på."
512
 
513
  # @ contact_form
514
- #: contact_form.php:1500
515
  msgid "Attachment block"
516
  msgstr "Vedhæftet fil blok"
517
 
518
  # @ contact_form
519
- #: contact_form.php:1502
520
  msgid "Users can attach the following file formats"
521
  msgstr "Brugerne kan vedhæfte følgende filformater"
522
 
523
  # @ contact_form
524
- #: contact_form.php:1520
525
  msgid "Add to the form"
526
  msgstr "Føje til formularen"
527
 
528
  # @ contact_form
529
- #: contact_form.php:1525
530
  msgid "Tips below the Attachment"
531
  msgstr "Tips nedenfor den vedhæftede fil"
532
 
533
  # @ contact_form
534
- #: contact_form.php:1532
535
  msgid "'Send me a copy' block"
536
  msgstr "'Sende mig en afskrift' blok"
537
 
538
- #: contact_form.php:1560
539
  msgid "Activate for network"
540
  msgstr ""
541
 
542
  # @ contact_form
543
- #: contact_form.php:1651
544
  msgid "Agreement checkbox"
545
  msgstr "Aftalen afkrydsningsfeltet"
546
 
547
  # @ contact_form
548
- #: contact_form.php:1651
549
  msgid "Required checkbox for submitting the form"
550
  msgstr "Kræves afkrydsningsfeltet til at sende formularen"
551
 
552
  # @ contact_form
553
- #: contact_form.php:1652
554
  msgid "Optional checkbox"
555
  msgstr "Valgfri afkrydsningsfeltet"
556
 
557
  # @ contact_form
558
- #: contact_form.php:1652
559
  msgid "Optional checkbox, the results of which will be displayed in email"
560
  msgstr "Valgfri afkrydsningsfeltet, hvis resultater vil blive vist i e-mail"
561
 
562
  # @ contact_form
563
- #: contact_form.php:1670
564
  msgid "Delete an attachment file from the server after the email is sent"
565
  msgstr "Slette en vedhæftet fil fra serveren, efter at e-mailen sendes"
566
 
567
  # @ contact_form
568
- #: contact_form.php:1676
569
  msgid "Email in HTML format sending"
570
  msgstr "E-mail i HTML-format at sende"
571
 
572
  # @ contact_form
573
- #: contact_form.php:1680
574
  msgid "Display additional info in the email"
575
  msgstr "Få vist yderligere info i e-mailen"
576
 
577
  # @ contact_form
578
- #: contact_form.php:1686
579
  #, fuzzy
580
  msgid "Sent from (IP address)"
581
  msgstr "Sendt fra (ip adresse)"
582
 
583
  # @ contact_form
584
- #: contact_form.php:1686
585
  msgid "Example: Sent from (IP address):\t127.0.0.1"
586
  msgstr "Eksempel: Sendt fra (IP adresse): 127.0.0.1"
587
 
588
  # @ contact_form
589
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
590
  msgid "Date/Time"
591
  msgstr "Dato / Tid"
592
 
593
  # @ contact_form
594
- #: contact_form.php:1687
595
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
596
  msgstr "Eksempel: Dato/tid: 19 August 2013 8:50 pm"
597
 
598
  # @ contact_form
599
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
600
  msgid "Sent from (referer)"
601
  msgstr "Sendt fra (referer)"
602
 
603
  # @ contact_form
604
- #: contact_form.php:1688
605
  #, fuzzy
606
  msgid ""
607
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
@@ -609,12 +609,12 @@ msgstr ""
609
  "Eksempel: Sendt fra (referer): http://bestwebsoft.com/contacts/contact-us/"
610
 
611
  # @ contact_form
612
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
613
  msgid "Using (user agent)"
614
  msgstr "Ved hjælp af (brugeragent)"
615
 
616
  # @ contact_form
617
- #: contact_form.php:1689
618
  msgid ""
619
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
620
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -623,162 +623,162 @@ msgstr ""
623
  "AppleWebKit/537.36 (KHTML, lige Gecko) Chrome/28.0.1500.95 Safari/537.36"
624
 
625
  # @ contact_form
626
- #: contact_form.php:1694
627
  msgid "Language settings for the field names in the form"
628
  msgstr "Sprogindstillingerne for feltnavnene i form"
629
 
630
  # @ contact_form
631
- #: contact_form.php:1703
632
  msgid "Add a language"
633
  msgstr "Tilføje et sprog"
634
 
635
  # @ contact_form
636
- #: contact_form.php:1707
637
  msgid "Change the names of the contact form fields and error messages"
638
  msgstr "Ændre navne på kontaktpersoner formularfelter og fejlmeddelelser"
639
 
640
  # @ contact_form
641
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
642
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
643
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
644
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
645
- #: contact_form.php:2132 contact_form.php:2137
646
  msgid "Default"
647
  msgstr "Standard"
648
 
649
  # @ contact_form
650
- #: contact_form.php:1725 contact_form.php:1763
651
  msgid "click to expand/hide the list"
652
  msgstr "Klik for at udvide/skjule listen"
653
 
654
  # @ contact_form
655
- #: contact_form.php:1734 contact_form.php:1772
656
  msgid "Tips below the Attachment block"
657
  msgstr "Tips nedenfor den vedhæftede fil blokere"
658
 
659
  # @ contact_form
660
- #: contact_form.php:1737 contact_form.php:1775
661
  msgid "Error message for the Name field"
662
  msgstr "Fejlmeddelelse for feltet navn"
663
 
664
  # @ contact_form
665
- #: contact_form.php:1738 contact_form.php:1776
666
  msgid "Error message for the Address field"
667
  msgstr "Fejlmeddelelse for feltet adresse"
668
 
669
  # @ contact_form
670
- #: contact_form.php:1739 contact_form.php:1777
671
  msgid "Error message for the Email field"
672
  msgstr "Fejlmeddelelse for feltet E-mail"
673
 
674
  # @ contact_form
675
- #: contact_form.php:1740 contact_form.php:1778
676
  msgid "Error message for the Phone field"
677
  msgstr "Fejlmeddelelse for feltet telefon"
678
 
679
  # @ contact_form
680
- #: contact_form.php:1741 contact_form.php:1779
681
  msgid "Error message for the Subject field"
682
  msgstr "Fejlmeddelelse for feltet emne"
683
 
684
  # @ contact_form
685
- #: contact_form.php:1742 contact_form.php:1780
686
  msgid "Error message for the Message field"
687
  msgstr "Fejl besked i feltet besked"
688
 
689
  # @ contact_form
690
- #: contact_form.php:1743 contact_form.php:1781
691
  msgid "Error message about the file type for the Attachment field"
692
  msgstr "Fejlmeddelelse om filtypen til feltet vedhæftet fil"
693
 
694
  # @ contact_form
695
- #: contact_form.php:1744 contact_form.php:1782
696
  msgid ""
697
  "Error message while uploading a file for the Attachment field to the server"
698
  msgstr "Fejlmeddelelse ved upload en fil til feltet vedhæftet fil til serveren"
699
 
700
  # @ contact_form
701
- #: contact_form.php:1745 contact_form.php:1783
702
  msgid "Error message while moving the file for the Attachment field"
703
  msgstr "Fejlmeddelelse mens du flytter filen for feltet vedhæftet fil"
704
 
705
  # @ contact_form
706
- #: contact_form.php:1746 contact_form.php:1784
707
  msgid "Error message when file size limit for the Attachment field is exceeded"
708
  msgstr ""
709
  "Fejlmeddelelse, når filstørrelse for feltet vedhæftet fil er overskredet"
710
 
711
  # @ contact_form
712
- #: contact_form.php:1747 contact_form.php:1785
713
  msgid "Error message for the Captcha field"
714
  msgstr "Fejlmeddelelse for Captcha feltet"
715
 
716
  # @ contact_form
717
- #: contact_form.php:1748 contact_form.php:1786
718
  msgid "Error message for the whole form"
719
  msgstr "Fejlmeddelelse for hele formularen"
720
 
721
  # @ contact_form
722
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
723
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
724
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
725
- #: contact_form.php:3540
726
  msgid "Use shortcode"
727
  msgstr "Brug kortkode"
728
 
729
  # @ contact_form
730
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
731
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
732
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
733
- #: contact_form.php:3540
734
  msgid "for this language"
735
  msgstr "for dette sprog"
736
 
737
  # @ contact_form
738
- #: contact_form.php:1799
739
  msgid "Use the changed names of the contact form fields in the email"
740
  msgstr "Bruge ændret navnene på felterne kontaktformularen i e-mailen"
741
 
742
  # @ contact_form
743
- #: contact_form.php:1805
744
  msgid "Action after email is sent"
745
  msgstr "Handling efter at e-mail er sendt"
746
 
747
  # @ contact_form
748
- #: contact_form.php:1807
749
  msgid "Display text"
750
  msgstr "Vis tekst"
751
 
752
  # @ contact_form
753
- #: contact_form.php:1821 contact_form.php:1835
754
  msgid "Text"
755
  msgstr "Tekst"
756
 
757
  # @ contact_form
758
- #: contact_form.php:1846
759
  msgid "Redirect to the page"
760
  msgstr "Viderstil til side"
761
 
762
  # @ contact_form
763
- #: contact_form.php:1847
764
  msgid "Url"
765
  msgstr "Url"
766
 
767
- #: contact_form.php:1858
768
  msgid "Add field 'Reply-To' to the email header"
769
  msgstr "Tilføj feltet 'Svar til' til e-mail-header"
770
 
771
- #: contact_form.php:1860
772
  msgid "Field 'Reply-To' will be initialized by user email"
773
  msgstr "Feltet 'Svar til' vil være initialiseret af brugeren e-mail"
774
 
775
  # @ contact_form_pro
776
- #: contact_form.php:1864
777
  msgid "Auto Response"
778
  msgstr "Autosvar"
779
 
780
  # @ contact_form
781
- #: contact_form.php:1868
782
  #, php-format
783
  msgid ""
784
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -789,211 +789,223 @@ msgstr ""
789
  "til at vise data fra feltet besked samt %%sITENAME %% for at vise blog navn."
790
 
791
  # @ default
792
- #: contact_form.php:1890 contact_form.php:2389
793
  msgid "Save Changes"
794
  msgstr "Gem ændringer"
795
 
796
- #: contact_form.php:1903
797
  #, php-format
798
  msgid ""
799
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
800
  msgstr ""
801
  "Venligst JavaScript at ændre '%s', '%s' indstillinger og felter sortering."
802
 
803
- #: contact_form.php:1903 contact_form.php:1912
804
  msgid "Form layout"
805
  msgstr "Formular Layout"
806
 
807
  # @ contact_form
808
- #: contact_form.php:1903 contact_form.php:1924
809
  msgid "Submit position"
810
  msgstr "Indsende position"
811
 
812
- #: contact_form.php:1916
813
  msgid "One column"
814
  msgstr "En kolonne"
815
 
816
- #: contact_form.php:1919
817
  msgid "Two columns"
818
  msgstr "To kolonner"
819
 
820
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
821
- #: contact_form.php:1980
822
  msgid "Left"
823
  msgstr "Venstre"
824
 
825
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
826
- #: contact_form.php:1986
827
  msgid "Right"
828
  msgstr "Højre"
829
 
830
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
831
  msgid "Form align"
832
  msgstr ""
833
 
834
- #: contact_form.php:1950 contact_form.php:1983
835
  msgid "Center"
836
  msgstr ""
837
 
838
  # @ contact_form
839
- #: contact_form.php:1958
840
  #, fuzzy
841
  msgid "Labels position"
842
  msgstr "Indsende position"
843
 
844
- #: contact_form.php:1962
845
  msgid "Top"
846
  msgstr ""
847
 
848
- #: contact_form.php:1971
849
  msgid "Bottom"
850
  msgstr ""
851
 
852
- #: contact_form.php:1976
853
  msgid "Labels align"
854
  msgstr ""
855
 
856
  # @ contact_form
857
- #: contact_form.php:1991
858
  msgid "Errors output"
859
  msgstr "Fejl output"
860
 
861
  # @ contact_form
862
- #: contact_form.php:1994
863
  msgid "Display error messages"
864
  msgstr "Vise fejlmeddelelser"
865
 
866
  # @ contact_form
867
- #: contact_form.php:1995
868
  msgid "Color of the input field errors."
869
  msgstr "Farven på input felt fejlene."
870
 
871
  # @ contact_form
872
- #: contact_form.php:1996
873
  msgid "Display error messages & color of the input field errors"
874
  msgstr "Vise fejlmeddelelser & farven på input felt fejlene"
875
 
876
  # @ contact_form
877
- #: contact_form.php:2001
878
  msgid "Add placeholder to the input blocks"
879
  msgstr "Tilføje pladsholder til input blokke"
880
 
881
  # @ contact_form
882
- #: contact_form.php:2007
883
  msgid "Add tooltips"
884
  msgstr "Føje værktøjstip"
885
 
886
  # @ contact_form
887
- #: contact_form.php:2021
888
  msgid "Email address"
889
  msgstr "E-mail-adresse:"
890
 
891
  # @ contact_form
892
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
893
  msgid "Phone Number"
894
  msgstr "Telefon:"
895
 
896
  # @ contact_form
897
- #: contact_form.php:2052
898
  msgid "Style options"
899
  msgstr "Indstilling af fremtoning"
900
 
901
  # @ contact_form
902
- #: contact_form.php:2056
903
  msgid "Text color"
904
  msgstr "Tekstfarve"
905
 
906
  # @ contact_form
907
- #: contact_form.php:2061
908
  msgid "Label text color"
909
  msgstr "Etiket tekstfarve"
910
 
911
  # @ contact_form
912
- #: contact_form.php:2066
913
  msgid "Placeholder color"
914
  msgstr "Pladsholder farve"
915
 
916
  # @ contact_form
917
- #: contact_form.php:2071
918
  msgid "Errors color"
919
  msgstr "Fejl farve"
920
 
921
  # @ contact_form
922
- #: contact_form.php:2076
923
  msgid "Error text color"
924
  msgstr "Fejl tekstfarve"
925
 
926
  # @ contact_form
927
- #: contact_form.php:2081
928
  msgid "Background color of the input field errors"
929
  msgstr "Baggrundsfarven af input felt fejl"
930
 
931
  # @ contact_form
932
- #: contact_form.php:2086
933
  msgid "Border color of the input field errors"
934
  msgstr "Kantfarven på inputfelt fejl"
935
 
936
  # @ contact_form
937
- #: contact_form.php:2091
938
  msgid "Placeholder color of the input field errors"
939
  msgstr "Pladsholder farven på input felt fejlene"
940
 
941
  # @ contact_form
942
- #: contact_form.php:2096
943
  msgid "Input fields"
944
  msgstr "Felter"
945
 
946
  # @ contact_form
947
- #: contact_form.php:2101
948
  msgid "Input fields background color"
949
  msgstr "Inputfelter baggrundsfarve"
950
 
951
  # @ contact_form
952
- #: contact_form.php:2106
953
  msgid "Text fields color"
954
  msgstr "Tekst felter farve"
955
 
956
  # @ contact_form
957
- #: contact_form.php:2110
958
  msgid "Border width in px, numbers only"
959
  msgstr "Kantbredde i px, kun tal"
960
 
961
  # @ contact_form
962
- #: contact_form.php:2115 contact_form.php:2139
963
  msgid "Border color"
964
  msgstr "Ramme farve"
965
 
966
  # @ contact_form
967
- #: contact_form.php:2120
968
  msgid "Submit button"
969
  msgstr "Send knap"
970
 
971
  # @ contact_form
972
- #: contact_form.php:2124
973
  msgid "Width in px, numbers only"
974
  msgstr "Bredde i px, kun tal"
975
 
976
  # @ contact_form
977
- #: contact_form.php:2129
978
  msgid "Button color"
979
  msgstr "Knap farve"
980
 
981
  # @ contact_form
982
- #: contact_form.php:2134
983
  msgid "Button text color"
984
  msgstr "Knap tekstfarve"
985
 
986
  # @ contact_form
987
- #: contact_form.php:2163
988
  msgid "Contact Form | Preview"
989
  msgstr "Kontakt Form | Preview"
990
 
991
- #: contact_form.php:2164
992
  msgid "Drag the necessary field to sort fields."
993
  msgstr "Træk feltet nødvendigt hvis du vil sortere felterne."
994
 
995
  # @ contact_form
996
- #: contact_form.php:2376
997
  #, fuzzy
998
  msgid ""
999
  "If you would like to add the Contact Form to your website, just copy and "
@@ -1003,27 +1015,27 @@ msgstr ""
1003
  "indsætte denne ufuldkommenhed til din post eller side eller widget:"
1004
 
1005
  # @ contact_form
1006
- #: contact_form.php:2504
1007
  msgid "Sorry, email message could not be delivered."
1008
  msgstr "Beklager, e-mailen ikke kunne leveres."
1009
 
1010
  # @ contact_form
1011
- #: contact_form.php:3094 contact_form.php:3096
1012
  msgid "Sent from (ip address)"
1013
  msgstr "Sendt fra (ip adresse)"
1014
 
1015
  # @ contact_form
1016
- #: contact_form.php:3124
1017
  msgid "Contact from"
1018
  msgstr "Kontakt fra formen"
1019
 
1020
  # @ contact_form
1021
- #: contact_form.php:3129 contact_form.php:3178
1022
  msgid "Site"
1023
  msgstr "Hjemmeside"
1024
 
1025
  # @ contact_form
1026
- #: contact_form.php:3308
1027
  msgid ""
1028
  "If you can see this MIME, it means that the MIME type is not supported by "
1029
  "your email client!"
@@ -1032,26 +1044,26 @@ msgstr ""
1032
  "din e-mail-klient!"
1033
 
1034
  # @ contact_form
1035
- #: contact_form.php:3391
1036
  msgid "FAQ"
1037
  msgstr "FAQ"
1038
 
1039
  # @ contact_form
1040
- #: contact_form.php:3392
1041
  msgid "Support"
1042
  msgstr "Support"
1043
 
1044
  # @ contact_form
1045
- #: contact_form.php:3441
1046
  msgid "Are you sure that you want to delete this language data?"
1047
  msgstr "Er du sikker på at du vil slette dette sprogdata?"
1048
 
1049
  # @ contact_form
1050
- #: contact_form.php:3462
1051
  msgid "Add multiple forms"
1052
  msgstr "Tilføje flere formularer"
1053
 
1054
- #: contact_form.php:3462
1055
  msgid ""
1056
  "Install Contact Form Multi plugin to create unlimited number of contact "
1057
  "forms."
@@ -1060,47 +1072,39 @@ msgstr ""
1060
  "formularer."
1061
 
1062
  # @ contact_form
1063
- #: contact_form.php:3467
1064
  msgid "Learn more"
1065
  msgstr "Få mere at vide"
1066
 
1067
- #: contact_form.php:3693
1068
  msgid "Close notice"
1069
  msgstr ""
1070
 
1071
  # @ contact_form
1072
- #: contact_form.php:3698
1073
  msgid "allows to store your messages to the database."
1074
  msgstr "giver mulighed for at gemme dine meddelelser til databasen."
1075
 
1076
  # @ contact_form
1077
- #: contact_form.php:3699
1078
  msgid "Manage messages that have been sent from your website."
1079
  msgstr "Administrere meddelelser, der er blevet sendt fra dit websted."
1080
 
1081
  # @ contact_form
1082
- #: contact_form.php:3702
1083
  msgid "Learn More"
1084
  msgstr "Læs mere"
1085
 
1086
  # @ contact_form
1087
- #: contact_form.php:3762
1088
  msgid "Contact form"
1089
  msgstr "Kontaktformular"
1090
 
1091
  # @ contact_form
1092
- #: contact_form.php:3775 contact_form.php:3785
1093
  msgid "Language"
1094
  msgstr "Sprog"
1095
 
1096
- #: includes/deprecated.php:168
1097
- #, php-format
1098
- msgid ""
1099
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
1100
- "replace it with %3s. If you close this message it'll appear again after "
1101
- "deprecated shortcode reuse."
1102
- msgstr ""
1103
-
1104
  # @ contact_form
1105
  #~ msgid "Unlock premium options by upgrading to Pro version"
1106
  #~ msgstr "Låse premium muligheder ved at opgradere til Pro versionen"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:15+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: da_DA\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
+ #: contact_form.php:37 contact_form.php:1064
24
  msgid "Contact Form Settings"
25
  msgstr "Kontakt Form Indstillinger"
26
 
27
  # @ contact_form
28
+ #: contact_form.php:37
29
  msgid "Contact Form"
30
  msgstr "Kontaktformular"
31
 
32
  # @ contact_form
33
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
34
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
35
+ #: contact_form.php:3181 contact_form.php:3227
36
  msgid "Name"
37
  msgstr "Navn:"
38
 
39
  # @ contact_form
40
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
41
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
42
+ #: contact_form.php:3233
43
  msgid "Address"
44
  msgstr "Adresse:"
45
 
46
  # @ contact_form
47
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
48
+ #: contact_form.php:1765
49
  msgid "Email Address"
50
  msgstr "E-mail-adresse:"
51
 
52
  # @ contact_form
53
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
54
+ #: contact_form.php:1766
55
  msgid "Phone number"
56
  msgstr "Telefon:"
57
 
58
  # @ contact_form
59
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
60
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
61
+ #: contact_form.php:3242
62
  msgid "Subject"
63
  msgstr "Emne:"
64
 
65
  # @ contact_form
66
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
67
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
68
+ #: contact_form.php:3246
69
  msgid "Message"
70
  msgstr "Besked:"
71
 
72
  # @ contact_form
73
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
74
+ #: contact_form.php:2058
75
  msgid "Attachment"
76
  msgstr "Vedhæft fil:"
77
 
78
  # @ contact_form
79
+ #: contact_form.php:287
80
  msgid ""
81
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
82
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
85
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
86
 
87
  # @ contact_form
88
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
89
  msgid "Send me a copy"
90
  msgstr "Send mig en kopi"
91
 
92
  # @ contact_form
93
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
94
  msgid "Submit"
95
  msgstr "Gennemfør"
96
 
97
  # @ contact_form
98
+ #: contact_form.php:290
99
  msgid "Your name is required."
100
  msgstr "Dit navn er påkrævet."
101
 
102
  # @ contact_form
103
+ #: contact_form.php:291
104
  msgid "Address is required."
105
  msgstr "Adresse er påkrævet."
106
 
107
  # @ contact_form
108
+ #: contact_form.php:292
109
  msgid "A valid email address is required."
110
  msgstr "En gyldig email adresse er påkrævet."
111
 
112
  # @ contact_form
113
+ #: contact_form.php:293
114
  msgid "Phone number is required."
115
  msgstr "Telefonnummer er påkrævet."
116
 
117
  # @ contact_form
118
+ #: contact_form.php:294
119
  msgid "Subject is required."
120
  msgstr "Emne er påkrævet."
121
 
122
  # @ contact_form
123
+ #: contact_form.php:295
124
  msgid "Message text is required."
125
  msgstr "Besked tekst er påkrævet."
126
 
127
  # @ contact_form
128
+ #: contact_form.php:296
129
  msgid "File format is not valid."
130
  msgstr "Filformatet er ikke gyldig."
131
 
132
  # @ contact_form
133
+ #: contact_form.php:297
134
  msgid "File upload error."
135
  msgstr "Upload fejl"
136
 
137
  # @ contact_form
138
+ #: contact_form.php:298
139
  msgid "The file could not be uploaded."
140
  msgstr "Filen kunne ikke uploades."
141
 
142
  # @ contact_form
143
+ #: contact_form.php:299
144
  msgid "This file is too large."
145
  msgstr "Denne fil er for stor."
146
 
147
  # @ contact_form
148
+ #: contact_form.php:300
149
  msgid "Please fill out the CAPTCHA."
150
  msgstr "Udfyld CAPTCHA."
151
 
152
  # @ contact_form
153
+ #: contact_form.php:301
154
  msgid "Please make corrections below and try again."
155
  msgstr "Venligst foretage korrektioner nedenfor, og prøv igen."
156
 
157
  # @ contact_form
158
+ #: contact_form.php:303
159
  msgid "Thank you for contacting us."
160
  msgstr "Tak for din henvendelse."
161
 
162
  # @ contact_form
163
+ #: contact_form.php:759 contact_form.php:1021
164
  msgid "Settings saved."
165
  msgstr "Ændringerne blev gemt."
166
 
167
+ #: contact_form.php:966
168
  msgid ""
169
  "Email 'FROM' field option was changed, which may cause email messages being "
170
  "moved to the spam folder or email delivery failures."
173
  "flyttes til spam omslag eller email levering fiaskoerne."
174
 
175
  # @ contact_form
176
+ #: contact_form.php:976
177
  msgid ""
178
  "If the 'Redirect to page' option is selected then the URL field should be in "
179
  "the following format"
182
  "følgende format"
183
 
184
  # @ contact_form
185
+ #: contact_form.php:983
186
  msgid "Such user does not exist."
187
  msgstr "Sådan bruger findes ikke."
188
 
189
  # @ contact_form
190
+ #: contact_form.php:993
191
  msgid ""
192
  "Please enter a valid email address in the 'Use this email address' field."
193
  msgstr "Angiv en gyldig e-mail-adresse i feltet 'Brug denne e-mail-adresse'."
194
 
195
  # @ contact_form
196
+ #: contact_form.php:1001
197
  msgid "Please enter a valid email address in the 'FROM' field."
198
  msgstr "Indsæt en gyldig emailadresse i fra-feltet"
199
 
200
  # @ contact_form
201
+ #: contact_form.php:1023
202
  msgid "Settings are not saved."
203
  msgstr "Ændringerne er ikke gemt"
204
 
205
+ #: contact_form.php:1061
206
  msgid "All plugin settings were restored."
207
  msgstr "Alle plugin indstillinger blev gendannet."
208
 
209
+ #: contact_form.php:1067
210
  msgid "How to Use Step-by-step Instruction"
211
  msgstr "Hvordan man bruger en trinvis instruktion"
212
 
213
  # @ contact_form
214
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
215
  msgid "Settings"
216
  msgstr "Indstillinger"
217
 
218
  # @ contact_form
219
+ #: contact_form.php:1071
220
  msgid "Additional settings"
221
  msgstr "Yderligere indstillinger"
222
 
223
+ #: contact_form.php:1072
224
  msgid "Appearance"
225
  msgstr "Udseende"
226
 
227
+ #: contact_form.php:1073
228
  msgid "Custom code"
229
  msgstr ""
230
 
231
  # @ contact_form
232
+ #: contact_form.php:1074
233
  msgid "Go PRO"
234
  msgstr "Gå PRO"
235
 
236
  # @ contact_form
237
+ #: contact_form.php:1085
238
  #, fuzzy
239
  msgid "Notice"
240
  msgstr "Bemærk:"
241
 
242
+ #: contact_form.php:1089
243
  msgid "NEW_FORM"
244
  msgstr "NEW_FORM"
245
 
246
  # @ contact_form
247
+ #: contact_form.php:1090
248
  msgid ""
249
  "If you want to create multiple contact forms, please install the Contact "
250
  "Form Multi plugin."
253
  "formular Multi stik."
254
 
255
  # @ contact_form
256
+ #: contact_form.php:1099
257
  #, php-format
258
  msgid ""
259
  "If you would like to add a Contact Form to your page or post, please use %s "
262
  "Hvis du ønsker at tilføje en kontakt formular på din side eller post, skal "
263
  "du bruge knappen for %s"
264
 
265
+ #: contact_form.php:1105
266
  #, php-format
267
  msgid ""
268
  "You can add the Contact Form to your page or post by clicking on %s button "
276
  "Form sprog."
277
 
278
  # @ contact_form
279
+ #: contact_form.php:1114
280
  msgid ""
281
  "If you leave the fields empty, the messages will be sent to the email "
282
  "address specified during registration."
285
  "angivet under registreringen."
286
 
287
  # @ contact_form
288
+ #: contact_form.php:1117
289
  #, fuzzy
290
  msgid "The user's email address"
291
  msgstr "Brugerens e-mail-adresse:"
292
 
293
  # @ contact_form
294
+ #: contact_form.php:1121
295
  msgid "Select a username"
296
  msgstr "Vælg et brugernavn."
297
 
298
  # @ contact_form
299
+ #: contact_form.php:1134
300
  #, fuzzy
301
  msgid ""
302
  "Select a username of the person who should get the messages from the contact "
306
  "kontaktpersonformularen."
307
 
308
  # @ contact_form
309
+ #: contact_form.php:1138
310
  #, fuzzy
311
  msgid "Use this email address"
312
  msgstr "Brug denne e-mail-adresse:"
313
 
314
  # @ contact_form
315
+ #: contact_form.php:1142
316
  #, fuzzy
317
  msgid "Enter the email address for receiving messages"
318
  msgstr "Indtast den e-mailadresse du vil have de meddelelser, der sendes til."
319
 
320
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
321
+ #: contact_form.php:1957 contact_form.php:3514
322
  msgid "Close"
323
  msgstr "Luk"
324
 
325
  # @ contact_form
326
+ #: contact_form.php:1153
327
  #, fuzzy
328
  msgid "Add department selectbox to the contact form"
329
  msgstr "Tilføje afdeling selectbox til kontakt formularen:"
330
 
331
  # @ contact_form
332
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
333
+ #: contact_form.php:2163
334
  msgid "If you upgrade to Pro version all your settings will be saved."
335
  msgstr "Hvis du opgradere til Pro-version vil alle indstillingerne blive gemt."
336
 
337
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
338
+ #: contact_form.php:1878 contact_form.php:2170
339
  msgid "Upgrade to Pro"
340
  msgstr ""
341
 
342
  # @ contact_form
343
+ #: contact_form.php:1176
344
  msgid "Save emails to the database"
345
  msgstr "Gem dine emails i databasen"
346
 
347
  # @ contact_form
348
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
349
  msgid "Using"
350
  msgstr "Ved hjælp af"
351
 
352
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
353
+ #: contact_form.php:1623
354
  msgid "Please activate the appropriate option on"
355
  msgstr ""
356
 
357
  # @ contact_form
358
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
359
+ #: contact_form.php:1626
360
  #, fuzzy
361
  msgid "settings page"
362
  msgstr "Ændringerne blev gemt."
363
 
364
  # @ contact_form
365
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
366
+ #: contact_form.php:1633
367
  msgid "Activate"
368
  msgstr "Aktiver"
369
 
370
  # @ contact_form
371
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
372
+ #: contact_form.php:1638
373
  msgid "Download"
374
  msgstr "Download"
375
 
376
+ #: contact_form.php:1222
377
  msgid "Sending method"
378
  msgstr ""
379
 
380
  # @ contact_form
381
+ #: contact_form.php:1227
382
  msgid "Wp-mail"
383
  msgstr "WP-mail"
384
 
385
  # @ contact_form
386
+ #: contact_form.php:1229
387
  #, fuzzy
388
  msgid "You can use the Wordpress wp_mail function for mailing"
389
  msgstr "Du kan bruge funktionen wp_mail til mailing"
390
 
391
  # @ contact_form
392
+ #: contact_form.php:1232
393
  msgid "Mail"
394
  msgstr "E-post"
395
 
396
  # @ contact_form
397
+ #: contact_form.php:1234
398
  #, fuzzy
399
  msgid "You can use the PHP mail function for mailing"
400
  msgstr "Du kan bruge funktionen wp_mail til mailing"
401
 
402
+ #: contact_form.php:1239
403
  msgid "'FROM' field"
404
  msgstr "'Fra' feltet"
405
 
406
  # @ contact_form
407
+ #: contact_form.php:1255
408
  msgid "User name"
409
  msgstr "Brugernavn"
410
 
411
  # @ contact_form
412
+ #: contact_form.php:1257
413
  msgid ""
414
  "The name of the user who fills the form will be used in the field 'From'."
415
  msgstr ""
416
  "Navnet på den bruger, der udfylder formularen skal bruges i feltet 'Fra'."
417
 
418
  # @ contact_form
419
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
420
  msgid "Email"
421
  msgstr "e-mail"
422
 
423
  # @ contact_form
424
+ #: contact_form.php:1279
425
  msgid "User email"
426
  msgstr "Bruger E-mail"
427
 
428
  # @ contact_form
429
+ #: contact_form.php:1281
430
  msgid ""
431
  "The email address of the user who fills the form will be used in the field "
432
  "'From'."
434
  "E-mail-adressen på den bruger, der udfylder formularen skal bruges i feltet "
435
  "'Fra'."
436
 
437
+ #: contact_form.php:1290
438
  msgid ""
439
  "If this option is changed, email messages may be moved to the spam folder or "
440
  "email delivery failures may occur."
443
  "mappen eller email levering fejl kan opstå."
444
 
445
  # @ contact_form
446
+ #: contact_form.php:1299
447
  msgid "Required symbol"
448
  msgstr "Kræves symbol"
449
 
450
  # @ contact_form
451
+ #: contact_form.php:1309
452
  msgid "Fields"
453
  msgstr "Felter"
454
 
455
  # @ contact_form
456
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
457
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
458
  msgid "Used"
459
  msgstr "Brugt"
460
 
461
  # @ contact_form
462
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
463
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
464
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
465
  msgid "Required"
466
  msgstr "Kræves"
467
 
468
  # @ contact_form
469
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
470
+ #: contact_form.php:1445 contact_form.php:1469
471
  msgid "Visible"
472
  msgstr "Synlig"
473
 
474
  # @ contact_form
475
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
476
+ #: contact_form.php:1449 contact_form.php:1473
477
  msgid "Disabled for editing"
478
  msgstr "Handicappede til redigering"
479
 
480
  # @ contact_form
481
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
482
+ #: contact_form.php:1477
483
  msgid "Field's default value"
484
  msgstr "Feltets standardværdi"
485
 
486
  # @ contact_form
487
+ #: contact_form.php:1322
488
  msgid "Department selectbox"
489
  msgstr "Afdeling selectbox"
490
 
491
+ #: contact_form.php:1354
492
  msgid "Use User's name as a default value if the user is logged in."
493
  msgstr "Brug brugerens navn som standardværdi, hvis brugeren er logget på."
494
 
495
+ #: contact_form.php:1355 contact_form.php:1415
496
  msgid ""
497
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
498
  "in users."
501
  "journaliseret-i brugernes."
502
 
503
  # @ contact_form
504
+ #: contact_form.php:1361
505
  msgid "Location selectbox"
506
  msgstr "Beliggenhed selectbox"
507
 
508
+ #: contact_form.php:1414
509
  msgid "Use User's email as a default value if the user is logged in."
510
  msgstr ""
511
  "Brug brugerens e-mail som en standardværdi, hvis brugeren er logget på."
512
 
513
  # @ contact_form
514
+ #: contact_form.php:1498
515
  msgid "Attachment block"
516
  msgstr "Vedhæftet fil blok"
517
 
518
  # @ contact_form
519
+ #: contact_form.php:1500
520
  msgid "Users can attach the following file formats"
521
  msgstr "Brugerne kan vedhæfte følgende filformater"
522
 
523
  # @ contact_form
524
+ #: contact_form.php:1518
525
  msgid "Add to the form"
526
  msgstr "Føje til formularen"
527
 
528
  # @ contact_form
529
+ #: contact_form.php:1523
530
  msgid "Tips below the Attachment"
531
  msgstr "Tips nedenfor den vedhæftede fil"
532
 
533
  # @ contact_form
534
+ #: contact_form.php:1530
535
  msgid "'Send me a copy' block"
536
  msgstr "'Sende mig en afskrift' blok"
537
 
538
+ #: contact_form.php:1558
539
  msgid "Activate for network"
540
  msgstr ""
541
 
542
  # @ contact_form
543
+ #: contact_form.php:1649
544
  msgid "Agreement checkbox"
545
  msgstr "Aftalen afkrydsningsfeltet"
546
 
547
  # @ contact_form
548
+ #: contact_form.php:1649
549
  msgid "Required checkbox for submitting the form"
550
  msgstr "Kræves afkrydsningsfeltet til at sende formularen"
551
 
552
  # @ contact_form
553
+ #: contact_form.php:1650
554
  msgid "Optional checkbox"
555
  msgstr "Valgfri afkrydsningsfeltet"
556
 
557
  # @ contact_form
558
+ #: contact_form.php:1650
559
  msgid "Optional checkbox, the results of which will be displayed in email"
560
  msgstr "Valgfri afkrydsningsfeltet, hvis resultater vil blive vist i e-mail"
561
 
562
  # @ contact_form
563
+ #: contact_form.php:1668
564
  msgid "Delete an attachment file from the server after the email is sent"
565
  msgstr "Slette en vedhæftet fil fra serveren, efter at e-mailen sendes"
566
 
567
  # @ contact_form
568
+ #: contact_form.php:1674
569
  msgid "Email in HTML format sending"
570
  msgstr "E-mail i HTML-format at sende"
571
 
572
  # @ contact_form
573
+ #: contact_form.php:1678
574
  msgid "Display additional info in the email"
575
  msgstr "Få vist yderligere info i e-mailen"
576
 
577
  # @ contact_form
578
+ #: contact_form.php:1684
579
  #, fuzzy
580
  msgid "Sent from (IP address)"
581
  msgstr "Sendt fra (ip adresse)"
582
 
583
  # @ contact_form
584
+ #: contact_form.php:1684
585
  msgid "Example: Sent from (IP address):\t127.0.0.1"
586
  msgstr "Eksempel: Sendt fra (IP adresse): 127.0.0.1"
587
 
588
  # @ contact_form
589
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
590
  msgid "Date/Time"
591
  msgstr "Dato / Tid"
592
 
593
  # @ contact_form
594
+ #: contact_form.php:1685
595
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
596
  msgstr "Eksempel: Dato/tid: 19 August 2013 8:50 pm"
597
 
598
  # @ contact_form
599
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
600
  msgid "Sent from (referer)"
601
  msgstr "Sendt fra (referer)"
602
 
603
  # @ contact_form
604
+ #: contact_form.php:1686
605
  #, fuzzy
606
  msgid ""
607
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
609
  "Eksempel: Sendt fra (referer): http://bestwebsoft.com/contacts/contact-us/"
610
 
611
  # @ contact_form
612
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
613
  msgid "Using (user agent)"
614
  msgstr "Ved hjælp af (brugeragent)"
615
 
616
  # @ contact_form
617
+ #: contact_form.php:1687
618
  msgid ""
619
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
620
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
623
  "AppleWebKit/537.36 (KHTML, lige Gecko) Chrome/28.0.1500.95 Safari/537.36"
624
 
625
  # @ contact_form
626
+ #: contact_form.php:1692
627
  msgid "Language settings for the field names in the form"
628
  msgstr "Sprogindstillingerne for feltnavnene i form"
629
 
630
  # @ contact_form
631
+ #: contact_form.php:1701
632
  msgid "Add a language"
633
  msgstr "Tilføje et sprog"
634
 
635
  # @ contact_form
636
+ #: contact_form.php:1705
637
  msgid "Change the names of the contact form fields and error messages"
638
  msgstr "Ændre navne på kontaktpersoner formularfelter og fejlmeddelelser"
639
 
640
  # @ contact_form
641
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
642
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
643
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
644
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
645
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
646
  msgid "Default"
647
  msgstr "Standard"
648
 
649
  # @ contact_form
650
+ #: contact_form.php:1723 contact_form.php:1761
651
  msgid "click to expand/hide the list"
652
  msgstr "Klik for at udvide/skjule listen"
653
 
654
  # @ contact_form
655
+ #: contact_form.php:1732 contact_form.php:1770
656
  msgid "Tips below the Attachment block"
657
  msgstr "Tips nedenfor den vedhæftede fil blokere"
658
 
659
  # @ contact_form
660
+ #: contact_form.php:1735 contact_form.php:1773
661
  msgid "Error message for the Name field"
662
  msgstr "Fejlmeddelelse for feltet navn"
663
 
664
  # @ contact_form
665
+ #: contact_form.php:1736 contact_form.php:1774
666
  msgid "Error message for the Address field"
667
  msgstr "Fejlmeddelelse for feltet adresse"
668
 
669
  # @ contact_form
670
+ #: contact_form.php:1737 contact_form.php:1775
671
  msgid "Error message for the Email field"
672
  msgstr "Fejlmeddelelse for feltet E-mail"
673
 
674
  # @ contact_form
675
+ #: contact_form.php:1738 contact_form.php:1776
676
  msgid "Error message for the Phone field"
677
  msgstr "Fejlmeddelelse for feltet telefon"
678
 
679
  # @ contact_form
680
+ #: contact_form.php:1739 contact_form.php:1777
681
  msgid "Error message for the Subject field"
682
  msgstr "Fejlmeddelelse for feltet emne"
683
 
684
  # @ contact_form
685
+ #: contact_form.php:1740 contact_form.php:1778
686
  msgid "Error message for the Message field"
687
  msgstr "Fejl besked i feltet besked"
688
 
689
  # @ contact_form
690
+ #: contact_form.php:1741 contact_form.php:1779
691
  msgid "Error message about the file type for the Attachment field"
692
  msgstr "Fejlmeddelelse om filtypen til feltet vedhæftet fil"
693
 
694
  # @ contact_form
695
+ #: contact_form.php:1742 contact_form.php:1780
696
  msgid ""
697
  "Error message while uploading a file for the Attachment field to the server"
698
  msgstr "Fejlmeddelelse ved upload en fil til feltet vedhæftet fil til serveren"
699
 
700
  # @ contact_form
701
+ #: contact_form.php:1743 contact_form.php:1781
702
  msgid "Error message while moving the file for the Attachment field"
703
  msgstr "Fejlmeddelelse mens du flytter filen for feltet vedhæftet fil"
704
 
705
  # @ contact_form
706
+ #: contact_form.php:1744 contact_form.php:1782
707
  msgid "Error message when file size limit for the Attachment field is exceeded"
708
  msgstr ""
709
  "Fejlmeddelelse, når filstørrelse for feltet vedhæftet fil er overskredet"
710
 
711
  # @ contact_form
712
+ #: contact_form.php:1745 contact_form.php:1783
713
  msgid "Error message for the Captcha field"
714
  msgstr "Fejlmeddelelse for Captcha feltet"
715
 
716
  # @ contact_form
717
+ #: contact_form.php:1746 contact_form.php:1784
718
  msgid "Error message for the whole form"
719
  msgstr "Fejlmeddelelse for hele formularen"
720
 
721
  # @ contact_form
722
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
723
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
724
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
725
+ #: contact_form.php:3604
726
  msgid "Use shortcode"
727
  msgstr "Brug kortkode"
728
 
729
  # @ contact_form
730
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
731
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
732
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
733
+ #: contact_form.php:3604
734
  msgid "for this language"
735
  msgstr "for dette sprog"
736
 
737
  # @ contact_form
738
+ #: contact_form.php:1797
739
  msgid "Use the changed names of the contact form fields in the email"
740
  msgstr "Bruge ændret navnene på felterne kontaktformularen i e-mailen"
741
 
742
  # @ contact_form
743
+ #: contact_form.php:1803
744
  msgid "Action after email is sent"
745
  msgstr "Handling efter at e-mail er sendt"
746
 
747
  # @ contact_form
748
+ #: contact_form.php:1805
749
  msgid "Display text"
750
  msgstr "Vis tekst"
751
 
752
  # @ contact_form
753
+ #: contact_form.php:1819 contact_form.php:1833
754
  msgid "Text"
755
  msgstr "Tekst"
756
 
757
  # @ contact_form
758
+ #: contact_form.php:1844
759
  msgid "Redirect to the page"
760
  msgstr "Viderstil til side"
761
 
762
  # @ contact_form
763
+ #: contact_form.php:1845
764
  msgid "Url"
765
  msgstr "Url"
766
 
767
+ #: contact_form.php:1856
768
  msgid "Add field 'Reply-To' to the email header"
769
  msgstr "Tilføj feltet 'Svar til' til e-mail-header"
770
 
771
+ #: contact_form.php:1858
772
  msgid "Field 'Reply-To' will be initialized by user email"
773
  msgstr "Feltet 'Svar til' vil være initialiseret af brugeren e-mail"
774
 
775
  # @ contact_form_pro
776
+ #: contact_form.php:1862
777
  msgid "Auto Response"
778
  msgstr "Autosvar"
779
 
780
  # @ contact_form
781
+ #: contact_form.php:1866
782
  #, php-format
783
  msgid ""
784
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
789
  "til at vise data fra feltet besked samt %%sITENAME %% for at vise blog navn."
790
 
791
  # @ default
792
+ #: contact_form.php:1888 contact_form.php:2419
793
  msgid "Save Changes"
794
  msgstr "Gem ændringer"
795
 
796
+ #: contact_form.php:1901
797
  #, php-format
798
  msgid ""
799
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
800
  msgstr ""
801
  "Venligst JavaScript at ændre '%s', '%s' indstillinger og felter sortering."
802
 
803
+ #: contact_form.php:1901 contact_form.php:1910
804
  msgid "Form layout"
805
  msgstr "Formular Layout"
806
 
807
  # @ contact_form
808
+ #: contact_form.php:1901 contact_form.php:1922
809
  msgid "Submit position"
810
  msgstr "Indsende position"
811
 
812
+ #: contact_form.php:1914
813
  msgid "One column"
814
  msgstr "En kolonne"
815
 
816
+ #: contact_form.php:1917
817
  msgid "Two columns"
818
  msgstr "To kolonner"
819
 
820
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
821
+ #: contact_form.php:1998
822
  msgid "Left"
823
  msgstr "Venstre"
824
 
825
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
826
+ #: contact_form.php:2004
827
  msgid "Right"
828
  msgstr "Højre"
829
 
830
+ #: contact_form.php:1934
831
+ msgid "Width"
832
+ msgstr ""
833
+
834
+ #: contact_form.php:1941
835
+ msgid "Custom"
836
+ msgstr ""
837
+
838
+ #: contact_form.php:1948
839
+ msgid "px"
840
+ msgstr ""
841
+
842
+ #: contact_form.php:1961
843
  msgid "Form align"
844
  msgstr ""
845
 
846
+ #: contact_form.php:1968 contact_form.php:2001
847
  msgid "Center"
848
  msgstr ""
849
 
850
  # @ contact_form
851
+ #: contact_form.php:1976
852
  #, fuzzy
853
  msgid "Labels position"
854
  msgstr "Indsende position"
855
 
856
+ #: contact_form.php:1980
857
  msgid "Top"
858
  msgstr ""
859
 
860
+ #: contact_form.php:1989
861
  msgid "Bottom"
862
  msgstr ""
863
 
864
+ #: contact_form.php:1994
865
  msgid "Labels align"
866
  msgstr ""
867
 
868
  # @ contact_form
869
+ #: contact_form.php:2009
870
  msgid "Errors output"
871
  msgstr "Fejl output"
872
 
873
  # @ contact_form
874
+ #: contact_form.php:2012
875
  msgid "Display error messages"
876
  msgstr "Vise fejlmeddelelser"
877
 
878
  # @ contact_form
879
+ #: contact_form.php:2013
880
  msgid "Color of the input field errors."
881
  msgstr "Farven på input felt fejlene."
882
 
883
  # @ contact_form
884
+ #: contact_form.php:2014
885
  msgid "Display error messages & color of the input field errors"
886
  msgstr "Vise fejlmeddelelser & farven på input felt fejlene"
887
 
888
  # @ contact_form
889
+ #: contact_form.php:2019
890
  msgid "Add placeholder to the input blocks"
891
  msgstr "Tilføje pladsholder til input blokke"
892
 
893
  # @ contact_form
894
+ #: contact_form.php:2025
895
  msgid "Add tooltips"
896
  msgstr "Føje værktøjstip"
897
 
898
  # @ contact_form
899
+ #: contact_form.php:2039
900
  msgid "Email address"
901
  msgstr "E-mail-adresse:"
902
 
903
  # @ contact_form
904
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
905
  msgid "Phone Number"
906
  msgstr "Telefon:"
907
 
908
  # @ contact_form
909
+ #: contact_form.php:2070
910
  msgid "Style options"
911
  msgstr "Indstilling af fremtoning"
912
 
913
  # @ contact_form
914
+ #: contact_form.php:2074
915
  msgid "Text color"
916
  msgstr "Tekstfarve"
917
 
918
  # @ contact_form
919
+ #: contact_form.php:2079
920
  msgid "Label text color"
921
  msgstr "Etiket tekstfarve"
922
 
923
  # @ contact_form
924
+ #: contact_form.php:2084
925
  msgid "Placeholder color"
926
  msgstr "Pladsholder farve"
927
 
928
  # @ contact_form
929
+ #: contact_form.php:2089
930
  msgid "Errors color"
931
  msgstr "Fejl farve"
932
 
933
  # @ contact_form
934
+ #: contact_form.php:2094
935
  msgid "Error text color"
936
  msgstr "Fejl tekstfarve"
937
 
938
  # @ contact_form
939
+ #: contact_form.php:2099
940
  msgid "Background color of the input field errors"
941
  msgstr "Baggrundsfarven af input felt fejl"
942
 
943
  # @ contact_form
944
+ #: contact_form.php:2104
945
  msgid "Border color of the input field errors"
946
  msgstr "Kantfarven på inputfelt fejl"
947
 
948
  # @ contact_form
949
+ #: contact_form.php:2109
950
  msgid "Placeholder color of the input field errors"
951
  msgstr "Pladsholder farven på input felt fejlene"
952
 
953
  # @ contact_form
954
+ #: contact_form.php:2114
955
  msgid "Input fields"
956
  msgstr "Felter"
957
 
958
  # @ contact_form
959
+ #: contact_form.php:2119
960
  msgid "Input fields background color"
961
  msgstr "Inputfelter baggrundsfarve"
962
 
963
  # @ contact_form
964
+ #: contact_form.php:2124
965
  msgid "Text fields color"
966
  msgstr "Tekst felter farve"
967
 
968
  # @ contact_form
969
+ #: contact_form.php:2128
970
  msgid "Border width in px, numbers only"
971
  msgstr "Kantbredde i px, kun tal"
972
 
973
  # @ contact_form
974
+ #: contact_form.php:2133 contact_form.php:2157
975
  msgid "Border color"
976
  msgstr "Ramme farve"
977
 
978
  # @ contact_form
979
+ #: contact_form.php:2138
980
  msgid "Submit button"
981
  msgstr "Send knap"
982
 
983
  # @ contact_form
984
+ #: contact_form.php:2142
985
  msgid "Width in px, numbers only"
986
  msgstr "Bredde i px, kun tal"
987
 
988
  # @ contact_form
989
+ #: contact_form.php:2147
990
  msgid "Button color"
991
  msgstr "Knap farve"
992
 
993
  # @ contact_form
994
+ #: contact_form.php:2152
995
  msgid "Button text color"
996
  msgstr "Knap tekstfarve"
997
 
998
  # @ contact_form
999
+ #: contact_form.php:2181
1000
  msgid "Contact Form | Preview"
1001
  msgstr "Kontakt Form | Preview"
1002
 
1003
+ #: contact_form.php:2182
1004
  msgid "Drag the necessary field to sort fields."
1005
  msgstr "Træk feltet nødvendigt hvis du vil sortere felterne."
1006
 
1007
  # @ contact_form
1008
+ #: contact_form.php:2408
1009
  #, fuzzy
1010
  msgid ""
1011
  "If you would like to add the Contact Form to your website, just copy and "
1015
  "indsætte denne ufuldkommenhed til din post eller side eller widget:"
1016
 
1017
  # @ contact_form
1018
+ #: contact_form.php:2536
1019
  msgid "Sorry, email message could not be delivered."
1020
  msgstr "Beklager, e-mailen ikke kunne leveres."
1021
 
1022
  # @ contact_form
1023
+ #: contact_form.php:3137 contact_form.php:3139
1024
  msgid "Sent from (ip address)"
1025
  msgstr "Sendt fra (ip adresse)"
1026
 
1027
  # @ contact_form
1028
+ #: contact_form.php:3167
1029
  msgid "Contact from"
1030
  msgstr "Kontakt fra formen"
1031
 
1032
  # @ contact_form
1033
+ #: contact_form.php:3172 contact_form.php:3221
1034
  msgid "Site"
1035
  msgstr "Hjemmeside"
1036
 
1037
  # @ contact_form
1038
+ #: contact_form.php:3351
1039
  msgid ""
1040
  "If you can see this MIME, it means that the MIME type is not supported by "
1041
  "your email client!"
1044
  "din e-mail-klient!"
1045
 
1046
  # @ contact_form
1047
+ #: contact_form.php:3434
1048
  msgid "FAQ"
1049
  msgstr "FAQ"
1050
 
1051
  # @ contact_form
1052
+ #: contact_form.php:3435
1053
  msgid "Support"
1054
  msgstr "Support"
1055
 
1056
  # @ contact_form
1057
+ #: contact_form.php:3484
1058
  msgid "Are you sure that you want to delete this language data?"
1059
  msgstr "Er du sikker på at du vil slette dette sprogdata?"
1060
 
1061
  # @ contact_form
1062
+ #: contact_form.php:3505
1063
  msgid "Add multiple forms"
1064
  msgstr "Tilføje flere formularer"
1065
 
1066
+ #: contact_form.php:3505
1067
  msgid ""
1068
  "Install Contact Form Multi plugin to create unlimited number of contact "
1069
  "forms."
1072
  "formularer."
1073
 
1074
  # @ contact_form
1075
+ #: contact_form.php:3510
1076
  msgid "Learn more"
1077
  msgstr "Få mere at vide"
1078
 
1079
+ #: contact_form.php:3751
1080
  msgid "Close notice"
1081
  msgstr ""
1082
 
1083
  # @ contact_form
1084
+ #: contact_form.php:3756
1085
  msgid "allows to store your messages to the database."
1086
  msgstr "giver mulighed for at gemme dine meddelelser til databasen."
1087
 
1088
  # @ contact_form
1089
+ #: contact_form.php:3757
1090
  msgid "Manage messages that have been sent from your website."
1091
  msgstr "Administrere meddelelser, der er blevet sendt fra dit websted."
1092
 
1093
  # @ contact_form
1094
+ #: contact_form.php:3760
1095
  msgid "Learn More"
1096
  msgstr "Læs mere"
1097
 
1098
  # @ contact_form
1099
+ #: contact_form.php:3820
1100
  msgid "Contact form"
1101
  msgstr "Kontaktformular"
1102
 
1103
  # @ contact_form
1104
+ #: contact_form.php:3833 contact_form.php:3843
1105
  msgid "Language"
1106
  msgstr "Sprog"
1107
 
 
 
 
 
 
 
 
 
1108
  # @ contact_form
1109
  #~ msgid "Unlock premium options by upgrading to Pro version"
1110
  #~ msgstr "Låse premium muligheder ved at opgradere til Pro versionen"
languages/contact-form-plugin-de_DE.mo CHANGED
Binary file
languages/contact-form-plugin-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: 2017-02-27 16:22+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:22+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Alex <private183@web.de>\n"
9
  "Language: de_DE\n"
@@ -17,54 +17,54 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:42 contact_form.php:1066
21
  msgid "Contact Form Settings"
22
  msgstr "Kontakt-Form Einstellungen"
23
 
24
- #: contact_form.php:42
25
  msgid "Contact Form"
26
  msgstr "Kontakt-Form"
27
 
28
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
29
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
30
- #: contact_form.php:3138 contact_form.php:3184
31
  msgid "Name"
32
  msgstr "Name"
33
 
34
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
35
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
36
- #: contact_form.php:3190
37
  msgid "Address"
38
  msgstr "Adresse: "
39
 
40
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
41
- #: contact_form.php:1767
42
  msgid "Email Address"
43
  msgstr "E-Mail Adresse:"
44
 
45
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
46
- #: contact_form.php:1768
47
  msgid "Phone number"
48
  msgstr "Telefonnummer:"
49
 
50
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
51
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
52
- #: contact_form.php:3199
53
  msgid "Subject"
54
  msgstr "Betreff"
55
 
56
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
57
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
58
- #: contact_form.php:3203
59
  msgid "Message"
60
  msgstr "Inhalt"
61
 
62
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
63
- #: contact_form.php:2040
64
  msgid "Attachment"
65
  msgstr "Anhang:"
66
 
67
- #: contact_form.php:302
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -72,77 +72,77 @@ msgstr ""
72
  "Unterstützte Dateitypen: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
73
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
76
  msgid "Send me a copy"
77
  msgstr "Kopie an mich senden"
78
 
79
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
80
  msgid "Submit"
81
  msgstr "Senden"
82
 
83
- #: contact_form.php:305
84
  msgid "Your name is required."
85
  msgstr "Dein Name wird benötigt."
86
 
87
- #: contact_form.php:306
88
  msgid "Address is required."
89
  msgstr "Adresse wird benötigt"
90
 
91
- #: contact_form.php:307
92
  msgid "A valid email address is required."
93
  msgstr "Eine gültige E-Mail Adresse wird benötigt."
94
 
95
- #: contact_form.php:308
96
  msgid "Phone number is required."
97
  msgstr "Deine Telefonnummer wird benötigt."
98
 
99
- #: contact_form.php:309
100
  msgid "Subject is required."
101
  msgstr "Ein Betreff wird benötigt."
102
 
103
- #: contact_form.php:310
104
  msgid "Message text is required."
105
  msgstr "Ein Inhalt wird benötigt."
106
 
107
- #: contact_form.php:311
108
  msgid "File format is not valid."
109
  msgstr "Datei Format ist nicht erlaubt."
110
 
111
- #: contact_form.php:312
112
  msgid "File upload error."
113
  msgstr "Datei-Übertragungsfehler"
114
 
115
- #: contact_form.php:313
116
  msgid "The file could not be uploaded."
117
  msgstr "Die Datei konnte nicht hochgeladen werden."
118
 
119
- #: contact_form.php:314
120
  msgid "This file is too large."
121
  msgstr "Diese Datei ist zu groß."
122
 
123
- #: contact_form.php:315
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Bitte CAPTCHA ausfüllen."
126
 
127
- #: contact_form.php:316
128
  msgid "Please make corrections below and try again."
129
- msgstr "Bitte mach unten korrekturen und versuche es erneut."
130
 
131
- #: contact_form.php:318
132
  msgid "Thank you for contacting us."
133
  msgstr "Danke für Ihre Nachricht."
134
 
135
- #: contact_form.php:761 contact_form.php:1023
136
  msgid "Settings saved."
137
  msgstr "Einstellungen gespeichert."
138
 
139
- #: contact_form.php:968
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
- #: contact_form.php:978
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
@@ -150,12 +150,12 @@ msgstr ""
150
  "Wenn die 'Redirect to page/Umleiten zur Seite' Option verwendet wird, dann "
151
  "sollte das Feld URL in folgendem Format sein"
152
 
153
- #: contact_form.php:985
154
  #, fuzzy
155
  msgid "Such user does not exist."
156
  msgstr "Dieser User exestiert nicht. Einstellungen werden nicht gespeichert."
157
 
158
- #: contact_form.php:995
159
  #, fuzzy
160
  msgid ""
161
  "Please enter a valid email address in the 'Use this email address' field."
@@ -163,63 +163,63 @@ msgstr ""
163
  "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
164
  "Einstellungen werden nicht gespeichert."
165
 
166
- #: contact_form.php:1003
167
  #, fuzzy
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
171
  "Einstellungen werden nicht gespeichert."
172
 
173
- #: contact_form.php:1025
174
  #, fuzzy
175
  msgid "Settings are not saved."
176
  msgstr "Einstellungen gespeichert."
177
 
178
- #: contact_form.php:1063
179
  msgid "All plugin settings were restored."
180
  msgstr ""
181
 
182
- #: contact_form.php:1069
183
  msgid "How to Use Step-by-step Instruction"
184
  msgstr ""
185
 
186
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
187
  msgid "Settings"
188
  msgstr "Einstellungen"
189
 
190
- #: contact_form.php:1073
191
  #, fuzzy
192
  msgid "Additional settings"
193
  msgstr "Weitere Optionen"
194
 
195
- #: contact_form.php:1074
196
  msgid "Appearance"
197
  msgstr ""
198
 
199
- #: contact_form.php:1075
200
  msgid "Custom code"
201
  msgstr ""
202
 
203
- #: contact_form.php:1076
204
  msgid "Go PRO"
205
  msgstr "Go PRO"
206
 
207
- #: contact_form.php:1087
208
  #, fuzzy
209
  msgid "Notice"
210
  msgstr "Notiz:"
211
 
212
- #: contact_form.php:1091
213
  msgid "NEW_FORM"
214
  msgstr ""
215
 
216
- #: contact_form.php:1092
217
  msgid ""
218
  "If you want to create multiple contact forms, please install the Contact "
219
  "Form Multi plugin."
220
  msgstr ""
221
 
222
- #: contact_form.php:1101
223
  #, fuzzy, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -228,7 +228,7 @@ msgstr ""
228
  "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und "
229
  "fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
230
 
231
- #: contact_form.php:1107
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -237,7 +237,7 @@ msgid ""
237
  "language."
238
  msgstr ""
239
 
240
- #: contact_form.php:1116
241
  msgid ""
242
  "If you leave the fields empty, the messages will be sent to the email "
243
  "address specified during registration."
@@ -245,17 +245,17 @@ msgstr ""
245
  "Wenn sie die Felder leer lassen, wird die Nachricht an die bei der "
246
  "registrierung angegebenen E-Mail Adresse gesendet."
247
 
248
- #: contact_form.php:1119
249
  #, fuzzy
250
  msgid "The user's email address"
251
  msgstr "Benutzer E-Mail Adresse"
252
 
253
- #: contact_form.php:1123
254
  #, fuzzy
255
  msgid "Select a username"
256
  msgstr "Benutzername erstellen"
257
 
258
- #: contact_form.php:1136
259
  #, fuzzy
260
  msgid ""
261
  "Select a username of the person who should get the messages from the contact "
@@ -264,114 +264,114 @@ msgstr ""
264
  "Geben sie den Benutzernamen des Users an, der die Nachrichten der Kontakt-"
265
  "Form erhalten soll."
266
 
267
- #: contact_form.php:1140
268
  #, fuzzy
269
  msgid "Use this email address"
270
  msgstr "Nutzen sie diese E-Mail Adresse"
271
 
272
- #: contact_form.php:1144
273
  #, fuzzy
274
  msgid "Enter the email address for receiving messages"
275
  msgstr ""
276
  "Geben sie die E-Mail Adresse ein, an welche die Nachricht weitergeleitet "
277
  "werden soll."
278
 
279
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
280
- #: contact_form.php:1939 contact_form.php:3471
281
  msgid "Close"
282
  msgstr ""
283
 
284
- #: contact_form.php:1155
285
  #, fuzzy
286
  msgid "Add department selectbox to the contact form"
287
  msgstr "Füge Abteilungs- Auswahlbox zu der Kontakt-Form:"
288
 
289
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
290
- #: contact_form.php:2145
291
  msgid "If you upgrade to Pro version all your settings will be saved."
292
  msgstr "Wenn sie auf Pro upgraden werden alle ihre Einstellungen gespeichert"
293
 
294
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
295
- #: contact_form.php:1880 contact_form.php:2152
296
  msgid "Upgrade to Pro"
297
  msgstr ""
298
 
299
- #: contact_form.php:1178
300
  msgid "Save emails to the database"
301
  msgstr "Speicher E-Mails in die Datenbank"
302
 
303
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
304
  msgid "Using"
305
  msgstr "Verwendet"
306
 
307
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
308
- #: contact_form.php:1625
309
  msgid "Please activate the appropriate option on"
310
  msgstr ""
311
 
312
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
313
- #: contact_form.php:1628
314
  #, fuzzy
315
  msgid "settings page"
316
  msgstr "Die Einstellungs-Seite"
317
 
318
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
319
- #: contact_form.php:1635
320
  #, fuzzy
321
  msgid "Activate"
322
  msgstr "Aktiviere captcha"
323
 
324
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
325
- #: contact_form.php:1640
326
  msgid "Download"
327
  msgstr "Download"
328
 
329
- #: contact_form.php:1224
330
  msgid "Sending method"
331
  msgstr ""
332
 
333
- #: contact_form.php:1229
334
  msgid "Wp-mail"
335
  msgstr "Wp-mail"
336
 
337
- #: contact_form.php:1231
338
  #, fuzzy
339
  msgid "You can use the Wordpress wp_mail function for mailing"
340
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
341
 
342
- #: contact_form.php:1234
343
  msgid "Mail"
344
  msgstr "Mail"
345
 
346
- #: contact_form.php:1236
347
  #, fuzzy
348
  msgid "You can use the PHP mail function for mailing"
349
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
350
 
351
- #: contact_form.php:1241
352
  msgid "'FROM' field"
353
  msgstr ""
354
 
355
- #: contact_form.php:1257
356
  msgid "User name"
357
  msgstr "Benutzer Name"
358
 
359
- #: contact_form.php:1259
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
362
  msgstr ""
363
  "Der Name des Benutzers, der das Formular ausfüllt, wird im Feld 'From/Von' "
364
  "verwendt."
365
 
366
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
367
  msgid "Email"
368
  msgstr "E-Mail"
369
 
370
- #: contact_form.php:1281
371
  msgid "User email"
372
  msgstr "Benutzer E-Mail"
373
 
374
- #: contact_form.php:1283
375
  msgid ""
376
  "The email address of the user who fills the form will be used in the field "
377
  "'From'."
@@ -379,143 +379,143 @@ msgstr ""
379
  "Die E-Mail Adresse des Benutzers, der das Formular ausfüllt, wird im Feld "
380
  "'From/Von' verwendt."
381
 
382
- #: contact_form.php:1292
383
  msgid ""
384
  "If this option is changed, email messages may be moved to the spam folder or "
385
  "email delivery failures may occur."
386
  msgstr ""
387
 
388
- #: contact_form.php:1301
389
  msgid "Required symbol"
390
  msgstr "Benötigtes Symbol"
391
 
392
- #: contact_form.php:1311
393
  msgid "Fields"
394
  msgstr "Felder"
395
 
396
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
397
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
398
  msgid "Used"
399
  msgstr "Benutzt"
400
 
401
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
402
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
403
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
404
  msgid "Required"
405
  msgstr "Benötigt"
406
 
407
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
408
- #: contact_form.php:1447 contact_form.php:1471
409
  msgid "Visible"
410
  msgstr "Sichtbar"
411
 
412
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
413
- #: contact_form.php:1451 contact_form.php:1475
414
  msgid "Disabled for editing"
415
  msgstr "Bearbeitung ist ausgeschaltet"
416
 
417
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
418
- #: contact_form.php:1479
419
  msgid "Field's default value"
420
  msgstr "Standard-Feld-Wert"
421
 
422
- #: contact_form.php:1324
423
  msgid "Department selectbox"
424
  msgstr ""
425
 
426
- #: contact_form.php:1356
427
  msgid "Use User's name as a default value if the user is logged in."
428
  msgstr ""
429
 
430
- #: contact_form.php:1357 contact_form.php:1417
431
  msgid ""
432
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
433
  "in users."
434
  msgstr ""
435
 
436
- #: contact_form.php:1363
437
  msgid "Location selectbox"
438
  msgstr ""
439
 
440
- #: contact_form.php:1416
441
  msgid "Use User's email as a default value if the user is logged in."
442
  msgstr ""
443
 
444
- #: contact_form.php:1500
445
  msgid "Attachment block"
446
  msgstr "Anhang-Block"
447
 
448
- #: contact_form.php:1502
449
  msgid "Users can attach the following file formats"
450
  msgstr "Benutzer können die folgenden Formate anhängen:"
451
 
452
- #: contact_form.php:1520
453
  msgid "Add to the form"
454
  msgstr "Füge in die Form"
455
 
456
- #: contact_form.php:1525
457
  msgid "Tips below the Attachment"
458
  msgstr "Tipps unterhalb des Anhangs"
459
 
460
- #: contact_form.php:1532
461
  msgid "'Send me a copy' block"
462
  msgstr "'Kopie an mich senden' Block"
463
 
464
- #: contact_form.php:1560
465
  #, fuzzy
466
  msgid "Activate for network"
467
  msgstr "Geactiveerde plugins"
468
 
469
- #: contact_form.php:1651
470
  msgid "Agreement checkbox"
471
  msgstr "Agreement checkbox"
472
 
473
- #: contact_form.php:1651
474
  msgid "Required checkbox for submitting the form"
475
  msgstr "Benötigte checkbox zur übermittlung des Formulars"
476
 
477
- #: contact_form.php:1652
478
  msgid "Optional checkbox"
479
  msgstr "Optionale checkbox"
480
 
481
- #: contact_form.php:1652
482
  msgid "Optional checkbox, the results of which will be displayed in email"
483
  msgstr "Optionale checkbox, das Ergebnis davon wird in der E-Mail angezeigt"
484
 
485
- #: contact_form.php:1670
486
  msgid "Delete an attachment file from the server after the email is sent"
487
  msgstr "Lösche die Anhang-Datei vom Server nachdem die E-Mail gesendet wurde"
488
 
489
- #: contact_form.php:1676
490
  msgid "Email in HTML format sending"
491
  msgstr "E-Mail im HTML Format"
492
 
493
- #: contact_form.php:1680
494
  msgid "Display additional info in the email"
495
  msgstr "Zeige weitere Informationen in der E-Mail"
496
 
497
- #: contact_form.php:1686
498
  #, fuzzy
499
  msgid "Sent from (IP address)"
500
  msgstr "Gesendet von (IP-Adresse)"
501
 
502
- #: contact_form.php:1686
503
  msgid "Example: Sent from (IP address):\t127.0.0.1"
504
  msgstr "Beispiel: Gesendet von (IP-Adresse):\t127.0.0.1"
505
 
506
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
507
  msgid "Date/Time"
508
  msgstr "Datum/Zeit"
509
 
510
- #: contact_form.php:1687
511
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
512
  msgstr "Beispiel: Datum/Zeit:\tAugust 19, 2013 8:50 pm"
513
 
514
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
515
  msgid "Sent from (referer)"
516
  msgstr "Gesendet von (referer)"
517
 
518
- #: contact_form.php:1688
519
  #, fuzzy
520
  msgid ""
521
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
@@ -523,11 +523,11 @@ msgstr ""
523
  "Beispiel: Gesendet von (referer):\thttp://bestwebsoft.com/contacts/contact-"
524
  "us/"
525
 
526
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
527
  msgid "Using (user agent)"
528
  msgstr "Verwendet (user agent)"
529
 
530
- #: contact_form.php:1689
531
  msgid ""
532
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
533
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -535,139 +535,139 @@ msgstr ""
535
  "Beispiel: Verwendet (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
536
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
537
 
538
- #: contact_form.php:1694
539
  msgid "Language settings for the field names in the form"
540
  msgstr "Benutzer-Einstellungen für die Feld-Namen in der Form"
541
 
542
- #: contact_form.php:1703
543
  msgid "Add a language"
544
  msgstr "Hinzufügen einer Sprache"
545
 
546
- #: contact_form.php:1707
547
  msgid "Change the names of the contact form fields and error messages"
548
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
549
 
550
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
551
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
552
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
553
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
554
- #: contact_form.php:2132 contact_form.php:2137
555
  msgid "Default"
556
  msgstr "Standard"
557
 
558
- #: contact_form.php:1725 contact_form.php:1763
559
  msgid "click to expand/hide the list"
560
  msgstr "Klick zum erweitern/verstecken der Liste"
561
 
562
- #: contact_form.php:1734 contact_form.php:1772
563
  msgid "Tips below the Attachment block"
564
  msgstr "Tipps unterhalb des Anhang-Blocks"
565
 
566
- #: contact_form.php:1737 contact_form.php:1775
567
  msgid "Error message for the Name field"
568
  msgstr "Fehlermeldung für das Namensfeld"
569
 
570
- #: contact_form.php:1738 contact_form.php:1776
571
  msgid "Error message for the Address field"
572
  msgstr "Fehlermeldung für das Adress-Feld"
573
 
574
- #: contact_form.php:1739 contact_form.php:1777
575
  msgid "Error message for the Email field"
576
  msgstr "Fehlermeldung für das E-Mail-Feld"
577
 
578
- #: contact_form.php:1740 contact_form.php:1778
579
  msgid "Error message for the Phone field"
580
  msgstr "Fehlermeldung für das Telefonnummer-Feld"
581
 
582
- #: contact_form.php:1741 contact_form.php:1779
583
  msgid "Error message for the Subject field"
584
  msgstr "Fehlermeldung für das Betreff-Feld"
585
 
586
- #: contact_form.php:1742 contact_form.php:1780
587
  msgid "Error message for the Message field"
588
  msgstr "Fehlermeldung für das Inhalts-Feld"
589
 
590
- #: contact_form.php:1743 contact_form.php:1781
591
  msgid "Error message about the file type for the Attachment field"
592
  msgstr "Fehlermeldung über den Datei-Typ für das Anhang-Feld"
593
 
594
- #: contact_form.php:1744 contact_form.php:1782
595
  msgid ""
596
  "Error message while uploading a file for the Attachment field to the server"
597
  msgstr ""
598
  "Fehlermeldung während des hochladens einer Datei zum Server für das Anhang-"
599
  "Feld"
600
 
601
- #: contact_form.php:1745 contact_form.php:1783
602
  msgid "Error message while moving the file for the Attachment field"
603
  msgstr "Fehlermeldung während der Verschiebung für das Anhang-Feld"
604
 
605
- #: contact_form.php:1746 contact_form.php:1784
606
  msgid "Error message when file size limit for the Attachment field is exceeded"
607
  msgstr ""
608
  "Fehlermeldung wenn das Datei-Größen-Limit für das Anhang-Feld überschritten "
609
  "wird"
610
 
611
- #: contact_form.php:1747 contact_form.php:1785
612
  msgid "Error message for the Captcha field"
613
  msgstr "Fehlermeldung für das Capatcha-Feld"
614
 
615
- #: contact_form.php:1748 contact_form.php:1786
616
  msgid "Error message for the whole form"
617
  msgstr "Fehlermeldung für das ganze Formular"
618
 
619
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
620
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
621
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
622
- #: contact_form.php:3540
623
  msgid "Use shortcode"
624
  msgstr "Benutze shortcode"
625
 
626
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
627
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
628
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
629
- #: contact_form.php:3540
630
  msgid "for this language"
631
  msgstr "für diese Sprache"
632
 
633
- #: contact_form.php:1799
634
  #, fuzzy
635
  msgid "Use the changed names of the contact form fields in the email"
636
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
637
 
638
- #: contact_form.php:1805
639
  msgid "Action after email is sent"
640
  msgstr "Handlung nachdem die E-Mail gesendet wurde"
641
 
642
- #: contact_form.php:1807
643
  msgid "Display text"
644
  msgstr "Zeige Text"
645
 
646
- #: contact_form.php:1821 contact_form.php:1835
647
  msgid "Text"
648
  msgstr "Text"
649
 
650
- #: contact_form.php:1846
651
  msgid "Redirect to the page"
652
  msgstr "Umleiten zur Seite"
653
 
654
- #: contact_form.php:1847
655
  msgid "Url"
656
  msgstr "Url"
657
 
658
- #: contact_form.php:1858
659
  msgid "Add field 'Reply-To' to the email header"
660
  msgstr ""
661
 
662
- #: contact_form.php:1860
663
  msgid "Field 'Reply-To' will be initialized by user email"
664
  msgstr ""
665
 
666
- #: contact_form.php:1864
667
  msgid "Auto Response"
668
  msgstr ""
669
 
670
- #: contact_form.php:1868
671
  #, php-format
672
  msgid ""
673
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -675,182 +675,194 @@ msgid ""
675
  "name."
676
  msgstr ""
677
 
678
- #: contact_form.php:1890 contact_form.php:2389
679
  msgid "Save Changes"
680
  msgstr "Speichere Änderungen"
681
 
682
- #: contact_form.php:1903
683
  #, php-format
684
  msgid ""
685
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
686
  msgstr ""
687
 
688
- #: contact_form.php:1903 contact_form.php:1912
689
  msgid "Form layout"
690
  msgstr ""
691
 
692
- #: contact_form.php:1903 contact_form.php:1924
693
  #, fuzzy
694
  msgid "Submit position"
695
  msgstr "Sende-Schaltfläche"
696
 
697
- #: contact_form.php:1916
698
  msgid "One column"
699
  msgstr ""
700
 
701
- #: contact_form.php:1919
702
  msgid "Two columns"
703
  msgstr ""
704
 
705
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
706
- #: contact_form.php:1980
707
  msgid "Left"
708
  msgstr ""
709
 
710
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
711
- #: contact_form.php:1986
712
  msgid "Right"
713
  msgstr ""
714
 
715
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
716
  msgid "Form align"
717
  msgstr ""
718
 
719
- #: contact_form.php:1950 contact_form.php:1983
720
  msgid "Center"
721
  msgstr ""
722
 
723
- #: contact_form.php:1958
724
  #, fuzzy
725
  msgid "Labels position"
726
  msgstr "Sende-Schaltfläche"
727
 
728
- #: contact_form.php:1962
729
  msgid "Top"
730
  msgstr ""
731
 
732
- #: contact_form.php:1971
733
  msgid "Bottom"
734
  msgstr ""
735
 
736
- #: contact_form.php:1976
737
  msgid "Labels align"
738
  msgstr ""
739
 
740
- #: contact_form.php:1991
741
  msgid "Errors output"
742
  msgstr "Fehler-Ausgabe"
743
 
744
- #: contact_form.php:1994
745
  msgid "Display error messages"
746
  msgstr "Zeige Fehlermeldungen"
747
 
748
- #: contact_form.php:1995
749
  msgid "Color of the input field errors."
750
  msgstr "Farbe der Eingabe-Fehld-Fehler"
751
 
752
- #: contact_form.php:1996
753
  msgid "Display error messages & color of the input field errors"
754
  msgstr "Zeige Fehlermeldungen & Farbe zu den Eingabe-Feldern"
755
 
756
- #: contact_form.php:2001
757
  msgid "Add placeholder to the input blocks"
758
  msgstr "Füge Platzhalter an die Eingabe-Blöcke"
759
 
760
- #: contact_form.php:2007
761
  msgid "Add tooltips"
762
  msgstr "Füge Tooltips hinzu"
763
 
764
- #: contact_form.php:2021
765
  msgid "Email address"
766
  msgstr "E-Mail Adresse:"
767
 
768
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
769
  msgid "Phone Number"
770
  msgstr "Telefonnummer:"
771
 
772
- #: contact_form.php:2052
773
  msgid "Style options"
774
  msgstr "Stil-Optionen"
775
 
776
- #: contact_form.php:2056
777
  msgid "Text color"
778
  msgstr "Text -Farbe"
779
 
780
- #: contact_form.php:2061
781
  msgid "Label text color"
782
  msgstr "Beschriftungs-Text -Farbe"
783
 
784
- #: contact_form.php:2066
785
  msgid "Placeholder color"
786
  msgstr "Platzhalter -Farbe"
787
 
788
- #: contact_form.php:2071
789
  msgid "Errors color"
790
  msgstr "Fehler -Farbe"
791
 
792
- #: contact_form.php:2076
793
  msgid "Error text color"
794
  msgstr "Fehler-Text -Farbe"
795
 
796
- #: contact_form.php:2081
797
  msgid "Background color of the input field errors"
798
  msgstr "Hintergrund -Farbe von den Eingabefeld-Fehlern"
799
 
800
- #: contact_form.php:2086
801
  msgid "Border color of the input field errors"
802
  msgstr "Rand -Farbe von den Eingabefeld-Fehlern"
803
 
804
- #: contact_form.php:2091
805
  msgid "Placeholder color of the input field errors"
806
  msgstr "Platzhalter -Farbe von den Eingabefeld-Fehlern"
807
 
808
- #: contact_form.php:2096
809
  msgid "Input fields"
810
  msgstr "Eingabe-Felder"
811
 
812
- #: contact_form.php:2101
813
  msgid "Input fields background color"
814
  msgstr "Eingabefelder - Hintergrundfarbe"
815
 
816
- #: contact_form.php:2106
817
  msgid "Text fields color"
818
  msgstr "Text-Felder -Farbe"
819
 
820
- #: contact_form.php:2110
821
  msgid "Border width in px, numbers only"
822
  msgstr "Rand-Breite in px, nur Zahlen"
823
 
824
- #: contact_form.php:2115 contact_form.php:2139
825
  msgid "Border color"
826
  msgstr "Rand -Farbe"
827
 
828
- #: contact_form.php:2120
829
  msgid "Submit button"
830
  msgstr "Sende-Schaltfläche"
831
 
832
- #: contact_form.php:2124
833
  msgid "Width in px, numbers only"
834
  msgstr "Breite in px, nur Zahlen"
835
 
836
- #: contact_form.php:2129
837
  msgid "Button color"
838
  msgstr "Schaltflächen -Farbe"
839
 
840
- #: contact_form.php:2134
841
  msgid "Button text color"
842
  msgstr "Schaltflächen-Text -Farbe"
843
 
844
- #: contact_form.php:2163
845
  #, fuzzy
846
  msgid "Contact Form | Preview"
847
  msgstr "Kontakt-Form Pro | Vorschau"
848
 
849
- #: contact_form.php:2164
850
  msgid "Drag the necessary field to sort fields."
851
  msgstr ""
852
 
853
- #: contact_form.php:2376
854
  #, fuzzy
855
  msgid ""
856
  "If you would like to add the Contact Form to your website, just copy and "
@@ -859,92 +871,84 @@ msgstr ""
859
  "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und "
860
  "fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
861
 
862
- #: contact_form.php:2504
863
  msgid "Sorry, email message could not be delivered."
864
  msgstr "Verzeihung, die Nachricht konnte nicht gesendet werden."
865
 
866
- #: contact_form.php:3094 contact_form.php:3096
867
  msgid "Sent from (ip address)"
868
  msgstr "Gesendet von (IP-Adresse)"
869
 
870
- #: contact_form.php:3124
871
  msgid "Contact from"
872
  msgstr "Kontakt von"
873
 
874
- #: contact_form.php:3129 contact_form.php:3178
875
  msgid "Site"
876
  msgstr "Webseite"
877
 
878
- #: contact_form.php:3308
879
  msgid ""
880
  "If you can see this MIME, it means that the MIME type is not supported by "
881
  "your email client!"
882
  msgstr ""
883
  "Wenn sie dieses MIME sehen, unterstützt Ihr Browser diesen MIME Typ nicht!"
884
 
885
- #: contact_form.php:3391
886
  msgid "FAQ"
887
  msgstr "Häufig gestellte Fragen (FAQ)"
888
 
889
- #: contact_form.php:3392
890
  msgid "Support"
891
  msgstr "Support"
892
 
893
- #: contact_form.php:3441
894
  msgid "Are you sure that you want to delete this language data?"
895
  msgstr "Sind sie sicher, dass sie diese Sprach-Daten löschen wollen?"
896
 
897
- #: contact_form.php:3462
898
  #, fuzzy
899
  msgid "Add multiple forms"
900
  msgstr "Füge in die Form"
901
 
902
- #: contact_form.php:3462
903
  msgid ""
904
  "Install Contact Form Multi plugin to create unlimited number of contact "
905
  "forms."
906
  msgstr ""
907
 
908
- #: contact_form.php:3467
909
  #, fuzzy
910
  msgid "Learn more"
911
  msgstr "Lees verder"
912
 
913
- #: contact_form.php:3693
914
  msgid "Close notice"
915
  msgstr ""
916
 
917
- #: contact_form.php:3698
918
  #, fuzzy
919
  msgid "allows to store your messages to the database."
920
  msgstr "Speicher E-Mails in die Datenbank"
921
 
922
- #: contact_form.php:3699
923
  msgid "Manage messages that have been sent from your website."
924
  msgstr ""
925
 
926
- #: contact_form.php:3702
927
  msgid "Learn More"
928
  msgstr ""
929
 
930
- #: contact_form.php:3762
931
  #, fuzzy
932
  msgid "Contact form"
933
  msgstr "Kontakt von"
934
 
935
- #: contact_form.php:3775 contact_form.php:3785
936
  #, fuzzy
937
  msgid "Language"
938
  msgstr "Hinzufügen einer Sprache"
939
 
940
- #: includes/deprecated.php:168
941
- #, php-format
942
- msgid ""
943
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
944
- "replace it with %3s. If you close this message it'll appear again after "
945
- "deprecated shortcode reuse."
946
- msgstr ""
947
-
948
  #~ msgid "Name:"
949
  #~ msgstr "Name:"
950
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
6
+ "PO-Revision-Date: 2017-05-24 12:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Alex <private183@web.de>\n"
9
  "Language: de_DE\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:37 contact_form.php:1064
21
  msgid "Contact Form Settings"
22
  msgstr "Kontakt-Form Einstellungen"
23
 
24
+ #: contact_form.php:37
25
  msgid "Contact Form"
26
  msgstr "Kontakt-Form"
27
 
28
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
29
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
30
+ #: contact_form.php:3181 contact_form.php:3227
31
  msgid "Name"
32
  msgstr "Name"
33
 
34
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
35
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
36
+ #: contact_form.php:3233
37
  msgid "Address"
38
  msgstr "Adresse: "
39
 
40
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
41
+ #: contact_form.php:1765
42
  msgid "Email Address"
43
  msgstr "E-Mail Adresse:"
44
 
45
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
46
+ #: contact_form.php:1766
47
  msgid "Phone number"
48
  msgstr "Telefonnummer:"
49
 
50
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
51
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
52
+ #: contact_form.php:3242
53
  msgid "Subject"
54
  msgstr "Betreff"
55
 
56
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
57
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
58
+ #: contact_form.php:3246
59
  msgid "Message"
60
  msgstr "Inhalt"
61
 
62
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
63
+ #: contact_form.php:2058
64
  msgid "Attachment"
65
  msgstr "Anhang:"
66
 
67
+ #: contact_form.php:287
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
72
  "Unterstützte Dateitypen: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
73
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
76
  msgid "Send me a copy"
77
  msgstr "Kopie an mich senden"
78
 
79
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
80
  msgid "Submit"
81
  msgstr "Senden"
82
 
83
+ #: contact_form.php:290
84
  msgid "Your name is required."
85
  msgstr "Dein Name wird benötigt."
86
 
87
+ #: contact_form.php:291
88
  msgid "Address is required."
89
  msgstr "Adresse wird benötigt"
90
 
91
+ #: contact_form.php:292
92
  msgid "A valid email address is required."
93
  msgstr "Eine gültige E-Mail Adresse wird benötigt."
94
 
95
+ #: contact_form.php:293
96
  msgid "Phone number is required."
97
  msgstr "Deine Telefonnummer wird benötigt."
98
 
99
+ #: contact_form.php:294
100
  msgid "Subject is required."
101
  msgstr "Ein Betreff wird benötigt."
102
 
103
+ #: contact_form.php:295
104
  msgid "Message text is required."
105
  msgstr "Ein Inhalt wird benötigt."
106
 
107
+ #: contact_form.php:296
108
  msgid "File format is not valid."
109
  msgstr "Datei Format ist nicht erlaubt."
110
 
111
+ #: contact_form.php:297
112
  msgid "File upload error."
113
  msgstr "Datei-Übertragungsfehler"
114
 
115
+ #: contact_form.php:298
116
  msgid "The file could not be uploaded."
117
  msgstr "Die Datei konnte nicht hochgeladen werden."
118
 
119
+ #: contact_form.php:299
120
  msgid "This file is too large."
121
  msgstr "Diese Datei ist zu groß."
122
 
123
+ #: contact_form.php:300
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Bitte CAPTCHA ausfüllen."
126
 
127
+ #: contact_form.php:301
128
  msgid "Please make corrections below and try again."
129
+ msgstr "Bitte korrigiere die Fehler unten und versuche es erneut."
130
 
131
+ #: contact_form.php:303
132
  msgid "Thank you for contacting us."
133
  msgstr "Danke für Ihre Nachricht."
134
 
135
+ #: contact_form.php:759 contact_form.php:1021
136
  msgid "Settings saved."
137
  msgstr "Einstellungen gespeichert."
138
 
139
+ #: contact_form.php:966
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
+ #: contact_form.php:976
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
150
  "Wenn die 'Redirect to page/Umleiten zur Seite' Option verwendet wird, dann "
151
  "sollte das Feld URL in folgendem Format sein"
152
 
153
+ #: contact_form.php:983
154
  #, fuzzy
155
  msgid "Such user does not exist."
156
  msgstr "Dieser User exestiert nicht. Einstellungen werden nicht gespeichert."
157
 
158
+ #: contact_form.php:993
159
  #, fuzzy
160
  msgid ""
161
  "Please enter a valid email address in the 'Use this email address' field."
163
  "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
164
  "Einstellungen werden nicht gespeichert."
165
 
166
+ #: contact_form.php:1001
167
  #, fuzzy
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
171
  "Einstellungen werden nicht gespeichert."
172
 
173
+ #: contact_form.php:1023
174
  #, fuzzy
175
  msgid "Settings are not saved."
176
  msgstr "Einstellungen gespeichert."
177
 
178
+ #: contact_form.php:1061
179
  msgid "All plugin settings were restored."
180
  msgstr ""
181
 
182
+ #: contact_form.php:1067
183
  msgid "How to Use Step-by-step Instruction"
184
  msgstr ""
185
 
186
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
187
  msgid "Settings"
188
  msgstr "Einstellungen"
189
 
190
+ #: contact_form.php:1071
191
  #, fuzzy
192
  msgid "Additional settings"
193
  msgstr "Weitere Optionen"
194
 
195
+ #: contact_form.php:1072
196
  msgid "Appearance"
197
  msgstr ""
198
 
199
+ #: contact_form.php:1073
200
  msgid "Custom code"
201
  msgstr ""
202
 
203
+ #: contact_form.php:1074
204
  msgid "Go PRO"
205
  msgstr "Go PRO"
206
 
207
+ #: contact_form.php:1085
208
  #, fuzzy
209
  msgid "Notice"
210
  msgstr "Notiz:"
211
 
212
+ #: contact_form.php:1089
213
  msgid "NEW_FORM"
214
  msgstr ""
215
 
216
+ #: contact_form.php:1090
217
  msgid ""
218
  "If you want to create multiple contact forms, please install the Contact "
219
  "Form Multi plugin."
220
  msgstr ""
221
 
222
+ #: contact_form.php:1099
223
  #, fuzzy, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
228
  "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und "
229
  "fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
230
 
231
+ #: contact_form.php:1105
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
237
  "language."
238
  msgstr ""
239
 
240
+ #: contact_form.php:1114
241
  msgid ""
242
  "If you leave the fields empty, the messages will be sent to the email "
243
  "address specified during registration."
245
  "Wenn sie die Felder leer lassen, wird die Nachricht an die bei der "
246
  "registrierung angegebenen E-Mail Adresse gesendet."
247
 
248
+ #: contact_form.php:1117
249
  #, fuzzy
250
  msgid "The user's email address"
251
  msgstr "Benutzer E-Mail Adresse"
252
 
253
+ #: contact_form.php:1121
254
  #, fuzzy
255
  msgid "Select a username"
256
  msgstr "Benutzername erstellen"
257
 
258
+ #: contact_form.php:1134
259
  #, fuzzy
260
  msgid ""
261
  "Select a username of the person who should get the messages from the contact "
264
  "Geben sie den Benutzernamen des Users an, der die Nachrichten der Kontakt-"
265
  "Form erhalten soll."
266
 
267
+ #: contact_form.php:1138
268
  #, fuzzy
269
  msgid "Use this email address"
270
  msgstr "Nutzen sie diese E-Mail Adresse"
271
 
272
+ #: contact_form.php:1142
273
  #, fuzzy
274
  msgid "Enter the email address for receiving messages"
275
  msgstr ""
276
  "Geben sie die E-Mail Adresse ein, an welche die Nachricht weitergeleitet "
277
  "werden soll."
278
 
279
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
280
+ #: contact_form.php:1957 contact_form.php:3514
281
  msgid "Close"
282
  msgstr ""
283
 
284
+ #: contact_form.php:1153
285
  #, fuzzy
286
  msgid "Add department selectbox to the contact form"
287
  msgstr "Füge Abteilungs- Auswahlbox zu der Kontakt-Form:"
288
 
289
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
290
+ #: contact_form.php:2163
291
  msgid "If you upgrade to Pro version all your settings will be saved."
292
  msgstr "Wenn sie auf Pro upgraden werden alle ihre Einstellungen gespeichert"
293
 
294
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
295
+ #: contact_form.php:1878 contact_form.php:2170
296
  msgid "Upgrade to Pro"
297
  msgstr ""
298
 
299
+ #: contact_form.php:1176
300
  msgid "Save emails to the database"
301
  msgstr "Speicher E-Mails in die Datenbank"
302
 
303
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
304
  msgid "Using"
305
  msgstr "Verwendet"
306
 
307
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
308
+ #: contact_form.php:1623
309
  msgid "Please activate the appropriate option on"
310
  msgstr ""
311
 
312
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
313
+ #: contact_form.php:1626
314
  #, fuzzy
315
  msgid "settings page"
316
  msgstr "Die Einstellungs-Seite"
317
 
318
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
319
+ #: contact_form.php:1633
320
  #, fuzzy
321
  msgid "Activate"
322
  msgstr "Aktiviere captcha"
323
 
324
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
325
+ #: contact_form.php:1638
326
  msgid "Download"
327
  msgstr "Download"
328
 
329
+ #: contact_form.php:1222
330
  msgid "Sending method"
331
  msgstr ""
332
 
333
+ #: contact_form.php:1227
334
  msgid "Wp-mail"
335
  msgstr "Wp-mail"
336
 
337
+ #: contact_form.php:1229
338
  #, fuzzy
339
  msgid "You can use the Wordpress wp_mail function for mailing"
340
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
341
 
342
+ #: contact_form.php:1232
343
  msgid "Mail"
344
  msgstr "Mail"
345
 
346
+ #: contact_form.php:1234
347
  #, fuzzy
348
  msgid "You can use the PHP mail function for mailing"
349
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
350
 
351
+ #: contact_form.php:1239
352
  msgid "'FROM' field"
353
  msgstr ""
354
 
355
+ #: contact_form.php:1255
356
  msgid "User name"
357
  msgstr "Benutzer Name"
358
 
359
+ #: contact_form.php:1257
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
362
  msgstr ""
363
  "Der Name des Benutzers, der das Formular ausfüllt, wird im Feld 'From/Von' "
364
  "verwendt."
365
 
366
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
367
  msgid "Email"
368
  msgstr "E-Mail"
369
 
370
+ #: contact_form.php:1279
371
  msgid "User email"
372
  msgstr "Benutzer E-Mail"
373
 
374
+ #: contact_form.php:1281
375
  msgid ""
376
  "The email address of the user who fills the form will be used in the field "
377
  "'From'."
379
  "Die E-Mail Adresse des Benutzers, der das Formular ausfüllt, wird im Feld "
380
  "'From/Von' verwendt."
381
 
382
+ #: contact_form.php:1290
383
  msgid ""
384
  "If this option is changed, email messages may be moved to the spam folder or "
385
  "email delivery failures may occur."
386
  msgstr ""
387
 
388
+ #: contact_form.php:1299
389
  msgid "Required symbol"
390
  msgstr "Benötigtes Symbol"
391
 
392
+ #: contact_form.php:1309
393
  msgid "Fields"
394
  msgstr "Felder"
395
 
396
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
397
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
398
  msgid "Used"
399
  msgstr "Benutzt"
400
 
401
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
402
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
403
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
404
  msgid "Required"
405
  msgstr "Benötigt"
406
 
407
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
408
+ #: contact_form.php:1445 contact_form.php:1469
409
  msgid "Visible"
410
  msgstr "Sichtbar"
411
 
412
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
413
+ #: contact_form.php:1449 contact_form.php:1473
414
  msgid "Disabled for editing"
415
  msgstr "Bearbeitung ist ausgeschaltet"
416
 
417
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
418
+ #: contact_form.php:1477
419
  msgid "Field's default value"
420
  msgstr "Standard-Feld-Wert"
421
 
422
+ #: contact_form.php:1322
423
  msgid "Department selectbox"
424
  msgstr ""
425
 
426
+ #: contact_form.php:1354
427
  msgid "Use User's name as a default value if the user is logged in."
428
  msgstr ""
429
 
430
+ #: contact_form.php:1355 contact_form.php:1415
431
  msgid ""
432
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
433
  "in users."
434
  msgstr ""
435
 
436
+ #: contact_form.php:1361
437
  msgid "Location selectbox"
438
  msgstr ""
439
 
440
+ #: contact_form.php:1414
441
  msgid "Use User's email as a default value if the user is logged in."
442
  msgstr ""
443
 
444
+ #: contact_form.php:1498
445
  msgid "Attachment block"
446
  msgstr "Anhang-Block"
447
 
448
+ #: contact_form.php:1500
449
  msgid "Users can attach the following file formats"
450
  msgstr "Benutzer können die folgenden Formate anhängen:"
451
 
452
+ #: contact_form.php:1518
453
  msgid "Add to the form"
454
  msgstr "Füge in die Form"
455
 
456
+ #: contact_form.php:1523
457
  msgid "Tips below the Attachment"
458
  msgstr "Tipps unterhalb des Anhangs"
459
 
460
+ #: contact_form.php:1530
461
  msgid "'Send me a copy' block"
462
  msgstr "'Kopie an mich senden' Block"
463
 
464
+ #: contact_form.php:1558
465
  #, fuzzy
466
  msgid "Activate for network"
467
  msgstr "Geactiveerde plugins"
468
 
469
+ #: contact_form.php:1649
470
  msgid "Agreement checkbox"
471
  msgstr "Agreement checkbox"
472
 
473
+ #: contact_form.php:1649
474
  msgid "Required checkbox for submitting the form"
475
  msgstr "Benötigte checkbox zur übermittlung des Formulars"
476
 
477
+ #: contact_form.php:1650
478
  msgid "Optional checkbox"
479
  msgstr "Optionale checkbox"
480
 
481
+ #: contact_form.php:1650
482
  msgid "Optional checkbox, the results of which will be displayed in email"
483
  msgstr "Optionale checkbox, das Ergebnis davon wird in der E-Mail angezeigt"
484
 
485
+ #: contact_form.php:1668
486
  msgid "Delete an attachment file from the server after the email is sent"
487
  msgstr "Lösche die Anhang-Datei vom Server nachdem die E-Mail gesendet wurde"
488
 
489
+ #: contact_form.php:1674
490
  msgid "Email in HTML format sending"
491
  msgstr "E-Mail im HTML Format"
492
 
493
+ #: contact_form.php:1678
494
  msgid "Display additional info in the email"
495
  msgstr "Zeige weitere Informationen in der E-Mail"
496
 
497
+ #: contact_form.php:1684
498
  #, fuzzy
499
  msgid "Sent from (IP address)"
500
  msgstr "Gesendet von (IP-Adresse)"
501
 
502
+ #: contact_form.php:1684
503
  msgid "Example: Sent from (IP address):\t127.0.0.1"
504
  msgstr "Beispiel: Gesendet von (IP-Adresse):\t127.0.0.1"
505
 
506
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
507
  msgid "Date/Time"
508
  msgstr "Datum/Zeit"
509
 
510
+ #: contact_form.php:1685
511
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
512
  msgstr "Beispiel: Datum/Zeit:\tAugust 19, 2013 8:50 pm"
513
 
514
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
515
  msgid "Sent from (referer)"
516
  msgstr "Gesendet von (referer)"
517
 
518
+ #: contact_form.php:1686
519
  #, fuzzy
520
  msgid ""
521
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
523
  "Beispiel: Gesendet von (referer):\thttp://bestwebsoft.com/contacts/contact-"
524
  "us/"
525
 
526
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
527
  msgid "Using (user agent)"
528
  msgstr "Verwendet (user agent)"
529
 
530
+ #: contact_form.php:1687
531
  msgid ""
532
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
533
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
535
  "Beispiel: Verwendet (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
536
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
537
 
538
+ #: contact_form.php:1692
539
  msgid "Language settings for the field names in the form"
540
  msgstr "Benutzer-Einstellungen für die Feld-Namen in der Form"
541
 
542
+ #: contact_form.php:1701
543
  msgid "Add a language"
544
  msgstr "Hinzufügen einer Sprache"
545
 
546
+ #: contact_form.php:1705
547
  msgid "Change the names of the contact form fields and error messages"
548
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
549
 
550
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
551
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
552
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
553
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
554
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
555
  msgid "Default"
556
  msgstr "Standard"
557
 
558
+ #: contact_form.php:1723 contact_form.php:1761
559
  msgid "click to expand/hide the list"
560
  msgstr "Klick zum erweitern/verstecken der Liste"
561
 
562
+ #: contact_form.php:1732 contact_form.php:1770
563
  msgid "Tips below the Attachment block"
564
  msgstr "Tipps unterhalb des Anhang-Blocks"
565
 
566
+ #: contact_form.php:1735 contact_form.php:1773
567
  msgid "Error message for the Name field"
568
  msgstr "Fehlermeldung für das Namensfeld"
569
 
570
+ #: contact_form.php:1736 contact_form.php:1774
571
  msgid "Error message for the Address field"
572
  msgstr "Fehlermeldung für das Adress-Feld"
573
 
574
+ #: contact_form.php:1737 contact_form.php:1775
575
  msgid "Error message for the Email field"
576
  msgstr "Fehlermeldung für das E-Mail-Feld"
577
 
578
+ #: contact_form.php:1738 contact_form.php:1776
579
  msgid "Error message for the Phone field"
580
  msgstr "Fehlermeldung für das Telefonnummer-Feld"
581
 
582
+ #: contact_form.php:1739 contact_form.php:1777
583
  msgid "Error message for the Subject field"
584
  msgstr "Fehlermeldung für das Betreff-Feld"
585
 
586
+ #: contact_form.php:1740 contact_form.php:1778
587
  msgid "Error message for the Message field"
588
  msgstr "Fehlermeldung für das Inhalts-Feld"
589
 
590
+ #: contact_form.php:1741 contact_form.php:1779
591
  msgid "Error message about the file type for the Attachment field"
592
  msgstr "Fehlermeldung über den Datei-Typ für das Anhang-Feld"
593
 
594
+ #: contact_form.php:1742 contact_form.php:1780
595
  msgid ""
596
  "Error message while uploading a file for the Attachment field to the server"
597
  msgstr ""
598
  "Fehlermeldung während des hochladens einer Datei zum Server für das Anhang-"
599
  "Feld"
600
 
601
+ #: contact_form.php:1743 contact_form.php:1781
602
  msgid "Error message while moving the file for the Attachment field"
603
  msgstr "Fehlermeldung während der Verschiebung für das Anhang-Feld"
604
 
605
+ #: contact_form.php:1744 contact_form.php:1782
606
  msgid "Error message when file size limit for the Attachment field is exceeded"
607
  msgstr ""
608
  "Fehlermeldung wenn das Datei-Größen-Limit für das Anhang-Feld überschritten "
609
  "wird"
610
 
611
+ #: contact_form.php:1745 contact_form.php:1783
612
  msgid "Error message for the Captcha field"
613
  msgstr "Fehlermeldung für das Capatcha-Feld"
614
 
615
+ #: contact_form.php:1746 contact_form.php:1784
616
  msgid "Error message for the whole form"
617
  msgstr "Fehlermeldung für das ganze Formular"
618
 
619
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
620
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
621
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
622
+ #: contact_form.php:3604
623
  msgid "Use shortcode"
624
  msgstr "Benutze shortcode"
625
 
626
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
627
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
628
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
629
+ #: contact_form.php:3604
630
  msgid "for this language"
631
  msgstr "für diese Sprache"
632
 
633
+ #: contact_form.php:1797
634
  #, fuzzy
635
  msgid "Use the changed names of the contact form fields in the email"
636
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
637
 
638
+ #: contact_form.php:1803
639
  msgid "Action after email is sent"
640
  msgstr "Handlung nachdem die E-Mail gesendet wurde"
641
 
642
+ #: contact_form.php:1805
643
  msgid "Display text"
644
  msgstr "Zeige Text"
645
 
646
+ #: contact_form.php:1819 contact_form.php:1833
647
  msgid "Text"
648
  msgstr "Text"
649
 
650
+ #: contact_form.php:1844
651
  msgid "Redirect to the page"
652
  msgstr "Umleiten zur Seite"
653
 
654
+ #: contact_form.php:1845
655
  msgid "Url"
656
  msgstr "Url"
657
 
658
+ #: contact_form.php:1856
659
  msgid "Add field 'Reply-To' to the email header"
660
  msgstr ""
661
 
662
+ #: contact_form.php:1858
663
  msgid "Field 'Reply-To' will be initialized by user email"
664
  msgstr ""
665
 
666
+ #: contact_form.php:1862
667
  msgid "Auto Response"
668
  msgstr ""
669
 
670
+ #: contact_form.php:1866
671
  #, php-format
672
  msgid ""
673
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
675
  "name."
676
  msgstr ""
677
 
678
+ #: contact_form.php:1888 contact_form.php:2419
679
  msgid "Save Changes"
680
  msgstr "Speichere Änderungen"
681
 
682
+ #: contact_form.php:1901
683
  #, php-format
684
  msgid ""
685
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
686
  msgstr ""
687
 
688
+ #: contact_form.php:1901 contact_form.php:1910
689
  msgid "Form layout"
690
  msgstr ""
691
 
692
+ #: contact_form.php:1901 contact_form.php:1922
693
  #, fuzzy
694
  msgid "Submit position"
695
  msgstr "Sende-Schaltfläche"
696
 
697
+ #: contact_form.php:1914
698
  msgid "One column"
699
  msgstr ""
700
 
701
+ #: contact_form.php:1917
702
  msgid "Two columns"
703
  msgstr ""
704
 
705
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
706
+ #: contact_form.php:1998
707
  msgid "Left"
708
  msgstr ""
709
 
710
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
711
+ #: contact_form.php:2004
712
  msgid "Right"
713
  msgstr ""
714
 
715
+ #: contact_form.php:1934
716
+ msgid "Width"
717
+ msgstr ""
718
+
719
+ #: contact_form.php:1941
720
+ msgid "Custom"
721
+ msgstr ""
722
+
723
+ #: contact_form.php:1948
724
+ msgid "px"
725
+ msgstr ""
726
+
727
+ #: contact_form.php:1961
728
  msgid "Form align"
729
  msgstr ""
730
 
731
+ #: contact_form.php:1968 contact_form.php:2001
732
  msgid "Center"
733
  msgstr ""
734
 
735
+ #: contact_form.php:1976
736
  #, fuzzy
737
  msgid "Labels position"
738
  msgstr "Sende-Schaltfläche"
739
 
740
+ #: contact_form.php:1980
741
  msgid "Top"
742
  msgstr ""
743
 
744
+ #: contact_form.php:1989
745
  msgid "Bottom"
746
  msgstr ""
747
 
748
+ #: contact_form.php:1994
749
  msgid "Labels align"
750
  msgstr ""
751
 
752
+ #: contact_form.php:2009
753
  msgid "Errors output"
754
  msgstr "Fehler-Ausgabe"
755
 
756
+ #: contact_form.php:2012
757
  msgid "Display error messages"
758
  msgstr "Zeige Fehlermeldungen"
759
 
760
+ #: contact_form.php:2013
761
  msgid "Color of the input field errors."
762
  msgstr "Farbe der Eingabe-Fehld-Fehler"
763
 
764
+ #: contact_form.php:2014
765
  msgid "Display error messages & color of the input field errors"
766
  msgstr "Zeige Fehlermeldungen & Farbe zu den Eingabe-Feldern"
767
 
768
+ #: contact_form.php:2019
769
  msgid "Add placeholder to the input blocks"
770
  msgstr "Füge Platzhalter an die Eingabe-Blöcke"
771
 
772
+ #: contact_form.php:2025
773
  msgid "Add tooltips"
774
  msgstr "Füge Tooltips hinzu"
775
 
776
+ #: contact_form.php:2039
777
  msgid "Email address"
778
  msgstr "E-Mail Adresse:"
779
 
780
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
781
  msgid "Phone Number"
782
  msgstr "Telefonnummer:"
783
 
784
+ #: contact_form.php:2070
785
  msgid "Style options"
786
  msgstr "Stil-Optionen"
787
 
788
+ #: contact_form.php:2074
789
  msgid "Text color"
790
  msgstr "Text -Farbe"
791
 
792
+ #: contact_form.php:2079
793
  msgid "Label text color"
794
  msgstr "Beschriftungs-Text -Farbe"
795
 
796
+ #: contact_form.php:2084
797
  msgid "Placeholder color"
798
  msgstr "Platzhalter -Farbe"
799
 
800
+ #: contact_form.php:2089
801
  msgid "Errors color"
802
  msgstr "Fehler -Farbe"
803
 
804
+ #: contact_form.php:2094
805
  msgid "Error text color"
806
  msgstr "Fehler-Text -Farbe"
807
 
808
+ #: contact_form.php:2099
809
  msgid "Background color of the input field errors"
810
  msgstr "Hintergrund -Farbe von den Eingabefeld-Fehlern"
811
 
812
+ #: contact_form.php:2104
813
  msgid "Border color of the input field errors"
814
  msgstr "Rand -Farbe von den Eingabefeld-Fehlern"
815
 
816
+ #: contact_form.php:2109
817
  msgid "Placeholder color of the input field errors"
818
  msgstr "Platzhalter -Farbe von den Eingabefeld-Fehlern"
819
 
820
+ #: contact_form.php:2114
821
  msgid "Input fields"
822
  msgstr "Eingabe-Felder"
823
 
824
+ #: contact_form.php:2119
825
  msgid "Input fields background color"
826
  msgstr "Eingabefelder - Hintergrundfarbe"
827
 
828
+ #: contact_form.php:2124
829
  msgid "Text fields color"
830
  msgstr "Text-Felder -Farbe"
831
 
832
+ #: contact_form.php:2128
833
  msgid "Border width in px, numbers only"
834
  msgstr "Rand-Breite in px, nur Zahlen"
835
 
836
+ #: contact_form.php:2133 contact_form.php:2157
837
  msgid "Border color"
838
  msgstr "Rand -Farbe"
839
 
840
+ #: contact_form.php:2138
841
  msgid "Submit button"
842
  msgstr "Sende-Schaltfläche"
843
 
844
+ #: contact_form.php:2142
845
  msgid "Width in px, numbers only"
846
  msgstr "Breite in px, nur Zahlen"
847
 
848
+ #: contact_form.php:2147
849
  msgid "Button color"
850
  msgstr "Schaltflächen -Farbe"
851
 
852
+ #: contact_form.php:2152
853
  msgid "Button text color"
854
  msgstr "Schaltflächen-Text -Farbe"
855
 
856
+ #: contact_form.php:2181
857
  #, fuzzy
858
  msgid "Contact Form | Preview"
859
  msgstr "Kontakt-Form Pro | Vorschau"
860
 
861
+ #: contact_form.php:2182
862
  msgid "Drag the necessary field to sort fields."
863
  msgstr ""
864
 
865
+ #: contact_form.php:2408
866
  #, fuzzy
867
  msgid ""
868
  "If you would like to add the Contact Form to your website, just copy and "
871
  "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und "
872
  "fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
873
 
874
+ #: contact_form.php:2536
875
  msgid "Sorry, email message could not be delivered."
876
  msgstr "Verzeihung, die Nachricht konnte nicht gesendet werden."
877
 
878
+ #: contact_form.php:3137 contact_form.php:3139
879
  msgid "Sent from (ip address)"
880
  msgstr "Gesendet von (IP-Adresse)"
881
 
882
+ #: contact_form.php:3167
883
  msgid "Contact from"
884
  msgstr "Kontakt von"
885
 
886
+ #: contact_form.php:3172 contact_form.php:3221
887
  msgid "Site"
888
  msgstr "Webseite"
889
 
890
+ #: contact_form.php:3351
891
  msgid ""
892
  "If you can see this MIME, it means that the MIME type is not supported by "
893
  "your email client!"
894
  msgstr ""
895
  "Wenn sie dieses MIME sehen, unterstützt Ihr Browser diesen MIME Typ nicht!"
896
 
897
+ #: contact_form.php:3434
898
  msgid "FAQ"
899
  msgstr "Häufig gestellte Fragen (FAQ)"
900
 
901
+ #: contact_form.php:3435
902
  msgid "Support"
903
  msgstr "Support"
904
 
905
+ #: contact_form.php:3484
906
  msgid "Are you sure that you want to delete this language data?"
907
  msgstr "Sind sie sicher, dass sie diese Sprach-Daten löschen wollen?"
908
 
909
+ #: contact_form.php:3505
910
  #, fuzzy
911
  msgid "Add multiple forms"
912
  msgstr "Füge in die Form"
913
 
914
+ #: contact_form.php:3505
915
  msgid ""
916
  "Install Contact Form Multi plugin to create unlimited number of contact "
917
  "forms."
918
  msgstr ""
919
 
920
+ #: contact_form.php:3510
921
  #, fuzzy
922
  msgid "Learn more"
923
  msgstr "Lees verder"
924
 
925
+ #: contact_form.php:3751
926
  msgid "Close notice"
927
  msgstr ""
928
 
929
+ #: contact_form.php:3756
930
  #, fuzzy
931
  msgid "allows to store your messages to the database."
932
  msgstr "Speicher E-Mails in die Datenbank"
933
 
934
+ #: contact_form.php:3757
935
  msgid "Manage messages that have been sent from your website."
936
  msgstr ""
937
 
938
+ #: contact_form.php:3760
939
  msgid "Learn More"
940
  msgstr ""
941
 
942
+ #: contact_form.php:3820
943
  #, fuzzy
944
  msgid "Contact form"
945
  msgstr "Kontakt von"
946
 
947
+ #: contact_form.php:3833 contact_form.php:3843
948
  #, fuzzy
949
  msgid "Language"
950
  msgstr "Hinzufügen einer Sprache"
951
 
 
 
 
 
 
 
 
 
952
  #~ msgid "Name:"
953
  #~ msgstr "Name:"
954
 
languages/contact-form-plugin-el.mo CHANGED
Binary file
languages/contact-form-plugin-el.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: 2017-02-27 16:23+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis <dkarantonis@gmail.com>\n"
9
  "Language: el\n"
@@ -21,63 +21,63 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
  # @ contact_form
24
- #: contact_form.php:42 contact_form.php:1066
25
  msgid "Contact Form Settings"
26
  msgstr "Ρυθμίσεις φόρμας επικοινωνίας"
27
 
28
  # @ contact_form
29
- #: contact_form.php:42
30
  msgid "Contact Form"
31
  msgstr "Φόρμα Επικοινωνίας"
32
 
33
  # @ contact_form
34
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
35
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
36
- #: contact_form.php:3138 contact_form.php:3184
37
  msgid "Name"
38
  msgstr "Όνομα"
39
 
40
  # @ contact_form
41
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
42
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
43
- #: contact_form.php:3190
44
  msgid "Address"
45
  msgstr "Διεύθυνση"
46
 
47
  # @ contact_form
48
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
49
- #: contact_form.php:1767
50
  msgid "Email Address"
51
  msgstr "Διεύθυνση Email"
52
 
53
  # @ contact_form
54
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
55
- #: contact_form.php:1768
56
  msgid "Phone number"
57
  msgstr "Αριθμός τηλεφώνου"
58
 
59
  # @ contact_form
60
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
61
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
62
- #: contact_form.php:3199
63
  msgid "Subject"
64
  msgstr "Θέμα"
65
 
66
  # @ contact_form
67
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
68
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
69
- #: contact_form.php:3203
70
  msgid "Message"
71
  msgstr "Μήνυμα"
72
 
73
  # @ contact_form
74
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
75
- #: contact_form.php:2040
76
  msgid "Attachment"
77
  msgstr "Συννημένο αρχείο"
78
 
79
  # @ contact_form
80
- #: contact_form.php:302
81
  msgid ""
82
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
83
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -87,94 +87,94 @@ msgstr ""
87
  "PPT."
88
 
89
  # @ contact_form
90
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
91
  msgid "Send me a copy"
92
  msgstr "Αποστολή αντιγράφου"
93
 
94
  # @ contact_form
95
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
96
  msgid "Submit"
97
  msgstr "Αποστολή"
98
 
99
  # @ contact_form
100
- #: contact_form.php:305
101
  msgid "Your name is required."
102
  msgstr "Το όνομα σας είναι απαραίτητο."
103
 
104
  # @ contact_form
105
- #: contact_form.php:306
106
  msgid "Address is required."
107
  msgstr "Η διεύθυνσή σας είναι απαραίτητη."
108
 
109
  # @ contact_form
110
- #: contact_form.php:307
111
  msgid "A valid email address is required."
112
  msgstr "Απαιτείται μία έγκυρη διεύθυνση email."
113
 
114
  # @ contact_form
115
- #: contact_form.php:308
116
  msgid "Phone number is required."
117
  msgstr "Ο αριθμός τηλεφώνου είναι απαραίτητος."
118
 
119
  # @ contact_form
120
- #: contact_form.php:309
121
  msgid "Subject is required."
122
  msgstr "Το θέμα είναι απαραίτητο."
123
 
124
  # @ contact_form
125
- #: contact_form.php:310
126
  msgid "Message text is required."
127
  msgstr "Το μήνυμα κειμένου είναι απαραίτητο."
128
 
129
  # @ contact_form
130
- #: contact_form.php:311
131
  msgid "File format is not valid."
132
  msgstr "Ο τύπος του αρχείου δεν είναι έγκυρος."
133
 
134
  # @ contact_form
135
- #: contact_form.php:312
136
  msgid "File upload error."
137
  msgstr "Πρόβλημα κατά το ανέβασμα του αρχείου."
138
 
139
  # @ contact_form
140
- #: contact_form.php:313
141
  msgid "The file could not be uploaded."
142
  msgstr "Το αρχείο δεν μπορούσε να ανέβει."
143
 
144
  # @ contact_form
145
- #: contact_form.php:314
146
  msgid "This file is too large."
147
  msgstr "Το μέγεθος αρχείου είναι πολύ μεγάλο."
148
 
149
  # @ contact_form
150
- #: contact_form.php:315
151
  msgid "Please fill out the CAPTCHA."
152
  msgstr "Παρακαλούμε, συμπληρώστε το πεδίο CAPTCHA."
153
 
154
  # @ contact_form
155
- #: contact_form.php:316
156
  msgid "Please make corrections below and try again."
157
  msgstr ""
158
  "Παρακαλούμε, προχωρήστε στις παρακακάτω διορθώσεις και προσπαθήστε ξανά."
159
 
160
  # @ contact_form
161
- #: contact_form.php:318
162
  msgid "Thank you for contacting us."
163
  msgstr "Σας ευχαριστούμε για την επικοινωνία."
164
 
165
  # @ contact_form
166
- #: contact_form.php:761 contact_form.php:1023
167
  msgid "Settings saved."
168
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
169
 
170
- #: contact_form.php:968
171
  msgid ""
172
  "Email 'FROM' field option was changed, which may cause email messages being "
173
  "moved to the spam folder or email delivery failures."
174
  msgstr ""
175
 
176
  # @ contact_form
177
- #: contact_form.php:978
178
  msgid ""
179
  "If the 'Redirect to page' option is selected then the URL field should be in "
180
  "the following format"
@@ -183,12 +183,12 @@ msgstr ""
183
  "πεδίο URL θα πρέπει να έχει την ακόλουθη μορφή"
184
 
185
  # @ contact_form
186
- #: contact_form.php:985
187
  msgid "Such user does not exist."
188
  msgstr "Τέτοιος χρήστης δεν υπάρχει."
189
 
190
  # @ contact_form
191
- #: contact_form.php:995
192
  msgid ""
193
  "Please enter a valid email address in the 'Use this email address' field."
194
  msgstr ""
@@ -196,59 +196,59 @@ msgstr ""
196
  "αυτήν τη διεύθυνση email'."
197
 
198
  # @ contact_form
199
- #: contact_form.php:1003
200
  msgid "Please enter a valid email address in the 'FROM' field."
201
  msgstr "Παρακαλούμε, εισάγετε μια έγκυρη διεύθυνση email στο πεδίο «ΑΠΟ»."
202
 
203
  # @ contact_form
204
- #: contact_form.php:1025
205
  msgid "Settings are not saved."
206
  msgstr "Οι ρυθμίσεις δεν αποθηκεύτηκαν."
207
 
208
- #: contact_form.php:1063
209
  msgid "All plugin settings were restored."
210
  msgstr ""
211
 
212
- #: contact_form.php:1069
213
  msgid "How to Use Step-by-step Instruction"
214
  msgstr ""
215
 
216
  # @ contact_form
217
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
218
  msgid "Settings"
219
  msgstr "Ρυθμίσεις"
220
 
221
  # @ contact_form
222
- #: contact_form.php:1073
223
  #, fuzzy
224
  msgid "Additional settings"
225
  msgstr "Πρόσθετες επιλογές"
226
 
227
- #: contact_form.php:1074
228
  msgid "Appearance"
229
  msgstr ""
230
 
231
- #: contact_form.php:1075
232
  msgid "Custom code"
233
  msgstr ""
234
 
235
  # @ contact_form
236
- #: contact_form.php:1076
237
  msgid "Go PRO"
238
  msgstr "Αναβάθμιση σε PRO"
239
 
240
  # @ contact_form
241
- #: contact_form.php:1087
242
  #, fuzzy
243
  msgid "Notice"
244
  msgstr "Σημείωση:"
245
 
246
- #: contact_form.php:1091
247
  msgid "NEW_FORM"
248
  msgstr ""
249
 
250
  # @ contact_form
251
- #: contact_form.php:1092
252
  msgid ""
253
  "If you want to create multiple contact forms, please install the Contact "
254
  "Form Multi plugin."
@@ -257,7 +257,7 @@ msgstr ""
257
  "εγκαταστήσετε την επέκταση φόρμα επικοινωνίας Multi."
258
 
259
  # @ contact_form
260
- #: contact_form.php:1101
261
  #, fuzzy, php-format
262
  msgid ""
263
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -267,7 +267,7 @@ msgstr ""
267
  "αντιγράψετε και επικολλήσετε αυτό το σύντομο κωδικό στο άρθρο, στη σελίδα ή "
268
  "στο widget σας:"
269
 
270
- #: contact_form.php:1107
271
  #, php-format
272
  msgid ""
273
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -277,7 +277,7 @@ msgid ""
277
  msgstr ""
278
 
279
  # @ contact_form
280
- #: contact_form.php:1116
281
  msgid ""
282
  "If you leave the fields empty, the messages will be sent to the email "
283
  "address specified during registration."
@@ -286,19 +286,19 @@ msgstr ""
286
  "καθορίσατε κατά την εγγραφή σας."
287
 
288
  # @ contact_form
289
- #: contact_form.php:1119
290
  #, fuzzy
291
  msgid "The user's email address"
292
  msgstr "Η διεύθυνση email του χρήστη:"
293
 
294
  # @ contact_form
295
- #: contact_form.php:1123
296
  #, fuzzy
297
  msgid "Select a username"
298
  msgstr "Δημιουργήστε ένα όνομα χρήστη"
299
 
300
  # @ contact_form
301
- #: contact_form.php:1136
302
  #, fuzzy
303
  msgid ""
304
  "Select a username of the person who should get the messages from the contact "
@@ -308,115 +308,115 @@ msgstr ""
308
  "επικοινωνίας."
309
 
310
  # @ contact_form
311
- #: contact_form.php:1140
312
  #, fuzzy
313
  msgid "Use this email address"
314
  msgstr "Χρησιμοποιήστε αυτήν τη διεύθυνση email: "
315
 
316
  # @ contact_form
317
- #: contact_form.php:1144
318
  #, fuzzy
319
  msgid "Enter the email address for receiving messages"
320
  msgstr "Εισάγετε τη διεύθυνση email που θέλετε τα μηνύματα να προωθούνται."
321
 
322
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
323
- #: contact_form.php:1939 contact_form.php:3471
324
  msgid "Close"
325
  msgstr ""
326
 
327
  # @ contact_form
328
- #: contact_form.php:1155
329
  #, fuzzy
330
  msgid "Add department selectbox to the contact form"
331
  msgstr "Προσθέστε τμήμα selectbox στην φόρμα επικοινωνίας:"
332
 
333
  # @ contact_form
334
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
335
- #: contact_form.php:2145
336
  msgid "If you upgrade to Pro version all your settings will be saved."
337
  msgstr ""
338
  "Εάν κάνετε αναβάθμιση σε έκδοση Pro όλες οι ρυθμίσεις σας θα αποθηκευτούν."
339
 
340
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
341
- #: contact_form.php:1880 contact_form.php:2152
342
  msgid "Upgrade to Pro"
343
  msgstr ""
344
 
345
  # @ contact_form
346
- #: contact_form.php:1178
347
  msgid "Save emails to the database"
348
  msgstr "Αποθηκεύστε τα μηνύματα ηλεκτρονικού ταχυδρομείου στη βάση δεδομένων"
349
 
350
  # @ contact_form
351
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
352
  msgid "Using"
353
  msgstr "Χρήση"
354
 
355
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
356
- #: contact_form.php:1625
357
  msgid "Please activate the appropriate option on"
358
  msgstr ""
359
 
360
  # @ contact_form
361
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
362
- #: contact_form.php:1628
363
  #, fuzzy
364
  msgid "settings page"
365
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
366
 
367
  # @ contact_form
368
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
369
- #: contact_form.php:1635
370
  #, fuzzy
371
  msgid "Activate"
372
  msgstr "Ενεργοποίηση captcha"
373
 
374
  # @ contact_form
375
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
376
- #: contact_form.php:1640
377
  #, fuzzy
378
  msgid "Download"
379
  msgstr "Κατέβασμα captcha"
380
 
381
- #: contact_form.php:1224
382
  msgid "Sending method"
383
  msgstr ""
384
 
385
  # @ contact_form
386
- #: contact_form.php:1229
387
  msgid "Wp-mail"
388
  msgstr "Wp-mail"
389
 
390
  # @ contact_form
391
- #: contact_form.php:1231
392
  #, fuzzy
393
  msgid "You can use the Wordpress wp_mail function for mailing"
394
  msgstr ""
395
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
396
 
397
  # @ contact_form
398
- #: contact_form.php:1234
399
  msgid "Mail"
400
  msgstr "Tαχυδρομείο"
401
 
402
  # @ contact_form
403
- #: contact_form.php:1236
404
  #, fuzzy
405
  msgid "You can use the PHP mail function for mailing"
406
  msgstr ""
407
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
408
 
409
- #: contact_form.php:1241
410
  msgid "'FROM' field"
411
  msgstr ""
412
 
413
  # @ contact_form
414
- #: contact_form.php:1257
415
  msgid "User name"
416
  msgstr "Όνομα χρήστη"
417
 
418
  # @ contact_form
419
- #: contact_form.php:1259
420
  msgid ""
421
  "The name of the user who fills the form will be used in the field 'From'."
422
  msgstr ""
@@ -424,17 +424,17 @@ msgstr ""
424
  "'Από'."
425
 
426
  # @ contact_form
427
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
428
  msgid "Email"
429
  msgstr "Email"
430
 
431
  # @ contact_form
432
- #: contact_form.php:1281
433
  msgid "User email"
434
  msgstr "Email χρήστη"
435
 
436
  # @ contact_form
437
- #: contact_form.php:1283
438
  msgid ""
439
  "The email address of the user who fills the form will be used in the field "
440
  "'From'."
@@ -442,171 +442,171 @@ msgstr ""
442
  "Η διεύθυνση email του χρήστη που συμπληρώνει τη φόρμα θα χρησιμοποιηθεί στο "
443
  "πεδίο 'Από'."
444
 
445
- #: contact_form.php:1292
446
  msgid ""
447
  "If this option is changed, email messages may be moved to the spam folder or "
448
  "email delivery failures may occur."
449
  msgstr ""
450
 
451
  # @ contact_form
452
- #: contact_form.php:1301
453
  msgid "Required symbol"
454
  msgstr "Απαιτούμενο σύμβολο"
455
 
456
  # @ contact_form
457
- #: contact_form.php:1311
458
  msgid "Fields"
459
  msgstr "Πεδία"
460
 
461
  # @ contact_form
462
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
463
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
464
  msgid "Used"
465
  msgstr "Χρησιμοποιείται"
466
 
467
  # @ contact_form
468
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
469
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
470
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
471
  msgid "Required"
472
  msgstr "Απαιτούμενο"
473
 
474
  # @ contact_form
475
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
476
- #: contact_form.php:1447 contact_form.php:1471
477
  msgid "Visible"
478
  msgstr "Ορατό"
479
 
480
  # @ contact_form
481
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
482
- #: contact_form.php:1451 contact_form.php:1475
483
  msgid "Disabled for editing"
484
  msgstr "Δεν επιτρέπεται η επεξεργασία"
485
 
486
  # @ contact_form
487
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
488
- #: contact_form.php:1479
489
  msgid "Field's default value"
490
  msgstr "Προκαθορισμένη τιμή πεδίου"
491
 
492
  # @ contact_form
493
- #: contact_form.php:1324
494
  #, fuzzy
495
  msgid "Department selectbox"
496
  msgstr "Τοποθεσία selectbox"
497
 
498
- #: contact_form.php:1356
499
  msgid "Use User's name as a default value if the user is logged in."
500
  msgstr ""
501
 
502
- #: contact_form.php:1357 contact_form.php:1417
503
  msgid ""
504
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
505
  "in users."
506
  msgstr ""
507
 
508
  # @ contact_form
509
- #: contact_form.php:1363
510
  msgid "Location selectbox"
511
  msgstr "Τοποθεσία selectbox"
512
 
513
- #: contact_form.php:1416
514
  msgid "Use User's email as a default value if the user is logged in."
515
  msgstr ""
516
 
517
  # @ contact_form
518
- #: contact_form.php:1500
519
  msgid "Attachment block"
520
  msgstr "Συνημμένο μπλοκ"
521
 
522
  # @ contact_form
523
- #: contact_form.php:1502
524
  msgid "Users can attach the following file formats"
525
  msgstr "Οι χρήστες μπορούν να επισυνάψουν τις ακόλουθες μορφές αρχείων"
526
 
527
  # @ contact_form
528
- #: contact_form.php:1520
529
  msgid "Add to the form"
530
  msgstr "Προσθήκη στη φόρμα"
531
 
532
  # @ contact_form
533
- #: contact_form.php:1525
534
  msgid "Tips below the Attachment"
535
  msgstr "Συμβουλές κάτω από το συνημμένο"
536
 
537
  # @ contact_form
538
- #: contact_form.php:1532
539
  msgid "'Send me a copy' block"
540
  msgstr "Μπλοκ 'Στείλε μου ένα αντίγραφο'"
541
 
542
- #: contact_form.php:1560
543
  msgid "Activate for network"
544
  msgstr ""
545
 
546
  # @ contact_form
547
- #: contact_form.php:1651
548
  msgid "Agreement checkbox"
549
  msgstr "Checkbox συμφωνίας"
550
 
551
  # @ contact_form
552
- #: contact_form.php:1651
553
  msgid "Required checkbox for submitting the form"
554
  msgstr "Απαιτούμενο checkbox για την υποβολή της φόρμας"
555
 
556
  # @ contact_form
557
- #: contact_form.php:1652
558
  msgid "Optional checkbox"
559
  msgstr "Προαιρετικό checkbox"
560
 
561
  # @ contact_form
562
- #: contact_form.php:1652
563
  msgid "Optional checkbox, the results of which will be displayed in email"
564
  msgstr "Optional checkbox, τα αποτελέσματα του οποίου θα εμφανίζεται στο email"
565
 
566
  # @ contact_form
567
- #: contact_form.php:1670
568
  msgid "Delete an attachment file from the server after the email is sent"
569
  msgstr ""
570
  "Διαγραφή συνημμένου αρχείου από τον διακομιστή μετά την αποστολή του email"
571
 
572
  # @ contact_form
573
- #: contact_form.php:1676
574
  msgid "Email in HTML format sending"
575
  msgstr "Αποστολή email σε μορφή HTML "
576
 
577
  # @ contact_form
578
- #: contact_form.php:1680
579
  msgid "Display additional info in the email"
580
  msgstr "Εμφάνιση περισσότερων πληροφοριών στο email"
581
 
582
  # @ contact_form
583
- #: contact_form.php:1686
584
  #, fuzzy
585
  msgid "Sent from (IP address)"
586
  msgstr "Εστάλη από (διεύθυνση IP)"
587
 
588
  # @ contact_form
589
- #: contact_form.php:1686
590
  msgid "Example: Sent from (IP address):\t127.0.0.1"
591
  msgstr "Παράδειγμα: Εστάλη από (διεύθυνση IP):\t127.0.0.1"
592
 
593
  # @ contact_form
594
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
595
  msgid "Date/Time"
596
  msgstr "Ημερομηνία/Ώρα"
597
 
598
  # @ contact_form
599
- #: contact_form.php:1687
600
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
601
  msgstr "Παράδειγμα: Ημερομηνία/Ώρα:\tΑύγυστος 19, 2013 8:50 μμ"
602
 
603
  # @ contact_form
604
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
605
  msgid "Sent from (referer)"
606
  msgstr "Εστάλη από (παραπέμπτης)"
607
 
608
  # @ contact_form
609
- #: contact_form.php:1688
610
  #, fuzzy
611
  msgid ""
612
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
@@ -615,12 +615,12 @@ msgstr ""
615
  "contact-us/"
616
 
617
  # @ contact_form
618
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
619
  msgid "Using (user agent)"
620
  msgstr "Χρήση (μέσο χρήστη)"
621
 
622
  # @ contact_form
623
- #: contact_form.php:1689
624
  msgid ""
625
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
626
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -629,78 +629,78 @@ msgstr ""
629
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
630
 
631
  # @ contact_form
632
- #: contact_form.php:1694
633
  msgid "Language settings for the field names in the form"
634
  msgstr "Ρυθμίσεις γλώσσας για τα ονόματα πεδίων στη φόρμα"
635
 
636
  # @ contact_form
637
- #: contact_form.php:1703
638
  msgid "Add a language"
639
  msgstr "Προσθήκη γλώσσας"
640
 
641
  # @ contact_form
642
- #: contact_form.php:1707
643
  msgid "Change the names of the contact form fields and error messages"
644
  msgstr ""
645
  "Αλλάξτε τα ονόματα των πεδίων και των μηνύματα σφαλμάτων στη φόρμας "
646
  "επικοινωνίας "
647
 
648
  # @ contact_form
649
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
650
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
651
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
652
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
653
- #: contact_form.php:2132 contact_form.php:2137
654
  msgid "Default"
655
  msgstr "Προκαθορισμένο"
656
 
657
  # @ contact_form
658
- #: contact_form.php:1725 contact_form.php:1763
659
  msgid "click to expand/hide the list"
660
  msgstr "κάντε κλικ για να επεκτείνετε/αποκρύψετε τη λίστα"
661
 
662
  # @ contact_form
663
- #: contact_form.php:1734 contact_form.php:1772
664
  msgid "Tips below the Attachment block"
665
  msgstr "Συμβουλές κάτω από το Συνημμένο μπλοκ"
666
 
667
  # @ contact_form
668
- #: contact_form.php:1737 contact_form.php:1775
669
  msgid "Error message for the Name field"
670
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Όνομα'"
671
 
672
  # @ contact_form
673
- #: contact_form.php:1738 contact_form.php:1776
674
  msgid "Error message for the Address field"
675
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Διεύθυνση'"
676
 
677
  # @ contact_form
678
- #: contact_form.php:1739 contact_form.php:1777
679
  msgid "Error message for the Email field"
680
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Email'"
681
 
682
  # @ contact_form
683
- #: contact_form.php:1740 contact_form.php:1778
684
  msgid "Error message for the Phone field"
685
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Αριθμός τηλεφώνου'"
686
 
687
  # @ contact_form
688
- #: contact_form.php:1741 contact_form.php:1779
689
  msgid "Error message for the Subject field"
690
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Θέμα'"
691
 
692
  # @ contact_form
693
- #: contact_form.php:1742 contact_form.php:1780
694
  msgid "Error message for the Message field"
695
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Μήνυμα'"
696
 
697
  # @ contact_form
698
- #: contact_form.php:1743 contact_form.php:1781
699
  msgid "Error message about the file type for the Attachment field"
700
  msgstr "Μήνυμα σφάλματος σχετικά με τον τύπο αρχείου για το πεδίο 'Συνημμένο'"
701
 
702
  # @ contact_form
703
- #: contact_form.php:1744 contact_form.php:1782
704
  msgid ""
705
  "Error message while uploading a file for the Attachment field to the server"
706
  msgstr ""
@@ -708,91 +708,91 @@ msgstr ""
708
  "διακομιστή"
709
 
710
  # @ contact_form
711
- #: contact_form.php:1745 contact_form.php:1783
712
  msgid "Error message while moving the file for the Attachment field"
713
  msgstr ""
714
  "Μήνυμα σφάλματος κατά τη μετακίνηση του αρχείου για το πεδίο 'Συνημμένο'"
715
 
716
  # @ contact_form
717
- #: contact_form.php:1746 contact_form.php:1784
718
  msgid "Error message when file size limit for the Attachment field is exceeded"
719
  msgstr ""
720
  "Μήνυμα σφάλματος όταν το όριο μεγέθους αρχείου για το πεδίο 'Συνημμένο' έχει "
721
  "ξεπεραστεί"
722
 
723
  # @ contact_form
724
- #: contact_form.php:1747 contact_form.php:1785
725
  msgid "Error message for the Captcha field"
726
  msgstr "Μήνυμα σφάλματος για το πεδίο 'Captcha'"
727
 
728
  # @ contact_form
729
- #: contact_form.php:1748 contact_form.php:1786
730
  msgid "Error message for the whole form"
731
  msgstr "Μήνυμα σφάλματος συνολικά για τη φόρμα"
732
 
733
  # @ contact_form
734
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
735
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
736
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
737
- #: contact_form.php:3540
738
  msgid "Use shortcode"
739
  msgstr "Χρήση σύντομου κωδικού"
740
 
741
  # @ contact_form
742
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
743
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
744
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
745
- #: contact_form.php:3540
746
  msgid "for this language"
747
  msgstr "για τη συγκεκριμένη γλώσσα"
748
 
749
  # @ contact_form
750
- #: contact_form.php:1799
751
  msgid "Use the changed names of the contact form fields in the email"
752
  msgstr ""
753
  "Χρησιμοποιήστε τα τροποποιημένα ονόματα των πεδίων της φόρμας επικοινωνίας "
754
  "στο email"
755
 
756
  # @ contact_form
757
- #: contact_form.php:1805
758
  msgid "Action after email is sent"
759
  msgstr "Ενέργεια μετά την αποστολή του email"
760
 
761
  # @ contact_form
762
- #: contact_form.php:1807
763
  msgid "Display text"
764
  msgstr "Εμφάνιση κειμένου"
765
 
766
  # @ contact_form
767
- #: contact_form.php:1821 contact_form.php:1835
768
  msgid "Text"
769
  msgstr "Κείμενο"
770
 
771
  # @ contact_form
772
- #: contact_form.php:1846
773
  msgid "Redirect to the page"
774
  msgstr "Ανακατεύθυνση στη σελίδα"
775
 
776
  # @ contact_form
777
- #: contact_form.php:1847
778
  msgid "Url"
779
  msgstr "Url"
780
 
781
- #: contact_form.php:1858
782
  msgid "Add field 'Reply-To' to the email header"
783
  msgstr ""
784
 
785
- #: contact_form.php:1860
786
  msgid "Field 'Reply-To' will be initialized by user email"
787
  msgstr ""
788
 
789
  # @ contact_form
790
- #: contact_form.php:1864
791
  msgid "Auto Response"
792
  msgstr "Αυτόματη Απάντηση"
793
 
794
  # @ contact_form
795
- #: contact_form.php:1868
796
  #, php-format
797
  msgid ""
798
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -805,213 +805,225 @@ msgstr ""
805
  "ιστολογίου."
806
 
807
  # @ default
808
- #: contact_form.php:1890 contact_form.php:2389
809
  msgid "Save Changes"
810
  msgstr "Αποθήκευση αλλαγών"
811
 
812
- #: contact_form.php:1903
813
  #, php-format
814
  msgid ""
815
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
816
  msgstr ""
817
 
818
- #: contact_form.php:1903 contact_form.php:1912
819
  msgid "Form layout"
820
  msgstr ""
821
 
822
  # @ contact_form
823
- #: contact_form.php:1903 contact_form.php:1924
824
  #, fuzzy
825
  msgid "Submit position"
826
  msgstr "Κομβίο Υποβολής"
827
 
828
- #: contact_form.php:1916
829
  msgid "One column"
830
  msgstr ""
831
 
832
- #: contact_form.php:1919
833
  msgid "Two columns"
834
  msgstr ""
835
 
836
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
837
- #: contact_form.php:1980
838
  msgid "Left"
839
  msgstr ""
840
 
841
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
842
- #: contact_form.php:1986
843
  msgid "Right"
844
  msgstr ""
845
 
846
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
847
  msgid "Form align"
848
  msgstr ""
849
 
850
- #: contact_form.php:1950 contact_form.php:1983
851
  msgid "Center"
852
  msgstr ""
853
 
854
  # @ contact_form
855
- #: contact_form.php:1958
856
  #, fuzzy
857
  msgid "Labels position"
858
  msgstr "Κομβίο Υποβολής"
859
 
860
- #: contact_form.php:1962
861
  msgid "Top"
862
  msgstr ""
863
 
864
- #: contact_form.php:1971
865
  msgid "Bottom"
866
  msgstr ""
867
 
868
- #: contact_form.php:1976
869
  msgid "Labels align"
870
  msgstr ""
871
 
872
  # @ contact_form
873
- #: contact_form.php:1991
874
  msgid "Errors output"
875
  msgstr "Έξοδος σφαλμάτων"
876
 
877
  # @ contact_form
878
- #: contact_form.php:1994
879
  msgid "Display error messages"
880
  msgstr "Εμφάνιση μηνυμάτων σφαλμάτων"
881
 
882
  # @ contact_form
883
- #: contact_form.php:1995
884
  msgid "Color of the input field errors."
885
  msgstr "Χρώμα των σφαλμάτων στα πεδία εισαγωγής."
886
 
887
  # @ contact_form
888
- #: contact_form.php:1996
889
  msgid "Display error messages & color of the input field errors"
890
  msgstr ""
891
  "Εμφάνιση μηνυμάτων σφαλμάτων & χρώμα των σφαλμάτων στα πεδία εισαγωγής."
892
 
893
  # @ contact_form
894
- #: contact_form.php:2001
895
  msgid "Add placeholder to the input blocks"
896
  msgstr "Προσθήκη placeholder στα μπλοκς εισαγωγής"
897
 
898
  # @ contact_form
899
- #: contact_form.php:2007
900
  msgid "Add tooltips"
901
  msgstr "Προσθήκη επεξηγήσεων"
902
 
903
  # @ contact_form
904
- #: contact_form.php:2021
905
  msgid "Email address"
906
  msgstr "Email"
907
 
908
  # @ contact_form
909
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
910
  msgid "Phone Number"
911
  msgstr "Αριθμός τηλεφώνου"
912
 
913
  # @ contact_form
914
- #: contact_form.php:2052
915
  msgid "Style options"
916
  msgstr "Ρυμθίσεις εμφάνισης"
917
 
918
  # @ contact_form
919
- #: contact_form.php:2056
920
  msgid "Text color"
921
  msgstr "Χρώμα κειμένου"
922
 
923
  # @ contact_form
924
- #: contact_form.php:2061
925
  msgid "Label text color"
926
  msgstr "Χρώμα κειμένου ετικέτας"
927
 
928
  # @ contact_form
929
- #: contact_form.php:2066
930
  msgid "Placeholder color"
931
  msgstr "Χρώμα placeholder"
932
 
933
  # @ contact_form
934
- #: contact_form.php:2071
935
  msgid "Errors color"
936
  msgstr "Χρώμα σφαλμάτων"
937
 
938
  # @ contact_form
939
- #: contact_form.php:2076
940
  msgid "Error text color"
941
  msgstr "Χρώμα κειμένου σφάλματος"
942
 
943
  # @ contact_form
944
- #: contact_form.php:2081
945
  msgid "Background color of the input field errors"
946
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής σφαλμάτων"
947
 
948
  # @ contact_form
949
- #: contact_form.php:2086
950
  msgid "Border color of the input field errors"
951
  msgstr "Χρώμα περιγράμματος στα πεδία εισαγωγής σφαλμάτων"
952
 
953
  # @ contact_form
954
- #: contact_form.php:2091
955
  msgid "Placeholder color of the input field errors"
956
  msgstr "Χρώμα placeholder στα πεδία εισαγωγής σφαλμάτων"
957
 
958
  # @ contact_form
959
- #: contact_form.php:2096
960
  msgid "Input fields"
961
  msgstr "Πεδία εισαγωγής"
962
 
963
  # @ contact_form
964
- #: contact_form.php:2101
965
  msgid "Input fields background color"
966
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής"
967
 
968
  # @ contact_form
969
- #: contact_form.php:2106
970
  msgid "Text fields color"
971
  msgstr "Χρώμα πεδίων κειμένου"
972
 
973
  # @ contact_form
974
- #: contact_form.php:2110
975
  msgid "Border width in px, numbers only"
976
  msgstr "Πλάτος περιγράμματος σε px, μόνο αριθμοί"
977
 
978
  # @ contact_form
979
- #: contact_form.php:2115 contact_form.php:2139
980
  msgid "Border color"
981
  msgstr "Χρώμα περιγράμματος"
982
 
983
  # @ contact_form
984
- #: contact_form.php:2120
985
  msgid "Submit button"
986
  msgstr "Κομβίο Υποβολής"
987
 
988
  # @ contact_form
989
- #: contact_form.php:2124
990
  msgid "Width in px, numbers only"
991
  msgstr "Πλάτος σε px, μόνο αριθμοί"
992
 
993
  # @ contact_form
994
- #: contact_form.php:2129
995
  msgid "Button color"
996
  msgstr "Χρώμα κομβίου"
997
 
998
  # @ contact_form
999
- #: contact_form.php:2134
1000
  msgid "Button text color"
1001
  msgstr "Χρώμα κειμένου κομβίου"
1002
 
1003
  # @ contact_form
1004
- #: contact_form.php:2163
1005
  #, fuzzy
1006
  msgid "Contact Form | Preview"
1007
  msgstr "Contact Form Pro | Προεπισκόπηση"
1008
 
1009
- #: contact_form.php:2164
1010
  msgid "Drag the necessary field to sort fields."
1011
  msgstr ""
1012
 
1013
  # @ contact_form
1014
- #: contact_form.php:2376
1015
  #, fuzzy
1016
  msgid ""
1017
  "If you would like to add the Contact Form to your website, just copy and "
@@ -1022,28 +1034,28 @@ msgstr ""
1022
  "στο widget σας:"
1023
 
1024
  # @ contact_form
1025
- #: contact_form.php:2504
1026
  msgid "Sorry, email message could not be delivered."
1027
  msgstr ""
1028
  "Λυπούμαστε, το μήνυμα ηλεκτρονικού ταχυδρομείου δεν μπόρεσε να παραδοθεί."
1029
 
1030
  # @ contact_form
1031
- #: contact_form.php:3094 contact_form.php:3096
1032
  msgid "Sent from (ip address)"
1033
  msgstr "Εστάλη από (διεύθυνση IP)"
1034
 
1035
  # @ contact_form
1036
- #: contact_form.php:3124
1037
  msgid "Contact from"
1038
  msgstr "Φόρμμα επικοινωνίας"
1039
 
1040
  # @ contact_form
1041
- #: contact_form.php:3129 contact_form.php:3178
1042
  msgid "Site"
1043
  msgstr "Ιστοσελίδα"
1044
 
1045
  # @ contact_form
1046
- #: contact_form.php:3308
1047
  msgid ""
1048
  "If you can see this MIME, it means that the MIME type is not supported by "
1049
  "your email client!"
@@ -1052,44 +1064,44 @@ msgstr ""
1052
  "υποστηρίζεται από τον email client σας!"
1053
 
1054
  # @ contact_form
1055
- #: contact_form.php:3391
1056
  msgid "FAQ"
1057
  msgstr "Συχνές Ερωτήσεις"
1058
 
1059
  # @ contact_form
1060
- #: contact_form.php:3392
1061
  msgid "Support"
1062
  msgstr "Υποστήριξη"
1063
 
1064
  # @ contact_form
1065
- #: contact_form.php:3441
1066
  msgid "Are you sure that you want to delete this language data?"
1067
  msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τα δεδομένα αυτής της γλώσσας;"
1068
 
1069
  # @ contact_form
1070
- #: contact_form.php:3462
1071
  #, fuzzy
1072
  msgid "Add multiple forms"
1073
  msgstr "Προσθήκη στη φόρμα"
1074
 
1075
- #: contact_form.php:3462
1076
  msgid ""
1077
  "Install Contact Form Multi plugin to create unlimited number of contact "
1078
  "forms."
1079
  msgstr ""
1080
 
1081
  # @ contact_form
1082
- #: contact_form.php:3467
1083
  #, fuzzy
1084
  msgid "Learn more"
1085
  msgstr "Μάθετε περισσότερα"
1086
 
1087
- #: contact_form.php:3693
1088
  msgid "Close notice"
1089
  msgstr ""
1090
 
1091
  # @ contact_form
1092
- #: contact_form.php:3698
1093
  #, fuzzy
1094
  msgid "allows to store your messages to the database."
1095
  msgstr ""
@@ -1097,35 +1109,27 @@ msgstr ""
1097
  "στη βάση δεδομένων."
1098
 
1099
  # @ contact_form
1100
- #: contact_form.php:3699
1101
  msgid "Manage messages that have been sent from your website."
1102
  msgstr "Διαχειριστείτε τα μηνύματα που έχουν σταλεί από την ιστοσελίδα σας."
1103
 
1104
  # @ contact_form
1105
- #: contact_form.php:3702
1106
  msgid "Learn More"
1107
  msgstr "Μάθετε περισσότερα"
1108
 
1109
  # @ contact_form
1110
- #: contact_form.php:3762
1111
  #, fuzzy
1112
  msgid "Contact form"
1113
  msgstr "Φόρμμα επικοινωνίας"
1114
 
1115
  # @ contact_form
1116
- #: contact_form.php:3775 contact_form.php:3785
1117
  #, fuzzy
1118
  msgid "Language"
1119
  msgstr "Προσθήκη γλώσσας"
1120
 
1121
- #: includes/deprecated.php:168
1122
- #, php-format
1123
- msgid ""
1124
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
1125
- "replace it with %3s. If you close this message it'll appear again after "
1126
- "deprecated shortcode reuse."
1127
- msgstr ""
1128
-
1129
  # @ contact_form
1130
  #, fuzzy
1131
  #~ msgid "Unlock premium options by upgrading to Pro version"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:15+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis <dkarantonis@gmail.com>\n"
9
  "Language: el\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
  # @ contact_form
24
+ #: contact_form.php:37 contact_form.php:1064
25
  msgid "Contact Form Settings"
26
  msgstr "Ρυθμίσεις φόρμας επικοινωνίας"
27
 
28
  # @ contact_form
29
+ #: contact_form.php:37
30
  msgid "Contact Form"
31
  msgstr "Φόρμα Επικοινωνίας"
32
 
33
  # @ contact_form
34
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
35
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
36
+ #: contact_form.php:3181 contact_form.php:3227
37
  msgid "Name"
38
  msgstr "Όνομα"
39
 
40
  # @ contact_form
41
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
42
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
43
+ #: contact_form.php:3233
44
  msgid "Address"
45
  msgstr "Διεύθυνση"
46
 
47
  # @ contact_form
48
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
49
+ #: contact_form.php:1765
50
  msgid "Email Address"
51
  msgstr "Διεύθυνση Email"
52
 
53
  # @ contact_form
54
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
55
+ #: contact_form.php:1766
56
  msgid "Phone number"
57
  msgstr "Αριθμός τηλεφώνου"
58
 
59
  # @ contact_form
60
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
61
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
62
+ #: contact_form.php:3242
63
  msgid "Subject"
64
  msgstr "Θέμα"
65
 
66
  # @ contact_form
67
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
68
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
69
+ #: contact_form.php:3246
70
  msgid "Message"
71
  msgstr "Μήνυμα"
72
 
73
  # @ contact_form
74
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
75
+ #: contact_form.php:2058
76
  msgid "Attachment"
77
  msgstr "Συννημένο αρχείο"
78
 
79
  # @ contact_form
80
+ #: contact_form.php:287
81
  msgid ""
82
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
83
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
87
  "PPT."
88
 
89
  # @ contact_form
90
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
91
  msgid "Send me a copy"
92
  msgstr "Αποστολή αντιγράφου"
93
 
94
  # @ contact_form
95
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
96
  msgid "Submit"
97
  msgstr "Αποστολή"
98
 
99
  # @ contact_form
100
+ #: contact_form.php:290
101
  msgid "Your name is required."
102
  msgstr "Το όνομα σας είναι απαραίτητο."
103
 
104
  # @ contact_form
105
+ #: contact_form.php:291
106
  msgid "Address is required."
107
  msgstr "Η διεύθυνσή σας είναι απαραίτητη."
108
 
109
  # @ contact_form
110
+ #: contact_form.php:292
111
  msgid "A valid email address is required."
112
  msgstr "Απαιτείται μία έγκυρη διεύθυνση email."
113
 
114
  # @ contact_form
115
+ #: contact_form.php:293
116
  msgid "Phone number is required."
117
  msgstr "Ο αριθμός τηλεφώνου είναι απαραίτητος."
118
 
119
  # @ contact_form
120
+ #: contact_form.php:294
121
  msgid "Subject is required."
122
  msgstr "Το θέμα είναι απαραίτητο."
123
 
124
  # @ contact_form
125
+ #: contact_form.php:295
126
  msgid "Message text is required."
127
  msgstr "Το μήνυμα κειμένου είναι απαραίτητο."
128
 
129
  # @ contact_form
130
+ #: contact_form.php:296
131
  msgid "File format is not valid."
132
  msgstr "Ο τύπος του αρχείου δεν είναι έγκυρος."
133
 
134
  # @ contact_form
135
+ #: contact_form.php:297
136
  msgid "File upload error."
137
  msgstr "Πρόβλημα κατά το ανέβασμα του αρχείου."
138
 
139
  # @ contact_form
140
+ #: contact_form.php:298
141
  msgid "The file could not be uploaded."
142
  msgstr "Το αρχείο δεν μπορούσε να ανέβει."
143
 
144
  # @ contact_form
145
+ #: contact_form.php:299
146
  msgid "This file is too large."
147
  msgstr "Το μέγεθος αρχείου είναι πολύ μεγάλο."
148
 
149
  # @ contact_form
150
+ #: contact_form.php:300
151
  msgid "Please fill out the CAPTCHA."
152
  msgstr "Παρακαλούμε, συμπληρώστε το πεδίο CAPTCHA."
153
 
154
  # @ contact_form
155
+ #: contact_form.php:301
156
  msgid "Please make corrections below and try again."
157
  msgstr ""
158
  "Παρακαλούμε, προχωρήστε στις παρακακάτω διορθώσεις και προσπαθήστε ξανά."
159
 
160
  # @ contact_form
161
+ #: contact_form.php:303
162
  msgid "Thank you for contacting us."
163
  msgstr "Σας ευχαριστούμε για την επικοινωνία."
164
 
165
  # @ contact_form
166
+ #: contact_form.php:759 contact_form.php:1021
167
  msgid "Settings saved."
168
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
169
 
170
+ #: contact_form.php:966
171
  msgid ""
172
  "Email 'FROM' field option was changed, which may cause email messages being "
173
  "moved to the spam folder or email delivery failures."
174
  msgstr ""
175
 
176
  # @ contact_form
177
+ #: contact_form.php:976
178
  msgid ""
179
  "If the 'Redirect to page' option is selected then the URL field should be in "
180
  "the following format"
183
  "πεδίο URL θα πρέπει να έχει την ακόλουθη μορφή"
184
 
185
  # @ contact_form
186
+ #: contact_form.php:983
187
  msgid "Such user does not exist."
188
  msgstr "Τέτοιος χρήστης δεν υπάρχει."
189
 
190
  # @ contact_form
191
+ #: contact_form.php:993
192
  msgid ""
193
  "Please enter a valid email address in the 'Use this email address' field."
194
  msgstr ""
196
  "αυτήν τη διεύθυνση email'."
197
 
198
  # @ contact_form
199
+ #: contact_form.php:1001
200
  msgid "Please enter a valid email address in the 'FROM' field."
201
  msgstr "Παρακαλούμε, εισάγετε μια έγκυρη διεύθυνση email στο πεδίο «ΑΠΟ»."
202
 
203
  # @ contact_form
204
+ #: contact_form.php:1023
205
  msgid "Settings are not saved."
206
  msgstr "Οι ρυθμίσεις δεν αποθηκεύτηκαν."
207
 
208
+ #: contact_form.php:1061
209
  msgid "All plugin settings were restored."
210
  msgstr ""
211
 
212
+ #: contact_form.php:1067
213
  msgid "How to Use Step-by-step Instruction"
214
  msgstr ""
215
 
216
  # @ contact_form
217
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
218
  msgid "Settings"
219
  msgstr "Ρυθμίσεις"
220
 
221
  # @ contact_form
222
+ #: contact_form.php:1071
223
  #, fuzzy
224
  msgid "Additional settings"
225
  msgstr "Πρόσθετες επιλογές"
226
 
227
+ #: contact_form.php:1072
228
  msgid "Appearance"
229
  msgstr ""
230
 
231
+ #: contact_form.php:1073
232
  msgid "Custom code"
233
  msgstr ""
234
 
235
  # @ contact_form
236
+ #: contact_form.php:1074
237
  msgid "Go PRO"
238
  msgstr "Αναβάθμιση σε PRO"
239
 
240
  # @ contact_form
241
+ #: contact_form.php:1085
242
  #, fuzzy
243
  msgid "Notice"
244
  msgstr "Σημείωση:"
245
 
246
+ #: contact_form.php:1089
247
  msgid "NEW_FORM"
248
  msgstr ""
249
 
250
  # @ contact_form
251
+ #: contact_form.php:1090
252
  msgid ""
253
  "If you want to create multiple contact forms, please install the Contact "
254
  "Form Multi plugin."
257
  "εγκαταστήσετε την επέκταση φόρμα επικοινωνίας Multi."
258
 
259
  # @ contact_form
260
+ #: contact_form.php:1099
261
  #, fuzzy, php-format
262
  msgid ""
263
  "If you would like to add a Contact Form to your page or post, please use %s "
267
  "αντιγράψετε και επικολλήσετε αυτό το σύντομο κωδικό στο άρθρο, στη σελίδα ή "
268
  "στο widget σας:"
269
 
270
+ #: contact_form.php:1105
271
  #, php-format
272
  msgid ""
273
  "You can add the Contact Form to your page or post by clicking on %s button "
277
  msgstr ""
278
 
279
  # @ contact_form
280
+ #: contact_form.php:1114
281
  msgid ""
282
  "If you leave the fields empty, the messages will be sent to the email "
283
  "address specified during registration."
286
  "καθορίσατε κατά την εγγραφή σας."
287
 
288
  # @ contact_form
289
+ #: contact_form.php:1117
290
  #, fuzzy
291
  msgid "The user's email address"
292
  msgstr "Η διεύθυνση email του χρήστη:"
293
 
294
  # @ contact_form
295
+ #: contact_form.php:1121
296
  #, fuzzy
297
  msgid "Select a username"
298
  msgstr "Δημιουργήστε ένα όνομα χρήστη"
299
 
300
  # @ contact_form
301
+ #: contact_form.php:1134
302
  #, fuzzy
303
  msgid ""
304
  "Select a username of the person who should get the messages from the contact "
308
  "επικοινωνίας."
309
 
310
  # @ contact_form
311
+ #: contact_form.php:1138
312
  #, fuzzy
313
  msgid "Use this email address"
314
  msgstr "Χρησιμοποιήστε αυτήν τη διεύθυνση email: "
315
 
316
  # @ contact_form
317
+ #: contact_form.php:1142
318
  #, fuzzy
319
  msgid "Enter the email address for receiving messages"
320
  msgstr "Εισάγετε τη διεύθυνση email που θέλετε τα μηνύματα να προωθούνται."
321
 
322
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
323
+ #: contact_form.php:1957 contact_form.php:3514
324
  msgid "Close"
325
  msgstr ""
326
 
327
  # @ contact_form
328
+ #: contact_form.php:1153
329
  #, fuzzy
330
  msgid "Add department selectbox to the contact form"
331
  msgstr "Προσθέστε τμήμα selectbox στην φόρμα επικοινωνίας:"
332
 
333
  # @ contact_form
334
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
335
+ #: contact_form.php:2163
336
  msgid "If you upgrade to Pro version all your settings will be saved."
337
  msgstr ""
338
  "Εάν κάνετε αναβάθμιση σε έκδοση Pro όλες οι ρυθμίσεις σας θα αποθηκευτούν."
339
 
340
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
341
+ #: contact_form.php:1878 contact_form.php:2170
342
  msgid "Upgrade to Pro"
343
  msgstr ""
344
 
345
  # @ contact_form
346
+ #: contact_form.php:1176
347
  msgid "Save emails to the database"
348
  msgstr "Αποθηκεύστε τα μηνύματα ηλεκτρονικού ταχυδρομείου στη βάση δεδομένων"
349
 
350
  # @ contact_form
351
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
352
  msgid "Using"
353
  msgstr "Χρήση"
354
 
355
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
356
+ #: contact_form.php:1623
357
  msgid "Please activate the appropriate option on"
358
  msgstr ""
359
 
360
  # @ contact_form
361
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
362
+ #: contact_form.php:1626
363
  #, fuzzy
364
  msgid "settings page"
365
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
366
 
367
  # @ contact_form
368
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
369
+ #: contact_form.php:1633
370
  #, fuzzy
371
  msgid "Activate"
372
  msgstr "Ενεργοποίηση captcha"
373
 
374
  # @ contact_form
375
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
376
+ #: contact_form.php:1638
377
  #, fuzzy
378
  msgid "Download"
379
  msgstr "Κατέβασμα captcha"
380
 
381
+ #: contact_form.php:1222
382
  msgid "Sending method"
383
  msgstr ""
384
 
385
  # @ contact_form
386
+ #: contact_form.php:1227
387
  msgid "Wp-mail"
388
  msgstr "Wp-mail"
389
 
390
  # @ contact_form
391
+ #: contact_form.php:1229
392
  #, fuzzy
393
  msgid "You can use the Wordpress wp_mail function for mailing"
394
  msgstr ""
395
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
396
 
397
  # @ contact_form
398
+ #: contact_form.php:1232
399
  msgid "Mail"
400
  msgstr "Tαχυδρομείο"
401
 
402
  # @ contact_form
403
+ #: contact_form.php:1234
404
  #, fuzzy
405
  msgid "You can use the PHP mail function for mailing"
406
  msgstr ""
407
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
408
 
409
+ #: contact_form.php:1239
410
  msgid "'FROM' field"
411
  msgstr ""
412
 
413
  # @ contact_form
414
+ #: contact_form.php:1255
415
  msgid "User name"
416
  msgstr "Όνομα χρήστη"
417
 
418
  # @ contact_form
419
+ #: contact_form.php:1257
420
  msgid ""
421
  "The name of the user who fills the form will be used in the field 'From'."
422
  msgstr ""
424
  "'Από'."
425
 
426
  # @ contact_form
427
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
428
  msgid "Email"
429
  msgstr "Email"
430
 
431
  # @ contact_form
432
+ #: contact_form.php:1279
433
  msgid "User email"
434
  msgstr "Email χρήστη"
435
 
436
  # @ contact_form
437
+ #: contact_form.php:1281
438
  msgid ""
439
  "The email address of the user who fills the form will be used in the field "
440
  "'From'."
442
  "Η διεύθυνση email του χρήστη που συμπληρώνει τη φόρμα θα χρησιμοποιηθεί στο "
443
  "πεδίο 'Από'."
444
 
445
+ #: contact_form.php:1290
446
  msgid ""
447
  "If this option is changed, email messages may be moved to the spam folder or "
448
  "email delivery failures may occur."
449
  msgstr ""
450
 
451
  # @ contact_form
452
+ #: contact_form.php:1299
453
  msgid "Required symbol"
454
  msgstr "Απαιτούμενο σύμβολο"
455
 
456
  # @ contact_form
457
+ #: contact_form.php:1309
458
  msgid "Fields"
459
  msgstr "Πεδία"
460
 
461
  # @ contact_form
462
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
463
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
464
  msgid "Used"
465
  msgstr "Χρησιμοποιείται"
466
 
467
  # @ contact_form
468
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
469
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
470
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
471
  msgid "Required"
472
  msgstr "Απαιτούμενο"
473
 
474
  # @ contact_form
475
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
476
+ #: contact_form.php:1445 contact_form.php:1469
477
  msgid "Visible"
478
  msgstr "Ορατό"
479
 
480
  # @ contact_form
481
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
482
+ #: contact_form.php:1449 contact_form.php:1473
483
  msgid "Disabled for editing"
484
  msgstr "Δεν επιτρέπεται η επεξεργασία"
485
 
486
  # @ contact_form
487
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
488
+ #: contact_form.php:1477
489
  msgid "Field's default value"
490
  msgstr "Προκαθορισμένη τιμή πεδίου"
491
 
492
  # @ contact_form
493
+ #: contact_form.php:1322
494
  #, fuzzy
495
  msgid "Department selectbox"
496
  msgstr "Τοποθεσία selectbox"
497
 
498
+ #: contact_form.php:1354
499
  msgid "Use User's name as a default value if the user is logged in."
500
  msgstr ""
501
 
502
+ #: contact_form.php:1355 contact_form.php:1415
503
  msgid ""
504
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
505
  "in users."
506
  msgstr ""
507
 
508
  # @ contact_form
509
+ #: contact_form.php:1361
510
  msgid "Location selectbox"
511
  msgstr "Τοποθεσία selectbox"
512
 
513
+ #: contact_form.php:1414
514
  msgid "Use User's email as a default value if the user is logged in."
515
  msgstr ""
516
 
517
  # @ contact_form
518
+ #: contact_form.php:1498
519
  msgid "Attachment block"
520
  msgstr "Συνημμένο μπλοκ"
521
 
522
  # @ contact_form
523
+ #: contact_form.php:1500
524
  msgid "Users can attach the following file formats"
525
  msgstr "Οι χρήστες μπορούν να επισυνάψουν τις ακόλουθες μορφές αρχείων"
526
 
527
  # @ contact_form
528
+ #: contact_form.php:1518
529
  msgid "Add to the form"
530
  msgstr "Προσθήκη στη φόρμα"
531
 
532
  # @ contact_form
533
+ #: contact_form.php:1523
534
  msgid "Tips below the Attachment"
535
  msgstr "Συμβουλές κάτω από το συνημμένο"
536
 
537
  # @ contact_form
538
+ #: contact_form.php:1530
539
  msgid "'Send me a copy' block"
540
  msgstr "Μπλοκ 'Στείλε μου ένα αντίγραφο'"
541
 
542
+ #: contact_form.php:1558
543
  msgid "Activate for network"
544
  msgstr ""
545
 
546
  # @ contact_form
547
+ #: contact_form.php:1649
548
  msgid "Agreement checkbox"
549
  msgstr "Checkbox συμφωνίας"
550
 
551
  # @ contact_form
552
+ #: contact_form.php:1649
553
  msgid "Required checkbox for submitting the form"
554
  msgstr "Απαιτούμενο checkbox για την υποβολή της φόρμας"
555
 
556
  # @ contact_form
557
+ #: contact_form.php:1650
558
  msgid "Optional checkbox"
559
  msgstr "Προαιρετικό checkbox"
560
 
561
  # @ contact_form
562
+ #: contact_form.php:1650
563
  msgid "Optional checkbox, the results of which will be displayed in email"
564
  msgstr "Optional checkbox, τα αποτελέσματα του οποίου θα εμφανίζεται στο email"
565
 
566
  # @ contact_form
567
+ #: contact_form.php:1668
568
  msgid "Delete an attachment file from the server after the email is sent"
569
  msgstr ""
570
  "Διαγραφή συνημμένου αρχείου από τον διακομιστή μετά την αποστολή του email"
571
 
572
  # @ contact_form
573
+ #: contact_form.php:1674
574
  msgid "Email in HTML format sending"
575
  msgstr "Αποστολή email σε μορφή HTML "
576
 
577
  # @ contact_form
578
+ #: contact_form.php:1678
579
  msgid "Display additional info in the email"
580
  msgstr "Εμφάνιση περισσότερων πληροφοριών στο email"
581
 
582
  # @ contact_form
583
+ #: contact_form.php:1684
584
  #, fuzzy
585
  msgid "Sent from (IP address)"
586
  msgstr "Εστάλη από (διεύθυνση IP)"
587
 
588
  # @ contact_form
589
+ #: contact_form.php:1684
590
  msgid "Example: Sent from (IP address):\t127.0.0.1"
591
  msgstr "Παράδειγμα: Εστάλη από (διεύθυνση IP):\t127.0.0.1"
592
 
593
  # @ contact_form
594
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
595
  msgid "Date/Time"
596
  msgstr "Ημερομηνία/Ώρα"
597
 
598
  # @ contact_form
599
+ #: contact_form.php:1685
600
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
601
  msgstr "Παράδειγμα: Ημερομηνία/Ώρα:\tΑύγυστος 19, 2013 8:50 μμ"
602
 
603
  # @ contact_form
604
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
605
  msgid "Sent from (referer)"
606
  msgstr "Εστάλη από (παραπέμπτης)"
607
 
608
  # @ contact_form
609
+ #: contact_form.php:1686
610
  #, fuzzy
611
  msgid ""
612
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
615
  "contact-us/"
616
 
617
  # @ contact_form
618
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
619
  msgid "Using (user agent)"
620
  msgstr "Χρήση (μέσο χρήστη)"
621
 
622
  # @ contact_form
623
+ #: contact_form.php:1687
624
  msgid ""
625
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
626
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
629
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
630
 
631
  # @ contact_form
632
+ #: contact_form.php:1692
633
  msgid "Language settings for the field names in the form"
634
  msgstr "Ρυθμίσεις γλώσσας για τα ονόματα πεδίων στη φόρμα"
635
 
636
  # @ contact_form
637
+ #: contact_form.php:1701
638
  msgid "Add a language"
639
  msgstr "Προσθήκη γλώσσας"
640
 
641
  # @ contact_form
642
+ #: contact_form.php:1705
643
  msgid "Change the names of the contact form fields and error messages"
644
  msgstr ""
645
  "Αλλάξτε τα ονόματα των πεδίων και των μηνύματα σφαλμάτων στη φόρμας "
646
  "επικοινωνίας "
647
 
648
  # @ contact_form
649
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
650
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
651
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
652
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
653
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
654
  msgid "Default"
655
  msgstr "Προκαθορισμένο"
656
 
657
  # @ contact_form
658
+ #: contact_form.php:1723 contact_form.php:1761
659
  msgid "click to expand/hide the list"
660
  msgstr "κάντε κλικ για να επεκτείνετε/αποκρύψετε τη λίστα"
661
 
662
  # @ contact_form
663
+ #: contact_form.php:1732 contact_form.php:1770
664
  msgid "Tips below the Attachment block"
665
  msgstr "Συμβουλές κάτω από το Συνημμένο μπλοκ"
666
 
667
  # @ contact_form
668
+ #: contact_form.php:1735 contact_form.php:1773
669
  msgid "Error message for the Name field"
670
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Όνομα'"
671
 
672
  # @ contact_form
673
+ #: contact_form.php:1736 contact_form.php:1774
674
  msgid "Error message for the Address field"
675
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Διεύθυνση'"
676
 
677
  # @ contact_form
678
+ #: contact_form.php:1737 contact_form.php:1775
679
  msgid "Error message for the Email field"
680
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Email'"
681
 
682
  # @ contact_form
683
+ #: contact_form.php:1738 contact_form.php:1776
684
  msgid "Error message for the Phone field"
685
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Αριθμός τηλεφώνου'"
686
 
687
  # @ contact_form
688
+ #: contact_form.php:1739 contact_form.php:1777
689
  msgid "Error message for the Subject field"
690
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Θέμα'"
691
 
692
  # @ contact_form
693
+ #: contact_form.php:1740 contact_form.php:1778
694
  msgid "Error message for the Message field"
695
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Μήνυμα'"
696
 
697
  # @ contact_form
698
+ #: contact_form.php:1741 contact_form.php:1779
699
  msgid "Error message about the file type for the Attachment field"
700
  msgstr "Μήνυμα σφάλματος σχετικά με τον τύπο αρχείου για το πεδίο 'Συνημμένο'"
701
 
702
  # @ contact_form
703
+ #: contact_form.php:1742 contact_form.php:1780
704
  msgid ""
705
  "Error message while uploading a file for the Attachment field to the server"
706
  msgstr ""
708
  "διακομιστή"
709
 
710
  # @ contact_form
711
+ #: contact_form.php:1743 contact_form.php:1781
712
  msgid "Error message while moving the file for the Attachment field"
713
  msgstr ""
714
  "Μήνυμα σφάλματος κατά τη μετακίνηση του αρχείου για το πεδίο 'Συνημμένο'"
715
 
716
  # @ contact_form
717
+ #: contact_form.php:1744 contact_form.php:1782
718
  msgid "Error message when file size limit for the Attachment field is exceeded"
719
  msgstr ""
720
  "Μήνυμα σφάλματος όταν το όριο μεγέθους αρχείου για το πεδίο 'Συνημμένο' έχει "
721
  "ξεπεραστεί"
722
 
723
  # @ contact_form
724
+ #: contact_form.php:1745 contact_form.php:1783
725
  msgid "Error message for the Captcha field"
726
  msgstr "Μήνυμα σφάλματος για το πεδίο 'Captcha'"
727
 
728
  # @ contact_form
729
+ #: contact_form.php:1746 contact_form.php:1784
730
  msgid "Error message for the whole form"
731
  msgstr "Μήνυμα σφάλματος συνολικά για τη φόρμα"
732
 
733
  # @ contact_form
734
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
735
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
736
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
737
+ #: contact_form.php:3604
738
  msgid "Use shortcode"
739
  msgstr "Χρήση σύντομου κωδικού"
740
 
741
  # @ contact_form
742
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
743
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
744
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
745
+ #: contact_form.php:3604
746
  msgid "for this language"
747
  msgstr "για τη συγκεκριμένη γλώσσα"
748
 
749
  # @ contact_form
750
+ #: contact_form.php:1797
751
  msgid "Use the changed names of the contact form fields in the email"
752
  msgstr ""
753
  "Χρησιμοποιήστε τα τροποποιημένα ονόματα των πεδίων της φόρμας επικοινωνίας "
754
  "στο email"
755
 
756
  # @ contact_form
757
+ #: contact_form.php:1803
758
  msgid "Action after email is sent"
759
  msgstr "Ενέργεια μετά την αποστολή του email"
760
 
761
  # @ contact_form
762
+ #: contact_form.php:1805
763
  msgid "Display text"
764
  msgstr "Εμφάνιση κειμένου"
765
 
766
  # @ contact_form
767
+ #: contact_form.php:1819 contact_form.php:1833
768
  msgid "Text"
769
  msgstr "Κείμενο"
770
 
771
  # @ contact_form
772
+ #: contact_form.php:1844
773
  msgid "Redirect to the page"
774
  msgstr "Ανακατεύθυνση στη σελίδα"
775
 
776
  # @ contact_form
777
+ #: contact_form.php:1845
778
  msgid "Url"
779
  msgstr "Url"
780
 
781
+ #: contact_form.php:1856
782
  msgid "Add field 'Reply-To' to the email header"
783
  msgstr ""
784
 
785
+ #: contact_form.php:1858
786
  msgid "Field 'Reply-To' will be initialized by user email"
787
  msgstr ""
788
 
789
  # @ contact_form
790
+ #: contact_form.php:1862
791
  msgid "Auto Response"
792
  msgstr "Αυτόματη Απάντηση"
793
 
794
  # @ contact_form
795
+ #: contact_form.php:1866
796
  #, php-format
797
  msgid ""
798
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
805
  "ιστολογίου."
806
 
807
  # @ default
808
+ #: contact_form.php:1888 contact_form.php:2419
809
  msgid "Save Changes"
810
  msgstr "Αποθήκευση αλλαγών"
811
 
812
+ #: contact_form.php:1901
813
  #, php-format
814
  msgid ""
815
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
816
  msgstr ""
817
 
818
+ #: contact_form.php:1901 contact_form.php:1910
819
  msgid "Form layout"
820
  msgstr ""
821
 
822
  # @ contact_form
823
+ #: contact_form.php:1901 contact_form.php:1922
824
  #, fuzzy
825
  msgid "Submit position"
826
  msgstr "Κομβίο Υποβολής"
827
 
828
+ #: contact_form.php:1914
829
  msgid "One column"
830
  msgstr ""
831
 
832
+ #: contact_form.php:1917
833
  msgid "Two columns"
834
  msgstr ""
835
 
836
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
837
+ #: contact_form.php:1998
838
  msgid "Left"
839
  msgstr ""
840
 
841
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
842
+ #: contact_form.php:2004
843
  msgid "Right"
844
  msgstr ""
845
 
846
+ #: contact_form.php:1934
847
+ msgid "Width"
848
+ msgstr ""
849
+
850
+ #: contact_form.php:1941
851
+ msgid "Custom"
852
+ msgstr ""
853
+
854
+ #: contact_form.php:1948
855
+ msgid "px"
856
+ msgstr ""
857
+
858
+ #: contact_form.php:1961
859
  msgid "Form align"
860
  msgstr ""
861
 
862
+ #: contact_form.php:1968 contact_form.php:2001
863
  msgid "Center"
864
  msgstr ""
865
 
866
  # @ contact_form
867
+ #: contact_form.php:1976
868
  #, fuzzy
869
  msgid "Labels position"
870
  msgstr "Κομβίο Υποβολής"
871
 
872
+ #: contact_form.php:1980
873
  msgid "Top"
874
  msgstr ""
875
 
876
+ #: contact_form.php:1989
877
  msgid "Bottom"
878
  msgstr ""
879
 
880
+ #: contact_form.php:1994
881
  msgid "Labels align"
882
  msgstr ""
883
 
884
  # @ contact_form
885
+ #: contact_form.php:2009
886
  msgid "Errors output"
887
  msgstr "Έξοδος σφαλμάτων"
888
 
889
  # @ contact_form
890
+ #: contact_form.php:2012
891
  msgid "Display error messages"
892
  msgstr "Εμφάνιση μηνυμάτων σφαλμάτων"
893
 
894
  # @ contact_form
895
+ #: contact_form.php:2013
896
  msgid "Color of the input field errors."
897
  msgstr "Χρώμα των σφαλμάτων στα πεδία εισαγωγής."
898
 
899
  # @ contact_form
900
+ #: contact_form.php:2014
901
  msgid "Display error messages & color of the input field errors"
902
  msgstr ""
903
  "Εμφάνιση μηνυμάτων σφαλμάτων & χρώμα των σφαλμάτων στα πεδία εισαγωγής."
904
 
905
  # @ contact_form
906
+ #: contact_form.php:2019
907
  msgid "Add placeholder to the input blocks"
908
  msgstr "Προσθήκη placeholder στα μπλοκς εισαγωγής"
909
 
910
  # @ contact_form
911
+ #: contact_form.php:2025
912
  msgid "Add tooltips"
913
  msgstr "Προσθήκη επεξηγήσεων"
914
 
915
  # @ contact_form
916
+ #: contact_form.php:2039
917
  msgid "Email address"
918
  msgstr "Email"
919
 
920
  # @ contact_form
921
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
922
  msgid "Phone Number"
923
  msgstr "Αριθμός τηλεφώνου"
924
 
925
  # @ contact_form
926
+ #: contact_form.php:2070
927
  msgid "Style options"
928
  msgstr "Ρυμθίσεις εμφάνισης"
929
 
930
  # @ contact_form
931
+ #: contact_form.php:2074
932
  msgid "Text color"
933
  msgstr "Χρώμα κειμένου"
934
 
935
  # @ contact_form
936
+ #: contact_form.php:2079
937
  msgid "Label text color"
938
  msgstr "Χρώμα κειμένου ετικέτας"
939
 
940
  # @ contact_form
941
+ #: contact_form.php:2084
942
  msgid "Placeholder color"
943
  msgstr "Χρώμα placeholder"
944
 
945
  # @ contact_form
946
+ #: contact_form.php:2089
947
  msgid "Errors color"
948
  msgstr "Χρώμα σφαλμάτων"
949
 
950
  # @ contact_form
951
+ #: contact_form.php:2094
952
  msgid "Error text color"
953
  msgstr "Χρώμα κειμένου σφάλματος"
954
 
955
  # @ contact_form
956
+ #: contact_form.php:2099
957
  msgid "Background color of the input field errors"
958
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής σφαλμάτων"
959
 
960
  # @ contact_form
961
+ #: contact_form.php:2104
962
  msgid "Border color of the input field errors"
963
  msgstr "Χρώμα περιγράμματος στα πεδία εισαγωγής σφαλμάτων"
964
 
965
  # @ contact_form
966
+ #: contact_form.php:2109
967
  msgid "Placeholder color of the input field errors"
968
  msgstr "Χρώμα placeholder στα πεδία εισαγωγής σφαλμάτων"
969
 
970
  # @ contact_form
971
+ #: contact_form.php:2114
972
  msgid "Input fields"
973
  msgstr "Πεδία εισαγωγής"
974
 
975
  # @ contact_form
976
+ #: contact_form.php:2119
977
  msgid "Input fields background color"
978
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής"
979
 
980
  # @ contact_form
981
+ #: contact_form.php:2124
982
  msgid "Text fields color"
983
  msgstr "Χρώμα πεδίων κειμένου"
984
 
985
  # @ contact_form
986
+ #: contact_form.php:2128
987
  msgid "Border width in px, numbers only"
988
  msgstr "Πλάτος περιγράμματος σε px, μόνο αριθμοί"
989
 
990
  # @ contact_form
991
+ #: contact_form.php:2133 contact_form.php:2157
992
  msgid "Border color"
993
  msgstr "Χρώμα περιγράμματος"
994
 
995
  # @ contact_form
996
+ #: contact_form.php:2138
997
  msgid "Submit button"
998
  msgstr "Κομβίο Υποβολής"
999
 
1000
  # @ contact_form
1001
+ #: contact_form.php:2142
1002
  msgid "Width in px, numbers only"
1003
  msgstr "Πλάτος σε px, μόνο αριθμοί"
1004
 
1005
  # @ contact_form
1006
+ #: contact_form.php:2147
1007
  msgid "Button color"
1008
  msgstr "Χρώμα κομβίου"
1009
 
1010
  # @ contact_form
1011
+ #: contact_form.php:2152
1012
  msgid "Button text color"
1013
  msgstr "Χρώμα κειμένου κομβίου"
1014
 
1015
  # @ contact_form
1016
+ #: contact_form.php:2181
1017
  #, fuzzy
1018
  msgid "Contact Form | Preview"
1019
  msgstr "Contact Form Pro | Προεπισκόπηση"
1020
 
1021
+ #: contact_form.php:2182
1022
  msgid "Drag the necessary field to sort fields."
1023
  msgstr ""
1024
 
1025
  # @ contact_form
1026
+ #: contact_form.php:2408
1027
  #, fuzzy
1028
  msgid ""
1029
  "If you would like to add the Contact Form to your website, just copy and "
1034
  "στο widget σας:"
1035
 
1036
  # @ contact_form
1037
+ #: contact_form.php:2536
1038
  msgid "Sorry, email message could not be delivered."
1039
  msgstr ""
1040
  "Λυπούμαστε, το μήνυμα ηλεκτρονικού ταχυδρομείου δεν μπόρεσε να παραδοθεί."
1041
 
1042
  # @ contact_form
1043
+ #: contact_form.php:3137 contact_form.php:3139
1044
  msgid "Sent from (ip address)"
1045
  msgstr "Εστάλη από (διεύθυνση IP)"
1046
 
1047
  # @ contact_form
1048
+ #: contact_form.php:3167
1049
  msgid "Contact from"
1050
  msgstr "Φόρμμα επικοινωνίας"
1051
 
1052
  # @ contact_form
1053
+ #: contact_form.php:3172 contact_form.php:3221
1054
  msgid "Site"
1055
  msgstr "Ιστοσελίδα"
1056
 
1057
  # @ contact_form
1058
+ #: contact_form.php:3351
1059
  msgid ""
1060
  "If you can see this MIME, it means that the MIME type is not supported by "
1061
  "your email client!"
1064
  "υποστηρίζεται από τον email client σας!"
1065
 
1066
  # @ contact_form
1067
+ #: contact_form.php:3434
1068
  msgid "FAQ"
1069
  msgstr "Συχνές Ερωτήσεις"
1070
 
1071
  # @ contact_form
1072
+ #: contact_form.php:3435
1073
  msgid "Support"
1074
  msgstr "Υποστήριξη"
1075
 
1076
  # @ contact_form
1077
+ #: contact_form.php:3484
1078
  msgid "Are you sure that you want to delete this language data?"
1079
  msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τα δεδομένα αυτής της γλώσσας;"
1080
 
1081
  # @ contact_form
1082
+ #: contact_form.php:3505
1083
  #, fuzzy
1084
  msgid "Add multiple forms"
1085
  msgstr "Προσθήκη στη φόρμα"
1086
 
1087
+ #: contact_form.php:3505
1088
  msgid ""
1089
  "Install Contact Form Multi plugin to create unlimited number of contact "
1090
  "forms."
1091
  msgstr ""
1092
 
1093
  # @ contact_form
1094
+ #: contact_form.php:3510
1095
  #, fuzzy
1096
  msgid "Learn more"
1097
  msgstr "Μάθετε περισσότερα"
1098
 
1099
+ #: contact_form.php:3751
1100
  msgid "Close notice"
1101
  msgstr ""
1102
 
1103
  # @ contact_form
1104
+ #: contact_form.php:3756
1105
  #, fuzzy
1106
  msgid "allows to store your messages to the database."
1107
  msgstr ""
1109
  "στη βάση δεδομένων."
1110
 
1111
  # @ contact_form
1112
+ #: contact_form.php:3757
1113
  msgid "Manage messages that have been sent from your website."
1114
  msgstr "Διαχειριστείτε τα μηνύματα που έχουν σταλεί από την ιστοσελίδα σας."
1115
 
1116
  # @ contact_form
1117
+ #: contact_form.php:3760
1118
  msgid "Learn More"
1119
  msgstr "Μάθετε περισσότερα"
1120
 
1121
  # @ contact_form
1122
+ #: contact_form.php:3820
1123
  #, fuzzy
1124
  msgid "Contact form"
1125
  msgstr "Φόρμμα επικοινωνίας"
1126
 
1127
  # @ contact_form
1128
+ #: contact_form.php:3833 contact_form.php:3843
1129
  #, fuzzy
1130
  msgid "Language"
1131
  msgstr "Προσθήκη γλώσσας"
1132
 
 
 
 
 
 
 
 
 
1133
  # @ contact_form
1134
  #, fuzzy
1135
  #~ msgid "Unlock premium options by upgrading to Pro version"
languages/contact-form-plugin-es_ES.mo CHANGED
Binary file
languages/contact-form-plugin-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: 2017-02-27 16:23+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Javitopo <jaawme@hotmail.com>\n"
9
  "Language: es_ES\n"
@@ -17,54 +17,54 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:42 contact_form.php:1066
21
  msgid "Contact Form Settings"
22
  msgstr "Opciones de formulario de contacto"
23
 
24
- #: contact_form.php:42
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
29
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
30
- #: contact_form.php:3138 contact_form.php:3184
31
  msgid "Name"
32
  msgstr "Nombre"
33
 
34
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
35
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
36
- #: contact_form.php:3190
37
  msgid "Address"
38
  msgstr "Dirección"
39
 
40
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
41
- #: contact_form.php:1767
42
  msgid "Email Address"
43
  msgstr "Dirección de correo electrónico"
44
 
45
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
46
- #: contact_form.php:1768
47
  msgid "Phone number"
48
  msgstr "Número de teléfono"
49
 
50
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
51
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
52
- #: contact_form.php:3199
53
  msgid "Subject"
54
  msgstr "Asunto"
55
 
56
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
57
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
58
- #: contact_form.php:3203
59
  msgid "Message"
60
  msgstr "Mensaje"
61
 
62
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
63
- #: contact_form.php:2040
64
  msgid "Attachment"
65
  msgstr "Adjuntos"
66
 
67
- #: contact_form.php:302
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -72,71 +72,71 @@ msgstr ""
72
  "Tipos de archivo admitidos: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
76
  msgid "Send me a copy"
77
  msgstr "Deseo recibir una copia"
78
 
79
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
80
  msgid "Submit"
81
  msgstr "Enviar"
82
 
83
- #: contact_form.php:305
84
  msgid "Your name is required."
85
  msgstr "Es necesario un nombre."
86
 
87
- #: contact_form.php:306
88
  msgid "Address is required."
89
  msgstr "Se requiere dirección."
90
 
91
- #: contact_form.php:307
92
  msgid "A valid email address is required."
93
  msgstr "Se requiere una dirección de email válida."
94
 
95
- #: contact_form.php:308
96
  msgid "Phone number is required."
97
  msgstr "Es necesario un número de teléfono."
98
 
99
- #: contact_form.php:309
100
  msgid "Subject is required."
101
  msgstr "Es necesario un asunto."
102
 
103
- #: contact_form.php:310
104
  msgid "Message text is required."
105
  msgstr "Es necesario el texto del mensaje."
106
 
107
- #: contact_form.php:311
108
  msgid "File format is not valid."
109
  msgstr "Formato de archivo no válido."
110
 
111
- #: contact_form.php:312
112
  msgid "File upload error."
113
  msgstr "Error de carga de archivos."
114
 
115
- #: contact_form.php:313
116
  msgid "The file could not be uploaded."
117
  msgstr "El archivo no se pudo cargar."
118
 
119
- #: contact_form.php:314
120
  msgid "This file is too large."
121
  msgstr "Este archivo es demasiado grande."
122
 
123
- #: contact_form.php:315
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Por favor complete el CAPTCHA."
126
 
127
- #: contact_form.php:316
128
  msgid "Please make corrections below and try again."
129
  msgstr "Por favor, haga las correcciones y a continuación vuelva a intentarlo."
130
 
131
- #: contact_form.php:318
132
  msgid "Thank you for contacting us."
133
  msgstr "Gracias por contactar con nosotros."
134
 
135
- #: contact_form.php:761 contact_form.php:1023
136
  msgid "Settings saved."
137
  msgstr "Configuración guardada."
138
 
139
- #: contact_form.php:968
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
@@ -145,7 +145,7 @@ msgstr ""
145
  "mensajes de correo electrónico pueden haber sido enviados a la carpeta de "
146
  "correo no deseado o provocar errores en la entrega del correo electrónico."
147
 
148
- #: contact_form.php:978
149
  msgid ""
150
  "If the 'Redirect to page' option is selected then the URL field should be in "
151
  "the following format"
@@ -153,65 +153,65 @@ msgstr ""
153
  "Si se selecciona la opción 'Redirigir a la página', entonces el campo URL "
154
  "debe estar en el siguiente formato"
155
 
156
- #: contact_form.php:985
157
  msgid "Such user does not exist."
158
  msgstr "Dicho usuario no existe."
159
 
160
- #: contact_form.php:995
161
  msgid ""
162
  "Please enter a valid email address in the 'Use this email address' field."
163
  msgstr ""
164
  "Por favor, introduce una dirección de correo electrónico válida en el campo "
165
  "\"Correo electrónico\"."
166
 
167
- #: contact_form.php:1003
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Por favor, introduce una dirección de correo electrónico válida en el campo "
171
  "\"Desde\"."
172
 
173
- #: contact_form.php:1025
174
  msgid "Settings are not saved."
175
  msgstr "Configuración no guardada."
176
 
177
- #: contact_form.php:1063
178
  msgid "All plugin settings were restored."
179
  msgstr "Todos los parámetros del plugin serán restaurados."
180
 
181
- #: contact_form.php:1069
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr "Instrucciones paso a paso"
184
 
185
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
186
  msgid "Settings"
187
  msgstr "Configuración"
188
 
189
- #: contact_form.php:1073
190
  msgid "Additional settings"
191
  msgstr "Opciones adicionales"
192
 
193
- #: contact_form.php:1074
194
  msgid "Appearance"
195
  msgstr "Apariencia"
196
 
197
- #: contact_form.php:1075
198
  msgid "Custom code"
199
  msgstr ""
200
 
201
- #: contact_form.php:1076
202
  msgid "Go PRO"
203
  msgstr "Ir al PRO"
204
 
205
- #: contact_form.php:1087
206
  #, fuzzy
207
  msgid "Notice"
208
  msgstr "Aviso:"
209
 
210
- #: contact_form.php:1091
211
  msgid "NEW_FORM"
212
  msgstr "NUEVO FORMULARIO"
213
 
214
- #: contact_form.php:1092
215
  msgid ""
216
  "If you want to create multiple contact forms, please install the Contact "
217
  "Form Multi plugin."
@@ -219,7 +219,7 @@ msgstr ""
219
  "Si desea crear varios formularios de contacto, por favor, instale el plugin "
220
  "Formulario de contacto múltiple."
221
 
222
- #: contact_form.php:1101
223
  #, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -228,7 +228,7 @@ msgstr ""
228
  "Si usted desea agregar el formulario de contacto a su sitio web o entrada , "
229
  "por favor use el botón %s"
230
 
231
- #: contact_form.php:1107
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -241,7 +241,7 @@ msgstr ""
241
  "no aparece, por favor usa el shortcode %s o %s donde * representa el idioma "
242
  "del Formulario de Contacto."
243
 
244
- #: contact_form.php:1116
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
@@ -249,16 +249,16 @@ msgstr ""
249
  "Si deja los campos vacíos, se enviarán los mensajes a la dirección de correo "
250
  "electrónico especificada durante el registro."
251
 
252
- #: contact_form.php:1119
253
  #, fuzzy
254
  msgid "The user's email address"
255
  msgstr "Dirección de correo electrónico del usuario:"
256
 
257
- #: contact_form.php:1123
258
  msgid "Select a username"
259
  msgstr "Seleccione un nombre de usuario"
260
 
261
- #: contact_form.php:1136
262
  #, fuzzy
263
  msgid ""
264
  "Select a username of the person who should get the messages from the contact "
@@ -267,111 +267,111 @@ msgstr ""
267
  "Introduzca un nombre de usuario de la persona que debe recibir los mensajes "
268
  "desde el formulario de contacto."
269
 
270
- #: contact_form.php:1140
271
  #, fuzzy
272
  msgid "Use this email address"
273
  msgstr "Utilice esta dirección de correo electrónico:"
274
 
275
- #: contact_form.php:1144
276
  #, fuzzy
277
  msgid "Enter the email address for receiving messages"
278
  msgstr ""
279
  "Introduzca la dirección de correo electrónico que desea que reciba los "
280
  "mensajes."
281
 
282
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
283
- #: contact_form.php:1939 contact_form.php:3471
284
  msgid "Close"
285
  msgstr "Cerrar"
286
 
287
- #: contact_form.php:1155
288
  #, fuzzy
289
  msgid "Add department selectbox to the contact form"
290
  msgstr "Añadir casilla seleccionable al formulario de contacto:"
291
 
292
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
293
- #: contact_form.php:2145
294
  msgid "If you upgrade to Pro version all your settings will be saved."
295
  msgstr "Si actualiza a la versión Pro se guardarán todos los ajustes."
296
 
297
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
298
- #: contact_form.php:1880 contact_form.php:2152
299
  msgid "Upgrade to Pro"
300
  msgstr ""
301
 
302
- #: contact_form.php:1178
303
  msgid "Save emails to the database"
304
  msgstr "Guardar mensajes de correo electrónico a la base de datos"
305
 
306
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
307
  msgid "Using"
308
  msgstr "Uso"
309
 
310
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
311
- #: contact_form.php:1625
312
  msgid "Please activate the appropriate option on"
313
  msgstr ""
314
 
315
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
316
- #: contact_form.php:1628
317
  #, fuzzy
318
  msgid "settings page"
319
  msgstr "la página de configuración"
320
 
321
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
322
- #: contact_form.php:1635
323
  msgid "Activate"
324
  msgstr "Activar"
325
 
326
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
327
- #: contact_form.php:1640
328
  msgid "Download"
329
  msgstr "Download"
330
 
331
- #: contact_form.php:1224
332
  msgid "Sending method"
333
  msgstr ""
334
 
335
- #: contact_form.php:1229
336
  msgid "Wp-mail"
337
  msgstr "Wp-mail"
338
 
339
- #: contact_form.php:1231
340
  msgid "You can use the Wordpress wp_mail function for mailing"
341
  msgstr "Tú puedes utilizar la función wp_mail para enviar por correo"
342
 
343
- #: contact_form.php:1234
344
  msgid "Mail"
345
  msgstr "Correo"
346
 
347
- #: contact_form.php:1236
348
  msgid "You can use the PHP mail function for mailing"
349
  msgstr "Tú puedes utilizar la función de correo PHP para enviar por correo"
350
 
351
- #: contact_form.php:1241
352
  msgid "'FROM' field"
353
  msgstr "Campo 'DESDE'"
354
 
355
- #: contact_form.php:1257
356
  msgid "User name"
357
  msgstr "Nombre de usuario"
358
 
359
- #: contact_form.php:1259
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
362
  msgstr ""
363
  "El nombre del usuario que rellena en el formulario se utiliza en el campo "
364
  "\"De:\"."
365
 
366
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
367
  msgid "Email"
368
  msgstr "Correo electrónico"
369
 
370
- #: contact_form.php:1281
371
  msgid "User email"
372
  msgstr "Correo electrónico del usuario"
373
 
374
- #: contact_form.php:1283
375
  msgid ""
376
  "The email address of the user who fills the form will be used in the field "
377
  "'From'."
@@ -379,7 +379,7 @@ msgstr ""
379
  "La dirección de correo electrónico del usuario que rellena el formulario se "
380
  "utiliza en el campo \"De\"."
381
 
382
- #: contact_form.php:1292
383
  msgid ""
384
  "If this option is changed, email messages may be moved to the spam folder or "
385
  "email delivery failures may occur."
@@ -388,51 +388,51 @@ msgstr ""
388
  "a la carpeta de correo no deseado o ocurrir otros errores en la entrega del "
389
  "correo."
390
 
391
- #: contact_form.php:1301
392
  msgid "Required symbol"
393
  msgstr "Símbolo de Obligatorio"
394
 
395
- #: contact_form.php:1311
396
  msgid "Fields"
397
  msgstr "Campos"
398
 
399
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
400
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
401
  msgid "Used"
402
  msgstr "Usado"
403
 
404
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
405
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
406
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
407
  msgid "Required"
408
  msgstr "Obligatorio"
409
 
410
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
411
- #: contact_form.php:1447 contact_form.php:1471
412
  msgid "Visible"
413
  msgstr "Visible"
414
 
415
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
416
- #: contact_form.php:1451 contact_form.php:1475
417
  msgid "Disabled for editing"
418
  msgstr "Inhabilitado para la edición"
419
 
420
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
421
- #: contact_form.php:1479
422
  msgid "Field's default value"
423
  msgstr "Valor predeterminado del campo"
424
 
425
- #: contact_form.php:1324
426
  msgid "Department selectbox"
427
  msgstr "Apartado de casilla seleccionable"
428
 
429
- #: contact_form.php:1356
430
  msgid "Use User's name as a default value if the user is logged in."
431
  msgstr ""
432
  "Usar el nombre de usuario como valor por defecto si el usuario está "
433
  "conectado."
434
 
435
- #: contact_form.php:1357 contact_form.php:1417
436
  msgid ""
437
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
438
  "in users."
@@ -440,104 +440,104 @@ msgstr ""
440
  "Las opciones 'Visible' y 'Desactivado para la edición' solo serán aplicadas "
441
  "a los usuarios con sesión iniciada."
442
 
443
- #: contact_form.php:1363
444
  msgid "Location selectbox"
445
  msgstr "Localización de la casilla seleccionable"
446
 
447
- #: contact_form.php:1416
448
  msgid "Use User's email as a default value if the user is logged in."
449
  msgstr ""
450
  "Utiliza por defecto el correo electrónico del usuario si el usuario está "
451
  "conectado."
452
 
453
- #: contact_form.php:1500
454
  msgid "Attachment block"
455
  msgstr "bloque de adjuntos"
456
 
457
- #: contact_form.php:1502
458
  msgid "Users can attach the following file formats"
459
  msgstr "Los usuarios pueden adjuntar los siguientes formatos de archivo"
460
 
461
- #: contact_form.php:1520
462
  msgid "Add to the form"
463
  msgstr "Añadir a la forma"
464
 
465
- #: contact_form.php:1525
466
  msgid "Tips below the Attachment"
467
  msgstr "Consejos debajo del archivo adjunto"
468
 
469
- #: contact_form.php:1532
470
  msgid "'Send me a copy' block"
471
  msgstr "'Deseo recibir una copia' bloque"
472
 
473
- #: contact_form.php:1560
474
  #, fuzzy
475
  msgid "Activate for network"
476
  msgstr "Activar suscripción"
477
 
478
- #: contact_form.php:1651
479
  msgid "Agreement checkbox"
480
  msgstr "casilla de verificación de acuerdo"
481
 
482
- #: contact_form.php:1651
483
  msgid "Required checkbox for submitting the form"
484
  msgstr "Casilla de verificación obligatoria para enviar el formulario"
485
 
486
- #: contact_form.php:1652
487
  msgid "Optional checkbox"
488
  msgstr "Casilla opcional"
489
 
490
- #: contact_form.php:1652
491
  msgid "Optional checkbox, the results of which will be displayed in email"
492
  msgstr ""
493
  "Casilla opcional, cuyos resultados se mostrarán en el correo electrónico"
494
 
495
- #: contact_form.php:1670
496
  msgid "Delete an attachment file from the server after the email is sent"
497
  msgstr ""
498
  "Eliminar un archivo adjunto del servidor después de que se envíe el correo "
499
  "electrónico"
500
 
501
- #: contact_form.php:1676
502
  msgid "Email in HTML format sending"
503
  msgstr "Enviar correo electrónico en formato HTML"
504
 
505
- #: contact_form.php:1680
506
  msgid "Display additional info in the email"
507
  msgstr "Mostrar información adicional en el correo electrónico"
508
 
509
- #: contact_form.php:1686
510
  msgid "Sent from (IP address)"
511
  msgstr "Enviado desde (dirección IP)"
512
 
513
- #: contact_form.php:1686
514
  msgid "Example: Sent from (IP address):\t127.0.0.1"
515
  msgstr "Ejemplo: Enviado desde (dirección IP:\t127.0.0.1"
516
 
517
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
518
  msgid "Date/Time"
519
  msgstr "Fecha/Hora"
520
 
521
- #: contact_form.php:1687
522
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
523
  msgstr "Ejemplo: Fecha/hora:\tAugust 19, 2013 8:50 pm"
524
 
525
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
526
  msgid "Sent from (referer)"
527
  msgstr "Enviado desde (referencia)"
528
 
529
- #: contact_form.php:1688
530
  #, fuzzy
531
  msgid ""
532
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
533
  msgstr ""
534
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
535
 
536
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
537
  msgid "Using (user agent)"
538
  msgstr "Usando (agente de usuario)"
539
 
540
- #: contact_form.php:1689
541
  msgid ""
542
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
543
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -545,147 +545,147 @@ msgstr ""
545
  "Ejemplo: Usando (agente de usuario):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
546
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
547
 
548
- #: contact_form.php:1694
549
  msgid "Language settings for the field names in the form"
550
  msgstr ""
551
  "Configuración de idioma para los nombres de los campos en el formulario"
552
 
553
- #: contact_form.php:1703
554
  msgid "Add a language"
555
  msgstr "Añadir un idioma"
556
 
557
- #: contact_form.php:1707
558
  msgid "Change the names of the contact form fields and error messages"
559
  msgstr ""
560
  "Cambie los nombres de los campos del formulario de contacto y mensajes de "
561
  "error"
562
 
563
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
564
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
565
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
566
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
567
- #: contact_form.php:2132 contact_form.php:2137
568
  msgid "Default"
569
  msgstr "Defecto"
570
 
571
- #: contact_form.php:1725 contact_form.php:1763
572
  msgid "click to expand/hide the list"
573
  msgstr "haga clic para expandir / ocultar la lista"
574
 
575
- #: contact_form.php:1734 contact_form.php:1772
576
  msgid "Tips below the Attachment block"
577
  msgstr "Consejos debajo del bloque del archivo adjunto"
578
 
579
- #: contact_form.php:1737 contact_form.php:1775
580
  msgid "Error message for the Name field"
581
  msgstr "Mensaje de error para el campo Nombre"
582
 
583
- #: contact_form.php:1738 contact_form.php:1776
584
  msgid "Error message for the Address field"
585
  msgstr "Mensaje de error para el campo dirección"
586
 
587
- #: contact_form.php:1739 contact_form.php:1777
588
  msgid "Error message for the Email field"
589
  msgstr "Mensaje de error en el campo Correo electrónico"
590
 
591
- #: contact_form.php:1740 contact_form.php:1778
592
  msgid "Error message for the Phone field"
593
  msgstr "Mensaje de error para el campo Teléfono"
594
 
595
- #: contact_form.php:1741 contact_form.php:1779
596
  msgid "Error message for the Subject field"
597
  msgstr "Mensaje de error para el campo Asunto"
598
 
599
- #: contact_form.php:1742 contact_form.php:1780
600
  msgid "Error message for the Message field"
601
  msgstr "Mensaje de error en el campo Mensaje"
602
 
603
- #: contact_form.php:1743 contact_form.php:1781
604
  msgid "Error message about the file type for the Attachment field"
605
  msgstr ""
606
  "Mensaje de error sobre el tipo de archivo para el campo de archivos adjuntos"
607
 
608
- #: contact_form.php:1744 contact_form.php:1782
609
  msgid ""
610
  "Error message while uploading a file for the Attachment field to the server"
611
  msgstr ""
612
  "Mensaje de error al cargar un archivo en el campo de archivos adjuntos al "
613
  "servidor"
614
 
615
- #: contact_form.php:1745 contact_form.php:1783
616
  msgid "Error message while moving the file for the Attachment field"
617
  msgstr ""
618
  "Mensaje de error mientras se mueve el archivo en el campo de archivos "
619
  "adjuntos"
620
 
621
- #: contact_form.php:1746 contact_form.php:1784
622
  msgid "Error message when file size limit for the Attachment field is exceeded"
623
  msgstr ""
624
  "Mensaje de error cuando se supera el límite de tamaño de archivo para el "
625
  "campo de archivos adjuntos"
626
 
627
- #: contact_form.php:1747 contact_form.php:1785
628
  msgid "Error message for the Captcha field"
629
  msgstr "Mensaje de error para el campo Captcha"
630
 
631
- #: contact_form.php:1748 contact_form.php:1786
632
  msgid "Error message for the whole form"
633
  msgstr "Mensaje de error para todo el formulario"
634
 
635
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
636
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
637
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
638
- #: contact_form.php:3540
639
  msgid "Use shortcode"
640
  msgstr "Utilice shortcode"
641
 
642
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
643
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
644
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
645
- #: contact_form.php:3540
646
  msgid "for this language"
647
  msgstr "para este idioma"
648
 
649
- #: contact_form.php:1799
650
  msgid "Use the changed names of the contact form fields in the email"
651
  msgstr ""
652
  "Utilice los nombres cambiados de los campos del formulario de contacto en el "
653
  "correo electrónico"
654
 
655
- #: contact_form.php:1805
656
  msgid "Action after email is sent"
657
  msgstr "Acción después de que se envíe el correo electrónico"
658
 
659
- #: contact_form.php:1807
660
  msgid "Display text"
661
  msgstr "Mostrar texto"
662
 
663
- #: contact_form.php:1821 contact_form.php:1835
664
  msgid "Text"
665
  msgstr "Texto"
666
 
667
- #: contact_form.php:1846
668
  msgid "Redirect to the page"
669
  msgstr "Redirigir a la página"
670
 
671
- #: contact_form.php:1847
672
  msgid "Url"
673
  msgstr "Url"
674
 
675
- #: contact_form.php:1858
676
  msgid "Add field 'Reply-To' to the email header"
677
  msgstr "Añadir campo 'Responder a' en la cabecera del correo electrónico"
678
 
679
- #: contact_form.php:1860
680
  msgid "Field 'Reply-To' will be initialized by user email"
681
  msgstr ""
682
  "El campo 'Responder a' se iniciará por el correo electrónico del usuario"
683
 
684
- #: contact_form.php:1864
685
  msgid "Auto Response"
686
  msgstr "Respuesta automática"
687
 
688
- #: contact_form.php:1868
689
  #, php-format
690
  msgid ""
691
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -696,11 +696,11 @@ msgstr ""
696
  "%%MESSAGE%% para mostrar los datos del campo Mensaje, así como %%SITENAME%% "
697
  "para mostrar el nombre del blog."
698
 
699
- #: contact_form.php:1890 contact_form.php:2389
700
  msgid "Save Changes"
701
  msgstr "Guardar cambios"
702
 
703
- #: contact_form.php:1903
704
  #, php-format
705
  msgid ""
706
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
@@ -708,170 +708,182 @@ msgstr ""
708
  "Por favor, utilice JavaScript para cambiar las opciones '%s', '%s' y para "
709
  "los campos de clasificación."
710
 
711
- #: contact_form.php:1903 contact_form.php:1912
712
  msgid "Form layout"
713
  msgstr "Diseño del formulario"
714
 
715
- #: contact_form.php:1903 contact_form.php:1924
716
  msgid "Submit position"
717
  msgstr "Enviar posición"
718
 
719
- #: contact_form.php:1916
720
  msgid "One column"
721
  msgstr "Una columna"
722
 
723
- #: contact_form.php:1919
724
  msgid "Two columns"
725
  msgstr "Dos columnas"
726
 
727
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
728
- #: contact_form.php:1980
729
  msgid "Left"
730
  msgstr "Izquierda"
731
 
732
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
733
- #: contact_form.php:1986
734
  msgid "Right"
735
  msgstr "Derecha"
736
 
737
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
738
  msgid "Form align"
739
  msgstr "Alinear formulario"
740
 
741
- #: contact_form.php:1950 contact_form.php:1983
742
  msgid "Center"
743
  msgstr "Centro"
744
 
745
- #: contact_form.php:1958
746
  msgid "Labels position"
747
  msgstr "Posición de las etiquetas"
748
 
749
- #: contact_form.php:1962
750
  msgid "Top"
751
  msgstr "Arriba"
752
 
753
- #: contact_form.php:1971
754
  msgid "Bottom"
755
  msgstr "Abajo"
756
 
757
- #: contact_form.php:1976
758
  msgid "Labels align"
759
  msgstr "Alinear etiquetas"
760
 
761
- #: contact_form.php:1991
762
  msgid "Errors output"
763
  msgstr "Salida de errores"
764
 
765
- #: contact_form.php:1994
766
  msgid "Display error messages"
767
  msgstr "Mostrar mensajes de error"
768
 
769
- #: contact_form.php:1995
770
  msgid "Color of the input field errors."
771
  msgstr "El color de los errores del campo de entrada."
772
 
773
- #: contact_form.php:1996
774
  msgid "Display error messages & color of the input field errors"
775
  msgstr ""
776
  "Mostrar mensajes de error y el color de los errores de campo de entrada"
777
 
778
- #: contact_form.php:2001
779
  msgid "Add placeholder to the input blocks"
780
  msgstr "Añadir marcador de posición de los bloques de entrada"
781
 
782
- #: contact_form.php:2007
783
  msgid "Add tooltips"
784
  msgstr "Añadir información sobre herramientas"
785
 
786
- #: contact_form.php:2021
787
  msgid "Email address"
788
  msgstr "Correo electrónico"
789
 
790
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
791
  msgid "Phone Number"
792
  msgstr "Número de teléfono"
793
 
794
- #: contact_form.php:2052
795
  msgid "Style options"
796
  msgstr "Opciones de estilo"
797
 
798
- #: contact_form.php:2056
799
  msgid "Text color"
800
  msgstr "Color del texto"
801
 
802
- #: contact_form.php:2061
803
  msgid "Label text color"
804
  msgstr "Color del texto de la Etiqueta"
805
 
806
- #: contact_form.php:2066
807
  msgid "Placeholder color"
808
  msgstr "El color de marcador de posición"
809
 
810
- #: contact_form.php:2071
811
  msgid "Errors color"
812
  msgstr "Color del error"
813
 
814
- #: contact_form.php:2076
815
  msgid "Error text color"
816
  msgstr "Color del texto de error"
817
 
818
- #: contact_form.php:2081
819
  msgid "Background color of the input field errors"
820
  msgstr "Color de fondo de los errores de campo de entrada"
821
 
822
- #: contact_form.php:2086
823
  msgid "Border color of the input field errors"
824
  msgstr "Color del borde de los errores de campo de entrada"
825
 
826
- #: contact_form.php:2091
827
  msgid "Placeholder color of the input field errors"
828
  msgstr "El color de marcador de posición de los errores de campo de entrada"
829
 
830
- #: contact_form.php:2096
831
  msgid "Input fields"
832
  msgstr "Campos de entrada"
833
 
834
- #: contact_form.php:2101
835
  msgid "Input fields background color"
836
  msgstr "Color de fondo de los campos de entrada"
837
 
838
- #: contact_form.php:2106
839
  msgid "Text fields color"
840
  msgstr "Color de los campos de texto"
841
 
842
- #: contact_form.php:2110
843
  msgid "Border width in px, numbers only"
844
  msgstr "Ancho del borde en píxeles, sólo números"
845
 
846
- #: contact_form.php:2115 contact_form.php:2139
847
  msgid "Border color"
848
  msgstr "Color del borde"
849
 
850
- #: contact_form.php:2120
851
  msgid "Submit button"
852
  msgstr "Botón enviar"
853
 
854
- #: contact_form.php:2124
855
  msgid "Width in px, numbers only"
856
  msgstr "Ancho en píxeles, sólo números"
857
 
858
- #: contact_form.php:2129
859
  msgid "Button color"
860
  msgstr "Color del botón"
861
 
862
- #: contact_form.php:2134
863
  msgid "Button text color"
864
  msgstr "Color del texto del botón"
865
 
866
- #: contact_form.php:2163
867
  msgid "Contact Form | Preview"
868
  msgstr "Formulario de Contacto | Vista previa"
869
 
870
- #: contact_form.php:2164
871
  msgid "Drag the necessary field to sort fields."
872
  msgstr "Arrastre el campo necesario para ordenar los campos."
873
 
874
- #: contact_form.php:2376
875
  #, fuzzy
876
  msgid ""
877
  "If you would like to add the Contact Form to your website, just copy and "
@@ -880,23 +892,23 @@ msgstr ""
880
  "Si quieres agregar el formulario de contacto en tu sitio web, sólo tienes "
881
  "que copiar y pegar este código corto a tu post, una página o un widget:"
882
 
883
- #: contact_form.php:2504
884
  msgid "Sorry, email message could not be delivered."
885
  msgstr "Lo sentimos, el mensaje de correo electrónico no se pudo entregar."
886
 
887
- #: contact_form.php:3094 contact_form.php:3096
888
  msgid "Sent from (ip address)"
889
  msgstr "Enviado desde (dirección IP)"
890
 
891
- #: contact_form.php:3124
892
  msgid "Contact from"
893
  msgstr "Contact from"
894
 
895
- #: contact_form.php:3129 contact_form.php:3178
896
  msgid "Site"
897
  msgstr "Sitio"
898
 
899
- #: contact_form.php:3308
900
  msgid ""
901
  "If you can see this MIME, it means that the MIME type is not supported by "
902
  "your email client!"
@@ -904,23 +916,23 @@ msgstr ""
904
  "Si puede ver esta MIME, significa que el tipo MIME no es compatible con su "
905
  "cliente de correo electrónico!"
906
 
907
- #: contact_form.php:3391
908
  msgid "FAQ"
909
  msgstr "Preguntas más frecuentes"
910
 
911
- #: contact_form.php:3392
912
  msgid "Support"
913
  msgstr "Soporte técnico"
914
 
915
- #: contact_form.php:3441
916
  msgid "Are you sure that you want to delete this language data?"
917
  msgstr "¿Estás seguro de que quieres eliminar este idioma?"
918
 
919
- #: contact_form.php:3462
920
  msgid "Add multiple forms"
921
  msgstr "Añadir múltiples forularios"
922
 
923
- #: contact_form.php:3462
924
  msgid ""
925
  "Install Contact Form Multi plugin to create unlimited number of contact "
926
  "forms."
@@ -928,42 +940,34 @@ msgstr ""
928
  "Instalar el plugin Contact Form Multi para crear un número ilimitado de "
929
  "formas de contacto."
930
 
931
- #: contact_form.php:3467
932
  msgid "Learn more"
933
  msgstr "Más información"
934
 
935
- #: contact_form.php:3693
936
  msgid "Close notice"
937
  msgstr "Cerrar aviso"
938
 
939
- #: contact_form.php:3698
940
  msgid "allows to store your messages to the database."
941
  msgstr "Permite almacenar sus mensajes en la base de datos."
942
 
943
- #: contact_form.php:3699
944
  msgid "Manage messages that have been sent from your website."
945
  msgstr "Administración de mensajes que han sido enviados desde su sitio web."
946
 
947
- #: contact_form.php:3702
948
  msgid "Learn More"
949
  msgstr "Más información"
950
 
951
- #: contact_form.php:3762
952
  msgid "Contact form"
953
  msgstr "Formulario de contacto"
954
 
955
- #: contact_form.php:3775 contact_form.php:3785
956
  msgid "Language"
957
  msgstr "Idioma"
958
 
959
- #: includes/deprecated.php:168
960
- #, php-format
961
- msgid ""
962
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
963
- "replace it with %3s. If you close this message it'll appear again after "
964
- "deprecated shortcode reuse."
965
- msgstr ""
966
-
967
  #~ msgid "Unlock premium options by upgrading to Pro version"
968
  #~ msgstr ""
969
  #~ "Desbloquear opciones premium mediante la actualización a una versión PRO"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:15+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Javitopo <jaawme@hotmail.com>\n"
9
  "Language: es_ES\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:37 contact_form.php:1064
21
  msgid "Contact Form Settings"
22
  msgstr "Opciones de formulario de contacto"
23
 
24
+ #: contact_form.php:37
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
29
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
30
+ #: contact_form.php:3181 contact_form.php:3227
31
  msgid "Name"
32
  msgstr "Nombre"
33
 
34
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
35
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
36
+ #: contact_form.php:3233
37
  msgid "Address"
38
  msgstr "Dirección"
39
 
40
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
41
+ #: contact_form.php:1765
42
  msgid "Email Address"
43
  msgstr "Dirección de correo electrónico"
44
 
45
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
46
+ #: contact_form.php:1766
47
  msgid "Phone number"
48
  msgstr "Número de teléfono"
49
 
50
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
51
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
52
+ #: contact_form.php:3242
53
  msgid "Subject"
54
  msgstr "Asunto"
55
 
56
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
57
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
58
+ #: contact_form.php:3246
59
  msgid "Message"
60
  msgstr "Mensaje"
61
 
62
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
63
+ #: contact_form.php:2058
64
  msgid "Attachment"
65
  msgstr "Adjuntos"
66
 
67
+ #: contact_form.php:287
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
72
  "Tipos de archivo admitidos: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
76
  msgid "Send me a copy"
77
  msgstr "Deseo recibir una copia"
78
 
79
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
80
  msgid "Submit"
81
  msgstr "Enviar"
82
 
83
+ #: contact_form.php:290
84
  msgid "Your name is required."
85
  msgstr "Es necesario un nombre."
86
 
87
+ #: contact_form.php:291
88
  msgid "Address is required."
89
  msgstr "Se requiere dirección."
90
 
91
+ #: contact_form.php:292
92
  msgid "A valid email address is required."
93
  msgstr "Se requiere una dirección de email válida."
94
 
95
+ #: contact_form.php:293
96
  msgid "Phone number is required."
97
  msgstr "Es necesario un número de teléfono."
98
 
99
+ #: contact_form.php:294
100
  msgid "Subject is required."
101
  msgstr "Es necesario un asunto."
102
 
103
+ #: contact_form.php:295
104
  msgid "Message text is required."
105
  msgstr "Es necesario el texto del mensaje."
106
 
107
+ #: contact_form.php:296
108
  msgid "File format is not valid."
109
  msgstr "Formato de archivo no válido."
110
 
111
+ #: contact_form.php:297
112
  msgid "File upload error."
113
  msgstr "Error de carga de archivos."
114
 
115
+ #: contact_form.php:298
116
  msgid "The file could not be uploaded."
117
  msgstr "El archivo no se pudo cargar."
118
 
119
+ #: contact_form.php:299
120
  msgid "This file is too large."
121
  msgstr "Este archivo es demasiado grande."
122
 
123
+ #: contact_form.php:300
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Por favor complete el CAPTCHA."
126
 
127
+ #: contact_form.php:301
128
  msgid "Please make corrections below and try again."
129
  msgstr "Por favor, haga las correcciones y a continuación vuelva a intentarlo."
130
 
131
+ #: contact_form.php:303
132
  msgid "Thank you for contacting us."
133
  msgstr "Gracias por contactar con nosotros."
134
 
135
+ #: contact_form.php:759 contact_form.php:1021
136
  msgid "Settings saved."
137
  msgstr "Configuración guardada."
138
 
139
+ #: contact_form.php:966
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
145
  "mensajes de correo electrónico pueden haber sido enviados a la carpeta de "
146
  "correo no deseado o provocar errores en la entrega del correo electrónico."
147
 
148
+ #: contact_form.php:976
149
  msgid ""
150
  "If the 'Redirect to page' option is selected then the URL field should be in "
151
  "the following format"
153
  "Si se selecciona la opción 'Redirigir a la página', entonces el campo URL "
154
  "debe estar en el siguiente formato"
155
 
156
+ #: contact_form.php:983
157
  msgid "Such user does not exist."
158
  msgstr "Dicho usuario no existe."
159
 
160
+ #: contact_form.php:993
161
  msgid ""
162
  "Please enter a valid email address in the 'Use this email address' field."
163
  msgstr ""
164
  "Por favor, introduce una dirección de correo electrónico válida en el campo "
165
  "\"Correo electrónico\"."
166
 
167
+ #: contact_form.php:1001
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Por favor, introduce una dirección de correo electrónico válida en el campo "
171
  "\"Desde\"."
172
 
173
+ #: contact_form.php:1023
174
  msgid "Settings are not saved."
175
  msgstr "Configuración no guardada."
176
 
177
+ #: contact_form.php:1061
178
  msgid "All plugin settings were restored."
179
  msgstr "Todos los parámetros del plugin serán restaurados."
180
 
181
+ #: contact_form.php:1067
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr "Instrucciones paso a paso"
184
 
185
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
186
  msgid "Settings"
187
  msgstr "Configuración"
188
 
189
+ #: contact_form.php:1071
190
  msgid "Additional settings"
191
  msgstr "Opciones adicionales"
192
 
193
+ #: contact_form.php:1072
194
  msgid "Appearance"
195
  msgstr "Apariencia"
196
 
197
+ #: contact_form.php:1073
198
  msgid "Custom code"
199
  msgstr ""
200
 
201
+ #: contact_form.php:1074
202
  msgid "Go PRO"
203
  msgstr "Ir al PRO"
204
 
205
+ #: contact_form.php:1085
206
  #, fuzzy
207
  msgid "Notice"
208
  msgstr "Aviso:"
209
 
210
+ #: contact_form.php:1089
211
  msgid "NEW_FORM"
212
  msgstr "NUEVO FORMULARIO"
213
 
214
+ #: contact_form.php:1090
215
  msgid ""
216
  "If you want to create multiple contact forms, please install the Contact "
217
  "Form Multi plugin."
219
  "Si desea crear varios formularios de contacto, por favor, instale el plugin "
220
  "Formulario de contacto múltiple."
221
 
222
+ #: contact_form.php:1099
223
  #, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
228
  "Si usted desea agregar el formulario de contacto a su sitio web o entrada , "
229
  "por favor use el botón %s"
230
 
231
+ #: contact_form.php:1105
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
241
  "no aparece, por favor usa el shortcode %s o %s donde * representa el idioma "
242
  "del Formulario de Contacto."
243
 
244
+ #: contact_form.php:1114
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
249
  "Si deja los campos vacíos, se enviarán los mensajes a la dirección de correo "
250
  "electrónico especificada durante el registro."
251
 
252
+ #: contact_form.php:1117
253
  #, fuzzy
254
  msgid "The user's email address"
255
  msgstr "Dirección de correo electrónico del usuario:"
256
 
257
+ #: contact_form.php:1121
258
  msgid "Select a username"
259
  msgstr "Seleccione un nombre de usuario"
260
 
261
+ #: contact_form.php:1134
262
  #, fuzzy
263
  msgid ""
264
  "Select a username of the person who should get the messages from the contact "
267
  "Introduzca un nombre de usuario de la persona que debe recibir los mensajes "
268
  "desde el formulario de contacto."
269
 
270
+ #: contact_form.php:1138
271
  #, fuzzy
272
  msgid "Use this email address"
273
  msgstr "Utilice esta dirección de correo electrónico:"
274
 
275
+ #: contact_form.php:1142
276
  #, fuzzy
277
  msgid "Enter the email address for receiving messages"
278
  msgstr ""
279
  "Introduzca la dirección de correo electrónico que desea que reciba los "
280
  "mensajes."
281
 
282
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
283
+ #: contact_form.php:1957 contact_form.php:3514
284
  msgid "Close"
285
  msgstr "Cerrar"
286
 
287
+ #: contact_form.php:1153
288
  #, fuzzy
289
  msgid "Add department selectbox to the contact form"
290
  msgstr "Añadir casilla seleccionable al formulario de contacto:"
291
 
292
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
293
+ #: contact_form.php:2163
294
  msgid "If you upgrade to Pro version all your settings will be saved."
295
  msgstr "Si actualiza a la versión Pro se guardarán todos los ajustes."
296
 
297
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
298
+ #: contact_form.php:1878 contact_form.php:2170
299
  msgid "Upgrade to Pro"
300
  msgstr ""
301
 
302
+ #: contact_form.php:1176
303
  msgid "Save emails to the database"
304
  msgstr "Guardar mensajes de correo electrónico a la base de datos"
305
 
306
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
307
  msgid "Using"
308
  msgstr "Uso"
309
 
310
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
311
+ #: contact_form.php:1623
312
  msgid "Please activate the appropriate option on"
313
  msgstr ""
314
 
315
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
316
+ #: contact_form.php:1626
317
  #, fuzzy
318
  msgid "settings page"
319
  msgstr "la página de configuración"
320
 
321
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
322
+ #: contact_form.php:1633
323
  msgid "Activate"
324
  msgstr "Activar"
325
 
326
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
327
+ #: contact_form.php:1638
328
  msgid "Download"
329
  msgstr "Download"
330
 
331
+ #: contact_form.php:1222
332
  msgid "Sending method"
333
  msgstr ""
334
 
335
+ #: contact_form.php:1227
336
  msgid "Wp-mail"
337
  msgstr "Wp-mail"
338
 
339
+ #: contact_form.php:1229
340
  msgid "You can use the Wordpress wp_mail function for mailing"
341
  msgstr "Tú puedes utilizar la función wp_mail para enviar por correo"
342
 
343
+ #: contact_form.php:1232
344
  msgid "Mail"
345
  msgstr "Correo"
346
 
347
+ #: contact_form.php:1234
348
  msgid "You can use the PHP mail function for mailing"
349
  msgstr "Tú puedes utilizar la función de correo PHP para enviar por correo"
350
 
351
+ #: contact_form.php:1239
352
  msgid "'FROM' field"
353
  msgstr "Campo 'DESDE'"
354
 
355
+ #: contact_form.php:1255
356
  msgid "User name"
357
  msgstr "Nombre de usuario"
358
 
359
+ #: contact_form.php:1257
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
362
  msgstr ""
363
  "El nombre del usuario que rellena en el formulario se utiliza en el campo "
364
  "\"De:\"."
365
 
366
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
367
  msgid "Email"
368
  msgstr "Correo electrónico"
369
 
370
+ #: contact_form.php:1279
371
  msgid "User email"
372
  msgstr "Correo electrónico del usuario"
373
 
374
+ #: contact_form.php:1281
375
  msgid ""
376
  "The email address of the user who fills the form will be used in the field "
377
  "'From'."
379
  "La dirección de correo electrónico del usuario que rellena el formulario se "
380
  "utiliza en el campo \"De\"."
381
 
382
+ #: contact_form.php:1290
383
  msgid ""
384
  "If this option is changed, email messages may be moved to the spam folder or "
385
  "email delivery failures may occur."
388
  "a la carpeta de correo no deseado o ocurrir otros errores en la entrega del "
389
  "correo."
390
 
391
+ #: contact_form.php:1299
392
  msgid "Required symbol"
393
  msgstr "Símbolo de Obligatorio"
394
 
395
+ #: contact_form.php:1309
396
  msgid "Fields"
397
  msgstr "Campos"
398
 
399
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
400
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
401
  msgid "Used"
402
  msgstr "Usado"
403
 
404
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
405
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
406
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
407
  msgid "Required"
408
  msgstr "Obligatorio"
409
 
410
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
411
+ #: contact_form.php:1445 contact_form.php:1469
412
  msgid "Visible"
413
  msgstr "Visible"
414
 
415
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
416
+ #: contact_form.php:1449 contact_form.php:1473
417
  msgid "Disabled for editing"
418
  msgstr "Inhabilitado para la edición"
419
 
420
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
421
+ #: contact_form.php:1477
422
  msgid "Field's default value"
423
  msgstr "Valor predeterminado del campo"
424
 
425
+ #: contact_form.php:1322
426
  msgid "Department selectbox"
427
  msgstr "Apartado de casilla seleccionable"
428
 
429
+ #: contact_form.php:1354
430
  msgid "Use User's name as a default value if the user is logged in."
431
  msgstr ""
432
  "Usar el nombre de usuario como valor por defecto si el usuario está "
433
  "conectado."
434
 
435
+ #: contact_form.php:1355 contact_form.php:1415
436
  msgid ""
437
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
438
  "in users."
440
  "Las opciones 'Visible' y 'Desactivado para la edición' solo serán aplicadas "
441
  "a los usuarios con sesión iniciada."
442
 
443
+ #: contact_form.php:1361
444
  msgid "Location selectbox"
445
  msgstr "Localización de la casilla seleccionable"
446
 
447
+ #: contact_form.php:1414
448
  msgid "Use User's email as a default value if the user is logged in."
449
  msgstr ""
450
  "Utiliza por defecto el correo electrónico del usuario si el usuario está "
451
  "conectado."
452
 
453
+ #: contact_form.php:1498
454
  msgid "Attachment block"
455
  msgstr "bloque de adjuntos"
456
 
457
+ #: contact_form.php:1500
458
  msgid "Users can attach the following file formats"
459
  msgstr "Los usuarios pueden adjuntar los siguientes formatos de archivo"
460
 
461
+ #: contact_form.php:1518
462
  msgid "Add to the form"
463
  msgstr "Añadir a la forma"
464
 
465
+ #: contact_form.php:1523
466
  msgid "Tips below the Attachment"
467
  msgstr "Consejos debajo del archivo adjunto"
468
 
469
+ #: contact_form.php:1530
470
  msgid "'Send me a copy' block"
471
  msgstr "'Deseo recibir una copia' bloque"
472
 
473
+ #: contact_form.php:1558
474
  #, fuzzy
475
  msgid "Activate for network"
476
  msgstr "Activar suscripción"
477
 
478
+ #: contact_form.php:1649
479
  msgid "Agreement checkbox"
480
  msgstr "casilla de verificación de acuerdo"
481
 
482
+ #: contact_form.php:1649
483
  msgid "Required checkbox for submitting the form"
484
  msgstr "Casilla de verificación obligatoria para enviar el formulario"
485
 
486
+ #: contact_form.php:1650
487
  msgid "Optional checkbox"
488
  msgstr "Casilla opcional"
489
 
490
+ #: contact_form.php:1650
491
  msgid "Optional checkbox, the results of which will be displayed in email"
492
  msgstr ""
493
  "Casilla opcional, cuyos resultados se mostrarán en el correo electrónico"
494
 
495
+ #: contact_form.php:1668
496
  msgid "Delete an attachment file from the server after the email is sent"
497
  msgstr ""
498
  "Eliminar un archivo adjunto del servidor después de que se envíe el correo "
499
  "electrónico"
500
 
501
+ #: contact_form.php:1674
502
  msgid "Email in HTML format sending"
503
  msgstr "Enviar correo electrónico en formato HTML"
504
 
505
+ #: contact_form.php:1678
506
  msgid "Display additional info in the email"
507
  msgstr "Mostrar información adicional en el correo electrónico"
508
 
509
+ #: contact_form.php:1684
510
  msgid "Sent from (IP address)"
511
  msgstr "Enviado desde (dirección IP)"
512
 
513
+ #: contact_form.php:1684
514
  msgid "Example: Sent from (IP address):\t127.0.0.1"
515
  msgstr "Ejemplo: Enviado desde (dirección IP:\t127.0.0.1"
516
 
517
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
518
  msgid "Date/Time"
519
  msgstr "Fecha/Hora"
520
 
521
+ #: contact_form.php:1685
522
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
523
  msgstr "Ejemplo: Fecha/hora:\tAugust 19, 2013 8:50 pm"
524
 
525
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
526
  msgid "Sent from (referer)"
527
  msgstr "Enviado desde (referencia)"
528
 
529
+ #: contact_form.php:1686
530
  #, fuzzy
531
  msgid ""
532
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
533
  msgstr ""
534
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
535
 
536
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
537
  msgid "Using (user agent)"
538
  msgstr "Usando (agente de usuario)"
539
 
540
+ #: contact_form.php:1687
541
  msgid ""
542
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
543
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
545
  "Ejemplo: Usando (agente de usuario):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
546
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
547
 
548
+ #: contact_form.php:1692
549
  msgid "Language settings for the field names in the form"
550
  msgstr ""
551
  "Configuración de idioma para los nombres de los campos en el formulario"
552
 
553
+ #: contact_form.php:1701
554
  msgid "Add a language"
555
  msgstr "Añadir un idioma"
556
 
557
+ #: contact_form.php:1705
558
  msgid "Change the names of the contact form fields and error messages"
559
  msgstr ""
560
  "Cambie los nombres de los campos del formulario de contacto y mensajes de "
561
  "error"
562
 
563
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
564
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
565
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
566
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
567
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
568
  msgid "Default"
569
  msgstr "Defecto"
570
 
571
+ #: contact_form.php:1723 contact_form.php:1761
572
  msgid "click to expand/hide the list"
573
  msgstr "haga clic para expandir / ocultar la lista"
574
 
575
+ #: contact_form.php:1732 contact_form.php:1770
576
  msgid "Tips below the Attachment block"
577
  msgstr "Consejos debajo del bloque del archivo adjunto"
578
 
579
+ #: contact_form.php:1735 contact_form.php:1773
580
  msgid "Error message for the Name field"
581
  msgstr "Mensaje de error para el campo Nombre"
582
 
583
+ #: contact_form.php:1736 contact_form.php:1774
584
  msgid "Error message for the Address field"
585
  msgstr "Mensaje de error para el campo dirección"
586
 
587
+ #: contact_form.php:1737 contact_form.php:1775
588
  msgid "Error message for the Email field"
589
  msgstr "Mensaje de error en el campo Correo electrónico"
590
 
591
+ #: contact_form.php:1738 contact_form.php:1776
592
  msgid "Error message for the Phone field"
593
  msgstr "Mensaje de error para el campo Teléfono"
594
 
595
+ #: contact_form.php:1739 contact_form.php:1777
596
  msgid "Error message for the Subject field"
597
  msgstr "Mensaje de error para el campo Asunto"
598
 
599
+ #: contact_form.php:1740 contact_form.php:1778
600
  msgid "Error message for the Message field"
601
  msgstr "Mensaje de error en el campo Mensaje"
602
 
603
+ #: contact_form.php:1741 contact_form.php:1779
604
  msgid "Error message about the file type for the Attachment field"
605
  msgstr ""
606
  "Mensaje de error sobre el tipo de archivo para el campo de archivos adjuntos"
607
 
608
+ #: contact_form.php:1742 contact_form.php:1780
609
  msgid ""
610
  "Error message while uploading a file for the Attachment field to the server"
611
  msgstr ""
612
  "Mensaje de error al cargar un archivo en el campo de archivos adjuntos al "
613
  "servidor"
614
 
615
+ #: contact_form.php:1743 contact_form.php:1781
616
  msgid "Error message while moving the file for the Attachment field"
617
  msgstr ""
618
  "Mensaje de error mientras se mueve el archivo en el campo de archivos "
619
  "adjuntos"
620
 
621
+ #: contact_form.php:1744 contact_form.php:1782
622
  msgid "Error message when file size limit for the Attachment field is exceeded"
623
  msgstr ""
624
  "Mensaje de error cuando se supera el límite de tamaño de archivo para el "
625
  "campo de archivos adjuntos"
626
 
627
+ #: contact_form.php:1745 contact_form.php:1783
628
  msgid "Error message for the Captcha field"
629
  msgstr "Mensaje de error para el campo Captcha"
630
 
631
+ #: contact_form.php:1746 contact_form.php:1784
632
  msgid "Error message for the whole form"
633
  msgstr "Mensaje de error para todo el formulario"
634
 
635
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
636
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
637
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
638
+ #: contact_form.php:3604
639
  msgid "Use shortcode"
640
  msgstr "Utilice shortcode"
641
 
642
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
643
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
644
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
645
+ #: contact_form.php:3604
646
  msgid "for this language"
647
  msgstr "para este idioma"
648
 
649
+ #: contact_form.php:1797
650
  msgid "Use the changed names of the contact form fields in the email"
651
  msgstr ""
652
  "Utilice los nombres cambiados de los campos del formulario de contacto en el "
653
  "correo electrónico"
654
 
655
+ #: contact_form.php:1803
656
  msgid "Action after email is sent"
657
  msgstr "Acción después de que se envíe el correo electrónico"
658
 
659
+ #: contact_form.php:1805
660
  msgid "Display text"
661
  msgstr "Mostrar texto"
662
 
663
+ #: contact_form.php:1819 contact_form.php:1833
664
  msgid "Text"
665
  msgstr "Texto"
666
 
667
+ #: contact_form.php:1844
668
  msgid "Redirect to the page"
669
  msgstr "Redirigir a la página"
670
 
671
+ #: contact_form.php:1845
672
  msgid "Url"
673
  msgstr "Url"
674
 
675
+ #: contact_form.php:1856
676
  msgid "Add field 'Reply-To' to the email header"
677
  msgstr "Añadir campo 'Responder a' en la cabecera del correo electrónico"
678
 
679
+ #: contact_form.php:1858
680
  msgid "Field 'Reply-To' will be initialized by user email"
681
  msgstr ""
682
  "El campo 'Responder a' se iniciará por el correo electrónico del usuario"
683
 
684
+ #: contact_form.php:1862
685
  msgid "Auto Response"
686
  msgstr "Respuesta automática"
687
 
688
+ #: contact_form.php:1866
689
  #, php-format
690
  msgid ""
691
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
696
  "%%MESSAGE%% para mostrar los datos del campo Mensaje, así como %%SITENAME%% "
697
  "para mostrar el nombre del blog."
698
 
699
+ #: contact_form.php:1888 contact_form.php:2419
700
  msgid "Save Changes"
701
  msgstr "Guardar cambios"
702
 
703
+ #: contact_form.php:1901
704
  #, php-format
705
  msgid ""
706
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
708
  "Por favor, utilice JavaScript para cambiar las opciones '%s', '%s' y para "
709
  "los campos de clasificación."
710
 
711
+ #: contact_form.php:1901 contact_form.php:1910
712
  msgid "Form layout"
713
  msgstr "Diseño del formulario"
714
 
715
+ #: contact_form.php:1901 contact_form.php:1922
716
  msgid "Submit position"
717
  msgstr "Enviar posición"
718
 
719
+ #: contact_form.php:1914
720
  msgid "One column"
721
  msgstr "Una columna"
722
 
723
+ #: contact_form.php:1917
724
  msgid "Two columns"
725
  msgstr "Dos columnas"
726
 
727
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
728
+ #: contact_form.php:1998
729
  msgid "Left"
730
  msgstr "Izquierda"
731
 
732
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
733
+ #: contact_form.php:2004
734
  msgid "Right"
735
  msgstr "Derecha"
736
 
737
+ #: contact_form.php:1934
738
+ msgid "Width"
739
+ msgstr ""
740
+
741
+ #: contact_form.php:1941
742
+ msgid "Custom"
743
+ msgstr ""
744
+
745
+ #: contact_form.php:1948
746
+ msgid "px"
747
+ msgstr ""
748
+
749
+ #: contact_form.php:1961
750
  msgid "Form align"
751
  msgstr "Alinear formulario"
752
 
753
+ #: contact_form.php:1968 contact_form.php:2001
754
  msgid "Center"
755
  msgstr "Centro"
756
 
757
+ #: contact_form.php:1976
758
  msgid "Labels position"
759
  msgstr "Posición de las etiquetas"
760
 
761
+ #: contact_form.php:1980
762
  msgid "Top"
763
  msgstr "Arriba"
764
 
765
+ #: contact_form.php:1989
766
  msgid "Bottom"
767
  msgstr "Abajo"
768
 
769
+ #: contact_form.php:1994
770
  msgid "Labels align"
771
  msgstr "Alinear etiquetas"
772
 
773
+ #: contact_form.php:2009
774
  msgid "Errors output"
775
  msgstr "Salida de errores"
776
 
777
+ #: contact_form.php:2012
778
  msgid "Display error messages"
779
  msgstr "Mostrar mensajes de error"
780
 
781
+ #: contact_form.php:2013
782
  msgid "Color of the input field errors."
783
  msgstr "El color de los errores del campo de entrada."
784
 
785
+ #: contact_form.php:2014
786
  msgid "Display error messages & color of the input field errors"
787
  msgstr ""
788
  "Mostrar mensajes de error y el color de los errores de campo de entrada"
789
 
790
+ #: contact_form.php:2019
791
  msgid "Add placeholder to the input blocks"
792
  msgstr "Añadir marcador de posición de los bloques de entrada"
793
 
794
+ #: contact_form.php:2025
795
  msgid "Add tooltips"
796
  msgstr "Añadir información sobre herramientas"
797
 
798
+ #: contact_form.php:2039
799
  msgid "Email address"
800
  msgstr "Correo electrónico"
801
 
802
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
803
  msgid "Phone Number"
804
  msgstr "Número de teléfono"
805
 
806
+ #: contact_form.php:2070
807
  msgid "Style options"
808
  msgstr "Opciones de estilo"
809
 
810
+ #: contact_form.php:2074
811
  msgid "Text color"
812
  msgstr "Color del texto"
813
 
814
+ #: contact_form.php:2079
815
  msgid "Label text color"
816
  msgstr "Color del texto de la Etiqueta"
817
 
818
+ #: contact_form.php:2084
819
  msgid "Placeholder color"
820
  msgstr "El color de marcador de posición"
821
 
822
+ #: contact_form.php:2089
823
  msgid "Errors color"
824
  msgstr "Color del error"
825
 
826
+ #: contact_form.php:2094
827
  msgid "Error text color"
828
  msgstr "Color del texto de error"
829
 
830
+ #: contact_form.php:2099
831
  msgid "Background color of the input field errors"
832
  msgstr "Color de fondo de los errores de campo de entrada"
833
 
834
+ #: contact_form.php:2104
835
  msgid "Border color of the input field errors"
836
  msgstr "Color del borde de los errores de campo de entrada"
837
 
838
+ #: contact_form.php:2109
839
  msgid "Placeholder color of the input field errors"
840
  msgstr "El color de marcador de posición de los errores de campo de entrada"
841
 
842
+ #: contact_form.php:2114
843
  msgid "Input fields"
844
  msgstr "Campos de entrada"
845
 
846
+ #: contact_form.php:2119
847
  msgid "Input fields background color"
848
  msgstr "Color de fondo de los campos de entrada"
849
 
850
+ #: contact_form.php:2124
851
  msgid "Text fields color"
852
  msgstr "Color de los campos de texto"
853
 
854
+ #: contact_form.php:2128
855
  msgid "Border width in px, numbers only"
856
  msgstr "Ancho del borde en píxeles, sólo números"
857
 
858
+ #: contact_form.php:2133 contact_form.php:2157
859
  msgid "Border color"
860
  msgstr "Color del borde"
861
 
862
+ #: contact_form.php:2138
863
  msgid "Submit button"
864
  msgstr "Botón enviar"
865
 
866
+ #: contact_form.php:2142
867
  msgid "Width in px, numbers only"
868
  msgstr "Ancho en píxeles, sólo números"
869
 
870
+ #: contact_form.php:2147
871
  msgid "Button color"
872
  msgstr "Color del botón"
873
 
874
+ #: contact_form.php:2152
875
  msgid "Button text color"
876
  msgstr "Color del texto del botón"
877
 
878
+ #: contact_form.php:2181
879
  msgid "Contact Form | Preview"
880
  msgstr "Formulario de Contacto | Vista previa"
881
 
882
+ #: contact_form.php:2182
883
  msgid "Drag the necessary field to sort fields."
884
  msgstr "Arrastre el campo necesario para ordenar los campos."
885
 
886
+ #: contact_form.php:2408
887
  #, fuzzy
888
  msgid ""
889
  "If you would like to add the Contact Form to your website, just copy and "
892
  "Si quieres agregar el formulario de contacto en tu sitio web, sólo tienes "
893
  "que copiar y pegar este código corto a tu post, una página o un widget:"
894
 
895
+ #: contact_form.php:2536
896
  msgid "Sorry, email message could not be delivered."
897
  msgstr "Lo sentimos, el mensaje de correo electrónico no se pudo entregar."
898
 
899
+ #: contact_form.php:3137 contact_form.php:3139
900
  msgid "Sent from (ip address)"
901
  msgstr "Enviado desde (dirección IP)"
902
 
903
+ #: contact_form.php:3167
904
  msgid "Contact from"
905
  msgstr "Contact from"
906
 
907
+ #: contact_form.php:3172 contact_form.php:3221
908
  msgid "Site"
909
  msgstr "Sitio"
910
 
911
+ #: contact_form.php:3351
912
  msgid ""
913
  "If you can see this MIME, it means that the MIME type is not supported by "
914
  "your email client!"
916
  "Si puede ver esta MIME, significa que el tipo MIME no es compatible con su "
917
  "cliente de correo electrónico!"
918
 
919
+ #: contact_form.php:3434
920
  msgid "FAQ"
921
  msgstr "Preguntas más frecuentes"
922
 
923
+ #: contact_form.php:3435
924
  msgid "Support"
925
  msgstr "Soporte técnico"
926
 
927
+ #: contact_form.php:3484
928
  msgid "Are you sure that you want to delete this language data?"
929
  msgstr "¿Estás seguro de que quieres eliminar este idioma?"
930
 
931
+ #: contact_form.php:3505
932
  msgid "Add multiple forms"
933
  msgstr "Añadir múltiples forularios"
934
 
935
+ #: contact_form.php:3505
936
  msgid ""
937
  "Install Contact Form Multi plugin to create unlimited number of contact "
938
  "forms."
940
  "Instalar el plugin Contact Form Multi para crear un número ilimitado de "
941
  "formas de contacto."
942
 
943
+ #: contact_form.php:3510
944
  msgid "Learn more"
945
  msgstr "Más información"
946
 
947
+ #: contact_form.php:3751
948
  msgid "Close notice"
949
  msgstr "Cerrar aviso"
950
 
951
+ #: contact_form.php:3756
952
  msgid "allows to store your messages to the database."
953
  msgstr "Permite almacenar sus mensajes en la base de datos."
954
 
955
+ #: contact_form.php:3757
956
  msgid "Manage messages that have been sent from your website."
957
  msgstr "Administración de mensajes que han sido enviados desde su sitio web."
958
 
959
+ #: contact_form.php:3760
960
  msgid "Learn More"
961
  msgstr "Más información"
962
 
963
+ #: contact_form.php:3820
964
  msgid "Contact form"
965
  msgstr "Formulario de contacto"
966
 
967
+ #: contact_form.php:3833 contact_form.php:3843
968
  msgid "Language"
969
  msgstr "Idioma"
970
 
 
 
 
 
 
 
 
 
971
  #~ msgid "Unlock premium options by upgrading to Pro version"
972
  #~ msgstr ""
973
  #~ "Desbloquear opciones premium mediante la actualización a una versión PRO"
languages/contact-form-plugin-et.mo CHANGED
Binary file
languages/contact-form-plugin-et.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: 2017-02-27 16:23+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Feliks <feliks@veebimeister.com>\n"
9
  "Language: ca_ES\n"
@@ -16,54 +16,54 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:42 contact_form.php:1066
20
  msgid "Contact Form Settings"
21
  msgstr "Contact Form seaded"
22
 
23
- #: contact_form.php:42
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
28
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
29
- #: contact_form.php:3138 contact_form.php:3184
30
  msgid "Name"
31
  msgstr "Nimi"
32
 
33
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
34
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
35
- #: contact_form.php:3190
36
  msgid "Address"
37
  msgstr "Aadress"
38
 
39
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
40
- #: contact_form.php:1767
41
  msgid "Email Address"
42
  msgstr "E-maili aadress"
43
 
44
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
45
- #: contact_form.php:1768
46
  msgid "Phone number"
47
  msgstr "Telefoni number"
48
 
49
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
50
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
51
- #: contact_form.php:3199
52
  msgid "Subject"
53
  msgstr "Pealkiri"
54
 
55
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
56
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
57
- #: contact_form.php:3203
58
  msgid "Message"
59
  msgstr "Sõnum"
60
 
61
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
62
- #: contact_form.php:2040
63
  msgid "Attachment"
64
  msgstr "Manus"
65
 
66
- #: contact_form.php:302
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -71,77 +71,77 @@ msgstr ""
71
  "Toetatud failitüübid: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
72
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
75
  msgid "Send me a copy"
76
  msgstr "Saada mulle koopia"
77
 
78
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
79
  msgid "Submit"
80
  msgstr "Saada"
81
 
82
- #: contact_form.php:305
83
  msgid "Your name is required."
84
  msgstr "Sinu nimi on kohustuslik."
85
 
86
- #: contact_form.php:306
87
  msgid "Address is required."
88
  msgstr "Aadress on kohustuslik."
89
 
90
- #: contact_form.php:307
91
  msgid "A valid email address is required."
92
  msgstr "Korrektne e-mail on kohustuslik."
93
 
94
- #: contact_form.php:308
95
  msgid "Phone number is required."
96
  msgstr "Telefoni number on kohustuslik."
97
 
98
- #: contact_form.php:309
99
  msgid "Subject is required."
100
  msgstr "Pealkiri on kohustuslik."
101
 
102
- #: contact_form.php:310
103
  msgid "Message text is required."
104
  msgstr "Sõnumi tekst on kohustuslik."
105
 
106
- #: contact_form.php:311
107
  msgid "File format is not valid."
108
  msgstr "Failiformaat pole toetatud."
109
 
110
- #: contact_form.php:312
111
  msgid "File upload error."
112
  msgstr "Error faili üles laadimisel."
113
 
114
- #: contact_form.php:313
115
  msgid "The file could not be uploaded."
116
  msgstr "Faili ei saanud üles laadida."
117
 
118
- #: contact_form.php:314
119
  msgid "This file is too large."
120
  msgstr "See fail on liiga suur."
121
 
122
- #: contact_form.php:315
123
  msgid "Please fill out the CAPTCHA."
124
  msgstr "Palun täida CAPTCHA."
125
 
126
- #: contact_form.php:316
127
  msgid "Please make corrections below and try again."
128
  msgstr "Palun tee allolevad parandused ja proovi uuesti."
129
 
130
- #: contact_form.php:318
131
  msgid "Thank you for contacting us."
132
  msgstr "Tänan meiega kontakteerumast."
133
 
134
- #: contact_form.php:761 contact_form.php:1023
135
  msgid "Settings saved."
136
  msgstr "Seaded salvestatud."
137
 
138
- #: contact_form.php:968
139
  msgid ""
140
  "Email 'FROM' field option was changed, which may cause email messages being "
141
  "moved to the spam folder or email delivery failures."
142
  msgstr ""
143
 
144
- #: contact_form.php:978
145
  msgid ""
146
  "If the 'Redirect to page' option is selected then the URL field should be in "
147
  "the following format"
@@ -149,62 +149,62 @@ msgstr ""
149
  "Kui 'Suuna lehele' valik on aktiveeritud, siis URL-i väli peab olema "
150
  "järgnevas formaadis"
151
 
152
- #: contact_form.php:985
153
  msgid "Such user does not exist."
154
  msgstr "Sellist kasutajat ei eksisteeri. "
155
 
156
- #: contact_form.php:995
157
  msgid ""
158
  "Please enter a valid email address in the 'Use this email address' field."
159
  msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
160
 
161
- #: contact_form.php:1003
162
  msgid "Please enter a valid email address in the 'FROM' field."
163
  msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
164
 
165
- #: contact_form.php:1025
166
  msgid "Settings are not saved."
167
  msgstr "Seaded pole salvestatud."
168
 
169
- #: contact_form.php:1063
170
  msgid "All plugin settings were restored."
171
  msgstr ""
172
 
173
- #: contact_form.php:1069
174
  msgid "How to Use Step-by-step Instruction"
175
  msgstr ""
176
 
177
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
178
  msgid "Settings"
179
  msgstr "Seaded"
180
 
181
- #: contact_form.php:1073
182
  #, fuzzy
183
  msgid "Additional settings"
184
  msgstr "Opcions addicionals"
185
 
186
- #: contact_form.php:1074
187
  msgid "Appearance"
188
  msgstr ""
189
 
190
- #: contact_form.php:1075
191
  msgid "Custom code"
192
  msgstr ""
193
 
194
- #: contact_form.php:1076
195
  msgid "Go PRO"
196
  msgstr "Telli PRO"
197
 
198
- #: contact_form.php:1087
199
  #, fuzzy
200
  msgid "Notice"
201
  msgstr "Märkus:"
202
 
203
- #: contact_form.php:1091
204
  msgid "NEW_FORM"
205
  msgstr ""
206
 
207
- #: contact_form.php:1092
208
  msgid ""
209
  "If you want to create multiple contact forms, please install the Contact "
210
  "Form Multi plugin."
@@ -212,7 +212,7 @@ msgstr ""
212
  "Kui soovid sisestada mitut kontaktivormi, siis installi Contact Form Multi "
213
  "plugin."
214
 
215
- #: contact_form.php:1101
216
  #, fuzzy, php-format
217
  msgid ""
218
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -221,7 +221,7 @@ msgstr ""
221
  "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see "
222
  "lühikood oma postitusele või lehele või moodulile:"
223
 
224
- #: contact_form.php:1107
225
  #, php-format
226
  msgid ""
227
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -230,7 +230,7 @@ msgid ""
230
  "language."
231
  msgstr ""
232
 
233
- #: contact_form.php:1116
234
  msgid ""
235
  "If you leave the fields empty, the messages will be sent to the email "
236
  "address specified during registration."
@@ -238,17 +238,17 @@ msgstr ""
238
  "Kui sa jätad selle välja tühjaks, siis sõnumid saadetakse registreerumisel "
239
  "antud e-maili aadressile."
240
 
241
- #: contact_form.php:1119
242
  #, fuzzy
243
  msgid "The user's email address"
244
  msgstr "Kasutaja e-maili aadress:"
245
 
246
- #: contact_form.php:1123
247
  #, fuzzy
248
  msgid "Select a username"
249
  msgstr "Loo kasutajanimi"
250
 
251
- #: contact_form.php:1136
252
  #, fuzzy
253
  msgid ""
254
  "Select a username of the person who should get the messages from the contact "
@@ -256,110 +256,110 @@ msgid ""
256
  msgstr ""
257
  "Sisesta selle isiku kasutajanimi, kes peaks saama sõnumid kontaktivormilt."
258
 
259
- #: contact_form.php:1140
260
  #, fuzzy
261
  msgid "Use this email address"
262
  msgstr "Kasuta seda e-maili aadressi:"
263
 
264
- #: contact_form.php:1144
265
  #, fuzzy
266
  msgid "Enter the email address for receiving messages"
267
  msgstr ""
268
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
269
 
270
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
271
- #: contact_form.php:1939 contact_form.php:3471
272
  msgid "Close"
273
  msgstr ""
274
 
275
- #: contact_form.php:1155
276
  #, fuzzy
277
  msgid "Add department selectbox to the contact form"
278
  msgstr "Lisa valikukast kontakti vormile:"
279
 
280
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
281
- #: contact_form.php:2145
282
  msgid "If you upgrade to Pro version all your settings will be saved."
283
  msgstr "Kui sa lähed üle Pro versioonile, siis kõik seaded salvestatakse."
284
 
285
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
286
- #: contact_form.php:1880 contact_form.php:2152
287
  msgid "Upgrade to Pro"
288
  msgstr ""
289
 
290
- #: contact_form.php:1178
291
  msgid "Save emails to the database"
292
  msgstr "Salvesta e-mailid andmebaasi"
293
 
294
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
295
  msgid "Using"
296
  msgstr "Kasutan"
297
 
298
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
299
- #: contact_form.php:1625
300
  msgid "Please activate the appropriate option on"
301
  msgstr ""
302
 
303
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
304
- #: contact_form.php:1628
305
  #, fuzzy
306
  msgid "settings page"
307
  msgstr "seadete leht"
308
 
309
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
310
- #: contact_form.php:1635
311
  msgid "Activate"
312
  msgstr "Aktiveeri"
313
 
314
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
315
- #: contact_form.php:1640
316
  msgid "Download"
317
  msgstr "Descarregar"
318
 
319
- #: contact_form.php:1224
320
  msgid "Sending method"
321
  msgstr ""
322
 
323
- #: contact_form.php:1229
324
  msgid "Wp-mail"
325
  msgstr "Wp-mail"
326
 
327
- #: contact_form.php:1231
328
  #, fuzzy
329
  msgid "You can use the Wordpress wp_mail function for mailing"
330
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
331
 
332
- #: contact_form.php:1234
333
  msgid "Mail"
334
  msgstr "E-mail"
335
 
336
- #: contact_form.php:1236
337
  #, fuzzy
338
  msgid "You can use the PHP mail function for mailing"
339
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
340
 
341
- #: contact_form.php:1241
342
  msgid "'FROM' field"
343
  msgstr ""
344
 
345
- #: contact_form.php:1257
346
  msgid "User name"
347
  msgstr "Kasutaja nimi"
348
 
349
- #: contact_form.php:1259
350
  msgid ""
351
  "The name of the user who fills the form will be used in the field 'From'."
352
  msgstr "Kasutaja nime (kes täidab vormi) kasutatakse 'Kellelt' väljal."
353
 
354
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
355
  msgid "Email"
356
  msgstr "E-mail"
357
 
358
- #: contact_form.php:1281
359
  msgid "User email"
360
  msgstr "Kasutaja e-mail"
361
 
362
- #: contact_form.php:1283
363
  msgid ""
364
  "The email address of the user who fills the form will be used in the field "
365
  "'From'."
@@ -367,154 +367,154 @@ msgstr ""
367
  "Selle kasutaja, kes täidab vormi, e-maili aadressi kasutatakse 'Kellelt' "
368
  "väljal."
369
 
370
- #: contact_form.php:1292
371
  msgid ""
372
  "If this option is changed, email messages may be moved to the spam folder or "
373
  "email delivery failures may occur."
374
  msgstr ""
375
 
376
- #: contact_form.php:1301
377
  msgid "Required symbol"
378
  msgstr "Nõutud sümbol"
379
 
380
- #: contact_form.php:1311
381
  msgid "Fields"
382
  msgstr "Väljad"
383
 
384
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
385
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
386
  msgid "Used"
387
  msgstr "Kasutatud"
388
 
389
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
390
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
391
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
392
  msgid "Required"
393
  msgstr "Nõutud"
394
 
395
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
396
- #: contact_form.php:1447 contact_form.php:1471
397
  msgid "Visible"
398
  msgstr "Nähtav"
399
 
400
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
401
- #: contact_form.php:1451 contact_form.php:1475
402
  msgid "Disabled for editing"
403
  msgstr "Toimetamiseks välja lülitatud"
404
 
405
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
406
- #: contact_form.php:1479
407
  msgid "Field's default value"
408
  msgstr "Välja vaikeseades väärtus"
409
 
410
- #: contact_form.php:1324
411
  #, fuzzy
412
  msgid "Department selectbox"
413
  msgstr "Asukoha valik"
414
 
415
- #: contact_form.php:1356
416
  msgid "Use User's name as a default value if the user is logged in."
417
  msgstr ""
418
 
419
- #: contact_form.php:1357 contact_form.php:1417
420
  msgid ""
421
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
422
  "in users."
423
  msgstr ""
424
 
425
- #: contact_form.php:1363
426
  msgid "Location selectbox"
427
  msgstr "Asukoha valik"
428
 
429
- #: contact_form.php:1416
430
  msgid "Use User's email as a default value if the user is logged in."
431
  msgstr ""
432
 
433
- #: contact_form.php:1500
434
  msgid "Attachment block"
435
  msgstr "Manuste blokk"
436
 
437
- #: contact_form.php:1502
438
  msgid "Users can attach the following file formats"
439
  msgstr "Kasutajad saavad lisada manuseid järgnevates formaatides"
440
 
441
- #: contact_form.php:1520
442
  msgid "Add to the form"
443
  msgstr "Lisa vormile"
444
 
445
- #: contact_form.php:1525
446
  msgid "Tips below the Attachment"
447
  msgstr "Vihjed manuse alla"
448
 
449
- #: contact_form.php:1532
450
  msgid "'Send me a copy' block"
451
  msgstr "'Saada mulle koopia' blokk"
452
 
453
- #: contact_form.php:1560
454
  #, fuzzy
455
  msgid "Activate for network"
456
  msgstr "Plugin activat"
457
 
458
- #: contact_form.php:1651
459
  msgid "Agreement checkbox"
460
  msgstr "Nõustumise kastike"
461
 
462
- #: contact_form.php:1651
463
  msgid "Required checkbox for submitting the form"
464
  msgstr "Nõutud kastike vormi saatmiseks"
465
 
466
- #: contact_form.php:1652
467
  msgid "Optional checkbox"
468
  msgstr "Valikuline kastike"
469
 
470
- #: contact_form.php:1652
471
  msgid "Optional checkbox, the results of which will be displayed in email"
472
  msgstr "Valikuline kastike, mille tulemusi näidatakse e-mailis"
473
 
474
- #: contact_form.php:1670
475
  msgid "Delete an attachment file from the server after the email is sent"
476
  msgstr "Kustuta manuse fail serverist peale e-maili saatmist"
477
 
478
- #: contact_form.php:1676
479
  msgid "Email in HTML format sending"
480
  msgstr "E-maili saatmine HTML formaadis"
481
 
482
- #: contact_form.php:1680
483
  msgid "Display additional info in the email"
484
  msgstr "Näita e-mailis lisainfot"
485
 
486
- #: contact_form.php:1686
487
  #, fuzzy
488
  msgid "Sent from (IP address)"
489
  msgstr "Saadetud (IP aadress)"
490
 
491
- #: contact_form.php:1686
492
  msgid "Example: Sent from (IP address):\t127.0.0.1"
493
  msgstr "Näide: Saadetud (IP address):\t127.0.0.1"
494
 
495
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
496
  msgid "Date/Time"
497
  msgstr "Kuupäev/Aeg"
498
 
499
- #: contact_form.php:1687
500
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
501
  msgstr "Näide: Kuupäev/Aeg:\tAugust 19, 2013 8:50 pm"
502
 
503
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
504
  msgid "Sent from (referer)"
505
  msgstr "Saadetud (referer)"
506
 
507
- #: contact_form.php:1688
508
  #, fuzzy
509
  msgid ""
510
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
511
  msgstr "Näide: Saatnud (referer):\thttp://veebimeister.com/"
512
 
513
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
514
  msgid "Using (user agent)"
515
  msgstr "Kasutab (user agent)"
516
 
517
- #: contact_form.php:1689
518
  msgid ""
519
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
520
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -522,134 +522,134 @@ msgstr ""
522
  "Näide: Kasutab (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
523
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
524
 
525
- #: contact_form.php:1694
526
  msgid "Language settings for the field names in the form"
527
  msgstr "Vormi keeleseaded nimeväljadele"
528
 
529
- #: contact_form.php:1703
530
  msgid "Add a language"
531
  msgstr "Lisa keel"
532
 
533
- #: contact_form.php:1707
534
  msgid "Change the names of the contact form fields and error messages"
535
  msgstr "Muuda kontakti vormi väljade ja error-sõnumite nimesid"
536
 
537
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
538
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
539
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
540
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
541
- #: contact_form.php:2132 contact_form.php:2137
542
  msgid "Default"
543
  msgstr "Vaikimisi valik"
544
 
545
- #: contact_form.php:1725 contact_form.php:1763
546
  msgid "click to expand/hide the list"
547
  msgstr "avamiseks/sulgemiseks klikka"
548
 
549
- #: contact_form.php:1734 contact_form.php:1772
550
  msgid "Tips below the Attachment block"
551
  msgstr "Vihje manuse bloki all"
552
 
553
- #: contact_form.php:1737 contact_form.php:1775
554
  msgid "Error message for the Name field"
555
  msgstr "Error väljal 'Nimi'"
556
 
557
- #: contact_form.php:1738 contact_form.php:1776
558
  msgid "Error message for the Address field"
559
  msgstr "Error väljal 'Aadress'"
560
 
561
- #: contact_form.php:1739 contact_form.php:1777
562
  msgid "Error message for the Email field"
563
  msgstr "Error väljal 'E-mail'"
564
 
565
- #: contact_form.php:1740 contact_form.php:1778
566
  msgid "Error message for the Phone field"
567
  msgstr "Error väljal 'Telefon'"
568
 
569
- #: contact_form.php:1741 contact_form.php:1779
570
  msgid "Error message for the Subject field"
571
  msgstr "Error väljal 'Pealkiri'"
572
 
573
- #: contact_form.php:1742 contact_form.php:1780
574
  msgid "Error message for the Message field"
575
  msgstr "Error väljal 'Sõnum'"
576
 
577
- #: contact_form.php:1743 contact_form.php:1781
578
  msgid "Error message about the file type for the Attachment field"
579
  msgstr "Error faili tüübi kohta manuse väljal"
580
 
581
- #: contact_form.php:1744 contact_form.php:1782
582
  msgid ""
583
  "Error message while uploading a file for the Attachment field to the server"
584
  msgstr "Error faili üles laadimisel serverisse manuse välja jaoks"
585
 
586
- #: contact_form.php:1745 contact_form.php:1783
587
  msgid "Error message while moving the file for the Attachment field"
588
  msgstr "Error faili liigutamisel manuse väljale"
589
 
590
- #: contact_form.php:1746 contact_form.php:1784
591
  msgid "Error message when file size limit for the Attachment field is exceeded"
592
  msgstr "Error ületades faili suuruse limiiti manuse väljal"
593
 
594
- #: contact_form.php:1747 contact_form.php:1785
595
  msgid "Error message for the Captcha field"
596
  msgstr "Error väljal 'Captcha'"
597
 
598
- #: contact_form.php:1748 contact_form.php:1786
599
  msgid "Error message for the whole form"
600
  msgstr "Error kogu vormi kohta"
601
 
602
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
603
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
604
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
605
- #: contact_form.php:3540
606
  msgid "Use shortcode"
607
  msgstr "Kasuta lühikoodi"
608
 
609
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
610
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
611
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
612
- #: contact_form.php:3540
613
  msgid "for this language"
614
  msgstr "selle keele jaoks"
615
 
616
- #: contact_form.php:1799
617
  msgid "Use the changed names of the contact form fields in the email"
618
  msgstr "Kasuta kontaktivormi väljade muudetud nimesid emailis"
619
 
620
- #: contact_form.php:1805
621
  msgid "Action after email is sent"
622
  msgstr "Tegevus peale e-maili saatmist"
623
 
624
- #: contact_form.php:1807
625
  msgid "Display text"
626
  msgstr "Näita teksti"
627
 
628
- #: contact_form.php:1821 contact_form.php:1835
629
  msgid "Text"
630
  msgstr "Tekst"
631
 
632
- #: contact_form.php:1846
633
  msgid "Redirect to the page"
634
  msgstr "Suuna lehele"
635
 
636
- #: contact_form.php:1847
637
  msgid "Url"
638
  msgstr "Url"
639
 
640
- #: contact_form.php:1858
641
  msgid "Add field 'Reply-To' to the email header"
642
  msgstr ""
643
 
644
- #: contact_form.php:1860
645
  msgid "Field 'Reply-To' will be initialized by user email"
646
  msgstr ""
647
 
648
- #: contact_form.php:1864
649
  msgid "Auto Response"
650
  msgstr ""
651
 
652
- #: contact_form.php:1868
653
  #, php-format
654
  msgid ""
655
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -657,182 +657,194 @@ msgid ""
657
  "name."
658
  msgstr ""
659
 
660
- #: contact_form.php:1890 contact_form.php:2389
661
  msgid "Save Changes"
662
  msgstr "Salvesta muudatused"
663
 
664
- #: contact_form.php:1903
665
  #, php-format
666
  msgid ""
667
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
668
  msgstr ""
669
 
670
- #: contact_form.php:1903 contact_form.php:1912
671
  msgid "Form layout"
672
  msgstr ""
673
 
674
- #: contact_form.php:1903 contact_form.php:1924
675
  #, fuzzy
676
  msgid "Submit position"
677
  msgstr "'Saada' nupp"
678
 
679
- #: contact_form.php:1916
680
  msgid "One column"
681
  msgstr ""
682
 
683
- #: contact_form.php:1919
684
  msgid "Two columns"
685
  msgstr ""
686
 
687
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
688
- #: contact_form.php:1980
689
  msgid "Left"
690
  msgstr ""
691
 
692
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
693
- #: contact_form.php:1986
694
  msgid "Right"
695
  msgstr ""
696
 
697
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
698
  msgid "Form align"
699
  msgstr ""
700
 
701
- #: contact_form.php:1950 contact_form.php:1983
702
  msgid "Center"
703
  msgstr ""
704
 
705
- #: contact_form.php:1958
706
  #, fuzzy
707
  msgid "Labels position"
708
  msgstr "'Saada' nupp"
709
 
710
- #: contact_form.php:1962
711
  msgid "Top"
712
  msgstr ""
713
 
714
- #: contact_form.php:1971
715
  msgid "Bottom"
716
  msgstr ""
717
 
718
- #: contact_form.php:1976
719
  msgid "Labels align"
720
  msgstr ""
721
 
722
- #: contact_form.php:1991
723
  msgid "Errors output"
724
  msgstr "Errorite väljund"
725
 
726
- #: contact_form.php:1994
727
  msgid "Display error messages"
728
  msgstr "Näita error-sõnumeid"
729
 
730
- #: contact_form.php:1995
731
  msgid "Color of the input field errors."
732
  msgstr "Sisestusväljade errorite värv"
733
 
734
- #: contact_form.php:1996
735
  msgid "Display error messages & color of the input field errors"
736
  msgstr "Näita error-sõnumeid ja sisestusväljade errorite värvi"
737
 
738
- #: contact_form.php:2001
739
  msgid "Add placeholder to the input blocks"
740
  msgstr "Lisa kohahoidja sisestusblokkidele"
741
 
742
- #: contact_form.php:2007
743
  msgid "Add tooltips"
744
  msgstr "Lisa vihjed"
745
 
746
- #: contact_form.php:2021
747
  msgid "Email address"
748
  msgstr "E-maili aadress"
749
 
750
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
751
  msgid "Phone Number"
752
  msgstr "Telefoni number"
753
 
754
- #: contact_form.php:2052
755
  msgid "Style options"
756
  msgstr "Stiili valikud"
757
 
758
- #: contact_form.php:2056
759
  msgid "Text color"
760
  msgstr "Teksti värv"
761
 
762
- #: contact_form.php:2061
763
  msgid "Label text color"
764
  msgstr "Sildi teksti värv"
765
 
766
- #: contact_form.php:2066
767
  msgid "Placeholder color"
768
  msgstr "Kohahoidja värv"
769
 
770
- #: contact_form.php:2071
771
  msgid "Errors color"
772
  msgstr "Errorite värv"
773
 
774
- #: contact_form.php:2076
775
  msgid "Error text color"
776
  msgstr "Error-teksti värv"
777
 
778
- #: contact_form.php:2081
779
  msgid "Background color of the input field errors"
780
  msgstr "Sisestusväljade errorite taustavärv"
781
 
782
- #: contact_form.php:2086
783
  msgid "Border color of the input field errors"
784
  msgstr "Sisestusväljade errorite piirjoonte värv"
785
 
786
- #: contact_form.php:2091
787
  msgid "Placeholder color of the input field errors"
788
  msgstr "Sisestusväljade errorite kohahoidja värv"
789
 
790
- #: contact_form.php:2096
791
  msgid "Input fields"
792
  msgstr "Sisestusväljad"
793
 
794
- #: contact_form.php:2101
795
  msgid "Input fields background color"
796
  msgstr "Sisestusväljade taustavärv"
797
 
798
- #: contact_form.php:2106
799
  msgid "Text fields color"
800
  msgstr "Tekstiväljade värv"
801
 
802
- #: contact_form.php:2110
803
  msgid "Border width in px, numbers only"
804
  msgstr "Piirjoone paksus pikslites. Ainult number"
805
 
806
- #: contact_form.php:2115 contact_form.php:2139
807
  msgid "Border color"
808
  msgstr "Piirjoone värv"
809
 
810
- #: contact_form.php:2120
811
  msgid "Submit button"
812
  msgstr "'Saada' nupp"
813
 
814
- #: contact_form.php:2124
815
  msgid "Width in px, numbers only"
816
  msgstr "Laius pikslites, ainult numbrid"
817
 
818
- #: contact_form.php:2129
819
  msgid "Button color"
820
  msgstr "Nupu värv"
821
 
822
- #: contact_form.php:2134
823
  msgid "Button text color"
824
  msgstr "Nupu teksti värv"
825
 
826
- #: contact_form.php:2163
827
  #, fuzzy
828
  msgid "Contact Form | Preview"
829
  msgstr "Contact Form Pro | Eelvaade"
830
 
831
- #: contact_form.php:2164
832
  msgid "Drag the necessary field to sort fields."
833
  msgstr ""
834
 
835
- #: contact_form.php:2376
836
  #, fuzzy
837
  msgid ""
838
  "If you would like to add the Contact Form to your website, just copy and "
@@ -841,23 +853,23 @@ msgstr ""
841
  "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see "
842
  "lühikood oma postitusele või lehele või moodulile:"
843
 
844
- #: contact_form.php:2504
845
  msgid "Sorry, email message could not be delivered."
846
  msgstr "Vabandust, see kiri jäi saatmata."
847
 
848
- #: contact_form.php:3094 contact_form.php:3096
849
  msgid "Sent from (ip address)"
850
  msgstr "Saadetud (IP aadress)"
851
 
852
- #: contact_form.php:3124
853
  msgid "Contact from"
854
  msgstr "Kontakti vorm"
855
 
856
- #: contact_form.php:3129 contact_form.php:3178
857
  msgid "Site"
858
  msgstr "Leht"
859
 
860
- #: contact_form.php:3308
861
  msgid ""
862
  "If you can see this MIME, it means that the MIME type is not supported by "
863
  "your email client!"
@@ -865,70 +877,62 @@ msgstr ""
865
  "Kui sa näed seda MIME-t, siis MIME tüüp pole sinu e-maili kliendi poolt "
866
  "toetatud!"
867
 
868
- #: contact_form.php:3391
869
  msgid "FAQ"
870
  msgstr "KKK"
871
 
872
- #: contact_form.php:3392
873
  msgid "Support"
874
  msgstr "Klienditugi"
875
 
876
- #: contact_form.php:3441
877
  msgid "Are you sure that you want to delete this language data?"
878
  msgstr "Oled sa kindel, et soovid kustutada selle keele andmeid?"
879
 
880
- #: contact_form.php:3462
881
  #, fuzzy
882
  msgid "Add multiple forms"
883
  msgstr "Lisa vormile"
884
 
885
- #: contact_form.php:3462
886
  msgid ""
887
  "Install Contact Form Multi plugin to create unlimited number of contact "
888
  "forms."
889
  msgstr ""
890
 
891
- #: contact_form.php:3467
892
  #, fuzzy
893
  msgid "Learn more"
894
  msgstr "Uuri lähemalt"
895
 
896
- #: contact_form.php:3693
897
  msgid "Close notice"
898
  msgstr ""
899
 
900
- #: contact_form.php:3698
901
  #, fuzzy
902
  msgid "allows to store your messages to the database."
903
  msgstr ""
904
  "<strong>Contact Form to DB</strong> laseb sul salvestada sõnumeid andmebaasi."
905
 
906
- #: contact_form.php:3699
907
  msgid "Manage messages that have been sent from your website."
908
  msgstr "Toimeta sõnumeid, mis on sulle saadetud sinu veebilehelt."
909
 
910
- #: contact_form.php:3702
911
  msgid "Learn More"
912
  msgstr "Uuri lähemalt"
913
 
914
- #: contact_form.php:3762
915
  #, fuzzy
916
  msgid "Contact form"
917
  msgstr "Kontakti vorm"
918
 
919
- #: contact_form.php:3775 contact_form.php:3785
920
  #, fuzzy
921
  msgid "Language"
922
  msgstr "Lisa keel"
923
 
924
- #: includes/deprecated.php:168
925
- #, php-format
926
- msgid ""
927
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
928
- "replace it with %3s. If you close this message it'll appear again after "
929
- "deprecated shortcode reuse."
930
- msgstr ""
931
-
932
  #, fuzzy
933
  #~ msgid "Unlock premium options by upgrading to Pro version"
934
  #~ msgstr "Telli PRO versioon ja ava premium valikud."
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:15+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Feliks <feliks@veebimeister.com>\n"
9
  "Language: ca_ES\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:37 contact_form.php:1064
20
  msgid "Contact Form Settings"
21
  msgstr "Contact Form seaded"
22
 
23
+ #: contact_form.php:37
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
28
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
29
+ #: contact_form.php:3181 contact_form.php:3227
30
  msgid "Name"
31
  msgstr "Nimi"
32
 
33
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
34
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
35
+ #: contact_form.php:3233
36
  msgid "Address"
37
  msgstr "Aadress"
38
 
39
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
40
+ #: contact_form.php:1765
41
  msgid "Email Address"
42
  msgstr "E-maili aadress"
43
 
44
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
45
+ #: contact_form.php:1766
46
  msgid "Phone number"
47
  msgstr "Telefoni number"
48
 
49
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
50
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
51
+ #: contact_form.php:3242
52
  msgid "Subject"
53
  msgstr "Pealkiri"
54
 
55
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
56
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
57
+ #: contact_form.php:3246
58
  msgid "Message"
59
  msgstr "Sõnum"
60
 
61
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
62
+ #: contact_form.php:2058
63
  msgid "Attachment"
64
  msgstr "Manus"
65
 
66
+ #: contact_form.php:287
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
71
  "Toetatud failitüübid: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
72
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
75
  msgid "Send me a copy"
76
  msgstr "Saada mulle koopia"
77
 
78
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
79
  msgid "Submit"
80
  msgstr "Saada"
81
 
82
+ #: contact_form.php:290
83
  msgid "Your name is required."
84
  msgstr "Sinu nimi on kohustuslik."
85
 
86
+ #: contact_form.php:291
87
  msgid "Address is required."
88
  msgstr "Aadress on kohustuslik."
89
 
90
+ #: contact_form.php:292
91
  msgid "A valid email address is required."
92
  msgstr "Korrektne e-mail on kohustuslik."
93
 
94
+ #: contact_form.php:293
95
  msgid "Phone number is required."
96
  msgstr "Telefoni number on kohustuslik."
97
 
98
+ #: contact_form.php:294
99
  msgid "Subject is required."
100
  msgstr "Pealkiri on kohustuslik."
101
 
102
+ #: contact_form.php:295
103
  msgid "Message text is required."
104
  msgstr "Sõnumi tekst on kohustuslik."
105
 
106
+ #: contact_form.php:296
107
  msgid "File format is not valid."
108
  msgstr "Failiformaat pole toetatud."
109
 
110
+ #: contact_form.php:297
111
  msgid "File upload error."
112
  msgstr "Error faili üles laadimisel."
113
 
114
+ #: contact_form.php:298
115
  msgid "The file could not be uploaded."
116
  msgstr "Faili ei saanud üles laadida."
117
 
118
+ #: contact_form.php:299
119
  msgid "This file is too large."
120
  msgstr "See fail on liiga suur."
121
 
122
+ #: contact_form.php:300
123
  msgid "Please fill out the CAPTCHA."
124
  msgstr "Palun täida CAPTCHA."
125
 
126
+ #: contact_form.php:301
127
  msgid "Please make corrections below and try again."
128
  msgstr "Palun tee allolevad parandused ja proovi uuesti."
129
 
130
+ #: contact_form.php:303
131
  msgid "Thank you for contacting us."
132
  msgstr "Tänan meiega kontakteerumast."
133
 
134
+ #: contact_form.php:759 contact_form.php:1021
135
  msgid "Settings saved."
136
  msgstr "Seaded salvestatud."
137
 
138
+ #: contact_form.php:966
139
  msgid ""
140
  "Email 'FROM' field option was changed, which may cause email messages being "
141
  "moved to the spam folder or email delivery failures."
142
  msgstr ""
143
 
144
+ #: contact_form.php:976
145
  msgid ""
146
  "If the 'Redirect to page' option is selected then the URL field should be in "
147
  "the following format"
149
  "Kui 'Suuna lehele' valik on aktiveeritud, siis URL-i väli peab olema "
150
  "järgnevas formaadis"
151
 
152
+ #: contact_form.php:983
153
  msgid "Such user does not exist."
154
  msgstr "Sellist kasutajat ei eksisteeri. "
155
 
156
+ #: contact_form.php:993
157
  msgid ""
158
  "Please enter a valid email address in the 'Use this email address' field."
159
  msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
160
 
161
+ #: contact_form.php:1001
162
  msgid "Please enter a valid email address in the 'FROM' field."
163
  msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
164
 
165
+ #: contact_form.php:1023
166
  msgid "Settings are not saved."
167
  msgstr "Seaded pole salvestatud."
168
 
169
+ #: contact_form.php:1061
170
  msgid "All plugin settings were restored."
171
  msgstr ""
172
 
173
+ #: contact_form.php:1067
174
  msgid "How to Use Step-by-step Instruction"
175
  msgstr ""
176
 
177
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
178
  msgid "Settings"
179
  msgstr "Seaded"
180
 
181
+ #: contact_form.php:1071
182
  #, fuzzy
183
  msgid "Additional settings"
184
  msgstr "Opcions addicionals"
185
 
186
+ #: contact_form.php:1072
187
  msgid "Appearance"
188
  msgstr ""
189
 
190
+ #: contact_form.php:1073
191
  msgid "Custom code"
192
  msgstr ""
193
 
194
+ #: contact_form.php:1074
195
  msgid "Go PRO"
196
  msgstr "Telli PRO"
197
 
198
+ #: contact_form.php:1085
199
  #, fuzzy
200
  msgid "Notice"
201
  msgstr "Märkus:"
202
 
203
+ #: contact_form.php:1089
204
  msgid "NEW_FORM"
205
  msgstr ""
206
 
207
+ #: contact_form.php:1090
208
  msgid ""
209
  "If you want to create multiple contact forms, please install the Contact "
210
  "Form Multi plugin."
212
  "Kui soovid sisestada mitut kontaktivormi, siis installi Contact Form Multi "
213
  "plugin."
214
 
215
+ #: contact_form.php:1099
216
  #, fuzzy, php-format
217
  msgid ""
218
  "If you would like to add a Contact Form to your page or post, please use %s "
221
  "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see "
222
  "lühikood oma postitusele või lehele või moodulile:"
223
 
224
+ #: contact_form.php:1105
225
  #, php-format
226
  msgid ""
227
  "You can add the Contact Form to your page or post by clicking on %s button "
230
  "language."
231
  msgstr ""
232
 
233
+ #: contact_form.php:1114
234
  msgid ""
235
  "If you leave the fields empty, the messages will be sent to the email "
236
  "address specified during registration."
238
  "Kui sa jätad selle välja tühjaks, siis sõnumid saadetakse registreerumisel "
239
  "antud e-maili aadressile."
240
 
241
+ #: contact_form.php:1117
242
  #, fuzzy
243
  msgid "The user's email address"
244
  msgstr "Kasutaja e-maili aadress:"
245
 
246
+ #: contact_form.php:1121
247
  #, fuzzy
248
  msgid "Select a username"
249
  msgstr "Loo kasutajanimi"
250
 
251
+ #: contact_form.php:1134
252
  #, fuzzy
253
  msgid ""
254
  "Select a username of the person who should get the messages from the contact "
256
  msgstr ""
257
  "Sisesta selle isiku kasutajanimi, kes peaks saama sõnumid kontaktivormilt."
258
 
259
+ #: contact_form.php:1138
260
  #, fuzzy
261
  msgid "Use this email address"
262
  msgstr "Kasuta seda e-maili aadressi:"
263
 
264
+ #: contact_form.php:1142
265
  #, fuzzy
266
  msgid "Enter the email address for receiving messages"
267
  msgstr ""
268
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
269
 
270
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
271
+ #: contact_form.php:1957 contact_form.php:3514
272
  msgid "Close"
273
  msgstr ""
274
 
275
+ #: contact_form.php:1153
276
  #, fuzzy
277
  msgid "Add department selectbox to the contact form"
278
  msgstr "Lisa valikukast kontakti vormile:"
279
 
280
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
281
+ #: contact_form.php:2163
282
  msgid "If you upgrade to Pro version all your settings will be saved."
283
  msgstr "Kui sa lähed üle Pro versioonile, siis kõik seaded salvestatakse."
284
 
285
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
286
+ #: contact_form.php:1878 contact_form.php:2170
287
  msgid "Upgrade to Pro"
288
  msgstr ""
289
 
290
+ #: contact_form.php:1176
291
  msgid "Save emails to the database"
292
  msgstr "Salvesta e-mailid andmebaasi"
293
 
294
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
295
  msgid "Using"
296
  msgstr "Kasutan"
297
 
298
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
299
+ #: contact_form.php:1623
300
  msgid "Please activate the appropriate option on"
301
  msgstr ""
302
 
303
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
304
+ #: contact_form.php:1626
305
  #, fuzzy
306
  msgid "settings page"
307
  msgstr "seadete leht"
308
 
309
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
310
+ #: contact_form.php:1633
311
  msgid "Activate"
312
  msgstr "Aktiveeri"
313
 
314
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
315
+ #: contact_form.php:1638
316
  msgid "Download"
317
  msgstr "Descarregar"
318
 
319
+ #: contact_form.php:1222
320
  msgid "Sending method"
321
  msgstr ""
322
 
323
+ #: contact_form.php:1227
324
  msgid "Wp-mail"
325
  msgstr "Wp-mail"
326
 
327
+ #: contact_form.php:1229
328
  #, fuzzy
329
  msgid "You can use the Wordpress wp_mail function for mailing"
330
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
331
 
332
+ #: contact_form.php:1232
333
  msgid "Mail"
334
  msgstr "E-mail"
335
 
336
+ #: contact_form.php:1234
337
  #, fuzzy
338
  msgid "You can use the PHP mail function for mailing"
339
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
340
 
341
+ #: contact_form.php:1239
342
  msgid "'FROM' field"
343
  msgstr ""
344
 
345
+ #: contact_form.php:1255
346
  msgid "User name"
347
  msgstr "Kasutaja nimi"
348
 
349
+ #: contact_form.php:1257
350
  msgid ""
351
  "The name of the user who fills the form will be used in the field 'From'."
352
  msgstr "Kasutaja nime (kes täidab vormi) kasutatakse 'Kellelt' väljal."
353
 
354
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
355
  msgid "Email"
356
  msgstr "E-mail"
357
 
358
+ #: contact_form.php:1279
359
  msgid "User email"
360
  msgstr "Kasutaja e-mail"
361
 
362
+ #: contact_form.php:1281
363
  msgid ""
364
  "The email address of the user who fills the form will be used in the field "
365
  "'From'."
367
  "Selle kasutaja, kes täidab vormi, e-maili aadressi kasutatakse 'Kellelt' "
368
  "väljal."
369
 
370
+ #: contact_form.php:1290
371
  msgid ""
372
  "If this option is changed, email messages may be moved to the spam folder or "
373
  "email delivery failures may occur."
374
  msgstr ""
375
 
376
+ #: contact_form.php:1299
377
  msgid "Required symbol"
378
  msgstr "Nõutud sümbol"
379
 
380
+ #: contact_form.php:1309
381
  msgid "Fields"
382
  msgstr "Väljad"
383
 
384
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
385
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
386
  msgid "Used"
387
  msgstr "Kasutatud"
388
 
389
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
390
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
391
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
392
  msgid "Required"
393
  msgstr "Nõutud"
394
 
395
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
396
+ #: contact_form.php:1445 contact_form.php:1469
397
  msgid "Visible"
398
  msgstr "Nähtav"
399
 
400
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
401
+ #: contact_form.php:1449 contact_form.php:1473
402
  msgid "Disabled for editing"
403
  msgstr "Toimetamiseks välja lülitatud"
404
 
405
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
406
+ #: contact_form.php:1477
407
  msgid "Field's default value"
408
  msgstr "Välja vaikeseades väärtus"
409
 
410
+ #: contact_form.php:1322
411
  #, fuzzy
412
  msgid "Department selectbox"
413
  msgstr "Asukoha valik"
414
 
415
+ #: contact_form.php:1354
416
  msgid "Use User's name as a default value if the user is logged in."
417
  msgstr ""
418
 
419
+ #: contact_form.php:1355 contact_form.php:1415
420
  msgid ""
421
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
422
  "in users."
423
  msgstr ""
424
 
425
+ #: contact_form.php:1361
426
  msgid "Location selectbox"
427
  msgstr "Asukoha valik"
428
 
429
+ #: contact_form.php:1414
430
  msgid "Use User's email as a default value if the user is logged in."
431
  msgstr ""
432
 
433
+ #: contact_form.php:1498
434
  msgid "Attachment block"
435
  msgstr "Manuste blokk"
436
 
437
+ #: contact_form.php:1500
438
  msgid "Users can attach the following file formats"
439
  msgstr "Kasutajad saavad lisada manuseid järgnevates formaatides"
440
 
441
+ #: contact_form.php:1518
442
  msgid "Add to the form"
443
  msgstr "Lisa vormile"
444
 
445
+ #: contact_form.php:1523
446
  msgid "Tips below the Attachment"
447
  msgstr "Vihjed manuse alla"
448
 
449
+ #: contact_form.php:1530
450
  msgid "'Send me a copy' block"
451
  msgstr "'Saada mulle koopia' blokk"
452
 
453
+ #: contact_form.php:1558
454
  #, fuzzy
455
  msgid "Activate for network"
456
  msgstr "Plugin activat"
457
 
458
+ #: contact_form.php:1649
459
  msgid "Agreement checkbox"
460
  msgstr "Nõustumise kastike"
461
 
462
+ #: contact_form.php:1649
463
  msgid "Required checkbox for submitting the form"
464
  msgstr "Nõutud kastike vormi saatmiseks"
465
 
466
+ #: contact_form.php:1650
467
  msgid "Optional checkbox"
468
  msgstr "Valikuline kastike"
469
 
470
+ #: contact_form.php:1650
471
  msgid "Optional checkbox, the results of which will be displayed in email"
472
  msgstr "Valikuline kastike, mille tulemusi näidatakse e-mailis"
473
 
474
+ #: contact_form.php:1668
475
  msgid "Delete an attachment file from the server after the email is sent"
476
  msgstr "Kustuta manuse fail serverist peale e-maili saatmist"
477
 
478
+ #: contact_form.php:1674
479
  msgid "Email in HTML format sending"
480
  msgstr "E-maili saatmine HTML formaadis"
481
 
482
+ #: contact_form.php:1678
483
  msgid "Display additional info in the email"
484
  msgstr "Näita e-mailis lisainfot"
485
 
486
+ #: contact_form.php:1684
487
  #, fuzzy
488
  msgid "Sent from (IP address)"
489
  msgstr "Saadetud (IP aadress)"
490
 
491
+ #: contact_form.php:1684
492
  msgid "Example: Sent from (IP address):\t127.0.0.1"
493
  msgstr "Näide: Saadetud (IP address):\t127.0.0.1"
494
 
495
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
496
  msgid "Date/Time"
497
  msgstr "Kuupäev/Aeg"
498
 
499
+ #: contact_form.php:1685
500
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
501
  msgstr "Näide: Kuupäev/Aeg:\tAugust 19, 2013 8:50 pm"
502
 
503
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
504
  msgid "Sent from (referer)"
505
  msgstr "Saadetud (referer)"
506
 
507
+ #: contact_form.php:1686
508
  #, fuzzy
509
  msgid ""
510
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
511
  msgstr "Näide: Saatnud (referer):\thttp://veebimeister.com/"
512
 
513
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
514
  msgid "Using (user agent)"
515
  msgstr "Kasutab (user agent)"
516
 
517
+ #: contact_form.php:1687
518
  msgid ""
519
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
520
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
522
  "Näide: Kasutab (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
523
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
524
 
525
+ #: contact_form.php:1692
526
  msgid "Language settings for the field names in the form"
527
  msgstr "Vormi keeleseaded nimeväljadele"
528
 
529
+ #: contact_form.php:1701
530
  msgid "Add a language"
531
  msgstr "Lisa keel"
532
 
533
+ #: contact_form.php:1705
534
  msgid "Change the names of the contact form fields and error messages"
535
  msgstr "Muuda kontakti vormi väljade ja error-sõnumite nimesid"
536
 
537
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
538
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
539
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
540
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
541
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
542
  msgid "Default"
543
  msgstr "Vaikimisi valik"
544
 
545
+ #: contact_form.php:1723 contact_form.php:1761
546
  msgid "click to expand/hide the list"
547
  msgstr "avamiseks/sulgemiseks klikka"
548
 
549
+ #: contact_form.php:1732 contact_form.php:1770
550
  msgid "Tips below the Attachment block"
551
  msgstr "Vihje manuse bloki all"
552
 
553
+ #: contact_form.php:1735 contact_form.php:1773
554
  msgid "Error message for the Name field"
555
  msgstr "Error väljal 'Nimi'"
556
 
557
+ #: contact_form.php:1736 contact_form.php:1774
558
  msgid "Error message for the Address field"
559
  msgstr "Error väljal 'Aadress'"
560
 
561
+ #: contact_form.php:1737 contact_form.php:1775
562
  msgid "Error message for the Email field"
563
  msgstr "Error väljal 'E-mail'"
564
 
565
+ #: contact_form.php:1738 contact_form.php:1776
566
  msgid "Error message for the Phone field"
567
  msgstr "Error väljal 'Telefon'"
568
 
569
+ #: contact_form.php:1739 contact_form.php:1777
570
  msgid "Error message for the Subject field"
571
  msgstr "Error väljal 'Pealkiri'"
572
 
573
+ #: contact_form.php:1740 contact_form.php:1778
574
  msgid "Error message for the Message field"
575
  msgstr "Error väljal 'Sõnum'"
576
 
577
+ #: contact_form.php:1741 contact_form.php:1779
578
  msgid "Error message about the file type for the Attachment field"
579
  msgstr "Error faili tüübi kohta manuse väljal"
580
 
581
+ #: contact_form.php:1742 contact_form.php:1780
582
  msgid ""
583
  "Error message while uploading a file for the Attachment field to the server"
584
  msgstr "Error faili üles laadimisel serverisse manuse välja jaoks"
585
 
586
+ #: contact_form.php:1743 contact_form.php:1781
587
  msgid "Error message while moving the file for the Attachment field"
588
  msgstr "Error faili liigutamisel manuse väljale"
589
 
590
+ #: contact_form.php:1744 contact_form.php:1782
591
  msgid "Error message when file size limit for the Attachment field is exceeded"
592
  msgstr "Error ületades faili suuruse limiiti manuse väljal"
593
 
594
+ #: contact_form.php:1745 contact_form.php:1783
595
  msgid "Error message for the Captcha field"
596
  msgstr "Error väljal 'Captcha'"
597
 
598
+ #: contact_form.php:1746 contact_form.php:1784
599
  msgid "Error message for the whole form"
600
  msgstr "Error kogu vormi kohta"
601
 
602
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
603
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
604
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
605
+ #: contact_form.php:3604
606
  msgid "Use shortcode"
607
  msgstr "Kasuta lühikoodi"
608
 
609
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
610
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
611
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
612
+ #: contact_form.php:3604
613
  msgid "for this language"
614
  msgstr "selle keele jaoks"
615
 
616
+ #: contact_form.php:1797
617
  msgid "Use the changed names of the contact form fields in the email"
618
  msgstr "Kasuta kontaktivormi väljade muudetud nimesid emailis"
619
 
620
+ #: contact_form.php:1803
621
  msgid "Action after email is sent"
622
  msgstr "Tegevus peale e-maili saatmist"
623
 
624
+ #: contact_form.php:1805
625
  msgid "Display text"
626
  msgstr "Näita teksti"
627
 
628
+ #: contact_form.php:1819 contact_form.php:1833
629
  msgid "Text"
630
  msgstr "Tekst"
631
 
632
+ #: contact_form.php:1844
633
  msgid "Redirect to the page"
634
  msgstr "Suuna lehele"
635
 
636
+ #: contact_form.php:1845
637
  msgid "Url"
638
  msgstr "Url"
639
 
640
+ #: contact_form.php:1856
641
  msgid "Add field 'Reply-To' to the email header"
642
  msgstr ""
643
 
644
+ #: contact_form.php:1858
645
  msgid "Field 'Reply-To' will be initialized by user email"
646
  msgstr ""
647
 
648
+ #: contact_form.php:1862
649
  msgid "Auto Response"
650
  msgstr ""
651
 
652
+ #: contact_form.php:1866
653
  #, php-format
654
  msgid ""
655
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
657
  "name."
658
  msgstr ""
659
 
660
+ #: contact_form.php:1888 contact_form.php:2419
661
  msgid "Save Changes"
662
  msgstr "Salvesta muudatused"
663
 
664
+ #: contact_form.php:1901
665
  #, php-format
666
  msgid ""
667
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
668
  msgstr ""
669
 
670
+ #: contact_form.php:1901 contact_form.php:1910
671
  msgid "Form layout"
672
  msgstr ""
673
 
674
+ #: contact_form.php:1901 contact_form.php:1922
675
  #, fuzzy
676
  msgid "Submit position"
677
  msgstr "'Saada' nupp"
678
 
679
+ #: contact_form.php:1914
680
  msgid "One column"
681
  msgstr ""
682
 
683
+ #: contact_form.php:1917
684
  msgid "Two columns"
685
  msgstr ""
686
 
687
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
688
+ #: contact_form.php:1998
689
  msgid "Left"
690
  msgstr ""
691
 
692
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
693
+ #: contact_form.php:2004
694
  msgid "Right"
695
  msgstr ""
696
 
697
+ #: contact_form.php:1934
698
+ msgid "Width"
699
+ msgstr ""
700
+
701
+ #: contact_form.php:1941
702
+ msgid "Custom"
703
+ msgstr ""
704
+
705
+ #: contact_form.php:1948
706
+ msgid "px"
707
+ msgstr ""
708
+
709
+ #: contact_form.php:1961
710
  msgid "Form align"
711
  msgstr ""
712
 
713
+ #: contact_form.php:1968 contact_form.php:2001
714
  msgid "Center"
715
  msgstr ""
716
 
717
+ #: contact_form.php:1976
718
  #, fuzzy
719
  msgid "Labels position"
720
  msgstr "'Saada' nupp"
721
 
722
+ #: contact_form.php:1980
723
  msgid "Top"
724
  msgstr ""
725
 
726
+ #: contact_form.php:1989
727
  msgid "Bottom"
728
  msgstr ""
729
 
730
+ #: contact_form.php:1994
731
  msgid "Labels align"
732
  msgstr ""
733
 
734
+ #: contact_form.php:2009
735
  msgid "Errors output"
736
  msgstr "Errorite väljund"
737
 
738
+ #: contact_form.php:2012
739
  msgid "Display error messages"
740
  msgstr "Näita error-sõnumeid"
741
 
742
+ #: contact_form.php:2013
743
  msgid "Color of the input field errors."
744
  msgstr "Sisestusväljade errorite värv"
745
 
746
+ #: contact_form.php:2014
747
  msgid "Display error messages & color of the input field errors"
748
  msgstr "Näita error-sõnumeid ja sisestusväljade errorite värvi"
749
 
750
+ #: contact_form.php:2019
751
  msgid "Add placeholder to the input blocks"
752
  msgstr "Lisa kohahoidja sisestusblokkidele"
753
 
754
+ #: contact_form.php:2025
755
  msgid "Add tooltips"
756
  msgstr "Lisa vihjed"
757
 
758
+ #: contact_form.php:2039
759
  msgid "Email address"
760
  msgstr "E-maili aadress"
761
 
762
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
763
  msgid "Phone Number"
764
  msgstr "Telefoni number"
765
 
766
+ #: contact_form.php:2070
767
  msgid "Style options"
768
  msgstr "Stiili valikud"
769
 
770
+ #: contact_form.php:2074
771
  msgid "Text color"
772
  msgstr "Teksti värv"
773
 
774
+ #: contact_form.php:2079
775
  msgid "Label text color"
776
  msgstr "Sildi teksti värv"
777
 
778
+ #: contact_form.php:2084
779
  msgid "Placeholder color"
780
  msgstr "Kohahoidja värv"
781
 
782
+ #: contact_form.php:2089
783
  msgid "Errors color"
784
  msgstr "Errorite värv"
785
 
786
+ #: contact_form.php:2094
787
  msgid "Error text color"
788
  msgstr "Error-teksti värv"
789
 
790
+ #: contact_form.php:2099
791
  msgid "Background color of the input field errors"
792
  msgstr "Sisestusväljade errorite taustavärv"
793
 
794
+ #: contact_form.php:2104
795
  msgid "Border color of the input field errors"
796
  msgstr "Sisestusväljade errorite piirjoonte värv"
797
 
798
+ #: contact_form.php:2109
799
  msgid "Placeholder color of the input field errors"
800
  msgstr "Sisestusväljade errorite kohahoidja värv"
801
 
802
+ #: contact_form.php:2114
803
  msgid "Input fields"
804
  msgstr "Sisestusväljad"
805
 
806
+ #: contact_form.php:2119
807
  msgid "Input fields background color"
808
  msgstr "Sisestusväljade taustavärv"
809
 
810
+ #: contact_form.php:2124
811
  msgid "Text fields color"
812
  msgstr "Tekstiväljade värv"
813
 
814
+ #: contact_form.php:2128
815
  msgid "Border width in px, numbers only"
816
  msgstr "Piirjoone paksus pikslites. Ainult number"
817
 
818
+ #: contact_form.php:2133 contact_form.php:2157
819
  msgid "Border color"
820
  msgstr "Piirjoone värv"
821
 
822
+ #: contact_form.php:2138
823
  msgid "Submit button"
824
  msgstr "'Saada' nupp"
825
 
826
+ #: contact_form.php:2142
827
  msgid "Width in px, numbers only"
828
  msgstr "Laius pikslites, ainult numbrid"
829
 
830
+ #: contact_form.php:2147
831
  msgid "Button color"
832
  msgstr "Nupu värv"
833
 
834
+ #: contact_form.php:2152
835
  msgid "Button text color"
836
  msgstr "Nupu teksti värv"
837
 
838
+ #: contact_form.php:2181
839
  #, fuzzy
840
  msgid "Contact Form | Preview"
841
  msgstr "Contact Form Pro | Eelvaade"
842
 
843
+ #: contact_form.php:2182
844
  msgid "Drag the necessary field to sort fields."
845
  msgstr ""
846
 
847
+ #: contact_form.php:2408
848
  #, fuzzy
849
  msgid ""
850
  "If you would like to add the Contact Form to your website, just copy and "
853
  "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see "
854
  "lühikood oma postitusele või lehele või moodulile:"
855
 
856
+ #: contact_form.php:2536
857
  msgid "Sorry, email message could not be delivered."
858
  msgstr "Vabandust, see kiri jäi saatmata."
859
 
860
+ #: contact_form.php:3137 contact_form.php:3139
861
  msgid "Sent from (ip address)"
862
  msgstr "Saadetud (IP aadress)"
863
 
864
+ #: contact_form.php:3167
865
  msgid "Contact from"
866
  msgstr "Kontakti vorm"
867
 
868
+ #: contact_form.php:3172 contact_form.php:3221
869
  msgid "Site"
870
  msgstr "Leht"
871
 
872
+ #: contact_form.php:3351
873
  msgid ""
874
  "If you can see this MIME, it means that the MIME type is not supported by "
875
  "your email client!"
877
  "Kui sa näed seda MIME-t, siis MIME tüüp pole sinu e-maili kliendi poolt "
878
  "toetatud!"
879
 
880
+ #: contact_form.php:3434
881
  msgid "FAQ"
882
  msgstr "KKK"
883
 
884
+ #: contact_form.php:3435
885
  msgid "Support"
886
  msgstr "Klienditugi"
887
 
888
+ #: contact_form.php:3484
889
  msgid "Are you sure that you want to delete this language data?"
890
  msgstr "Oled sa kindel, et soovid kustutada selle keele andmeid?"
891
 
892
+ #: contact_form.php:3505
893
  #, fuzzy
894
  msgid "Add multiple forms"
895
  msgstr "Lisa vormile"
896
 
897
+ #: contact_form.php:3505
898
  msgid ""
899
  "Install Contact Form Multi plugin to create unlimited number of contact "
900
  "forms."
901
  msgstr ""
902
 
903
+ #: contact_form.php:3510
904
  #, fuzzy
905
  msgid "Learn more"
906
  msgstr "Uuri lähemalt"
907
 
908
+ #: contact_form.php:3751
909
  msgid "Close notice"
910
  msgstr ""
911
 
912
+ #: contact_form.php:3756
913
  #, fuzzy
914
  msgid "allows to store your messages to the database."
915
  msgstr ""
916
  "<strong>Contact Form to DB</strong> laseb sul salvestada sõnumeid andmebaasi."
917
 
918
+ #: contact_form.php:3757
919
  msgid "Manage messages that have been sent from your website."
920
  msgstr "Toimeta sõnumeid, mis on sulle saadetud sinu veebilehelt."
921
 
922
+ #: contact_form.php:3760
923
  msgid "Learn More"
924
  msgstr "Uuri lähemalt"
925
 
926
+ #: contact_form.php:3820
927
  #, fuzzy
928
  msgid "Contact form"
929
  msgstr "Kontakti vorm"
930
 
931
+ #: contact_form.php:3833 contact_form.php:3843
932
  #, fuzzy
933
  msgid "Language"
934
  msgstr "Lisa keel"
935
 
 
 
 
 
 
 
 
 
936
  #, fuzzy
937
  #~ msgid "Unlock premium options by upgrading to Pro version"
938
  #~ msgstr "Telli PRO versioon ja ava premium valikud."
languages/contact-form-plugin-fr_FR.mo CHANGED
Binary file
languages/contact-form-plugin-fr_FR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: contact-form-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-04-14 12:19+0300\n"
6
- "PO-Revision-Date: 2017-04-14 12:19+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -15,57 +15,57 @@ msgstr ""
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2;plural=n>2;\n"
18
- "X-Generator: Poedit 1.8.7.1\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: contact_form.php:42 contact_form.php:1066
22
  msgid "Contact Form Settings"
23
  msgstr "Options du formulaire de contact"
24
 
25
- #: contact_form.php:42
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
30
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
31
- #: contact_form.php:3138 contact_form.php:3184
32
  msgid "Name"
33
  msgstr "Nom"
34
 
35
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
36
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
37
- #: contact_form.php:3190
38
  msgid "Address"
39
  msgstr "Adresse"
40
 
41
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
42
- #: contact_form.php:1767
43
  msgid "Email Address"
44
  msgstr "Adresse e-mail"
45
 
46
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
47
- #: contact_form.php:1768
48
  msgid "Phone number"
49
  msgstr "Téléphone"
50
 
51
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
52
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
53
- #: contact_form.php:3199
54
  msgid "Subject"
55
  msgstr "Sujet"
56
 
57
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
58
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
59
- #: contact_form.php:3203
60
  msgid "Message"
61
  msgstr "Message"
62
 
63
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
64
- #: contact_form.php:2040
65
  msgid "Attachment"
66
  msgstr "Pièce jointe"
67
 
68
- #: contact_form.php:302
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -74,71 +74,71 @@ msgstr ""
74
  "TIFF, BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, "
75
  "MP3, PPT."
76
 
77
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
78
  msgid "Send me a copy"
79
  msgstr "M'envoyer une copie"
80
 
81
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
82
  msgid "Submit"
83
  msgstr "Envoyer"
84
 
85
- #: contact_form.php:305
86
  msgid "Your name is required."
87
  msgstr "Un nom est obligatoire."
88
 
89
- #: contact_form.php:306
90
  msgid "Address is required."
91
  msgstr "Une adresse est obligatoire."
92
 
93
- #: contact_form.php:307
94
  msgid "A valid email address is required."
95
  msgstr "Une adresse e-mail valide est obligatoire."
96
 
97
- #: contact_form.php:308
98
  msgid "Phone number is required."
99
  msgstr "Le numéro de téléphone est obligatoire."
100
 
101
- #: contact_form.php:309
102
  msgid "Subject is required."
103
  msgstr "Le sujet est obligatoire."
104
 
105
- #: contact_form.php:310
106
  msgid "Message text is required."
107
  msgstr "Un message est obligatoire."
108
 
109
- #: contact_form.php:311
110
  msgid "File format is not valid."
111
  msgstr "Le type de pièce jointe n'est pas valide."
112
 
113
- #: contact_form.php:312
114
  msgid "File upload error."
115
  msgstr "Erreur de chargement du fichier."
116
 
117
- #: contact_form.php:313
118
  msgid "The file could not be uploaded."
119
  msgstr "Le fichier n'a pas pu être envoyé."
120
 
121
- #: contact_form.php:314
122
  msgid "This file is too large."
123
  msgstr "Le fichier est trop volumineux."
124
 
125
- #: contact_form.php:315
126
  msgid "Please fill out the CAPTCHA."
127
  msgstr "Merci de compléter le CAPTCHA."
128
 
129
- #: contact_form.php:316
130
  msgid "Please make corrections below and try again."
131
  msgstr "Merci de faire les corrections suivantes et de réessayer."
132
 
133
- #: contact_form.php:318
134
  msgid "Thank you for contacting us."
135
  msgstr "Merci de nous avoir contacté."
136
 
137
- #: contact_form.php:761 contact_form.php:1023
138
  msgid "Settings saved."
139
  msgstr "Options enregistrées."
140
 
141
- #: contact_form.php:968
142
  msgid ""
143
  "Email 'FROM' field option was changed, which may cause email messages being "
144
  "moved to the spam folder or email delivery failures."
@@ -147,7 +147,7 @@ msgstr ""
147
  "entraîner un classement des messages dans les dossiers spam ou bien une "
148
  "erreur d'acheminement peut survenir."
149
 
150
- #: contact_form.php:978
151
  msgid ""
152
  "If the 'Redirect to page' option is selected then the URL field should be in "
153
  "the following format"
@@ -155,62 +155,62 @@ msgstr ""
155
  "Si l’option 'Rediriger vers la page' est positionnée, alors le champ Url "
156
  "doit être rempli avec le format suivant"
157
 
158
- #: contact_form.php:985
159
  msgid "Such user does not exist."
160
  msgstr "Cet utilisateur est inconnu."
161
 
162
- #: contact_form.php:995
163
  msgid ""
164
  "Please enter a valid email address in the 'Use this email address' field."
165
  msgstr ""
166
  "Merci de saisir une adresse e-mail valide pour le champ 'Utiliser cette "
167
  "adresse e-mail'."
168
 
169
- #: contact_form.php:1003
170
  msgid "Please enter a valid email address in the 'FROM' field."
171
  msgstr "Merci de saisir une adresse e-mail valide pour le champ 'FROM'."
172
 
173
- #: contact_form.php:1025
174
  msgid "Settings are not saved."
175
  msgstr "Paramètres non enregistrées."
176
 
177
- #: contact_form.php:1063
178
  msgid "All plugin settings were restored."
179
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
180
 
181
- #: contact_form.php:1069
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr "Mode d'emploi pas à pas"
184
 
185
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
186
  msgid "Settings"
187
  msgstr "Réglages"
188
 
189
- #: contact_form.php:1073
190
  msgid "Additional settings"
191
  msgstr "Options supplémentaires"
192
 
193
- #: contact_form.php:1074
194
  msgid "Appearance"
195
  msgstr "Aspect"
196
 
197
- #: contact_form.php:1075
198
  msgid "Custom code"
199
  msgstr "Personnaliser"
200
 
201
- #: contact_form.php:1076
202
  msgid "Go PRO"
203
  msgstr "Choisir la version PRO"
204
 
205
- #: contact_form.php:1087
206
  msgid "Notice"
207
  msgstr "Avertissement"
208
 
209
- #: contact_form.php:1091
210
  msgid "NEW_FORM"
211
  msgstr "Nouveau Formulaire"
212
 
213
- #: contact_form.php:1092
214
  msgid ""
215
  "If you want to create multiple contact forms, please install the Contact "
216
  "Form Multi plugin."
@@ -218,7 +218,7 @@ msgstr ""
218
  "Si vous voulez créer plusieurs formulaire de contact, merci d'installer "
219
  "l'extension 'Contact Form Multi'"
220
 
221
- #: contact_form.php:1101
222
  #, php-format
223
  msgid ""
224
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -227,7 +227,7 @@ msgstr ""
227
  "Si vous souhaitez ajouter un formulaire de contact à votre page ou votre "
228
  "article, merci d’utiliser le bouton %s"
229
 
230
- #: contact_form.php:1107
231
  #, php-format
232
  msgid ""
233
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -240,7 +240,7 @@ msgstr ""
240
  "bouton n'est pas affiché, merci d'utiliser le code court %s ou %s où * est à "
241
  "remplacer par la langue du formulaire de contact."
242
 
243
- #: contact_form.php:1116
244
  msgid ""
245
  "If you leave the fields empty, the messages will be sent to the email "
246
  "address specified during registration."
@@ -248,15 +248,15 @@ msgstr ""
248
  "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
249
  "l'adresse spécifiée lors de l'enregistrement."
250
 
251
- #: contact_form.php:1119
252
  msgid "The user's email address"
253
  msgstr "Utiliser l'e-mail du compte WordPress"
254
 
255
- #: contact_form.php:1123
256
  msgid "Select a username"
257
  msgstr "Choisir un nom d'utilisateur"
258
 
259
- #: contact_form.php:1136
260
  msgid ""
261
  "Select a username of the person who should get the messages from the contact "
262
  "form."
@@ -264,111 +264,111 @@ msgstr ""
264
  "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
265
  "formulaire de contact."
266
 
267
- #: contact_form.php:1140
268
  msgid "Use this email address"
269
  msgstr "Utiliser cette adresse e-mail"
270
 
271
- #: contact_form.php:1144
272
  msgid "Enter the email address for receiving messages"
273
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages"
274
 
275
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
276
- #: contact_form.php:1939 contact_form.php:3471
277
  msgid "Close"
278
  msgstr "Fermer"
279
 
280
- #: contact_form.php:1155
281
  msgid "Add department selectbox to the contact form"
282
  msgstr ""
283
  "Ajouter la liste déroulante pour le département dans le formulaire de contact"
284
 
285
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
286
- #: contact_form.php:2145
287
  msgid "If you upgrade to Pro version all your settings will be saved."
288
  msgstr ""
289
  "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
290
 
291
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
292
- #: contact_form.php:1880 contact_form.php:2152
293
  msgid "Upgrade to Pro"
294
  msgstr "Passer à la version PRO"
295
 
296
- #: contact_form.php:1178
297
  msgid "Save emails to the database"
298
  msgstr "Enregistrer les e-mails dans la base de données"
299
 
300
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
301
  msgid "Using"
302
  msgstr "Utilisant"
303
 
304
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
305
- #: contact_form.php:1625
306
  msgid "Please activate the appropriate option on"
307
  msgstr "Merci de configure les options appropriées sur"
308
 
309
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
310
- #: contact_form.php:1628
311
  msgid "settings page"
312
  msgstr "Page des paramètres"
313
 
314
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
315
- #: contact_form.php:1635
316
  msgid "Activate"
317
  msgstr "Activé"
318
 
319
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
320
- #: contact_form.php:1640
321
  msgid "Download"
322
  msgstr "Téléchargement"
323
 
324
- #: contact_form.php:1224
325
  msgid "Sending method"
326
  msgstr "Méthode pour l'envoie"
327
 
328
- #: contact_form.php:1229
329
  msgid "Wp-mail"
330
  msgstr "Wp-mail"
331
 
332
- #: contact_form.php:1231
333
  msgid "You can use the Wordpress wp_mail function for mailing"
334
  msgstr ""
335
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
336
  "WordPress "
337
 
338
- #: contact_form.php:1234
339
  msgid "Mail"
340
  msgstr "E-mail"
341
 
342
- #: contact_form.php:1236
343
  msgid "You can use the PHP mail function for mailing"
344
  msgstr ""
345
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
346
  "WordPress "
347
 
348
- #: contact_form.php:1241
349
  msgid "'FROM' field"
350
  msgstr "Champ 'From'"
351
 
352
- #: contact_form.php:1257
353
  msgid "User name"
354
  msgstr "Nom de l’utilisateur"
355
 
356
- #: contact_form.php:1259
357
  msgid ""
358
  "The name of the user who fills the form will be used in the field 'From'."
359
  msgstr ""
360
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
361
  "l’utilisateur qui rempli le formulaire."
362
 
363
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
364
  msgid "Email"
365
  msgstr "E-mail"
366
 
367
- #: contact_form.php:1281
368
  msgid "User email"
369
  msgstr "E-mail de l’utilisateur"
370
 
371
- #: contact_form.php:1283
372
  msgid ""
373
  "The email address of the user who fills the form will be used in the field "
374
  "'From'."
@@ -376,7 +376,7 @@ msgstr ""
376
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
377
  "l’utilisateur qui rempli le formulaire."
378
 
379
- #: contact_form.php:1292
380
  msgid ""
381
  "If this option is changed, email messages may be moved to the spam folder or "
382
  "email delivery failures may occur."
@@ -384,51 +384,51 @@ msgstr ""
384
  "Si cette option est modifiée, les courriels pourront se retrouver classer "
385
  "dans le dossier spam ou bien une erreur d'acheminement peut survenir."
386
 
387
- #: contact_form.php:1301
388
  msgid "Required symbol"
389
  msgstr "Symbole obligatoire"
390
 
391
- #: contact_form.php:1311
392
  msgid "Fields"
393
  msgstr "Champs"
394
 
395
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
396
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
397
  msgid "Used"
398
  msgstr "Utilisé"
399
 
400
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
401
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
402
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
403
  msgid "Required"
404
  msgstr "Obligatoire"
405
 
406
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
407
- #: contact_form.php:1447 contact_form.php:1471
408
  msgid "Visible"
409
  msgstr "Visible"
410
 
411
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
412
- #: contact_form.php:1451 contact_form.php:1475
413
  msgid "Disabled for editing"
414
  msgstr "Non actif pour l'édition"
415
 
416
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
417
- #: contact_form.php:1479
418
  msgid "Field's default value"
419
  msgstr "Valeur par défaut du champ"
420
 
421
- #: contact_form.php:1324
422
  msgid "Department selectbox"
423
  msgstr "Liste déroulante des localisations"
424
 
425
- #: contact_form.php:1356
426
  msgid "Use User's name as a default value if the user is logged in."
427
  msgstr ""
428
  "Utiliser le nom de l'utilisateur comme valeur par défaut si un utilisateur "
429
  "est connecté."
430
 
431
- #: contact_form.php:1357 contact_form.php:1417
432
  msgid ""
433
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
434
  "in users."
@@ -436,100 +436,100 @@ msgstr ""
436
  "'Visible' et 'Inactif' pour modifier les options ne seront appliqués qu'aux "
437
  "utilisateurs connectés."
438
 
439
- #: contact_form.php:1363
440
  msgid "Location selectbox"
441
  msgstr "Liste déroulante des localisations"
442
 
443
- #: contact_form.php:1416
444
  msgid "Use User's email as a default value if the user is logged in."
445
  msgstr ""
446
  "Utiliser l'adresse e-mail de l'utilisateur comme valeur par défaut si un "
447
  "utilisateur est connecté."
448
 
449
- #: contact_form.php:1500
450
  msgid "Attachment block"
451
  msgstr "Bloc pièce jointe"
452
 
453
- #: contact_form.php:1502
454
  msgid "Users can attach the following file formats"
455
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
456
 
457
- #: contact_form.php:1520
458
  msgid "Add to the form"
459
  msgstr "Ajouter au formulaire"
460
 
461
- #: contact_form.php:1525
462
  msgid "Tips below the Attachment"
463
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
464
 
465
- #: contact_form.php:1532
466
  msgid "'Send me a copy' block"
467
  msgstr "Afficher le bloc \"M'envoyer une copie\""
468
 
469
- #: contact_form.php:1560
470
  msgid "Activate for network"
471
  msgstr "Activer pour le réseau"
472
 
473
- #: contact_form.php:1651
474
  msgid "Agreement checkbox"
475
  msgstr "Case à cocher pour valider le formulaire"
476
 
477
- #: contact_form.php:1651
478
  msgid "Required checkbox for submitting the form"
479
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
480
 
481
- #: contact_form.php:1652
482
  msgid "Optional checkbox"
483
  msgstr "Boite à cocher optionnelle"
484
 
485
- #: contact_form.php:1652
486
  msgid "Optional checkbox, the results of which will be displayed in email"
487
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans le courriel"
488
 
489
- #: contact_form.php:1670
490
  msgid "Delete an attachment file from the server after the email is sent"
491
  msgstr "Supprimer le fichier joint sur le serveur après l'envoie du courriel"
492
 
493
- #: contact_form.php:1676
494
  msgid "Email in HTML format sending"
495
  msgstr "Courriel au format HTML"
496
 
497
- #: contact_form.php:1680
498
  msgid "Display additional info in the email"
499
  msgstr "Afficher les informations complémentaires dans le courriel"
500
 
501
- #: contact_form.php:1686
502
  msgid "Sent from (IP address)"
503
  msgstr "Envoyé de (adresse IP)"
504
 
505
- #: contact_form.php:1686
506
  msgid "Example: Sent from (IP address):\t127.0.0.1"
507
  msgstr "Exemple: Envoyé de (adresse IP)&nbsp;:\t127.0.0.1"
508
 
509
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
510
  msgid "Date/Time"
511
  msgstr "Date/Heure"
512
 
513
- #: contact_form.php:1687
514
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
515
  msgstr "Exemple: Date/Heure&nbsp;:\tAoût 19, 2013 8:50pm"
516
 
517
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
518
  msgid "Sent from (referer)"
519
  msgstr "Envoyer de (référence)"
520
 
521
- #: contact_form.php:1688
522
  msgid ""
523
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
524
  msgstr ""
525
  "Exemple&nbsp;: Envoyer de (referer) :\thttp://bestwebsoft.com/contacts/"
526
  "contact-us/"
527
 
528
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
529
  msgid "Using (user agent)"
530
  msgstr "Depuis (navigateur)"
531
 
532
- #: contact_form.php:1689
533
  msgid ""
534
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
535
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -538,142 +538,142 @@ msgstr ""
538
  "WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 "
539
  "Safari/537.36"
540
 
541
- #: contact_form.php:1694
542
  msgid "Language settings for the field names in the form"
543
  msgstr "Définition des langues pour les titres des champs"
544
 
545
- #: contact_form.php:1703
546
  msgid "Add a language"
547
  msgstr "Ajouter une langue"
548
 
549
- #: contact_form.php:1707
550
  msgid "Change the names of the contact form fields and error messages"
551
  msgstr ""
552
  "Modifier le texte pour les champs du formulaire de contact et les messages "
553
  "d'erreur"
554
 
555
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
556
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
557
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
558
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
559
- #: contact_form.php:2132 contact_form.php:2137
560
  msgid "Default"
561
  msgstr "Défaut"
562
 
563
- #: contact_form.php:1725 contact_form.php:1763
564
  msgid "click to expand/hide the list"
565
  msgstr "cliquer pour voir/cacher la liste"
566
 
567
- #: contact_form.php:1734 contact_form.php:1772
568
  msgid "Tips below the Attachment block"
569
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
570
 
571
- #: contact_form.php:1737 contact_form.php:1775
572
  msgid "Error message for the Name field"
573
  msgstr "Message d'erreur pour le champ nom"
574
 
575
- #: contact_form.php:1738 contact_form.php:1776
576
  msgid "Error message for the Address field"
577
  msgstr "Message d'erreur pour le champ Adresse"
578
 
579
- #: contact_form.php:1739 contact_form.php:1777
580
  msgid "Error message for the Email field"
581
  msgstr "Message d'erreur pour le champ e-mail"
582
 
583
- #: contact_form.php:1740 contact_form.php:1778
584
  msgid "Error message for the Phone field"
585
  msgstr "Message d'erreur pour le champ téléphone"
586
 
587
- #: contact_form.php:1741 contact_form.php:1779
588
  msgid "Error message for the Subject field"
589
  msgstr "Message d'erreur pour le champ sujet"
590
 
591
- #: contact_form.php:1742 contact_form.php:1780
592
  msgid "Error message for the Message field"
593
  msgstr "Message d'erreur pour le champ message"
594
 
595
- #: contact_form.php:1743 contact_form.php:1781
596
  msgid "Error message about the file type for the Attachment field"
597
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
598
 
599
- #: contact_form.php:1744 contact_form.php:1782
600
  msgid ""
601
  "Error message while uploading a file for the Attachment field to the server"
602
  msgstr ""
603
  "Message d'erreur pour le champ fichier joint (problème d'envoi vers le "
604
  "serveur)"
605
 
606
- #: contact_form.php:1745 contact_form.php:1783
607
  msgid "Error message while moving the file for the Attachment field"
608
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
609
 
610
- #: contact_form.php:1746 contact_form.php:1784
611
  msgid "Error message when file size limit for the Attachment field is exceeded"
612
  msgstr ""
613
  "Message d'erreur pour le champ fichier joint (taille limite du fichier "
614
  "atteinte)"
615
 
616
- #: contact_form.php:1747 contact_form.php:1785
617
  msgid "Error message for the Captcha field"
618
  msgstr "Message d'erreur pour le captcha"
619
 
620
- #: contact_form.php:1748 contact_form.php:1786
621
  msgid "Error message for the whole form"
622
  msgstr "Message d'erreur demandant à compléter les champs manquants"
623
 
624
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
625
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
626
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
627
- #: contact_form.php:3540
628
  msgid "Use shortcode"
629
  msgstr "Utiliser le code court"
630
 
631
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
632
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
633
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
634
- #: contact_form.php:3540
635
  msgid "for this language"
636
  msgstr "pour cette langue"
637
 
638
- #: contact_form.php:1799
639
  msgid "Use the changed names of the contact form fields in the email"
640
  msgstr "Utiliser les noms des champs modifiés dans les courriels"
641
 
642
- #: contact_form.php:1805
643
  msgid "Action after email is sent"
644
  msgstr "Action après l'envoie du courriel"
645
 
646
- #: contact_form.php:1807
647
  msgid "Display text"
648
  msgstr "Afficher le texte"
649
 
650
- #: contact_form.php:1821 contact_form.php:1835
651
  msgid "Text"
652
  msgstr "Texte"
653
 
654
- #: contact_form.php:1846
655
  msgid "Redirect to the page"
656
  msgstr "Rediriger vers la page"
657
 
658
- #: contact_form.php:1847
659
  msgid "Url"
660
  msgstr "Url"
661
 
662
- #: contact_form.php:1858
663
  msgid "Add field 'Reply-To' to the email header"
664
  msgstr "Ajouter le champ 'Répondre à/Reply-To' dans l'entête du courriel"
665
 
666
- #: contact_form.php:1860
667
  msgid "Field 'Reply-To' will be initialized by user email"
668
  msgstr ""
669
  "Le champ 'Répondre à/Reply-To' sera rempli avec l'adresse e-mail de "
670
  "l'utilisateur"
671
 
672
- #: contact_form.php:1864
673
  msgid "Auto Response"
674
  msgstr "Réponse automatique"
675
 
676
- #: contact_form.php:1868
677
  #, php-format
678
  msgid ""
679
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -684,11 +684,11 @@ msgstr ""
684
  "%%MESSAGE%% pour afficher des données du champ message, de même %%SITENAME%% "
685
  "pour afficher le nom du site."
686
 
687
- #: contact_form.php:1890 contact_form.php:2389
688
  msgid "Save Changes"
689
  msgstr "Enregistrer les modifications"
690
 
691
- #: contact_form.php:1903
692
  #, php-format
693
  msgid ""
694
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
@@ -696,171 +696,184 @@ msgstr ""
696
  "Merci d'activer le java-script pour modifier les options '%s', '%s' ainsi "
697
  "que pour trier les champs."
698
 
699
- #: contact_form.php:1903 contact_form.php:1912
700
  msgid "Form layout"
701
  msgstr "Structure du formulaire"
702
 
703
- #: contact_form.php:1903 contact_form.php:1924
704
  msgid "Submit position"
705
  msgstr "Position du bouton envoyer"
706
 
707
- #: contact_form.php:1916
708
  msgid "One column"
709
  msgstr "Une colonne"
710
 
711
- #: contact_form.php:1919
712
  msgid "Two columns"
713
  msgstr "Deux colonnes"
714
 
715
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
716
- #: contact_form.php:1980
717
  msgid "Left"
718
  msgstr "Gauche"
719
 
720
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
721
- #: contact_form.php:1986
722
  msgid "Right"
723
  msgstr "Droite"
724
 
725
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
 
726
  msgid "Form align"
727
  msgstr "Alignement des champs"
728
 
729
- #: contact_form.php:1950 contact_form.php:1983
730
  msgid "Center"
731
  msgstr "Centre"
732
 
733
- #: contact_form.php:1958
734
  msgid "Labels position"
735
  msgstr "Position des textes"
736
 
737
- #: contact_form.php:1962
738
  msgid "Top"
739
  msgstr "Haut"
740
 
741
- #: contact_form.php:1971
742
  msgid "Bottom"
743
  msgstr "Bas"
744
 
745
- #: contact_form.php:1976
746
  msgid "Labels align"
747
  msgstr "Alignement des textes"
748
 
749
- #: contact_form.php:1991
750
  msgid "Errors output"
751
  msgstr "Affichage des erreurs"
752
 
753
- #: contact_form.php:1994
754
  msgid "Display error messages"
755
  msgstr "Afficher les messages d'erreur"
756
 
757
- #: contact_form.php:1995
758
  msgid "Color of the input field errors."
759
  msgstr "Mettre en couleur les champs ayant des erreurs"
760
 
761
- #: contact_form.php:1996
762
  msgid "Display error messages & color of the input field errors"
763
  msgstr ""
764
  "Afficher les messages d'erreur et mettre en couleur les champs ayant des "
765
  "erreurs"
766
 
767
- #: contact_form.php:2001
768
  msgid "Add placeholder to the input blocks"
769
  msgstr "Ajouter la localisation dans le bloc de saisie"
770
 
771
- #: contact_form.php:2007
772
  msgid "Add tooltips"
773
  msgstr "Ajouter les conseils"
774
 
775
- #: contact_form.php:2021
776
  msgid "Email address"
777
  msgstr "Adresse e-mail"
778
 
779
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
780
  msgid "Phone Number"
781
  msgstr "Téléphone"
782
 
783
- #: contact_form.php:2052
784
  msgid "Style options"
785
  msgstr "Options de style"
786
 
787
- #: contact_form.php:2056
788
  msgid "Text color"
789
  msgstr "Couleur du texte"
790
 
791
- #: contact_form.php:2061
792
  msgid "Label text color"
793
  msgstr "Couleur des textes des intitulés"
794
 
795
- #: contact_form.php:2066
796
  msgid "Placeholder color"
797
  msgstr "Couleur pour la localisation"
798
 
799
- #: contact_form.php:2071
800
  msgid "Errors color"
801
  msgstr "Couleur pour les erreurs"
802
 
803
- #: contact_form.php:2076
804
  msgid "Error text color"
805
  msgstr "Couleur pour le texte des erreurs"
806
 
807
- #: contact_form.php:2081
808
  msgid "Background color of the input field errors"
809
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
810
 
811
- #: contact_form.php:2086
812
  msgid "Border color of the input field errors"
813
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
814
 
815
- #: contact_form.php:2091
816
  msgid "Placeholder color of the input field errors"
817
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
818
 
819
- #: contact_form.php:2096
820
  msgid "Input fields"
821
  msgstr "Champs de saisie"
822
 
823
- #: contact_form.php:2101
824
  msgid "Input fields background color"
825
  msgstr "Couleur de fond pour les champs de saisie"
826
 
827
- #: contact_form.php:2106
828
  msgid "Text fields color"
829
  msgstr "Couleur pour les textes des champs de saisie"
830
 
831
- #: contact_form.php:2110
832
  msgid "Border width in px, numbers only"
833
  msgstr "Largeur des bordures en px, nombre seulement"
834
 
835
- #: contact_form.php:2115 contact_form.php:2139
836
  msgid "Border color"
837
  msgstr "Couleur des bordures"
838
 
839
- #: contact_form.php:2120
840
  msgid "Submit button"
841
  msgstr "Bouton Envoyer"
842
 
843
- #: contact_form.php:2124
844
  msgid "Width in px, numbers only"
845
  msgstr "Largeur en px, nombre seulement"
846
 
847
- #: contact_form.php:2129
848
  msgid "Button color"
849
  msgstr "Couleur du bouton"
850
 
851
- #: contact_form.php:2134
852
  msgid "Button text color"
853
  msgstr "Couleur du texte du bouton"
854
 
855
- #: contact_form.php:2163
856
  msgid "Contact Form | Preview"
857
  msgstr "Formulaire de Contact | Prévisualisation"
858
 
859
- #: contact_form.php:2164
860
  msgid "Drag the necessary field to sort fields."
861
  msgstr "Déposer les champs nécessaires dans la liste des tris."
862
 
863
- #: contact_form.php:2376
864
  msgid ""
865
  "If you would like to add the Contact Form to your website, just copy and "
866
  "paste this shortcode to your post or page or widget"
@@ -868,23 +881,23 @@ msgstr ""
868
  "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
869
  "juste ce code dans un article ou sur une page ou un widget"
870
 
871
- #: contact_form.php:2504
872
  msgid "Sorry, email message could not be delivered."
873
  msgstr "Désolé, votre courriel n'a pas pu être envoyé."
874
 
875
- #: contact_form.php:3094 contact_form.php:3096
876
  msgid "Sent from (ip address)"
877
  msgstr "Envoyé de (adresse IP)"
878
 
879
- #: contact_form.php:3124
880
  msgid "Contact from"
881
  msgstr "Contact de"
882
 
883
- #: contact_form.php:3129 contact_form.php:3178
884
  msgid "Site"
885
  msgstr "Site"
886
 
887
- #: contact_form.php:3308
888
  msgid ""
889
  "If you can see this MIME, it means that the MIME type is not supported by "
890
  "your email client!"
@@ -892,23 +905,23 @@ msgstr ""
892
  "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
893
  "MIME !"
894
 
895
- #: contact_form.php:3391
896
  msgid "FAQ"
897
  msgstr "FAQ"
898
 
899
- #: contact_form.php:3392
900
  msgid "Support"
901
  msgstr "Support"
902
 
903
- #: contact_form.php:3441
904
  msgid "Are you sure that you want to delete this language data?"
905
  msgstr "Êtes vous sûr de vouloir supprimer cette langue ?"
906
 
907
- #: contact_form.php:3462
908
  msgid "Add multiple forms"
909
  msgstr "Ajouter plusieurs formulaires"
910
 
911
- #: contact_form.php:3462
912
  msgid ""
913
  "Install Contact Form Multi plugin to create unlimited number of contact "
914
  "forms."
@@ -916,213 +929,235 @@ msgstr ""
916
  "Installer l'extension 'Contact Form Multi' pour créer un nombre infini de "
917
  "formulaires de contact."
918
 
919
- #: contact_form.php:3467
920
  msgid "Learn more"
921
  msgstr "Lire la suite"
922
 
923
- #: contact_form.php:3693
924
  msgid "Close notice"
925
  msgstr "Fermer l'avertissement"
926
 
927
- #: contact_form.php:3698
928
  msgid "allows to store your messages to the database."
929
  msgstr "permet d'enregistrer les messages dans la base de données."
930
 
931
- #: contact_form.php:3699
932
  msgid "Manage messages that have been sent from your website."
933
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
934
 
935
- #: contact_form.php:3702
936
  msgid "Learn More"
937
  msgstr "Lire la suite"
938
 
939
- #: contact_form.php:3762
940
  msgid "Contact form"
941
  msgstr "Formulaire de contact"
942
 
943
- #: contact_form.php:3775 contact_form.php:3785
944
  msgid "Language"
945
  msgstr "Langue"
946
 
947
- #: includes/deprecated.php:168
948
- #, php-format
949
- msgid ""
950
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
951
- "replace it with %3s. If you close this message it'll appear again after "
952
- "deprecated shortcode reuse."
953
- msgstr ""
954
- "Le code court %1s de l'extension %2s n'est plus utilisable mais se trouve "
955
- "dans votre site. Merci de le remplacer par %3s. Si vous fermez ce message, "
956
- "il réapparaîtra a chaque utilisation du code court en cause."
957
-
958
- #~ msgid "Information"
959
- #~ msgstr "Informations"
960
 
961
- #~ msgid "Inactive"
962
- #~ msgstr "Inactives"
 
 
 
 
963
 
964
- #~ msgid "Expired"
965
- #~ msgstr "Expiré"
966
 
967
- #~ msgid "%s day(-s) left"
968
- #~ msgstr "%s (jour(s) restant"
969
 
970
- #~ msgid "Expired on %s"
971
- #~ msgstr "Se termine le %s"
972
 
973
- #~ msgid "Renew Now"
974
- #~ msgstr "Renouveler maintenant"
975
 
976
- #~ msgid "Active"
977
- #~ msgstr "Active"
978
 
979
- #~ msgid "License"
980
- #~ msgstr "License"
981
 
982
- #~ msgid "Status"
983
- #~ msgstr "Etat"
984
 
985
- #~ msgid "Version"
986
- #~ msgstr "Version"
987
 
988
- #~ msgid "Custom Code"
989
- #~ msgstr "Code personnaliser"
990
 
991
  #~ msgid ""
992
- #~ "You do not have sufficient permissions to edit plugins for this site."
993
- #~ msgstr ""
994
- #~ "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
995
-
996
- #~ msgid "These styles will be added to the header on all pages of your site."
997
  #~ msgstr ""
998
- #~ "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
 
 
 
 
999
 
1000
  #~ msgid ""
1001
- #~ "This PHP code will be hooked to the %s action and will be printed on "
1002
- #~ "front end only."
1003
  #~ msgstr ""
1004
- #~ "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
1005
- #~ "partie publique."
1006
-
1007
- #~ msgid "These code will be added to the header on all pages of your site."
1008
- #~ msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
1009
 
1010
  #~ msgid ""
1011
- #~ "You need to make this files writable before you can save your changes. "
1012
- #~ "See %s the Codex %s for more information."
1013
  #~ msgstr ""
1014
- #~ "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
1015
- #~ "modifications. Regarder %s du Codex %s pour plus d'informations."
1016
-
1017
- #~ msgid "Browsing"
1018
- #~ msgstr "Parcourir"
1019
 
1020
- #~ msgid "Activate custom %s code."
1021
- #~ msgstr "Activer le code personalisé %s."
 
 
1022
 
1023
- #~ msgid "Learn more about %s"
1024
- #~ msgstr "En savoir plus sur %s"
 
1025
 
1026
- #~ msgid "Miscellaneous Settings"
1027
- #~ msgstr "Paramètres divers"
1028
 
1029
  #~ msgid ""
1030
- #~ "It is prohibited to change %s settings on this site in the %s network "
1031
- #~ "settings."
1032
  #~ msgstr ""
1033
- #~ "Il est interdit de modifier le paramètre %s sur ce site dans les "
1034
- #~ "paramètres du réseau %s."
1035
 
1036
- #~ msgid ""
1037
- #~ "It is prohibited to view %s settings on this site in the %s network "
1038
- #~ "settings."
1039
- #~ msgstr ""
1040
- #~ "Il est interdit de voir le paramètre %s sur ce site dans les paramètres "
1041
- #~ "réseaux %s."
1042
 
1043
- #~ msgid "Pro Options"
1044
- #~ msgstr "Extensions Pro"
1045
 
1046
- #~ msgid "Enable to display plugin Pro options."
1047
- #~ msgstr "Activer pour voir les options PRO."
1048
 
1049
- #~ msgid "Track Usage"
1050
- #~ msgstr "Suivre l'utilisation"
1051
 
1052
- #~ msgid ""
1053
- #~ "Enable to allow tracking plugin usage anonymously in order to make it "
1054
- #~ "better."
1055
- #~ msgstr ""
1056
- #~ "Activer pour autoriser le suivi de l'usage de l'extension de manière "
1057
- #~ "anonyme afin de la rendre meilleur."
1058
 
1059
- #~ msgid "Default Settings"
1060
- #~ msgstr "Réglages par défaut"
1061
 
1062
- #~ msgid "Restore Settings"
1063
- #~ msgstr "Remettre les paramètres"
1064
 
1065
- #~ msgid "This will restore plugin settings to defaults."
1066
- #~ msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
1067
 
1068
- #~ msgid "Import / Export"
1069
- #~ msgstr "Import / Export"
 
 
 
 
1070
 
1071
- #~ msgid "License Key"
1072
- #~ msgstr "Clé de licence"
1073
 
1074
- #~ msgid "Congratulations! Pro license is activated successfully."
1075
- #~ msgstr ""
1076
- #~ "Félicitations! La version PRO de cette extension a été activée avec "
1077
- #~ "succès."
1078
 
1079
- #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1080
- #~ msgstr "Vous allez être redirigé automatiquement vers %s dans 7 secondes."
1081
 
1082
- #~ msgid "Settings page"
1083
- #~ msgstr "Page des paramètres"
 
 
1084
 
1085
  #~ msgid ""
1086
- #~ "Enter your license key to activate %s and get premium plugin features."
 
1087
  #~ msgstr ""
1088
- #~ "Saisir votre clé de licence pour activer %s et obtenir les "
1089
- #~ "fonctionnalités premium."
 
 
 
1090
 
1091
  #~ msgid ""
1092
- #~ "Unfortunately, you have exceeded the number of available tries per day. "
1093
- #~ "Please, upload the plugin manually."
1094
  #~ msgstr ""
1095
- #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1096
- #~ "télécharger l'extension manuellement."
1097
 
1098
- #~ msgid "or"
1099
- #~ msgstr "ou"
1100
 
1101
- #~ msgid "Start Your Free %s-Day Trial Now"
1102
- #~ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
1103
-
1104
- #~ msgid "Check license key"
1105
- #~ msgstr "Vérifier la clé de licence"
1106
 
1107
  #~ msgid ""
1108
- #~ "If necessary, you can check if the license key is correct or reenter it "
1109
- #~ "in the field below."
1110
  #~ msgstr ""
1111
- #~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
1112
- #~ "la saisir de nouveau dans le champ ci-dessous."
1113
 
1114
- #~ msgid "Manage License Settings"
1115
- #~ msgstr "Paramètres de gestion des licences"
1116
 
1117
- #~ msgid "Login to Client Area"
1118
- #~ msgstr "Connexion à l'espace client"
1119
 
1120
- #~ msgid ""
1121
- #~ "Manage active licenses, download BWS products, and view your payment "
1122
- #~ "history using BestWebSoft Client Area."
1123
- #~ msgstr ""
1124
- #~ "Gérer les licences, télécharger des produits BWS et voir l'historique de "
1125
- #~ "vos règlements dans la zone client de BestWebSoft."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1126
 
1127
  #~ msgid "Wrong license key"
1128
  #~ msgstr "Clé de licence incorrecte"
@@ -1141,43 +1176,21 @@ msgstr ""
1141
  #~ msgid "Wrong license key."
1142
  #~ msgstr "Clé de licence incorrecte"
1143
 
1144
- #~ msgid "This license key is bound to another site."
1145
- #~ msgstr "La clé de licence correspond à un autre site."
1146
-
1147
- #~ msgid ""
1148
- #~ "This license key is valid, but Your license has expired. If you want to "
1149
- #~ "update our plugin in future, you should extend the license."
1150
- #~ msgstr ""
1151
- #~ "La clé de licence est valide mais votre durée de validité est passée. "
1152
- #~ "Pour continuer à disposer du support rapide et des mises à jour de "
1153
- #~ "l'extension vous devez la renouveller."
1154
-
1155
- #~ msgid "Unfortunately, you have exceeded the number of available tries."
1156
- #~ msgstr ""
1157
- #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1158
- #~ "télécharger l'extension manuellement."
1159
-
1160
  #~ msgid ""
1161
- #~ "Unfortunately, the Pro Trial licence was already installed to this "
1162
- #~ "domain. The Pro Trial license can be installed only once."
1163
  #~ msgstr ""
1164
- #~ "Malheureusement la licence PRO a déjà été installée sur ce domaine. La "
1165
- #~ "licence PRO d'évaluation peut être installée une seule fois."
1166
-
1167
- #~ msgid "The Pro Trial license key is valid."
1168
- #~ msgstr "La clé de licence d'évaluation est valide."
1169
-
1170
- #~ msgid "The license key is valid."
1171
- #~ msgstr "La clé de licence est valide."
1172
 
1173
- #~ msgid "Your license will expire on"
1174
- #~ msgstr "Votre licence se termine le"
1175
 
1176
  #~ msgid ""
1177
- #~ "In order to continue using the plugin it is necessary to buy a %s license."
1178
  #~ msgstr ""
1179
- #~ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1180
- #~ "d'acheter une licence %s."
1181
 
1182
  #~ msgid ""
1183
  #~ "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -1194,28 +1207,16 @@ msgstr ""
1194
  #~ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation "
1195
  #~ "ne peut-être installée qu'une seule fois."
1196
 
1197
- #~ msgid ""
1198
- #~ "Failed to download the zip archive. Please, upload the plugin manually"
1199
- #~ msgstr ""
1200
- #~ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger "
1201
- #~ "l'extension manuellement."
1202
-
1203
- #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1204
- #~ msgstr ""
1205
- #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1206
- #~ "manuellement."
1207
 
1208
- #~ msgid ""
1209
- #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1210
- #~ "the plugin manually"
1211
- #~ msgstr ""
1212
- #~ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. "
1213
- #~ "Merci de télécharger l'extension manuellement."
1214
 
1215
- #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1216
  #~ msgstr ""
1217
- #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1218
- #~ "manuellement."
1219
 
1220
  #~ msgid ""
1221
  #~ "Something went wrong. Try again later or upload the plugin manually. We "
@@ -1224,72 +1225,6 @@ msgstr ""
1224
  #~ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
1225
  #~ "l'extension manuellement.Nous sommes désolés pour le désagrément."
1226
 
1227
- #~ msgid "Please, enter Your license key"
1228
- #~ msgstr "Merci de saisir votre clé de licence"
1229
-
1230
- #~ msgid "Need Help?"
1231
- #~ msgstr "Besoin d'aide ?"
1232
-
1233
- #~ msgid "Read the Instruction"
1234
- #~ msgstr "Lire les instructions"
1235
-
1236
- #~ msgid "Visit Help Center"
1237
- #~ msgstr "Visiter le site du support"
1238
-
1239
- #~ msgid "Watch the Video"
1240
- #~ msgstr "Voir la vidéo"
1241
-
1242
- #~ msgid "Start Your Free Trial"
1243
- #~ msgstr "Débuter votre licence d'évaluation gratuite"
1244
-
1245
- #~ msgid "Advertisement"
1246
- #~ msgstr "Publicité"
1247
-
1248
- #~ msgid "Content & Media"
1249
- #~ msgstr "Contenu & média"
1250
-
1251
- #~ msgid "Management"
1252
- #~ msgstr "Administration"
1253
-
1254
- #~ msgid "Recommended"
1255
- #~ msgstr "Recommandés"
1256
-
1257
- #~ msgid "Security"
1258
- #~ msgstr "Sécurité"
1259
-
1260
- #~ msgid "Site Stats"
1261
- #~ msgstr "Statistiques"
1262
-
1263
- #~ msgid "Social"
1264
- #~ msgstr "Social"
1265
-
1266
- #~ msgid "Utilities"
1267
- #~ msgstr "Utilitaires"
1268
-
1269
- #~ msgid "Other"
1270
- #~ msgstr "Autre"
1271
-
1272
- #~ msgid ""
1273
- #~ "This license key is bound to another site. Change it via personal Client "
1274
- #~ "Area."
1275
- #~ msgstr ""
1276
- #~ "La clé de licence correspond à un autre site. Modifier là au travers de "
1277
- #~ "votre espace client."
1278
-
1279
- #~ msgid "Log in"
1280
- #~ msgstr "Connexion"
1281
-
1282
- #~ msgid ""
1283
- #~ "Unfortunately, you have exceeded the number of available tries per day."
1284
- #~ msgstr ""
1285
- #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1286
- #~ "télécharger l'extension manuellement."
1287
-
1288
- #~ msgid "Congratulations! Pro Membership license is activated successfully."
1289
- #~ msgstr ""
1290
- #~ "Félicitations! La version PRO de cette extension a été activée avec "
1291
- #~ "succès."
1292
-
1293
  #~ msgid "Please enter your license key."
1294
  #~ msgstr "Merci de saisir votre clé de licence."
1295
 
@@ -1419,6 +1354,9 @@ msgstr ""
1419
  #~ msgid "Subscribe to Pro Membership"
1420
  #~ msgstr "Souscrire une adhésion PRO"
1421
 
 
 
 
1422
  #~ msgid "Enter your license key"
1423
  #~ msgstr "Merci de saisir votre clé de licence"
1424
 
@@ -1452,15 +1390,38 @@ msgstr ""
1452
  #~ msgid "Downloading install package from"
1453
  #~ msgstr "Télécharger le paquet d'installation depuis"
1454
 
 
 
 
 
 
 
1455
  #~ msgid "Unpacking the package"
1456
  #~ msgstr "Décompresser le paquet"
1457
 
1458
  #~ msgid "Installing the plugin"
1459
  #~ msgstr "Installer l'extension"
1460
 
 
 
 
 
 
 
 
 
 
 
 
 
1461
  #~ msgid "The plugin %s is successfully installed."
1462
  #~ msgstr "L'extension %s a été installée avec succès."
1463
 
 
 
 
 
 
1464
  #~ msgid "Activate Plugin"
1465
  #~ msgstr "Activer l'extension"
1466
 
@@ -1494,9 +1455,6 @@ msgstr ""
1494
  #~ msgid "Install Now"
1495
  #~ msgstr "Installer maintenant"
1496
 
1497
- #~ msgid "Donate"
1498
- #~ msgstr "Don"
1499
-
1500
  #~ msgid "Activate this plugin"
1501
  #~ msgstr "Activer cette extension"
1502
 
@@ -1524,198 +1482,215 @@ msgstr ""
1524
  #~ msgid "Send to custom email &#187;"
1525
  #~ msgstr "Envoyer un e-mail spécifique &#187;"
1526
 
1527
- #~ msgid "requires"
1528
- #~ msgstr "obligatoire"
1529
 
1530
- #~ msgid ""
1531
- #~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
1532
- #~ "and try again."
1533
- #~ msgstr ""
1534
- #~ "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise "
1535
- #~ "à jour de WordPress puis de ré-essayer."
1536
 
1537
- #~ msgid "Back to the WordPress"
1538
- #~ msgstr "Retourner à WordPress"
1539
 
1540
- #~ msgid "Plugins page"
1541
- #~ msgstr "Page des extensions"
1542
 
1543
- #~ msgid "Like the plugin?"
1544
- #~ msgstr "Vous aimez cette extension?"
1545
 
1546
- #~ msgid "Rate it"
1547
- #~ msgstr "Noter la"
1548
 
1549
- #~ msgid "Need help?"
1550
- #~ msgstr "Besoin d'aide ?"
1551
 
1552
- #~ msgid "Want to support the plugin?"
1553
- #~ msgstr "Vous voulez aider cette extension?"
1554
 
1555
- #~ msgid "WARNING: Illegal use notification"
1556
- #~ msgstr "AVERTISSEMENT&nbsp;: Notification d'utilisation abusive"
1557
 
1558
- #~ msgid ""
1559
- #~ "You can use one license of the Pro plugin for one domain only. Please "
1560
- #~ "check and edit your license or domain if necessary using you personal "
1561
- #~ "Client Area. We strongly recommend you to solve the problem within 24 "
1562
- #~ "hours, otherwise the Pro plugin will be deactivated."
1563
- #~ msgstr ""
1564
- #~ "Vous ne pouvez utilisez qu'une licence de la version Pro de l'extension "
1565
- #~ "pour un seul domaine. Merci de vérifier et de modifier votre licence ou "
1566
- #~ "votre domaine si nécessaire en utilisant votre zone client. Nous vous "
1567
- #~ "recommandons de résoudre ce problème dans les 24 heures, sinon "
1568
- #~ "l'extension sera rendue inactive."
1569
 
1570
- #~ msgid ""
1571
- #~ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
1572
- #~ "you should buy a Pro license"
1573
- #~ msgstr ""
1574
- #~ "Information&nbsp;: Votre licence d'évaluation est terminée. Pour "
1575
- #~ "continuer à disposer des fonctions premium vous devez acheter une licence."
1576
 
1577
  #~ msgid ""
1578
- #~ "Your license has expired. To continue getting top-priority support and "
1579
- #~ "plugin updates, you should extend it."
1580
  #~ msgstr ""
1581
- #~ "Votre licence est terminée. Pour continuer à disposer du support rapide "
1582
- #~ "et des mises à jour de l'extension vous devez la renouveler."
1583
 
1584
- #~ msgid "Notice: You are using the Pro Trial license of %s plugin."
1585
  #~ msgstr ""
1586
- #~ "Avertissement&nbsp;: vous utilisez la version d'évaluation de l'extension "
1587
- #~ "%s."
1588
 
1589
- #~ msgid "Notice: You are using the Pro Trial license of plugin."
 
 
1590
  #~ msgstr ""
1591
- #~ "Avertissement&nbsp;: vous utilisez la version d'évaluation de l'extension."
 
1592
 
1593
- #~ msgid "The Pro Trial license will expire on"
1594
- #~ msgstr "Votre licence se termine le"
1595
 
1596
  #~ msgid ""
1597
- #~ "or higher! We do not guarantee that our plugin will work correctly. "
1598
- #~ "Please upgrade to WordPress latest version."
1599
  #~ msgstr ""
1600
- #~ "ou plus! Nous ne garantissons pas que notre extension fonctionne "
1601
- #~ "correctement. Merci de mettre à jour votre version de WordPress."
1602
 
1603
- #~ msgid "Thank you for installing"
1604
- #~ msgstr "Merci d'avoir installé"
1605
 
1606
- #~ msgid "Let's get started"
1607
- #~ msgstr "C'est parti"
1608
 
1609
- #~ msgid "Add New"
1610
- #~ msgstr "Ajouter un nouveau"
1611
 
1612
- #~ msgid "Thank you for installing plugins by BestWebSoft!"
1613
- #~ msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
1614
 
1615
- #~ msgid "More Details"
1616
- #~ msgstr "Plus de détails"
 
 
 
 
1617
 
1618
- #~ msgid "Less Details"
1619
- #~ msgstr "Moins de détails"
 
 
 
 
1620
 
1621
- #~ msgid "Deprecated function(-s) is used on the site here:"
1622
- #~ msgstr "Des fonctions obsolètes sont utilisées sur ce site ici&nbsp;:"
 
 
 
 
 
 
1623
 
1624
  #~ msgid ""
1625
- #~ "This function(-s) will be removed over time. Please update the product(-"
1626
- #~ "s)."
1627
  #~ msgstr ""
1628
- #~ "Ces fonctions seront supprimées rapidement. Merci de mettre à jour "
1629
- #~ "l'extension."
1630
 
1631
- #~ msgid "It’s time to upgrade your"
1632
- #~ msgstr "C'est le moment de mettre à jour votre "
1633
 
1634
- #~ msgid "to"
1635
- #~ msgstr "à"
1636
 
1637
- #~ msgid "version!"
1638
- #~ msgstr "version"
1639
 
1640
- #~ msgid "Extend standard plugin functionality with new great options."
1641
- #~ msgstr ""
1642
- #~ "Étend les fonctionnalités de base de l'extension avec de nouvelles "
1643
- #~ "options."
1644
 
1645
- #~ msgid ""
1646
- #~ "Your license key for %s expires on %s and you won't be granted TOP-"
1647
- #~ "PRIORITY SUPPORT or UPDATES."
 
1648
  #~ msgstr ""
1649
- #~ "Votre clé de licence pour %s se termine le %s et vous n'aurez plus de "
1650
- #~ "support prioritaire ni de mises à jour."
1651
 
1652
- #~ msgid "Thank you for choosing"
1653
- #~ msgstr "Merci d'avoir choisi"
 
 
 
1654
 
1655
  #~ msgid ""
1656
- #~ "If you have a feature, suggestion or idea you'd like to see in the "
1657
- #~ "plugin, we'd love to hear about it!"
1658
  #~ msgstr ""
1659
- #~ "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
1660
- #~ "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
1661
 
1662
- #~ msgid "Suggest a Feature"
1663
- #~ msgstr "Suggérer une fonctionnalité"
 
 
 
 
1664
 
1665
- #~ msgid "The plugin's settings have been changed."
1666
- #~ msgstr "Les paramètres de l'extension ont été modifiés."
1667
 
1668
  #~ msgid ""
1669
- #~ "You can always look at premium options by checking the \"Pro Options\" in "
1670
- #~ "the \"Misc\" tab."
1671
  #~ msgstr ""
1672
- #~ "Vous pouvez toujours consulter les options premium en cliquant sur \"Voir "
1673
- #~ "les fonctionnalités PRO\" dans l'onglet \"Divers\""
1674
-
1675
- #~ msgid "Add BWS Shortcode"
1676
- #~ msgstr "Ajouter un code court de l'extension BWS"
1677
 
1678
- #~ msgid "Add BWS Plugins Shortcode"
1679
- #~ msgstr "Ajouter un code court de l'extension BWS"
1680
 
1681
- #~ msgid "Add shortcode"
1682
- #~ msgstr "Ajouter le code court"
1683
 
1684
- #~ msgid "Add BestWebSoft plugins' shortcodes using this button."
1685
- #~ msgstr "Ajouter le code court de l'extension BWS avec ce bouton."
 
 
 
 
1686
 
1687
- #~ msgid "Are you sure you want to restore default settings?"
1688
- #~ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
1689
 
1690
- #~ msgid "Yes, restore all settings"
1691
- #~ msgstr "Oui, remettre les valeurs par défaut"
 
 
 
 
 
1692
 
1693
- #~ msgid "No, go back to the settings page"
1694
- #~ msgstr "Non, retourner à la page des paramètres"
 
 
1695
 
1696
- #~ msgid "Plugin"
1697
- #~ msgstr "Extension"
 
 
 
 
1698
 
1699
- #~ msgid "Shortcode settings"
1700
- #~ msgstr "Paramètres du code court"
1701
 
1702
- #~ msgid "The shortcode will be inserted"
1703
- #~ msgstr "Le code court va être inséré"
 
 
 
1704
 
1705
- #~ msgid "Insert"
1706
- #~ msgstr "Insérer"
1707
 
1708
- #~ msgid "For more information:"
1709
- #~ msgstr "Pour plus d'informations:"
1710
 
1711
- #~ msgid "Documentation"
1712
- #~ msgstr "Documentation"
1713
 
1714
- #~ msgid "Video Instructions"
1715
- #~ msgstr "Mode d'emploi en vidéo"
1716
 
1717
- #~ msgid "Submit a Request"
1718
- #~ msgstr "Envoyer une requête"
1719
 
1720
  #~ msgid "System Status"
1721
  #~ msgstr "Etat du système"
@@ -1806,6 +1781,42 @@ msgstr ""
1806
  #~ msgid "version of the plugin."
1807
  #~ msgstr "version de l'extension."
1808
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1809
  #~ msgid "Unlock premium options by upgrading to Pro version"
1810
  #~ msgstr "Débloquer les options premium en migrant vers la version PRO."
1811
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: contact-form-plugin 4.0.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:15+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2;plural=n>2;\n"
18
+ "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: contact_form.php:37 contact_form.php:1064
22
  msgid "Contact Form Settings"
23
  msgstr "Options du formulaire de contact"
24
 
25
+ #: contact_form.php:37
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
30
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
31
+ #: contact_form.php:3181 contact_form.php:3227
32
  msgid "Name"
33
  msgstr "Nom"
34
 
35
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
36
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
37
+ #: contact_form.php:3233
38
  msgid "Address"
39
  msgstr "Adresse"
40
 
41
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
42
+ #: contact_form.php:1765
43
  msgid "Email Address"
44
  msgstr "Adresse e-mail"
45
 
46
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
47
+ #: contact_form.php:1766
48
  msgid "Phone number"
49
  msgstr "Téléphone"
50
 
51
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
52
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
53
+ #: contact_form.php:3242
54
  msgid "Subject"
55
  msgstr "Sujet"
56
 
57
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
58
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
59
+ #: contact_form.php:3246
60
  msgid "Message"
61
  msgstr "Message"
62
 
63
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
64
+ #: contact_form.php:2058
65
  msgid "Attachment"
66
  msgstr "Pièce jointe"
67
 
68
+ #: contact_form.php:287
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
  "TIFF, BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, "
75
  "MP3, PPT."
76
 
77
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
78
  msgid "Send me a copy"
79
  msgstr "M'envoyer une copie"
80
 
81
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
82
  msgid "Submit"
83
  msgstr "Envoyer"
84
 
85
+ #: contact_form.php:290
86
  msgid "Your name is required."
87
  msgstr "Un nom est obligatoire."
88
 
89
+ #: contact_form.php:291
90
  msgid "Address is required."
91
  msgstr "Une adresse est obligatoire."
92
 
93
+ #: contact_form.php:292
94
  msgid "A valid email address is required."
95
  msgstr "Une adresse e-mail valide est obligatoire."
96
 
97
+ #: contact_form.php:293
98
  msgid "Phone number is required."
99
  msgstr "Le numéro de téléphone est obligatoire."
100
 
101
+ #: contact_form.php:294
102
  msgid "Subject is required."
103
  msgstr "Le sujet est obligatoire."
104
 
105
+ #: contact_form.php:295
106
  msgid "Message text is required."
107
  msgstr "Un message est obligatoire."
108
 
109
+ #: contact_form.php:296
110
  msgid "File format is not valid."
111
  msgstr "Le type de pièce jointe n'est pas valide."
112
 
113
+ #: contact_form.php:297
114
  msgid "File upload error."
115
  msgstr "Erreur de chargement du fichier."
116
 
117
+ #: contact_form.php:298
118
  msgid "The file could not be uploaded."
119
  msgstr "Le fichier n'a pas pu être envoyé."
120
 
121
+ #: contact_form.php:299
122
  msgid "This file is too large."
123
  msgstr "Le fichier est trop volumineux."
124
 
125
+ #: contact_form.php:300
126
  msgid "Please fill out the CAPTCHA."
127
  msgstr "Merci de compléter le CAPTCHA."
128
 
129
+ #: contact_form.php:301
130
  msgid "Please make corrections below and try again."
131
  msgstr "Merci de faire les corrections suivantes et de réessayer."
132
 
133
+ #: contact_form.php:303
134
  msgid "Thank you for contacting us."
135
  msgstr "Merci de nous avoir contacté."
136
 
137
+ #: contact_form.php:759 contact_form.php:1021
138
  msgid "Settings saved."
139
  msgstr "Options enregistrées."
140
 
141
+ #: contact_form.php:966
142
  msgid ""
143
  "Email 'FROM' field option was changed, which may cause email messages being "
144
  "moved to the spam folder or email delivery failures."
147
  "entraîner un classement des messages dans les dossiers spam ou bien une "
148
  "erreur d'acheminement peut survenir."
149
 
150
+ #: contact_form.php:976
151
  msgid ""
152
  "If the 'Redirect to page' option is selected then the URL field should be in "
153
  "the following format"
155
  "Si l’option 'Rediriger vers la page' est positionnée, alors le champ Url "
156
  "doit être rempli avec le format suivant"
157
 
158
+ #: contact_form.php:983
159
  msgid "Such user does not exist."
160
  msgstr "Cet utilisateur est inconnu."
161
 
162
+ #: contact_form.php:993
163
  msgid ""
164
  "Please enter a valid email address in the 'Use this email address' field."
165
  msgstr ""
166
  "Merci de saisir une adresse e-mail valide pour le champ 'Utiliser cette "
167
  "adresse e-mail'."
168
 
169
+ #: contact_form.php:1001
170
  msgid "Please enter a valid email address in the 'FROM' field."
171
  msgstr "Merci de saisir une adresse e-mail valide pour le champ 'FROM'."
172
 
173
+ #: contact_form.php:1023
174
  msgid "Settings are not saved."
175
  msgstr "Paramètres non enregistrées."
176
 
177
+ #: contact_form.php:1061
178
  msgid "All plugin settings were restored."
179
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
180
 
181
+ #: contact_form.php:1067
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr "Mode d'emploi pas à pas"
184
 
185
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
186
  msgid "Settings"
187
  msgstr "Réglages"
188
 
189
+ #: contact_form.php:1071
190
  msgid "Additional settings"
191
  msgstr "Options supplémentaires"
192
 
193
+ #: contact_form.php:1072
194
  msgid "Appearance"
195
  msgstr "Aspect"
196
 
197
+ #: contact_form.php:1073
198
  msgid "Custom code"
199
  msgstr "Personnaliser"
200
 
201
+ #: contact_form.php:1074
202
  msgid "Go PRO"
203
  msgstr "Choisir la version PRO"
204
 
205
+ #: contact_form.php:1085
206
  msgid "Notice"
207
  msgstr "Avertissement"
208
 
209
+ #: contact_form.php:1089
210
  msgid "NEW_FORM"
211
  msgstr "Nouveau Formulaire"
212
 
213
+ #: contact_form.php:1090
214
  msgid ""
215
  "If you want to create multiple contact forms, please install the Contact "
216
  "Form Multi plugin."
218
  "Si vous voulez créer plusieurs formulaire de contact, merci d'installer "
219
  "l'extension 'Contact Form Multi'"
220
 
221
+ #: contact_form.php:1099
222
  #, php-format
223
  msgid ""
224
  "If you would like to add a Contact Form to your page or post, please use %s "
227
  "Si vous souhaitez ajouter un formulaire de contact à votre page ou votre "
228
  "article, merci d’utiliser le bouton %s"
229
 
230
+ #: contact_form.php:1105
231
  #, php-format
232
  msgid ""
233
  "You can add the Contact Form to your page or post by clicking on %s button "
240
  "bouton n'est pas affiché, merci d'utiliser le code court %s ou %s où * est à "
241
  "remplacer par la langue du formulaire de contact."
242
 
243
+ #: contact_form.php:1114
244
  msgid ""
245
  "If you leave the fields empty, the messages will be sent to the email "
246
  "address specified during registration."
248
  "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
249
  "l'adresse spécifiée lors de l'enregistrement."
250
 
251
+ #: contact_form.php:1117
252
  msgid "The user's email address"
253
  msgstr "Utiliser l'e-mail du compte WordPress"
254
 
255
+ #: contact_form.php:1121
256
  msgid "Select a username"
257
  msgstr "Choisir un nom d'utilisateur"
258
 
259
+ #: contact_form.php:1134
260
  msgid ""
261
  "Select a username of the person who should get the messages from the contact "
262
  "form."
264
  "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
265
  "formulaire de contact."
266
 
267
+ #: contact_form.php:1138
268
  msgid "Use this email address"
269
  msgstr "Utiliser cette adresse e-mail"
270
 
271
+ #: contact_form.php:1142
272
  msgid "Enter the email address for receiving messages"
273
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages"
274
 
275
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
276
+ #: contact_form.php:1957 contact_form.php:3514
277
  msgid "Close"
278
  msgstr "Fermer"
279
 
280
+ #: contact_form.php:1153
281
  msgid "Add department selectbox to the contact form"
282
  msgstr ""
283
  "Ajouter la liste déroulante pour le département dans le formulaire de contact"
284
 
285
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
286
+ #: contact_form.php:2163
287
  msgid "If you upgrade to Pro version all your settings will be saved."
288
  msgstr ""
289
  "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
290
 
291
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
292
+ #: contact_form.php:1878 contact_form.php:2170
293
  msgid "Upgrade to Pro"
294
  msgstr "Passer à la version PRO"
295
 
296
+ #: contact_form.php:1176
297
  msgid "Save emails to the database"
298
  msgstr "Enregistrer les e-mails dans la base de données"
299
 
300
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
301
  msgid "Using"
302
  msgstr "Utilisant"
303
 
304
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
305
+ #: contact_form.php:1623
306
  msgid "Please activate the appropriate option on"
307
  msgstr "Merci de configure les options appropriées sur"
308
 
309
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
310
+ #: contact_form.php:1626
311
  msgid "settings page"
312
  msgstr "Page des paramètres"
313
 
314
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
315
+ #: contact_form.php:1633
316
  msgid "Activate"
317
  msgstr "Activé"
318
 
319
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
320
+ #: contact_form.php:1638
321
  msgid "Download"
322
  msgstr "Téléchargement"
323
 
324
+ #: contact_form.php:1222
325
  msgid "Sending method"
326
  msgstr "Méthode pour l'envoie"
327
 
328
+ #: contact_form.php:1227
329
  msgid "Wp-mail"
330
  msgstr "Wp-mail"
331
 
332
+ #: contact_form.php:1229
333
  msgid "You can use the Wordpress wp_mail function for mailing"
334
  msgstr ""
335
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
336
  "WordPress "
337
 
338
+ #: contact_form.php:1232
339
  msgid "Mail"
340
  msgstr "E-mail"
341
 
342
+ #: contact_form.php:1234
343
  msgid "You can use the PHP mail function for mailing"
344
  msgstr ""
345
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
346
  "WordPress "
347
 
348
+ #: contact_form.php:1239
349
  msgid "'FROM' field"
350
  msgstr "Champ 'From'"
351
 
352
+ #: contact_form.php:1255
353
  msgid "User name"
354
  msgstr "Nom de l’utilisateur"
355
 
356
+ #: contact_form.php:1257
357
  msgid ""
358
  "The name of the user who fills the form will be used in the field 'From'."
359
  msgstr ""
360
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
361
  "l’utilisateur qui rempli le formulaire."
362
 
363
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
364
  msgid "Email"
365
  msgstr "E-mail"
366
 
367
+ #: contact_form.php:1279
368
  msgid "User email"
369
  msgstr "E-mail de l’utilisateur"
370
 
371
+ #: contact_form.php:1281
372
  msgid ""
373
  "The email address of the user who fills the form will be used in the field "
374
  "'From'."
376
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
377
  "l’utilisateur qui rempli le formulaire."
378
 
379
+ #: contact_form.php:1290
380
  msgid ""
381
  "If this option is changed, email messages may be moved to the spam folder or "
382
  "email delivery failures may occur."
384
  "Si cette option est modifiée, les courriels pourront se retrouver classer "
385
  "dans le dossier spam ou bien une erreur d'acheminement peut survenir."
386
 
387
+ #: contact_form.php:1299
388
  msgid "Required symbol"
389
  msgstr "Symbole obligatoire"
390
 
391
+ #: contact_form.php:1309
392
  msgid "Fields"
393
  msgstr "Champs"
394
 
395
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
396
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
397
  msgid "Used"
398
  msgstr "Utilisé"
399
 
400
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
401
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
402
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
403
  msgid "Required"
404
  msgstr "Obligatoire"
405
 
406
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
407
+ #: contact_form.php:1445 contact_form.php:1469
408
  msgid "Visible"
409
  msgstr "Visible"
410
 
411
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
412
+ #: contact_form.php:1449 contact_form.php:1473
413
  msgid "Disabled for editing"
414
  msgstr "Non actif pour l'édition"
415
 
416
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
417
+ #: contact_form.php:1477
418
  msgid "Field's default value"
419
  msgstr "Valeur par défaut du champ"
420
 
421
+ #: contact_form.php:1322
422
  msgid "Department selectbox"
423
  msgstr "Liste déroulante des localisations"
424
 
425
+ #: contact_form.php:1354
426
  msgid "Use User's name as a default value if the user is logged in."
427
  msgstr ""
428
  "Utiliser le nom de l'utilisateur comme valeur par défaut si un utilisateur "
429
  "est connecté."
430
 
431
+ #: contact_form.php:1355 contact_form.php:1415
432
  msgid ""
433
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
434
  "in users."
436
  "'Visible' et 'Inactif' pour modifier les options ne seront appliqués qu'aux "
437
  "utilisateurs connectés."
438
 
439
+ #: contact_form.php:1361
440
  msgid "Location selectbox"
441
  msgstr "Liste déroulante des localisations"
442
 
443
+ #: contact_form.php:1414
444
  msgid "Use User's email as a default value if the user is logged in."
445
  msgstr ""
446
  "Utiliser l'adresse e-mail de l'utilisateur comme valeur par défaut si un "
447
  "utilisateur est connecté."
448
 
449
+ #: contact_form.php:1498
450
  msgid "Attachment block"
451
  msgstr "Bloc pièce jointe"
452
 
453
+ #: contact_form.php:1500
454
  msgid "Users can attach the following file formats"
455
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
456
 
457
+ #: contact_form.php:1518
458
  msgid "Add to the form"
459
  msgstr "Ajouter au formulaire"
460
 
461
+ #: contact_form.php:1523
462
  msgid "Tips below the Attachment"
463
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
464
 
465
+ #: contact_form.php:1530
466
  msgid "'Send me a copy' block"
467
  msgstr "Afficher le bloc \"M'envoyer une copie\""
468
 
469
+ #: contact_form.php:1558
470
  msgid "Activate for network"
471
  msgstr "Activer pour le réseau"
472
 
473
+ #: contact_form.php:1649
474
  msgid "Agreement checkbox"
475
  msgstr "Case à cocher pour valider le formulaire"
476
 
477
+ #: contact_form.php:1649
478
  msgid "Required checkbox for submitting the form"
479
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
480
 
481
+ #: contact_form.php:1650
482
  msgid "Optional checkbox"
483
  msgstr "Boite à cocher optionnelle"
484
 
485
+ #: contact_form.php:1650
486
  msgid "Optional checkbox, the results of which will be displayed in email"
487
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans le courriel"
488
 
489
+ #: contact_form.php:1668
490
  msgid "Delete an attachment file from the server after the email is sent"
491
  msgstr "Supprimer le fichier joint sur le serveur après l'envoie du courriel"
492
 
493
+ #: contact_form.php:1674
494
  msgid "Email in HTML format sending"
495
  msgstr "Courriel au format HTML"
496
 
497
+ #: contact_form.php:1678
498
  msgid "Display additional info in the email"
499
  msgstr "Afficher les informations complémentaires dans le courriel"
500
 
501
+ #: contact_form.php:1684
502
  msgid "Sent from (IP address)"
503
  msgstr "Envoyé de (adresse IP)"
504
 
505
+ #: contact_form.php:1684
506
  msgid "Example: Sent from (IP address):\t127.0.0.1"
507
  msgstr "Exemple: Envoyé de (adresse IP)&nbsp;:\t127.0.0.1"
508
 
509
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
510
  msgid "Date/Time"
511
  msgstr "Date/Heure"
512
 
513
+ #: contact_form.php:1685
514
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
515
  msgstr "Exemple: Date/Heure&nbsp;:\tAoût 19, 2013 8:50pm"
516
 
517
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
518
  msgid "Sent from (referer)"
519
  msgstr "Envoyer de (référence)"
520
 
521
+ #: contact_form.php:1686
522
  msgid ""
523
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
524
  msgstr ""
525
  "Exemple&nbsp;: Envoyer de (referer) :\thttp://bestwebsoft.com/contacts/"
526
  "contact-us/"
527
 
528
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
529
  msgid "Using (user agent)"
530
  msgstr "Depuis (navigateur)"
531
 
532
+ #: contact_form.php:1687
533
  msgid ""
534
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
535
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
538
  "WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 "
539
  "Safari/537.36"
540
 
541
+ #: contact_form.php:1692
542
  msgid "Language settings for the field names in the form"
543
  msgstr "Définition des langues pour les titres des champs"
544
 
545
+ #: contact_form.php:1701
546
  msgid "Add a language"
547
  msgstr "Ajouter une langue"
548
 
549
+ #: contact_form.php:1705
550
  msgid "Change the names of the contact form fields and error messages"
551
  msgstr ""
552
  "Modifier le texte pour les champs du formulaire de contact et les messages "
553
  "d'erreur"
554
 
555
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
556
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
557
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
558
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
559
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
560
  msgid "Default"
561
  msgstr "Défaut"
562
 
563
+ #: contact_form.php:1723 contact_form.php:1761
564
  msgid "click to expand/hide the list"
565
  msgstr "cliquer pour voir/cacher la liste"
566
 
567
+ #: contact_form.php:1732 contact_form.php:1770
568
  msgid "Tips below the Attachment block"
569
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
570
 
571
+ #: contact_form.php:1735 contact_form.php:1773
572
  msgid "Error message for the Name field"
573
  msgstr "Message d'erreur pour le champ nom"
574
 
575
+ #: contact_form.php:1736 contact_form.php:1774
576
  msgid "Error message for the Address field"
577
  msgstr "Message d'erreur pour le champ Adresse"
578
 
579
+ #: contact_form.php:1737 contact_form.php:1775
580
  msgid "Error message for the Email field"
581
  msgstr "Message d'erreur pour le champ e-mail"
582
 
583
+ #: contact_form.php:1738 contact_form.php:1776
584
  msgid "Error message for the Phone field"
585
  msgstr "Message d'erreur pour le champ téléphone"
586
 
587
+ #: contact_form.php:1739 contact_form.php:1777
588
  msgid "Error message for the Subject field"
589
  msgstr "Message d'erreur pour le champ sujet"
590
 
591
+ #: contact_form.php:1740 contact_form.php:1778
592
  msgid "Error message for the Message field"
593
  msgstr "Message d'erreur pour le champ message"
594
 
595
+ #: contact_form.php:1741 contact_form.php:1779
596
  msgid "Error message about the file type for the Attachment field"
597
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
598
 
599
+ #: contact_form.php:1742 contact_form.php:1780
600
  msgid ""
601
  "Error message while uploading a file for the Attachment field to the server"
602
  msgstr ""
603
  "Message d'erreur pour le champ fichier joint (problème d'envoi vers le "
604
  "serveur)"
605
 
606
+ #: contact_form.php:1743 contact_form.php:1781
607
  msgid "Error message while moving the file for the Attachment field"
608
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
609
 
610
+ #: contact_form.php:1744 contact_form.php:1782
611
  msgid "Error message when file size limit for the Attachment field is exceeded"
612
  msgstr ""
613
  "Message d'erreur pour le champ fichier joint (taille limite du fichier "
614
  "atteinte)"
615
 
616
+ #: contact_form.php:1745 contact_form.php:1783
617
  msgid "Error message for the Captcha field"
618
  msgstr "Message d'erreur pour le captcha"
619
 
620
+ #: contact_form.php:1746 contact_form.php:1784
621
  msgid "Error message for the whole form"
622
  msgstr "Message d'erreur demandant à compléter les champs manquants"
623
 
624
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
625
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
626
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
627
+ #: contact_form.php:3604
628
  msgid "Use shortcode"
629
  msgstr "Utiliser le code court"
630
 
631
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
632
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
633
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
634
+ #: contact_form.php:3604
635
  msgid "for this language"
636
  msgstr "pour cette langue"
637
 
638
+ #: contact_form.php:1797
639
  msgid "Use the changed names of the contact form fields in the email"
640
  msgstr "Utiliser les noms des champs modifiés dans les courriels"
641
 
642
+ #: contact_form.php:1803
643
  msgid "Action after email is sent"
644
  msgstr "Action après l'envoie du courriel"
645
 
646
+ #: contact_form.php:1805
647
  msgid "Display text"
648
  msgstr "Afficher le texte"
649
 
650
+ #: contact_form.php:1819 contact_form.php:1833
651
  msgid "Text"
652
  msgstr "Texte"
653
 
654
+ #: contact_form.php:1844
655
  msgid "Redirect to the page"
656
  msgstr "Rediriger vers la page"
657
 
658
+ #: contact_form.php:1845
659
  msgid "Url"
660
  msgstr "Url"
661
 
662
+ #: contact_form.php:1856
663
  msgid "Add field 'Reply-To' to the email header"
664
  msgstr "Ajouter le champ 'Répondre à/Reply-To' dans l'entête du courriel"
665
 
666
+ #: contact_form.php:1858
667
  msgid "Field 'Reply-To' will be initialized by user email"
668
  msgstr ""
669
  "Le champ 'Répondre à/Reply-To' sera rempli avec l'adresse e-mail de "
670
  "l'utilisateur"
671
 
672
+ #: contact_form.php:1862
673
  msgid "Auto Response"
674
  msgstr "Réponse automatique"
675
 
676
+ #: contact_form.php:1866
677
  #, php-format
678
  msgid ""
679
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
684
  "%%MESSAGE%% pour afficher des données du champ message, de même %%SITENAME%% "
685
  "pour afficher le nom du site."
686
 
687
+ #: contact_form.php:1888 contact_form.php:2419
688
  msgid "Save Changes"
689
  msgstr "Enregistrer les modifications"
690
 
691
+ #: contact_form.php:1901
692
  #, php-format
693
  msgid ""
694
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
696
  "Merci d'activer le java-script pour modifier les options '%s', '%s' ainsi "
697
  "que pour trier les champs."
698
 
699
+ #: contact_form.php:1901 contact_form.php:1910
700
  msgid "Form layout"
701
  msgstr "Structure du formulaire"
702
 
703
+ #: contact_form.php:1901 contact_form.php:1922
704
  msgid "Submit position"
705
  msgstr "Position du bouton envoyer"
706
 
707
+ #: contact_form.php:1914
708
  msgid "One column"
709
  msgstr "Une colonne"
710
 
711
+ #: contact_form.php:1917
712
  msgid "Two columns"
713
  msgstr "Deux colonnes"
714
 
715
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
716
+ #: contact_form.php:1998
717
  msgid "Left"
718
  msgstr "Gauche"
719
 
720
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
721
+ #: contact_form.php:2004
722
  msgid "Right"
723
  msgstr "Droite"
724
 
725
+ #: contact_form.php:1934
726
+ msgid "Width"
727
+ msgstr ""
728
+
729
+ #: contact_form.php:1941
730
+ #, fuzzy
731
+ msgid "Custom"
732
+ msgstr "Personnaliser"
733
+
734
+ #: contact_form.php:1948
735
+ msgid "px"
736
+ msgstr ""
737
+
738
+ #: contact_form.php:1961
739
  msgid "Form align"
740
  msgstr "Alignement des champs"
741
 
742
+ #: contact_form.php:1968 contact_form.php:2001
743
  msgid "Center"
744
  msgstr "Centre"
745
 
746
+ #: contact_form.php:1976
747
  msgid "Labels position"
748
  msgstr "Position des textes"
749
 
750
+ #: contact_form.php:1980
751
  msgid "Top"
752
  msgstr "Haut"
753
 
754
+ #: contact_form.php:1989
755
  msgid "Bottom"
756
  msgstr "Bas"
757
 
758
+ #: contact_form.php:1994
759
  msgid "Labels align"
760
  msgstr "Alignement des textes"
761
 
762
+ #: contact_form.php:2009
763
  msgid "Errors output"
764
  msgstr "Affichage des erreurs"
765
 
766
+ #: contact_form.php:2012
767
  msgid "Display error messages"
768
  msgstr "Afficher les messages d'erreur"
769
 
770
+ #: contact_form.php:2013
771
  msgid "Color of the input field errors."
772
  msgstr "Mettre en couleur les champs ayant des erreurs"
773
 
774
+ #: contact_form.php:2014
775
  msgid "Display error messages & color of the input field errors"
776
  msgstr ""
777
  "Afficher les messages d'erreur et mettre en couleur les champs ayant des "
778
  "erreurs"
779
 
780
+ #: contact_form.php:2019
781
  msgid "Add placeholder to the input blocks"
782
  msgstr "Ajouter la localisation dans le bloc de saisie"
783
 
784
+ #: contact_form.php:2025
785
  msgid "Add tooltips"
786
  msgstr "Ajouter les conseils"
787
 
788
+ #: contact_form.php:2039
789
  msgid "Email address"
790
  msgstr "Adresse e-mail"
791
 
792
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
793
  msgid "Phone Number"
794
  msgstr "Téléphone"
795
 
796
+ #: contact_form.php:2070
797
  msgid "Style options"
798
  msgstr "Options de style"
799
 
800
+ #: contact_form.php:2074
801
  msgid "Text color"
802
  msgstr "Couleur du texte"
803
 
804
+ #: contact_form.php:2079
805
  msgid "Label text color"
806
  msgstr "Couleur des textes des intitulés"
807
 
808
+ #: contact_form.php:2084
809
  msgid "Placeholder color"
810
  msgstr "Couleur pour la localisation"
811
 
812
+ #: contact_form.php:2089
813
  msgid "Errors color"
814
  msgstr "Couleur pour les erreurs"
815
 
816
+ #: contact_form.php:2094
817
  msgid "Error text color"
818
  msgstr "Couleur pour le texte des erreurs"
819
 
820
+ #: contact_form.php:2099
821
  msgid "Background color of the input field errors"
822
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
823
 
824
+ #: contact_form.php:2104
825
  msgid "Border color of the input field errors"
826
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
827
 
828
+ #: contact_form.php:2109
829
  msgid "Placeholder color of the input field errors"
830
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
831
 
832
+ #: contact_form.php:2114
833
  msgid "Input fields"
834
  msgstr "Champs de saisie"
835
 
836
+ #: contact_form.php:2119
837
  msgid "Input fields background color"
838
  msgstr "Couleur de fond pour les champs de saisie"
839
 
840
+ #: contact_form.php:2124
841
  msgid "Text fields color"
842
  msgstr "Couleur pour les textes des champs de saisie"
843
 
844
+ #: contact_form.php:2128
845
  msgid "Border width in px, numbers only"
846
  msgstr "Largeur des bordures en px, nombre seulement"
847
 
848
+ #: contact_form.php:2133 contact_form.php:2157
849
  msgid "Border color"
850
  msgstr "Couleur des bordures"
851
 
852
+ #: contact_form.php:2138
853
  msgid "Submit button"
854
  msgstr "Bouton Envoyer"
855
 
856
+ #: contact_form.php:2142
857
  msgid "Width in px, numbers only"
858
  msgstr "Largeur en px, nombre seulement"
859
 
860
+ #: contact_form.php:2147
861
  msgid "Button color"
862
  msgstr "Couleur du bouton"
863
 
864
+ #: contact_form.php:2152
865
  msgid "Button text color"
866
  msgstr "Couleur du texte du bouton"
867
 
868
+ #: contact_form.php:2181
869
  msgid "Contact Form | Preview"
870
  msgstr "Formulaire de Contact | Prévisualisation"
871
 
872
+ #: contact_form.php:2182
873
  msgid "Drag the necessary field to sort fields."
874
  msgstr "Déposer les champs nécessaires dans la liste des tris."
875
 
876
+ #: contact_form.php:2408
877
  msgid ""
878
  "If you would like to add the Contact Form to your website, just copy and "
879
  "paste this shortcode to your post or page or widget"
881
  "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
882
  "juste ce code dans un article ou sur une page ou un widget"
883
 
884
+ #: contact_form.php:2536
885
  msgid "Sorry, email message could not be delivered."
886
  msgstr "Désolé, votre courriel n'a pas pu être envoyé."
887
 
888
+ #: contact_form.php:3137 contact_form.php:3139
889
  msgid "Sent from (ip address)"
890
  msgstr "Envoyé de (adresse IP)"
891
 
892
+ #: contact_form.php:3167
893
  msgid "Contact from"
894
  msgstr "Contact de"
895
 
896
+ #: contact_form.php:3172 contact_form.php:3221
897
  msgid "Site"
898
  msgstr "Site"
899
 
900
+ #: contact_form.php:3351
901
  msgid ""
902
  "If you can see this MIME, it means that the MIME type is not supported by "
903
  "your email client!"
905
  "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
906
  "MIME !"
907
 
908
+ #: contact_form.php:3434
909
  msgid "FAQ"
910
  msgstr "FAQ"
911
 
912
+ #: contact_form.php:3435
913
  msgid "Support"
914
  msgstr "Support"
915
 
916
+ #: contact_form.php:3484
917
  msgid "Are you sure that you want to delete this language data?"
918
  msgstr "Êtes vous sûr de vouloir supprimer cette langue ?"
919
 
920
+ #: contact_form.php:3505
921
  msgid "Add multiple forms"
922
  msgstr "Ajouter plusieurs formulaires"
923
 
924
+ #: contact_form.php:3505
925
  msgid ""
926
  "Install Contact Form Multi plugin to create unlimited number of contact "
927
  "forms."
929
  "Installer l'extension 'Contact Form Multi' pour créer un nombre infini de "
930
  "formulaires de contact."
931
 
932
+ #: contact_form.php:3510
933
  msgid "Learn more"
934
  msgstr "Lire la suite"
935
 
936
+ #: contact_form.php:3751
937
  msgid "Close notice"
938
  msgstr "Fermer l'avertissement"
939
 
940
+ #: contact_form.php:3756
941
  msgid "allows to store your messages to the database."
942
  msgstr "permet d'enregistrer les messages dans la base de données."
943
 
944
+ #: contact_form.php:3757
945
  msgid "Manage messages that have been sent from your website."
946
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
947
 
948
+ #: contact_form.php:3760
949
  msgid "Learn More"
950
  msgstr "Lire la suite"
951
 
952
+ #: contact_form.php:3820
953
  msgid "Contact form"
954
  msgstr "Formulaire de contact"
955
 
956
+ #: contact_form.php:3833 contact_form.php:3843
957
  msgid "Language"
958
  msgstr "Langue"
959
 
960
+ #~ msgid "requires"
961
+ #~ msgstr "obligatoire"
 
 
 
 
 
 
 
 
 
 
 
962
 
963
+ #~ msgid ""
964
+ #~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
965
+ #~ "and try again."
966
+ #~ msgstr ""
967
+ #~ "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise "
968
+ #~ "à jour de WordPress puis de ré-essayer."
969
 
970
+ #~ msgid "Back to the WordPress"
971
+ #~ msgstr "Retourner à WordPress"
972
 
973
+ #~ msgid "Plugins page"
974
+ #~ msgstr "Page des extensions"
975
 
976
+ #~ msgid "Like the plugin?"
977
+ #~ msgstr "Vous aimez cette extension?"
978
 
979
+ #~ msgid "Rate it"
980
+ #~ msgstr "Noter la"
981
 
982
+ #~ msgid "Need help?"
983
+ #~ msgstr "Besoin d'aide ?"
984
 
985
+ #~ msgid "Visit Help Center"
986
+ #~ msgstr "Visiter le site du support"
987
 
988
+ #~ msgid "Want to support the plugin?"
989
+ #~ msgstr "Vous voulez aider cette extension?"
990
 
991
+ #~ msgid "Donate"
992
+ #~ msgstr "Don"
993
 
994
+ #~ msgid "WARNING: Illegal use notification"
995
+ #~ msgstr "AVERTISSEMENT&nbsp;: Notification d'utilisation abusive"
996
 
997
  #~ msgid ""
998
+ #~ "You can use one license of the Pro plugin for one domain only. Please "
999
+ #~ "check and edit your license or domain if necessary using you personal "
1000
+ #~ "Client Area. We strongly recommend you to solve the problem within 24 "
1001
+ #~ "hours, otherwise the Pro plugin will be deactivated."
 
1002
  #~ msgstr ""
1003
+ #~ "Vous ne pouvez utilisez qu'une licence de la version Pro de l'extension "
1004
+ #~ "pour un seul domaine. Merci de vérifier et de modifier votre licence ou "
1005
+ #~ "votre domaine si nécessaire en utilisant votre zone client. Nous vous "
1006
+ #~ "recommandons de résoudre ce problème dans les 24 heures, sinon "
1007
+ #~ "l'extension sera rendue inactive."
1008
 
1009
  #~ msgid ""
1010
+ #~ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
1011
+ #~ "you should buy a Pro license"
1012
  #~ msgstr ""
1013
+ #~ "Information&nbsp;: Votre licence d'évaluation est terminée. Pour "
1014
+ #~ "continuer à disposer des fonctions premium vous devez acheter une licence."
 
 
 
1015
 
1016
  #~ msgid ""
1017
+ #~ "Your license has expired. To continue getting top-priority support and "
1018
+ #~ "plugin updates, you should extend it."
1019
  #~ msgstr ""
1020
+ #~ "Votre licence est terminée. Pour continuer à disposer du support rapide "
1021
+ #~ "et des mises à jour de l'extension vous devez la renouveler."
 
 
 
1022
 
1023
+ #~ msgid "Notice: You are using the Pro Trial license of %s plugin."
1024
+ #~ msgstr ""
1025
+ #~ "Avertissement&nbsp;: vous utilisez la version d'évaluation de l'extension "
1026
+ #~ "%s."
1027
 
1028
+ #~ msgid "Notice: You are using the Pro Trial license of plugin."
1029
+ #~ msgstr ""
1030
+ #~ "Avertissement&nbsp;: vous utilisez la version d'évaluation de l'extension."
1031
 
1032
+ #~ msgid "The Pro Trial license will expire on"
1033
+ #~ msgstr "Votre licence se termine le"
1034
 
1035
  #~ msgid ""
1036
+ #~ "or higher! We do not guarantee that our plugin will work correctly. "
1037
+ #~ "Please upgrade to WordPress latest version."
1038
  #~ msgstr ""
1039
+ #~ "ou plus! Nous ne garantissons pas que notre extension fonctionne "
1040
+ #~ "correctement. Merci de mettre à jour votre version de WordPress."
1041
 
1042
+ #~ msgid "Thank you for installing %s plugin!"
1043
+ #~ msgstr "Merci d'avoir installé l'extension %s !"
 
 
 
 
1044
 
1045
+ #~ msgid "Let's get started"
1046
+ #~ msgstr "C'est parti"
1047
 
1048
+ #~ msgid "or"
1049
+ #~ msgstr "ou"
1050
 
1051
+ #~ msgid "Add New"
1052
+ #~ msgstr "Ajouter un nouveau"
1053
 
1054
+ #~ msgid "Thank you for installing plugins by BestWebSoft!"
1055
+ #~ msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
 
 
 
 
1056
 
1057
+ #~ msgid "More Details"
1058
+ #~ msgstr "Plus de détails"
1059
 
1060
+ #~ msgid "Less Details"
1061
+ #~ msgstr "Moins de détails"
1062
 
1063
+ #~ msgid "Deprecated function(-s) is used on the site here:"
1064
+ #~ msgstr "Des fonctions obsolètes sont utilisées sur ce site ici&nbsp;:"
1065
 
1066
+ #~ msgid ""
1067
+ #~ "This function(-s) will be removed over time. Please update the product(-"
1068
+ #~ "s)."
1069
+ #~ msgstr ""
1070
+ #~ "Ces fonctions seront supprimées rapidement. Merci de mettre à jour "
1071
+ #~ "l'extension."
1072
 
1073
+ #~ msgid "It’s time to upgrade your"
1074
+ #~ msgstr "C'est le moment de mettre à jour votre "
1075
 
1076
+ #~ msgid "to"
1077
+ #~ msgstr "à"
 
 
1078
 
1079
+ #~ msgid "version!"
1080
+ #~ msgstr "version"
1081
 
1082
+ #~ msgid "Extend standard plugin functionality with new great options."
1083
+ #~ msgstr ""
1084
+ #~ "Étend les fonctionnalités de base de l'extension avec de nouvelles "
1085
+ #~ "options."
1086
 
1087
  #~ msgid ""
1088
+ #~ "Your license key for %s expires on %s and you won't be granted TOP-"
1089
+ #~ "PRIORITY SUPPORT or UPDATES."
1090
  #~ msgstr ""
1091
+ #~ "Votre clé de licence pour %s se termine le %s et vous n'aurez plus de "
1092
+ #~ "support prioritaire ni de mises à jour."
1093
+
1094
+ #~ msgid "Thank you for choosing %s plugin!"
1095
+ #~ msgstr "Merci d'avoir choisi l'extension %s !"
1096
 
1097
  #~ msgid ""
1098
+ #~ "If you have a feature, suggestion or idea you'd like to see in the "
1099
+ #~ "plugin, we'd love to hear about it!"
1100
  #~ msgstr ""
1101
+ #~ "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
1102
+ #~ "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
1103
 
1104
+ #~ msgid "Suggest a Feature"
1105
+ #~ msgstr "Suggérer une fonctionnalité"
1106
 
1107
+ #~ msgid "The plugin's settings have been changed."
1108
+ #~ msgstr "Les paramètres de l'extension ont été modifiés."
 
 
 
1109
 
1110
  #~ msgid ""
1111
+ #~ "You can always look at premium options by checking the \"Pro Options\" in "
1112
+ #~ "the \"Misc\" tab."
1113
  #~ msgstr ""
1114
+ #~ "Vous pouvez toujours consulter les options premium en cliquant sur \"Voir "
1115
+ #~ "les fonctionnalités PRO\" dans l'onglet \"Divers\""
1116
 
1117
+ #~ msgid "Add BWS Shortcode"
1118
+ #~ msgstr "Ajouter un code court de l'extension BWS"
1119
 
1120
+ #~ msgid "Add BWS Plugins Shortcode"
1121
+ #~ msgstr "Ajouter un code court de l'extension BWS"
1122
 
1123
+ #~ msgid "Add shortcode"
1124
+ #~ msgstr "Ajouter le code court"
1125
+
1126
+ #~ msgid "Add BestWebSoft plugins' shortcodes using this button."
1127
+ #~ msgstr "Ajouter le code court de l'extension BWS avec ce bouton."
1128
+
1129
+ #~ msgid "Are you sure you want to restore default settings?"
1130
+ #~ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
1131
+
1132
+ #~ msgid "Yes, restore all settings"
1133
+ #~ msgstr "Oui, remettre les valeurs par défaut"
1134
+
1135
+ #~ msgid "No, go back to the settings page"
1136
+ #~ msgstr "Non, retourner à la page des paramètres"
1137
+
1138
+ #~ msgid "Plugin"
1139
+ #~ msgstr "Extension"
1140
+
1141
+ #~ msgid "Shortcode settings"
1142
+ #~ msgstr "Paramètres du code court"
1143
+
1144
+ #~ msgid "The shortcode will be inserted"
1145
+ #~ msgstr "Le code court va être inséré"
1146
+
1147
+ #~ msgid "Insert"
1148
+ #~ msgstr "Insérer"
1149
+
1150
+ #~ msgid "For more information:"
1151
+ #~ msgstr "Pour plus d'informations:"
1152
+
1153
+ #~ msgid "Documentation"
1154
+ #~ msgstr "Documentation"
1155
+
1156
+ #~ msgid "Video Instructions"
1157
+ #~ msgstr "Mode d'emploi en vidéo"
1158
+
1159
+ #~ msgid "Submit a Request"
1160
+ #~ msgstr "Envoyer une requête"
1161
 
1162
  #~ msgid "Wrong license key"
1163
  #~ msgstr "Clé de licence incorrecte"
1176
  #~ msgid "Wrong license key."
1177
  #~ msgstr "Clé de licence incorrecte"
1178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1179
  #~ msgid ""
1180
+ #~ "This license key is bound to another site. Change it via personal Client "
1181
+ #~ "Area."
1182
  #~ msgstr ""
1183
+ #~ "La clé de licence correspond à un autre site. Modifier au travers de "
1184
+ #~ "votre espace client."
 
 
 
 
 
 
1185
 
1186
+ #~ msgid "Log in"
1187
+ #~ msgstr "Connexion"
1188
 
1189
  #~ msgid ""
1190
+ #~ "Unfortunately, you have exceeded the number of available tries per day."
1191
  #~ msgstr ""
1192
+ #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1193
+ #~ "télécharger l'extension manuellement."
1194
 
1195
  #~ msgid ""
1196
  #~ "Unfortunately, Your license has expired. To continue getting top-priority "
1207
  #~ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation "
1208
  #~ "ne peut-être installée qu'une seule fois."
1209
 
1210
+ #~ msgid "The license key is valid."
1211
+ #~ msgstr "La clé de licence est valide."
 
 
 
 
 
 
 
 
1212
 
1213
+ #~ msgid "Your license will expire on"
1214
+ #~ msgstr "Votre licence se termine le"
 
 
 
 
1215
 
1216
+ #~ msgid "Congratulations! Pro Membership license is activated successfully."
1217
  #~ msgstr ""
1218
+ #~ "Félicitations! La version PRO de cette extension a été activée avec "
1219
+ #~ "succès."
1220
 
1221
  #~ msgid ""
1222
  #~ "Something went wrong. Try again later or upload the plugin manually. We "
1225
  #~ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
1226
  #~ "l'extension manuellement.Nous sommes désolés pour le désagrément."
1227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1228
  #~ msgid "Please enter your license key."
1229
  #~ msgstr "Merci de saisir votre clé de licence."
1230
 
1354
  #~ msgid "Subscribe to Pro Membership"
1355
  #~ msgstr "Souscrire une adhésion PRO"
1356
 
1357
+ #~ msgid "Check license key"
1358
+ #~ msgstr "Vérifier la clé de licence"
1359
+
1360
  #~ msgid "Enter your license key"
1361
  #~ msgstr "Merci de saisir votre clé de licence"
1362
 
1390
  #~ msgid "Downloading install package from"
1391
  #~ msgstr "Télécharger le paquet d'installation depuis"
1392
 
1393
+ #~ msgid ""
1394
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1395
+ #~ msgstr ""
1396
+ #~ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger "
1397
+ #~ "l'extension manuellement."
1398
+
1399
  #~ msgid "Unpacking the package"
1400
  #~ msgstr "Décompresser le paquet"
1401
 
1402
  #~ msgid "Installing the plugin"
1403
  #~ msgstr "Installer l'extension"
1404
 
1405
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1406
+ #~ msgstr ""
1407
+ #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1408
+ #~ "manuellement."
1409
+
1410
+ #~ msgid ""
1411
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1412
+ #~ "the plugin manually"
1413
+ #~ msgstr ""
1414
+ #~ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. "
1415
+ #~ "Merci de télécharger l'extension manuellement."
1416
+
1417
  #~ msgid "The plugin %s is successfully installed."
1418
  #~ msgstr "L'extension %s a été installée avec succès."
1419
 
1420
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1421
+ #~ msgstr ""
1422
+ #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1423
+ #~ "manuellement."
1424
+
1425
  #~ msgid "Activate Plugin"
1426
  #~ msgstr "Activer l'extension"
1427
 
1455
  #~ msgid "Install Now"
1456
  #~ msgstr "Installer maintenant"
1457
 
 
 
 
1458
  #~ msgid "Activate this plugin"
1459
  #~ msgstr "Activer cette extension"
1460
 
1482
  #~ msgid "Send to custom email &#187;"
1483
  #~ msgstr "Envoyer un e-mail spécifique &#187;"
1484
 
1485
+ #~ msgid "Information"
1486
+ #~ msgstr "Informations"
1487
 
1488
+ #~ msgid "Inactive"
1489
+ #~ msgstr "Inactives"
 
 
 
 
1490
 
1491
+ #~ msgid "Expired"
1492
+ #~ msgstr "Expiré"
1493
 
1494
+ #~ msgid "%s day(-s) left"
1495
+ #~ msgstr "%s (jour(s) restant"
1496
 
1497
+ #~ msgid "Expired on %s"
1498
+ #~ msgstr "Se termine le %s"
1499
 
1500
+ #~ msgid "Renew Now"
1501
+ #~ msgstr "Renouveler maintenant"
1502
 
1503
+ #~ msgid "Active"
1504
+ #~ msgstr "Active"
1505
 
1506
+ #~ msgid "License"
1507
+ #~ msgstr "License"
1508
 
1509
+ #~ msgid "Status"
1510
+ #~ msgstr "Etat"
1511
 
1512
+ #~ msgid "Version"
1513
+ #~ msgstr "Version"
 
 
 
 
 
 
 
 
 
1514
 
1515
+ #~ msgid "Custom Code"
1516
+ #~ msgstr "Code personnaliser"
 
 
 
 
1517
 
1518
  #~ msgid ""
1519
+ #~ "You do not have sufficient permissions to edit plugins for this site."
 
1520
  #~ msgstr ""
1521
+ #~ "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
 
1522
 
1523
+ #~ msgid "These styles will be added to the header on all pages of your site."
1524
  #~ msgstr ""
1525
+ #~ "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
 
1526
 
1527
+ #~ msgid ""
1528
+ #~ "This PHP code will be hooked to the %s action and will be printed on "
1529
+ #~ "front end only."
1530
  #~ msgstr ""
1531
+ #~ "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
1532
+ #~ "partie publique."
1533
 
1534
+ #~ msgid "These code will be added to the header on all pages of your site."
1535
+ #~ msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
1536
 
1537
  #~ msgid ""
1538
+ #~ "You need to make this files writable before you can save your changes. "
1539
+ #~ "See %s the Codex %s for more information."
1540
  #~ msgstr ""
1541
+ #~ "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
1542
+ #~ "modifications. Regarder %s du Codex %s pour plus d'informations."
1543
 
1544
+ #~ msgid "Browsing"
1545
+ #~ msgstr "Parcourir"
1546
 
1547
+ #~ msgid "Activate custom %s code."
1548
+ #~ msgstr "Activer le code personalisé %s."
1549
 
1550
+ #~ msgid "Learn more about %s"
1551
+ #~ msgstr "En savoir plus sur %s"
1552
 
1553
+ #~ msgid "Miscellaneous Settings"
1554
+ #~ msgstr "Paramètres divers"
1555
 
1556
+ #~ msgid ""
1557
+ #~ "It is prohibited to change %s settings on this site in the %s network "
1558
+ #~ "settings."
1559
+ #~ msgstr ""
1560
+ #~ "Il est interdit de modifier le paramètre %s sur ce site dans les "
1561
+ #~ "paramètres du réseau %s."
1562
 
1563
+ #~ msgid ""
1564
+ #~ "It is prohibited to view %s settings on this site in the %s network "
1565
+ #~ "settings."
1566
+ #~ msgstr ""
1567
+ #~ "Il est interdit de voir le paramètre %s sur ce site dans les paramètres "
1568
+ #~ "réseaux %s."
1569
 
1570
+ #~ msgid "Pro Options"
1571
+ #~ msgstr "Extensions Pro"
1572
+
1573
+ #~ msgid "Enable to display plugin Pro options."
1574
+ #~ msgstr "Activer pour voir les options PRO."
1575
+
1576
+ #~ msgid "Track Usage"
1577
+ #~ msgstr "Suivre l'utilisation"
1578
 
1579
  #~ msgid ""
1580
+ #~ "Enable to allow tracking plugin usage anonymously in order to make it "
1581
+ #~ "better."
1582
  #~ msgstr ""
1583
+ #~ "Activer pour autoriser le suivi de l'usage de l'extension de manière "
1584
+ #~ "anonyme afin de la rendre meilleur."
1585
 
1586
+ #~ msgid "Default Settings"
1587
+ #~ msgstr "Réglages par défaut"
1588
 
1589
+ #~ msgid "Restore Settings"
1590
+ #~ msgstr "Remettre les paramètres"
1591
 
1592
+ #~ msgid "This will restore plugin settings to defaults."
1593
+ #~ msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
1594
 
1595
+ #~ msgid "Import / Export"
1596
+ #~ msgstr "Import / Export"
 
 
1597
 
1598
+ #~ msgid "License Key"
1599
+ #~ msgstr "Clé de licence"
1600
+
1601
+ #~ msgid "Congratulations! Pro license is activated successfully."
1602
  #~ msgstr ""
1603
+ #~ "Félicitations! La version PRO de cette extension a été activée avec "
1604
+ #~ "succès."
1605
 
1606
+ #~ msgid "You will be automatically redirected to the %s in %s seconds."
1607
+ #~ msgstr "Vous allez être redirigé automatiquement vers %s dans %s secondes."
1608
+
1609
+ #~ msgid "Settings page"
1610
+ #~ msgstr "Page des paramètres"
1611
 
1612
  #~ msgid ""
1613
+ #~ "Enter your license key to activate %s and get premium plugin features."
 
1614
  #~ msgstr ""
1615
+ #~ "Saisir votre clé de licence pour activer %s et obtenir les "
1616
+ #~ "fonctionnalités premium."
1617
 
1618
+ #~ msgid ""
1619
+ #~ "Unfortunately, you have exceeded the number of available tries per day. "
1620
+ #~ "Please, upload the plugin manually."
1621
+ #~ msgstr ""
1622
+ #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1623
+ #~ "télécharger l'extension manuellement."
1624
 
1625
+ #~ msgid "Start Your Free %s-Day Trial Now"
1626
+ #~ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
1627
 
1628
  #~ msgid ""
1629
+ #~ "If necessary, you can check if the license key is correct or reenter it "
1630
+ #~ "in the field below."
1631
  #~ msgstr ""
1632
+ #~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
1633
+ #~ "la saisir de nouveau dans le champ ci-dessous."
 
 
 
1634
 
1635
+ #~ msgid "Manage License Settings"
1636
+ #~ msgstr "Paramètres de gestion des licences"
1637
 
1638
+ #~ msgid "Login to Client Area"
1639
+ #~ msgstr "Connexion à l'espace client"
1640
 
1641
+ #~ msgid ""
1642
+ #~ "Manage active licenses, download BWS products, and view your payment "
1643
+ #~ "history using BestWebSoft Client Area."
1644
+ #~ msgstr ""
1645
+ #~ "Gérer les licences, télécharger des produits BWS et voir l'historique de "
1646
+ #~ "vos règlements dans la zone client de BestWebSoft."
1647
 
1648
+ #~ msgid "This license key is bound to another site."
1649
+ #~ msgstr "La clé de licence correspond à un autre site."
1650
 
1651
+ #~ msgid ""
1652
+ #~ "This license key is valid, but Your license has expired. If you want to "
1653
+ #~ "update our plugin in future, you should extend the license."
1654
+ #~ msgstr ""
1655
+ #~ "La clé de licence est valide mais votre durée de validité est passée. "
1656
+ #~ "Pour continuer à disposer du support rapide et des mises à jour de "
1657
+ #~ "l'extension vous devez la renouveller."
1658
 
1659
+ #~ msgid "Unfortunately, you have exceeded the number of available tries."
1660
+ #~ msgstr ""
1661
+ #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1662
+ #~ "télécharger l'extension manuellement."
1663
 
1664
+ #~ msgid ""
1665
+ #~ "Unfortunately, the Pro Trial licence was already installed to this "
1666
+ #~ "domain. The Pro Trial license can be installed only once."
1667
+ #~ msgstr ""
1668
+ #~ "Malheureusement la licence PRO a déjà été installée sur ce domaine. La "
1669
+ #~ "licence PRO d'évaluation peut être installée une seule fois."
1670
 
1671
+ #~ msgid "The Pro Trial license key is valid."
1672
+ #~ msgstr "La clé de licence d'évaluation est valide."
1673
 
1674
+ #~ msgid ""
1675
+ #~ "In order to continue using the plugin it is necessary to buy a %s license."
1676
+ #~ msgstr ""
1677
+ #~ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1678
+ #~ "d'acheter une licence %s."
1679
 
1680
+ #~ msgid "Please, enter Your license key"
1681
+ #~ msgstr "Merci de saisir votre clé de licence"
1682
 
1683
+ #~ msgid "Need Help?"
1684
+ #~ msgstr "Besoin d'aide ?"
1685
 
1686
+ #~ msgid "Read the Instruction"
1687
+ #~ msgstr "Lire les instructions"
1688
 
1689
+ #~ msgid "Watch the Video"
1690
+ #~ msgstr "Voir la vidéo"
1691
 
1692
+ #~ msgid "Start Your Free Trial"
1693
+ #~ msgstr "Débuter votre licence d'évaluation gratuite"
1694
 
1695
  #~ msgid "System Status"
1696
  #~ msgstr "Etat du système"
1781
  #~ msgid "version of the plugin."
1782
  #~ msgstr "version de l'extension."
1783
 
1784
+ #~ msgid "Advertisement"
1785
+ #~ msgstr "Publicité"
1786
+
1787
+ #~ msgid "Content & Media"
1788
+ #~ msgstr "Contenu & média"
1789
+
1790
+ #~ msgid "Management"
1791
+ #~ msgstr "Administration"
1792
+
1793
+ #~ msgid "Recommended"
1794
+ #~ msgstr "Recommandés"
1795
+
1796
+ #~ msgid "Security"
1797
+ #~ msgstr "Sécurité"
1798
+
1799
+ #~ msgid "Site Stats"
1800
+ #~ msgstr "Statistiques"
1801
+
1802
+ #~ msgid "Social"
1803
+ #~ msgstr "Social"
1804
+
1805
+ #~ msgid "Utilities"
1806
+ #~ msgstr "Utilitaires"
1807
+
1808
+ #~ msgid "Other"
1809
+ #~ msgstr "Autre"
1810
+
1811
+ #~ msgid ""
1812
+ #~ "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
1813
+ #~ "replace it with %3s. If you close this message it'll appear again after "
1814
+ #~ "deprecated shortcode reuse."
1815
+ #~ msgstr ""
1816
+ #~ "Le code court %1s de l'extension %2s n'est plus utilisable mais se trouve "
1817
+ #~ "dans votre site. Merci de le remplacer par %3s. Si vous fermez ce "
1818
+ #~ "message, il réapparaîtra a chaque utilisation du code court en cause."
1819
+
1820
  #~ msgid "Unlock premium options by upgrading to Pro version"
1821
  #~ msgstr "Débloquer les options premium en migrant vers la version PRO."
1822
 
languages/contact-form-plugin-ja.mo CHANGED
Binary file
languages/contact-form-plugin-ja.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: 2017-02-27 16:23+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
@@ -16,54 +16,54 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:42 contact_form.php:1066
20
  msgid "Contact Form Settings"
21
  msgstr "Contact Form設定"
22
 
23
- #: contact_form.php:42
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
28
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
29
- #: contact_form.php:3138 contact_form.php:3184
30
  msgid "Name"
31
  msgstr "名前"
32
 
33
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
34
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
35
- #: contact_form.php:3190
36
  msgid "Address"
37
  msgstr "住所"
38
 
39
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
40
- #: contact_form.php:1767
41
  msgid "Email Address"
42
  msgstr "Eメール・アドレス"
43
 
44
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
45
- #: contact_form.php:1768
46
  msgid "Phone number"
47
  msgstr "電話番号"
48
 
49
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
50
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
51
- #: contact_form.php:3199
52
  msgid "Subject"
53
  msgstr "件名"
54
 
55
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
56
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
57
- #: contact_form.php:3203
58
  msgid "Message"
59
  msgstr "メッセージ"
60
 
61
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
62
- #: contact_form.php:2040
63
  msgid "Attachment"
64
  msgstr "添付"
65
 
66
- #: contact_form.php:302
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -71,77 +71,77 @@ msgstr ""
71
  "サポートしてるファイル形式: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
72
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
75
  msgid "Send me a copy"
76
  msgstr "コピーを自分に送る"
77
 
78
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
79
  msgid "Submit"
80
  msgstr "送信"
81
 
82
- #: contact_form.php:305
83
  msgid "Your name is required."
84
  msgstr "名前は必須です。"
85
 
86
- #: contact_form.php:306
87
  msgid "Address is required."
88
  msgstr "住所が必要です。"
89
 
90
- #: contact_form.php:307
91
  msgid "A valid email address is required."
92
  msgstr "有効なEメールアドレスlが必須です。"
93
 
94
- #: contact_form.php:308
95
  msgid "Phone number is required."
96
  msgstr "電話番号は必須です。"
97
 
98
- #: contact_form.php:309
99
  msgid "Subject is required."
100
  msgstr "件名は必須です。"
101
 
102
- #: contact_form.php:310
103
  msgid "Message text is required."
104
  msgstr "メッセージ本文は必須です。"
105
 
106
- #: contact_form.php:311
107
  msgid "File format is not valid."
108
  msgstr "添付が壊れています。"
109
 
110
- #: contact_form.php:312
111
  msgid "File upload error."
112
  msgstr "ファイル・アップロード・エラー。"
113
 
114
- #: contact_form.php:313
115
  msgid "The file could not be uploaded."
116
  msgstr "ファイルは、アップロード出来ませんでした。"
117
 
118
- #: contact_form.php:314
119
  msgid "This file is too large."
120
  msgstr "このファイルは大きすぎます。"
121
 
122
- #: contact_form.php:315
123
  msgid "Please fill out the CAPTCHA."
124
  msgstr "CAPTCHAを入力して下さい。"
125
 
126
- #: contact_form.php:316
127
  msgid "Please make corrections below and try again."
128
  msgstr "以下を修正し、再度試して下さい。"
129
 
130
- #: contact_form.php:318
131
  msgid "Thank you for contacting us."
132
  msgstr "ご連絡ありがとうございます"
133
 
134
- #: contact_form.php:761 contact_form.php:1023
135
  msgid "Settings saved."
136
  msgstr "設定保存."
137
 
138
- #: contact_form.php:968
139
  msgid ""
140
  "Email 'FROM' field option was changed, which may cause email messages being "
141
  "moved to the spam folder or email delivery failures."
142
  msgstr ""
143
 
144
- #: contact_form.php:978
145
  msgid ""
146
  "If the 'Redirect to page' option is selected then the URL field should be in "
147
  "the following format"
@@ -149,64 +149,64 @@ msgstr ""
149
  "’ページに転送’オプションを選択した場合は、URLフィールドが、以下の形式になりま"
150
  "す"
151
 
152
- #: contact_form.php:985
153
  msgid "Such user does not exist."
154
  msgstr "そのようなユーザは存在しません。"
155
 
156
- #: contact_form.php:995
157
  msgid ""
158
  "Please enter a valid email address in the 'Use this email address' field."
159
  msgstr ""
160
  "'このEメールアドレスを使用'フィールドに有効化なEメール・アドレスを入力して下"
161
  "さい。"
162
 
163
- #: contact_form.php:1003
164
  msgid "Please enter a valid email address in the 'FROM' field."
165
  msgstr "'送信者'フィールドに有効なEメールアドレスを入力して下さい。"
166
 
167
- #: contact_form.php:1025
168
  msgid "Settings are not saved."
169
  msgstr "設定は保存さていません。"
170
 
171
- #: contact_form.php:1063
172
  msgid "All plugin settings were restored."
173
  msgstr ""
174
 
175
- #: contact_form.php:1069
176
  msgid "How to Use Step-by-step Instruction"
177
  msgstr ""
178
 
179
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
180
  msgid "Settings"
181
  msgstr "設定"
182
 
183
- #: contact_form.php:1073
184
  #, fuzzy
185
  msgid "Additional settings"
186
  msgstr "追加オプション"
187
 
188
- #: contact_form.php:1074
189
  msgid "Appearance"
190
  msgstr ""
191
 
192
- #: contact_form.php:1075
193
  msgid "Custom code"
194
  msgstr ""
195
 
196
- #: contact_form.php:1076
197
  msgid "Go PRO"
198
  msgstr "PROに進む"
199
 
200
- #: contact_form.php:1087
201
  #, fuzzy
202
  msgid "Notice"
203
  msgstr "通知:"
204
 
205
- #: contact_form.php:1091
206
  msgid "NEW_FORM"
207
  msgstr ""
208
 
209
- #: contact_form.php:1092
210
  msgid ""
211
  "If you want to create multiple contact forms, please install the Contact "
212
  "Form Multi plugin."
@@ -214,7 +214,7 @@ msgstr ""
214
  "複数のコンタクトフォームを作成したい場合は、Contact Form Multiプラグインを導"
215
  "入して下さい。"
216
 
217
- #: contact_form.php:1101
218
  #, fuzzy, php-format
219
  msgid ""
220
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -223,7 +223,7 @@ msgstr ""
223
  "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
224
  "ページ又はウェジットにコピーして貼り付けるだけです:"
225
 
226
- #: contact_form.php:1107
227
  #, php-format
228
  msgid ""
229
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -232,7 +232,7 @@ msgid ""
232
  "language."
233
  msgstr ""
234
 
235
- #: contact_form.php:1116
236
  msgid ""
237
  "If you leave the fields empty, the messages will be sent to the email "
238
  "address specified during registration."
@@ -240,126 +240,126 @@ msgstr ""
240
  "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られ"
241
  "ます。"
242
 
243
- #: contact_form.php:1119
244
  #, fuzzy
245
  msgid "The user's email address"
246
  msgstr "wordpressユーザのEメールを利用r:"
247
 
248
- #: contact_form.php:1123
249
  #, fuzzy
250
  msgid "Select a username"
251
  msgstr "ユーザ名の選択"
252
 
253
- #: contact_form.php:1136
254
  #, fuzzy
255
  msgid ""
256
  "Select a username of the person who should get the messages from the contact "
257
  "form."
258
  msgstr "コンタクトフォームからメッセージを受け取る方のユーザ名を入力。"
259
 
260
- #: contact_form.php:1140
261
  #, fuzzy
262
  msgid "Use this email address"
263
  msgstr "このEメールを利用:"
264
 
265
- #: contact_form.php:1144
266
  #, fuzzy
267
  msgid "Enter the email address for receiving messages"
268
  msgstr "メッセージ受信用のEメールを設定。"
269
 
270
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
271
- #: contact_form.php:1939 contact_form.php:3471
272
  msgid "Close"
273
  msgstr ""
274
 
275
- #: contact_form.php:1155
276
  #, fuzzy
277
  msgid "Add department selectbox to the contact form"
278
  msgstr "部署選択ボックスをコンタクトフォームに追加:"
279
 
280
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
281
- #: contact_form.php:2145
282
  msgid "If you upgrade to Pro version all your settings will be saved."
283
  msgstr "PROバージョンにアップグレードすると、設定が保存されます。"
284
 
285
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
286
- #: contact_form.php:1880 contact_form.php:2152
287
  msgid "Upgrade to Pro"
288
  msgstr ""
289
 
290
- #: contact_form.php:1178
291
  msgid "Save emails to the database"
292
  msgstr "メールをデータベースに保存"
293
 
294
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
295
  msgid "Using"
296
  msgstr "使用中"
297
 
298
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
299
- #: contact_form.php:1625
300
  msgid "Please activate the appropriate option on"
301
  msgstr ""
302
 
303
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
304
- #: contact_form.php:1628
305
  #, fuzzy
306
  msgid "settings page"
307
  msgstr "設定ページ"
308
 
309
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
310
- #: contact_form.php:1635
311
  msgid "Activate"
312
  msgstr "有効化"
313
 
314
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
315
- #: contact_form.php:1640
316
  msgid "Download"
317
  msgstr "ダウンロード"
318
 
319
- #: contact_form.php:1224
320
  msgid "Sending method"
321
  msgstr ""
322
 
323
- #: contact_form.php:1229
324
  msgid "Wp-mail"
325
  msgstr "WPメール"
326
 
327
- #: contact_form.php:1231
328
  #, fuzzy
329
  msgid "You can use the Wordpress wp_mail function for mailing"
330
  msgstr "メールにwp_mali機能が利用できます"
331
 
332
- #: contact_form.php:1234
333
  msgid "Mail"
334
  msgstr "メール"
335
 
336
- #: contact_form.php:1236
337
  #, fuzzy
338
  msgid "You can use the PHP mail function for mailing"
339
  msgstr "メールにwp_mali機能が利用できます"
340
 
341
- #: contact_form.php:1241
342
  msgid "'FROM' field"
343
  msgstr ""
344
 
345
- #: contact_form.php:1257
346
  msgid "User name"
347
  msgstr "ユーザ名"
348
 
349
- #: contact_form.php:1259
350
  msgid ""
351
  "The name of the user who fills the form will be used in the field 'From'."
352
  msgstr "フォームを入力するユーザの名前が、'送信者'フィールドに使用されます。"
353
 
354
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
355
  msgid "Email"
356
  msgstr "Eメール"
357
 
358
- #: contact_form.php:1281
359
  msgid "User email"
360
  msgstr "ユーザ・Eメール"
361
 
362
- #: contact_form.php:1283
363
  msgid ""
364
  "The email address of the user who fills the form will be used in the field "
365
  "'From'."
@@ -367,153 +367,153 @@ msgstr ""
367
  "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用されま"
368
  "す。"
369
 
370
- #: contact_form.php:1292
371
  msgid ""
372
  "If this option is changed, email messages may be moved to the spam folder or "
373
  "email delivery failures may occur."
374
  msgstr ""
375
 
376
- #: contact_form.php:1301
377
  msgid "Required symbol"
378
  msgstr "必須シンボル"
379
 
380
- #: contact_form.php:1311
381
  msgid "Fields"
382
  msgstr "フィールド"
383
 
384
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
385
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
386
  msgid "Used"
387
  msgstr "使用済"
388
 
389
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
390
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
391
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
392
  msgid "Required"
393
  msgstr "必須"
394
 
395
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
396
- #: contact_form.php:1447 contact_form.php:1471
397
  msgid "Visible"
398
  msgstr "可視"
399
 
400
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
401
- #: contact_form.php:1451 contact_form.php:1475
402
  msgid "Disabled for editing"
403
  msgstr "編集を無効化"
404
 
405
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
406
- #: contact_form.php:1479
407
  msgid "Field's default value"
408
  msgstr "フィールドのデフォルト値"
409
 
410
- #: contact_form.php:1324
411
  #, fuzzy
412
  msgid "Department selectbox"
413
  msgstr "場所選択ボックス"
414
 
415
- #: contact_form.php:1356
416
  msgid "Use User's name as a default value if the user is logged in."
417
  msgstr ""
418
 
419
- #: contact_form.php:1357 contact_form.php:1417
420
  msgid ""
421
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
422
  "in users."
423
  msgstr ""
424
 
425
- #: contact_form.php:1363
426
  msgid "Location selectbox"
427
  msgstr "場所選択ボックス"
428
 
429
- #: contact_form.php:1416
430
  msgid "Use User's email as a default value if the user is logged in."
431
  msgstr ""
432
 
433
- #: contact_form.php:1500
434
  msgid "Attachment block"
435
  msgstr "添付ブロック"
436
 
437
- #: contact_form.php:1502
438
  msgid "Users can attach the following file formats"
439
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
440
 
441
- #: contact_form.php:1520
442
  msgid "Add to the form"
443
  msgstr "フォームに追加"
444
 
445
- #: contact_form.php:1525
446
  msgid "Tips below the Attachment"
447
  msgstr "添付ファイルの下のチップス"
448
 
449
- #: contact_form.php:1532
450
  msgid "'Send me a copy' block"
451
  msgstr "'コピーを自分に送る'ブロック"
452
 
453
- #: contact_form.php:1560
454
  msgid "Activate for network"
455
  msgstr ""
456
 
457
- #: contact_form.php:1651
458
  msgid "Agreement checkbox"
459
  msgstr "同意のチェックボックス"
460
 
461
- #: contact_form.php:1651
462
  msgid "Required checkbox for submitting the form"
463
  msgstr "フォームを送信するために必須のチェックボックス"
464
 
465
- #: contact_form.php:1652
466
  msgid "Optional checkbox"
467
  msgstr "オプションのチェックボックス"
468
 
469
- #: contact_form.php:1652
470
  msgid "Optional checkbox, the results of which will be displayed in email"
471
  msgstr "オプションのチェックボックス、Eメールに表示される結果"
472
 
473
- #: contact_form.php:1670
474
  msgid "Delete an attachment file from the server after the email is sent"
475
  msgstr "Eメール送信後、サーバから添付ファイルを削除"
476
 
477
- #: contact_form.php:1676
478
  msgid "Email in HTML format sending"
479
  msgstr "HTMLフォーマットでメール送信"
480
 
481
- #: contact_form.php:1680
482
  msgid "Display additional info in the email"
483
  msgstr "メール中に追加情報を表示"
484
 
485
- #: contact_form.php:1686
486
  #, fuzzy
487
  msgid "Sent from (IP address)"
488
  msgstr "送信された(IP-Adresse)"
489
 
490
- #: contact_form.php:1686
491
  msgid "Example: Sent from (IP address):\t127.0.0.1"
492
  msgstr "例: 送信された(IP-Adresse):\t127.0.0.1"
493
 
494
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
495
  msgid "Date/Time"
496
  msgstr "日時"
497
 
498
- #: contact_form.php:1687
499
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
500
  msgstr "例: 日時:\tAugust 19, 2013 8:50 pm"
501
 
502
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
503
  msgid "Sent from (referer)"
504
  msgstr "送信された(referer)"
505
 
506
- #: contact_form.php:1688
507
  #, fuzzy
508
  msgid ""
509
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
510
  msgstr "例: 送信された (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
511
 
512
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
513
  msgid "Using (user agent)"
514
  msgstr "利用中の (user agent)"
515
 
516
- #: contact_form.php:1689
517
  msgid ""
518
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
519
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -521,134 +521,134 @@ msgstr ""
521
  "例: 利用中の (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
522
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
523
 
524
- #: contact_form.php:1694
525
  msgid "Language settings for the field names in the form"
526
  msgstr "フォーム内のフィールド名の言語設定"
527
 
528
- #: contact_form.php:1703
529
  msgid "Add a language"
530
  msgstr "言語の追加"
531
 
532
- #: contact_form.php:1707
533
  msgid "Change the names of the contact form fields and error messages"
534
  msgstr "コンタクトフォームのフィールド名及びエラーメッセージを変更"
535
 
536
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
537
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
538
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
539
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
540
- #: contact_form.php:2132 contact_form.php:2137
541
  msgid "Default"
542
  msgstr "標準"
543
 
544
- #: contact_form.php:1725 contact_form.php:1763
545
  msgid "click to expand/hide the list"
546
  msgstr "クリックして、このリストを展開/隠す"
547
 
548
- #: contact_form.php:1734 contact_form.php:1772
549
  msgid "Tips below the Attachment block"
550
  msgstr "添付ファイル・ブロックの下のチップス"
551
 
552
- #: contact_form.php:1737 contact_form.php:1775
553
  msgid "Error message for the Name field"
554
  msgstr "名前フィールド用のエラーメッセージ"
555
 
556
- #: contact_form.php:1738 contact_form.php:1776
557
  msgid "Error message for the Address field"
558
  msgstr "住所フィールド用のエラーメッセージ"
559
 
560
- #: contact_form.php:1739 contact_form.php:1777
561
  msgid "Error message for the Email field"
562
  msgstr "Eメール・フィールド用のエラーメッセージ"
563
 
564
- #: contact_form.php:1740 contact_form.php:1778
565
  msgid "Error message for the Phone field"
566
  msgstr "電話フィールド用のエラーメッセージ"
567
 
568
- #: contact_form.php:1741 contact_form.php:1779
569
  msgid "Error message for the Subject field"
570
  msgstr "件名フィールド用のエラーメッセージ"
571
 
572
- #: contact_form.php:1742 contact_form.php:1780
573
  msgid "Error message for the Message field"
574
  msgstr "メッセージ・フィールド用のエラーメッセージ"
575
 
576
- #: contact_form.php:1743 contact_form.php:1781
577
  msgid "Error message about the file type for the Attachment field"
578
  msgstr "添付フィールド用の拡張子タイプに関するエラーメッセージ"
579
 
580
- #: contact_form.php:1744 contact_form.php:1782
581
  msgid ""
582
  "Error message while uploading a file for the Attachment field to the server"
583
  msgstr "添付フィールド用のファイルをサーバにアップロード中のエラーメッセージ"
584
 
585
- #: contact_form.php:1745 contact_form.php:1783
586
  msgid "Error message while moving the file for the Attachment field"
587
  msgstr "添付フィールド用のファイルを移動中のエラーメッセージ"
588
 
589
- #: contact_form.php:1746 contact_form.php:1784
590
  msgid "Error message when file size limit for the Attachment field is exceeded"
591
  msgstr "添付フィールド用のファイルサイズ制限を超した場合のエラーメッセージ"
592
 
593
- #: contact_form.php:1747 contact_form.php:1785
594
  msgid "Error message for the Captcha field"
595
  msgstr "Captcha フィールド用のエラーメッセージ"
596
 
597
- #: contact_form.php:1748 contact_form.php:1786
598
  msgid "Error message for the whole form"
599
  msgstr "全体フォーム用のエラーメッセージ"
600
 
601
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
602
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
603
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
604
- #: contact_form.php:3540
605
  msgid "Use shortcode"
606
  msgstr "短いコードの利用"
607
 
608
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
609
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
610
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
611
- #: contact_form.php:3540
612
  msgid "for this language"
613
  msgstr "この言語用に"
614
 
615
- #: contact_form.php:1799
616
  msgid "Use the changed names of the contact form fields in the email"
617
  msgstr "Eメール内のコンタクトフォーム・フィールドの変更された名前を使用"
618
 
619
- #: contact_form.php:1805
620
  msgid "Action after email is sent"
621
  msgstr "メール送信後の動作"
622
 
623
- #: contact_form.php:1807
624
  msgid "Display text"
625
  msgstr "テキストを表示"
626
 
627
- #: contact_form.php:1821 contact_form.php:1835
628
  msgid "Text"
629
  msgstr "文字"
630
 
631
- #: contact_form.php:1846
632
  msgid "Redirect to the page"
633
  msgstr "ページに転送"
634
 
635
- #: contact_form.php:1847
636
  msgid "Url"
637
  msgstr "Url"
638
 
639
- #: contact_form.php:1858
640
  msgid "Add field 'Reply-To' to the email header"
641
  msgstr ""
642
 
643
- #: contact_form.php:1860
644
  msgid "Field 'Reply-To' will be initialized by user email"
645
  msgstr ""
646
 
647
- #: contact_form.php:1864
648
  msgid "Auto Response"
649
  msgstr "自動応答"
650
 
651
- #: contact_form.php:1868
652
  #, php-format
653
  msgid ""
654
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -659,182 +659,194 @@ msgstr ""
659
  "表示するために%%NAME%%を、メッセージフィールドからデータを表示するため"
660
  "に%%MESSAGE%%が利用することが出来ます。"
661
 
662
- #: contact_form.php:1890 contact_form.php:2389
663
  msgid "Save Changes"
664
  msgstr "変更保存"
665
 
666
- #: contact_form.php:1903
667
  #, php-format
668
  msgid ""
669
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
670
  msgstr ""
671
 
672
- #: contact_form.php:1903 contact_form.php:1912
673
  msgid "Form layout"
674
  msgstr ""
675
 
676
- #: contact_form.php:1903 contact_form.php:1924
677
  #, fuzzy
678
  msgid "Submit position"
679
  msgstr "送信ボタン"
680
 
681
- #: contact_form.php:1916
682
  msgid "One column"
683
  msgstr ""
684
 
685
- #: contact_form.php:1919
686
  msgid "Two columns"
687
  msgstr ""
688
 
689
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
690
- #: contact_form.php:1980
691
  msgid "Left"
692
  msgstr ""
693
 
694
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
695
- #: contact_form.php:1986
696
  msgid "Right"
697
  msgstr ""
698
 
699
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
700
  msgid "Form align"
701
  msgstr ""
702
 
703
- #: contact_form.php:1950 contact_form.php:1983
704
  msgid "Center"
705
  msgstr ""
706
 
707
- #: contact_form.php:1958
708
  #, fuzzy
709
  msgid "Labels position"
710
  msgstr "送信ボタン"
711
 
712
- #: contact_form.php:1962
713
  msgid "Top"
714
  msgstr ""
715
 
716
- #: contact_form.php:1971
717
  msgid "Bottom"
718
  msgstr ""
719
 
720
- #: contact_form.php:1976
721
  msgid "Labels align"
722
  msgstr ""
723
 
724
- #: contact_form.php:1991
725
  msgid "Errors output"
726
  msgstr "エラー出力"
727
 
728
- #: contact_form.php:1994
729
  msgid "Display error messages"
730
  msgstr "エラーメッセージの表示"
731
 
732
- #: contact_form.php:1995
733
  msgid "Color of the input field errors."
734
  msgstr "入力フィールド・エラーの色"
735
 
736
- #: contact_form.php:1996
737
  msgid "Display error messages & color of the input field errors"
738
  msgstr "エラーメッセージと入力フィールド・エラーの色を表示"
739
 
740
- #: contact_form.php:2001
741
  msgid "Add placeholder to the input blocks"
742
  msgstr "プレースホルダーを入力ブロックに追加"
743
 
744
- #: contact_form.php:2007
745
  msgid "Add tooltips"
746
  msgstr "ツールチップの追加"
747
 
748
- #: contact_form.php:2021
749
  msgid "Email address"
750
  msgstr "Eメール・アドレス"
751
 
752
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
753
  msgid "Phone Number"
754
  msgstr "電話番号"
755
 
756
- #: contact_form.php:2052
757
  msgid "Style options"
758
  msgstr "スタイル・オプション"
759
 
760
- #: contact_form.php:2056
761
  msgid "Text color"
762
  msgstr "文字色"
763
 
764
- #: contact_form.php:2061
765
  msgid "Label text color"
766
  msgstr "ラベル文字色"
767
 
768
- #: contact_form.php:2066
769
  msgid "Placeholder color"
770
  msgstr "プレースホルダ色"
771
 
772
- #: contact_form.php:2071
773
  msgid "Errors color"
774
  msgstr "エラーの色"
775
 
776
- #: contact_form.php:2076
777
  msgid "Error text color"
778
  msgstr "エラーテキストの色"
779
 
780
- #: contact_form.php:2081
781
  msgid "Background color of the input field errors"
782
  msgstr "入力フィールド・エラーの背景色"
783
 
784
- #: contact_form.php:2086
785
  msgid "Border color of the input field errors"
786
  msgstr "入力フィールド・エラーの罫線色"
787
 
788
- #: contact_form.php:2091
789
  msgid "Placeholder color of the input field errors"
790
  msgstr "入力フィールド・エラー用のプレースホルダ色"
791
 
792
- #: contact_form.php:2096
793
  msgid "Input fields"
794
  msgstr "フィールドを入力"
795
 
796
- #: contact_form.php:2101
797
  msgid "Input fields background color"
798
  msgstr "フィールドの背景色の入力"
799
 
800
- #: contact_form.php:2106
801
  msgid "Text fields color"
802
  msgstr "文字フィールド色"
803
 
804
- #: contact_form.php:2110
805
  msgid "Border width in px, numbers only"
806
  msgstr "罫線幅(px単位)、数値のみ"
807
 
808
- #: contact_form.php:2115 contact_form.php:2139
809
  msgid "Border color"
810
  msgstr "罫線色"
811
 
812
- #: contact_form.php:2120
813
  msgid "Submit button"
814
  msgstr "送信ボタン"
815
 
816
- #: contact_form.php:2124
817
  msgid "Width in px, numbers only"
818
  msgstr "px単位の幅、数字のみ"
819
 
820
- #: contact_form.php:2129
821
  msgid "Button color"
822
  msgstr "ボタンの色"
823
 
824
- #: contact_form.php:2134
825
  msgid "Button text color"
826
  msgstr "ボタン文字の色"
827
 
828
- #: contact_form.php:2163
829
  #, fuzzy
830
  msgid "Contact Form | Preview"
831
  msgstr "Contact Form Pro | プレビュー"
832
 
833
- #: contact_form.php:2164
834
  msgid "Drag the necessary field to sort fields."
835
  msgstr ""
836
 
837
- #: contact_form.php:2376
838
  #, fuzzy
839
  msgid ""
840
  "If you would like to add the Contact Form to your website, just copy and "
@@ -843,92 +855,84 @@ msgstr ""
843
  "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
844
  "ページ又はウェジットにコピーして貼り付けるだけです:"
845
 
846
- #: contact_form.php:2504
847
  msgid "Sorry, email message could not be delivered."
848
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
849
 
850
- #: contact_form.php:3094 contact_form.php:3096
851
  msgid "Sent from (ip address)"
852
  msgstr "送信された(IP-Adresse)"
853
 
854
- #: contact_form.php:3124
855
  msgid "Contact from"
856
  msgstr "Contact Form"
857
 
858
- #: contact_form.php:3129 contact_form.php:3178
859
  msgid "Site"
860
  msgstr "サイト"
861
 
862
- #: contact_form.php:3308
863
  msgid ""
864
  "If you can see this MIME, it means that the MIME type is not supported by "
865
  "your email client!"
866
  msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
867
 
868
- #: contact_form.php:3391
869
  msgid "FAQ"
870
  msgstr "FAQ"
871
 
872
- #: contact_form.php:3392
873
  msgid "Support"
874
  msgstr "サポート"
875
 
876
- #: contact_form.php:3441
877
  msgid "Are you sure that you want to delete this language data?"
878
  msgstr "本当に、この言語データを削除しますか?"
879
 
880
- #: contact_form.php:3462
881
  #, fuzzy
882
  msgid "Add multiple forms"
883
  msgstr "フォームに追加"
884
 
885
- #: contact_form.php:3462
886
  msgid ""
887
  "Install Contact Form Multi plugin to create unlimited number of contact "
888
  "forms."
889
  msgstr ""
890
 
891
- #: contact_form.php:3467
892
  msgid "Learn more"
893
  msgstr "もっと学ぶ"
894
 
895
- #: contact_form.php:3693
896
  msgid "Close notice"
897
  msgstr ""
898
 
899
- #: contact_form.php:3698
900
  #, fuzzy
901
  msgid "allows to store your messages to the database."
902
  msgstr ""
903
  "<strong>Contact Form to DB</strong>は、貴方のメッセージをデータベースに保存し"
904
  "ます。"
905
 
906
- #: contact_form.php:3699
907
  msgid "Manage messages that have been sent from your website."
908
  msgstr "貴方のウェブサイトから送られるメッセージを管理"
909
 
910
- #: contact_form.php:3702
911
  msgid "Learn More"
912
  msgstr "もっと学ぶ"
913
 
914
- #: contact_form.php:3762
915
  #, fuzzy
916
  msgid "Contact form"
917
  msgstr "Contact Form"
918
 
919
- #: contact_form.php:3775 contact_form.php:3785
920
  #, fuzzy
921
  msgid "Language"
922
  msgstr "言語の追加"
923
 
924
- #: includes/deprecated.php:168
925
- #, php-format
926
- msgid ""
927
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
928
- "replace it with %3s. If you close this message it'll appear again after "
929
- "deprecated shortcode reuse."
930
- msgstr ""
931
-
932
  #, fuzzy
933
  #~ msgid "Unlock premium options by upgrading to Pro version"
934
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:15+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:37 contact_form.php:1064
20
  msgid "Contact Form Settings"
21
  msgstr "Contact Form設定"
22
 
23
+ #: contact_form.php:37
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
28
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
29
+ #: contact_form.php:3181 contact_form.php:3227
30
  msgid "Name"
31
  msgstr "名前"
32
 
33
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
34
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
35
+ #: contact_form.php:3233
36
  msgid "Address"
37
  msgstr "住所"
38
 
39
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
40
+ #: contact_form.php:1765
41
  msgid "Email Address"
42
  msgstr "Eメール・アドレス"
43
 
44
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
45
+ #: contact_form.php:1766
46
  msgid "Phone number"
47
  msgstr "電話番号"
48
 
49
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
50
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
51
+ #: contact_form.php:3242
52
  msgid "Subject"
53
  msgstr "件名"
54
 
55
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
56
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
57
+ #: contact_form.php:3246
58
  msgid "Message"
59
  msgstr "メッセージ"
60
 
61
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
62
+ #: contact_form.php:2058
63
  msgid "Attachment"
64
  msgstr "添付"
65
 
66
+ #: contact_form.php:287
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
71
  "サポートしてるファイル形式: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
72
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
75
  msgid "Send me a copy"
76
  msgstr "コピーを自分に送る"
77
 
78
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
79
  msgid "Submit"
80
  msgstr "送信"
81
 
82
+ #: contact_form.php:290
83
  msgid "Your name is required."
84
  msgstr "名前は必須です。"
85
 
86
+ #: contact_form.php:291
87
  msgid "Address is required."
88
  msgstr "住所が必要です。"
89
 
90
+ #: contact_form.php:292
91
  msgid "A valid email address is required."
92
  msgstr "有効なEメールアドレスlが必須です。"
93
 
94
+ #: contact_form.php:293
95
  msgid "Phone number is required."
96
  msgstr "電話番号は必須です。"
97
 
98
+ #: contact_form.php:294
99
  msgid "Subject is required."
100
  msgstr "件名は必須です。"
101
 
102
+ #: contact_form.php:295
103
  msgid "Message text is required."
104
  msgstr "メッセージ本文は必須です。"
105
 
106
+ #: contact_form.php:296
107
  msgid "File format is not valid."
108
  msgstr "添付が壊れています。"
109
 
110
+ #: contact_form.php:297
111
  msgid "File upload error."
112
  msgstr "ファイル・アップロード・エラー。"
113
 
114
+ #: contact_form.php:298
115
  msgid "The file could not be uploaded."
116
  msgstr "ファイルは、アップロード出来ませんでした。"
117
 
118
+ #: contact_form.php:299
119
  msgid "This file is too large."
120
  msgstr "このファイルは大きすぎます。"
121
 
122
+ #: contact_form.php:300
123
  msgid "Please fill out the CAPTCHA."
124
  msgstr "CAPTCHAを入力して下さい。"
125
 
126
+ #: contact_form.php:301
127
  msgid "Please make corrections below and try again."
128
  msgstr "以下を修正し、再度試して下さい。"
129
 
130
+ #: contact_form.php:303
131
  msgid "Thank you for contacting us."
132
  msgstr "ご連絡ありがとうございます"
133
 
134
+ #: contact_form.php:759 contact_form.php:1021
135
  msgid "Settings saved."
136
  msgstr "設定保存."
137
 
138
+ #: contact_form.php:966
139
  msgid ""
140
  "Email 'FROM' field option was changed, which may cause email messages being "
141
  "moved to the spam folder or email delivery failures."
142
  msgstr ""
143
 
144
+ #: contact_form.php:976
145
  msgid ""
146
  "If the 'Redirect to page' option is selected then the URL field should be in "
147
  "the following format"
149
  "’ページに転送’オプションを選択した場合は、URLフィールドが、以下の形式になりま"
150
  "す"
151
 
152
+ #: contact_form.php:983
153
  msgid "Such user does not exist."
154
  msgstr "そのようなユーザは存在しません。"
155
 
156
+ #: contact_form.php:993
157
  msgid ""
158
  "Please enter a valid email address in the 'Use this email address' field."
159
  msgstr ""
160
  "'このEメールアドレスを使用'フィールドに有効化なEメール・アドレスを入力して下"
161
  "さい。"
162
 
163
+ #: contact_form.php:1001
164
  msgid "Please enter a valid email address in the 'FROM' field."
165
  msgstr "'送信者'フィールドに有効なEメールアドレスを入力して下さい。"
166
 
167
+ #: contact_form.php:1023
168
  msgid "Settings are not saved."
169
  msgstr "設定は保存さていません。"
170
 
171
+ #: contact_form.php:1061
172
  msgid "All plugin settings were restored."
173
  msgstr ""
174
 
175
+ #: contact_form.php:1067
176
  msgid "How to Use Step-by-step Instruction"
177
  msgstr ""
178
 
179
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
180
  msgid "Settings"
181
  msgstr "設定"
182
 
183
+ #: contact_form.php:1071
184
  #, fuzzy
185
  msgid "Additional settings"
186
  msgstr "追加オプション"
187
 
188
+ #: contact_form.php:1072
189
  msgid "Appearance"
190
  msgstr ""
191
 
192
+ #: contact_form.php:1073
193
  msgid "Custom code"
194
  msgstr ""
195
 
196
+ #: contact_form.php:1074
197
  msgid "Go PRO"
198
  msgstr "PROに進む"
199
 
200
+ #: contact_form.php:1085
201
  #, fuzzy
202
  msgid "Notice"
203
  msgstr "通知:"
204
 
205
+ #: contact_form.php:1089
206
  msgid "NEW_FORM"
207
  msgstr ""
208
 
209
+ #: contact_form.php:1090
210
  msgid ""
211
  "If you want to create multiple contact forms, please install the Contact "
212
  "Form Multi plugin."
214
  "複数のコンタクトフォームを作成したい場合は、Contact Form Multiプラグインを導"
215
  "入して下さい。"
216
 
217
+ #: contact_form.php:1099
218
  #, fuzzy, php-format
219
  msgid ""
220
  "If you would like to add a Contact Form to your page or post, please use %s "
223
  "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
224
  "ページ又はウェジットにコピーして貼り付けるだけです:"
225
 
226
+ #: contact_form.php:1105
227
  #, php-format
228
  msgid ""
229
  "You can add the Contact Form to your page or post by clicking on %s button "
232
  "language."
233
  msgstr ""
234
 
235
+ #: contact_form.php:1114
236
  msgid ""
237
  "If you leave the fields empty, the messages will be sent to the email "
238
  "address specified during registration."
240
  "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られ"
241
  "ます。"
242
 
243
+ #: contact_form.php:1117
244
  #, fuzzy
245
  msgid "The user's email address"
246
  msgstr "wordpressユーザのEメールを利用r:"
247
 
248
+ #: contact_form.php:1121
249
  #, fuzzy
250
  msgid "Select a username"
251
  msgstr "ユーザ名の選択"
252
 
253
+ #: contact_form.php:1134
254
  #, fuzzy
255
  msgid ""
256
  "Select a username of the person who should get the messages from the contact "
257
  "form."
258
  msgstr "コンタクトフォームからメッセージを受け取る方のユーザ名を入力。"
259
 
260
+ #: contact_form.php:1138
261
  #, fuzzy
262
  msgid "Use this email address"
263
  msgstr "このEメールを利用:"
264
 
265
+ #: contact_form.php:1142
266
  #, fuzzy
267
  msgid "Enter the email address for receiving messages"
268
  msgstr "メッセージ受信用のEメールを設定。"
269
 
270
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
271
+ #: contact_form.php:1957 contact_form.php:3514
272
  msgid "Close"
273
  msgstr ""
274
 
275
+ #: contact_form.php:1153
276
  #, fuzzy
277
  msgid "Add department selectbox to the contact form"
278
  msgstr "部署選択ボックスをコンタクトフォームに追加:"
279
 
280
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
281
+ #: contact_form.php:2163
282
  msgid "If you upgrade to Pro version all your settings will be saved."
283
  msgstr "PROバージョンにアップグレードすると、設定が保存されます。"
284
 
285
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
286
+ #: contact_form.php:1878 contact_form.php:2170
287
  msgid "Upgrade to Pro"
288
  msgstr ""
289
 
290
+ #: contact_form.php:1176
291
  msgid "Save emails to the database"
292
  msgstr "メールをデータベースに保存"
293
 
294
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
295
  msgid "Using"
296
  msgstr "使用中"
297
 
298
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
299
+ #: contact_form.php:1623
300
  msgid "Please activate the appropriate option on"
301
  msgstr ""
302
 
303
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
304
+ #: contact_form.php:1626
305
  #, fuzzy
306
  msgid "settings page"
307
  msgstr "設定ページ"
308
 
309
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
310
+ #: contact_form.php:1633
311
  msgid "Activate"
312
  msgstr "有効化"
313
 
314
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
315
+ #: contact_form.php:1638
316
  msgid "Download"
317
  msgstr "ダウンロード"
318
 
319
+ #: contact_form.php:1222
320
  msgid "Sending method"
321
  msgstr ""
322
 
323
+ #: contact_form.php:1227
324
  msgid "Wp-mail"
325
  msgstr "WPメール"
326
 
327
+ #: contact_form.php:1229
328
  #, fuzzy
329
  msgid "You can use the Wordpress wp_mail function for mailing"
330
  msgstr "メールにwp_mali機能が利用できます"
331
 
332
+ #: contact_form.php:1232
333
  msgid "Mail"
334
  msgstr "メール"
335
 
336
+ #: contact_form.php:1234
337
  #, fuzzy
338
  msgid "You can use the PHP mail function for mailing"
339
  msgstr "メールにwp_mali機能が利用できます"
340
 
341
+ #: contact_form.php:1239
342
  msgid "'FROM' field"
343
  msgstr ""
344
 
345
+ #: contact_form.php:1255
346
  msgid "User name"
347
  msgstr "ユーザ名"
348
 
349
+ #: contact_form.php:1257
350
  msgid ""
351
  "The name of the user who fills the form will be used in the field 'From'."
352
  msgstr "フォームを入力するユーザの名前が、'送信者'フィールドに使用されます。"
353
 
354
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
355
  msgid "Email"
356
  msgstr "Eメール"
357
 
358
+ #: contact_form.php:1279
359
  msgid "User email"
360
  msgstr "ユーザ・Eメール"
361
 
362
+ #: contact_form.php:1281
363
  msgid ""
364
  "The email address of the user who fills the form will be used in the field "
365
  "'From'."
367
  "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用されま"
368
  "す。"
369
 
370
+ #: contact_form.php:1290
371
  msgid ""
372
  "If this option is changed, email messages may be moved to the spam folder or "
373
  "email delivery failures may occur."
374
  msgstr ""
375
 
376
+ #: contact_form.php:1299
377
  msgid "Required symbol"
378
  msgstr "必須シンボル"
379
 
380
+ #: contact_form.php:1309
381
  msgid "Fields"
382
  msgstr "フィールド"
383
 
384
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
385
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
386
  msgid "Used"
387
  msgstr "使用済"
388
 
389
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
390
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
391
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
392
  msgid "Required"
393
  msgstr "必須"
394
 
395
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
396
+ #: contact_form.php:1445 contact_form.php:1469
397
  msgid "Visible"
398
  msgstr "可視"
399
 
400
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
401
+ #: contact_form.php:1449 contact_form.php:1473
402
  msgid "Disabled for editing"
403
  msgstr "編集を無効化"
404
 
405
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
406
+ #: contact_form.php:1477
407
  msgid "Field's default value"
408
  msgstr "フィールドのデフォルト値"
409
 
410
+ #: contact_form.php:1322
411
  #, fuzzy
412
  msgid "Department selectbox"
413
  msgstr "場所選択ボックス"
414
 
415
+ #: contact_form.php:1354
416
  msgid "Use User's name as a default value if the user is logged in."
417
  msgstr ""
418
 
419
+ #: contact_form.php:1355 contact_form.php:1415
420
  msgid ""
421
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
422
  "in users."
423
  msgstr ""
424
 
425
+ #: contact_form.php:1361
426
  msgid "Location selectbox"
427
  msgstr "場所選択ボックス"
428
 
429
+ #: contact_form.php:1414
430
  msgid "Use User's email as a default value if the user is logged in."
431
  msgstr ""
432
 
433
+ #: contact_form.php:1498
434
  msgid "Attachment block"
435
  msgstr "添付ブロック"
436
 
437
+ #: contact_form.php:1500
438
  msgid "Users can attach the following file formats"
439
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
440
 
441
+ #: contact_form.php:1518
442
  msgid "Add to the form"
443
  msgstr "フォームに追加"
444
 
445
+ #: contact_form.php:1523
446
  msgid "Tips below the Attachment"
447
  msgstr "添付ファイルの下のチップス"
448
 
449
+ #: contact_form.php:1530
450
  msgid "'Send me a copy' block"
451
  msgstr "'コピーを自分に送る'ブロック"
452
 
453
+ #: contact_form.php:1558
454
  msgid "Activate for network"
455
  msgstr ""
456
 
457
+ #: contact_form.php:1649
458
  msgid "Agreement checkbox"
459
  msgstr "同意のチェックボックス"
460
 
461
+ #: contact_form.php:1649
462
  msgid "Required checkbox for submitting the form"
463
  msgstr "フォームを送信するために必須のチェックボックス"
464
 
465
+ #: contact_form.php:1650
466
  msgid "Optional checkbox"
467
  msgstr "オプションのチェックボックス"
468
 
469
+ #: contact_form.php:1650
470
  msgid "Optional checkbox, the results of which will be displayed in email"
471
  msgstr "オプションのチェックボックス、Eメールに表示される結果"
472
 
473
+ #: contact_form.php:1668
474
  msgid "Delete an attachment file from the server after the email is sent"
475
  msgstr "Eメール送信後、サーバから添付ファイルを削除"
476
 
477
+ #: contact_form.php:1674
478
  msgid "Email in HTML format sending"
479
  msgstr "HTMLフォーマットでメール送信"
480
 
481
+ #: contact_form.php:1678
482
  msgid "Display additional info in the email"
483
  msgstr "メール中に追加情報を表示"
484
 
485
+ #: contact_form.php:1684
486
  #, fuzzy
487
  msgid "Sent from (IP address)"
488
  msgstr "送信された(IP-Adresse)"
489
 
490
+ #: contact_form.php:1684
491
  msgid "Example: Sent from (IP address):\t127.0.0.1"
492
  msgstr "例: 送信された(IP-Adresse):\t127.0.0.1"
493
 
494
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
495
  msgid "Date/Time"
496
  msgstr "日時"
497
 
498
+ #: contact_form.php:1685
499
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
500
  msgstr "例: 日時:\tAugust 19, 2013 8:50 pm"
501
 
502
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
503
  msgid "Sent from (referer)"
504
  msgstr "送信された(referer)"
505
 
506
+ #: contact_form.php:1686
507
  #, fuzzy
508
  msgid ""
509
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
510
  msgstr "例: 送信された (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
511
 
512
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
513
  msgid "Using (user agent)"
514
  msgstr "利用中の (user agent)"
515
 
516
+ #: contact_form.php:1687
517
  msgid ""
518
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
519
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
521
  "例: 利用中の (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
522
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
523
 
524
+ #: contact_form.php:1692
525
  msgid "Language settings for the field names in the form"
526
  msgstr "フォーム内のフィールド名の言語設定"
527
 
528
+ #: contact_form.php:1701
529
  msgid "Add a language"
530
  msgstr "言語の追加"
531
 
532
+ #: contact_form.php:1705
533
  msgid "Change the names of the contact form fields and error messages"
534
  msgstr "コンタクトフォームのフィールド名及びエラーメッセージを変更"
535
 
536
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
537
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
538
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
539
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
540
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
541
  msgid "Default"
542
  msgstr "標準"
543
 
544
+ #: contact_form.php:1723 contact_form.php:1761
545
  msgid "click to expand/hide the list"
546
  msgstr "クリックして、このリストを展開/隠す"
547
 
548
+ #: contact_form.php:1732 contact_form.php:1770
549
  msgid "Tips below the Attachment block"
550
  msgstr "添付ファイル・ブロックの下のチップス"
551
 
552
+ #: contact_form.php:1735 contact_form.php:1773
553
  msgid "Error message for the Name field"
554
  msgstr "名前フィールド用のエラーメッセージ"
555
 
556
+ #: contact_form.php:1736 contact_form.php:1774
557
  msgid "Error message for the Address field"
558
  msgstr "住所フィールド用のエラーメッセージ"
559
 
560
+ #: contact_form.php:1737 contact_form.php:1775
561
  msgid "Error message for the Email field"
562
  msgstr "Eメール・フィールド用のエラーメッセージ"
563
 
564
+ #: contact_form.php:1738 contact_form.php:1776
565
  msgid "Error message for the Phone field"
566
  msgstr "電話フィールド用のエラーメッセージ"
567
 
568
+ #: contact_form.php:1739 contact_form.php:1777
569
  msgid "Error message for the Subject field"
570
  msgstr "件名フィールド用のエラーメッセージ"
571
 
572
+ #: contact_form.php:1740 contact_form.php:1778
573
  msgid "Error message for the Message field"
574
  msgstr "メッセージ・フィールド用のエラーメッセージ"
575
 
576
+ #: contact_form.php:1741 contact_form.php:1779
577
  msgid "Error message about the file type for the Attachment field"
578
  msgstr "添付フィールド用の拡張子タイプに関するエラーメッセージ"
579
 
580
+ #: contact_form.php:1742 contact_form.php:1780
581
  msgid ""
582
  "Error message while uploading a file for the Attachment field to the server"
583
  msgstr "添付フィールド用のファイルをサーバにアップロード中のエラーメッセージ"
584
 
585
+ #: contact_form.php:1743 contact_form.php:1781
586
  msgid "Error message while moving the file for the Attachment field"
587
  msgstr "添付フィールド用のファイルを移動中のエラーメッセージ"
588
 
589
+ #: contact_form.php:1744 contact_form.php:1782
590
  msgid "Error message when file size limit for the Attachment field is exceeded"
591
  msgstr "添付フィールド用のファイルサイズ制限を超した場合のエラーメッセージ"
592
 
593
+ #: contact_form.php:1745 contact_form.php:1783
594
  msgid "Error message for the Captcha field"
595
  msgstr "Captcha フィールド用のエラーメッセージ"
596
 
597
+ #: contact_form.php:1746 contact_form.php:1784
598
  msgid "Error message for the whole form"
599
  msgstr "全体フォーム用のエラーメッセージ"
600
 
601
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
602
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
603
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
604
+ #: contact_form.php:3604
605
  msgid "Use shortcode"
606
  msgstr "短いコードの利用"
607
 
608
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
609
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
610
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
611
+ #: contact_form.php:3604
612
  msgid "for this language"
613
  msgstr "この言語用に"
614
 
615
+ #: contact_form.php:1797
616
  msgid "Use the changed names of the contact form fields in the email"
617
  msgstr "Eメール内のコンタクトフォーム・フィールドの変更された名前を使用"
618
 
619
+ #: contact_form.php:1803
620
  msgid "Action after email is sent"
621
  msgstr "メール送信後の動作"
622
 
623
+ #: contact_form.php:1805
624
  msgid "Display text"
625
  msgstr "テキストを表示"
626
 
627
+ #: contact_form.php:1819 contact_form.php:1833
628
  msgid "Text"
629
  msgstr "文字"
630
 
631
+ #: contact_form.php:1844
632
  msgid "Redirect to the page"
633
  msgstr "ページに転送"
634
 
635
+ #: contact_form.php:1845
636
  msgid "Url"
637
  msgstr "Url"
638
 
639
+ #: contact_form.php:1856
640
  msgid "Add field 'Reply-To' to the email header"
641
  msgstr ""
642
 
643
+ #: contact_form.php:1858
644
  msgid "Field 'Reply-To' will be initialized by user email"
645
  msgstr ""
646
 
647
+ #: contact_form.php:1862
648
  msgid "Auto Response"
649
  msgstr "自動応答"
650
 
651
+ #: contact_form.php:1866
652
  #, php-format
653
  msgid ""
654
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
659
  "表示するために%%NAME%%を、メッセージフィールドからデータを表示するため"
660
  "に%%MESSAGE%%が利用することが出来ます。"
661
 
662
+ #: contact_form.php:1888 contact_form.php:2419
663
  msgid "Save Changes"
664
  msgstr "変更保存"
665
 
666
+ #: contact_form.php:1901
667
  #, php-format
668
  msgid ""
669
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
670
  msgstr ""
671
 
672
+ #: contact_form.php:1901 contact_form.php:1910
673
  msgid "Form layout"
674
  msgstr ""
675
 
676
+ #: contact_form.php:1901 contact_form.php:1922
677
  #, fuzzy
678
  msgid "Submit position"
679
  msgstr "送信ボタン"
680
 
681
+ #: contact_form.php:1914
682
  msgid "One column"
683
  msgstr ""
684
 
685
+ #: contact_form.php:1917
686
  msgid "Two columns"
687
  msgstr ""
688
 
689
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
690
+ #: contact_form.php:1998
691
  msgid "Left"
692
  msgstr ""
693
 
694
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
695
+ #: contact_form.php:2004
696
  msgid "Right"
697
  msgstr ""
698
 
699
+ #: contact_form.php:1934
700
+ msgid "Width"
701
+ msgstr ""
702
+
703
+ #: contact_form.php:1941
704
+ msgid "Custom"
705
+ msgstr ""
706
+
707
+ #: contact_form.php:1948
708
+ msgid "px"
709
+ msgstr ""
710
+
711
+ #: contact_form.php:1961
712
  msgid "Form align"
713
  msgstr ""
714
 
715
+ #: contact_form.php:1968 contact_form.php:2001
716
  msgid "Center"
717
  msgstr ""
718
 
719
+ #: contact_form.php:1976
720
  #, fuzzy
721
  msgid "Labels position"
722
  msgstr "送信ボタン"
723
 
724
+ #: contact_form.php:1980
725
  msgid "Top"
726
  msgstr ""
727
 
728
+ #: contact_form.php:1989
729
  msgid "Bottom"
730
  msgstr ""
731
 
732
+ #: contact_form.php:1994
733
  msgid "Labels align"
734
  msgstr ""
735
 
736
+ #: contact_form.php:2009
737
  msgid "Errors output"
738
  msgstr "エラー出力"
739
 
740
+ #: contact_form.php:2012
741
  msgid "Display error messages"
742
  msgstr "エラーメッセージの表示"
743
 
744
+ #: contact_form.php:2013
745
  msgid "Color of the input field errors."
746
  msgstr "入力フィールド・エラーの色"
747
 
748
+ #: contact_form.php:2014
749
  msgid "Display error messages & color of the input field errors"
750
  msgstr "エラーメッセージと入力フィールド・エラーの色を表示"
751
 
752
+ #: contact_form.php:2019
753
  msgid "Add placeholder to the input blocks"
754
  msgstr "プレースホルダーを入力ブロックに追加"
755
 
756
+ #: contact_form.php:2025
757
  msgid "Add tooltips"
758
  msgstr "ツールチップの追加"
759
 
760
+ #: contact_form.php:2039
761
  msgid "Email address"
762
  msgstr "Eメール・アドレス"
763
 
764
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
765
  msgid "Phone Number"
766
  msgstr "電話番号"
767
 
768
+ #: contact_form.php:2070
769
  msgid "Style options"
770
  msgstr "スタイル・オプション"
771
 
772
+ #: contact_form.php:2074
773
  msgid "Text color"
774
  msgstr "文字色"
775
 
776
+ #: contact_form.php:2079
777
  msgid "Label text color"
778
  msgstr "ラベル文字色"
779
 
780
+ #: contact_form.php:2084
781
  msgid "Placeholder color"
782
  msgstr "プレースホルダ色"
783
 
784
+ #: contact_form.php:2089
785
  msgid "Errors color"
786
  msgstr "エラーの色"
787
 
788
+ #: contact_form.php:2094
789
  msgid "Error text color"
790
  msgstr "エラーテキストの色"
791
 
792
+ #: contact_form.php:2099
793
  msgid "Background color of the input field errors"
794
  msgstr "入力フィールド・エラーの背景色"
795
 
796
+ #: contact_form.php:2104
797
  msgid "Border color of the input field errors"
798
  msgstr "入力フィールド・エラーの罫線色"
799
 
800
+ #: contact_form.php:2109
801
  msgid "Placeholder color of the input field errors"
802
  msgstr "入力フィールド・エラー用のプレースホルダ色"
803
 
804
+ #: contact_form.php:2114
805
  msgid "Input fields"
806
  msgstr "フィールドを入力"
807
 
808
+ #: contact_form.php:2119
809
  msgid "Input fields background color"
810
  msgstr "フィールドの背景色の入力"
811
 
812
+ #: contact_form.php:2124
813
  msgid "Text fields color"
814
  msgstr "文字フィールド色"
815
 
816
+ #: contact_form.php:2128
817
  msgid "Border width in px, numbers only"
818
  msgstr "罫線幅(px単位)、数値のみ"
819
 
820
+ #: contact_form.php:2133 contact_form.php:2157
821
  msgid "Border color"
822
  msgstr "罫線色"
823
 
824
+ #: contact_form.php:2138
825
  msgid "Submit button"
826
  msgstr "送信ボタン"
827
 
828
+ #: contact_form.php:2142
829
  msgid "Width in px, numbers only"
830
  msgstr "px単位の幅、数字のみ"
831
 
832
+ #: contact_form.php:2147
833
  msgid "Button color"
834
  msgstr "ボタンの色"
835
 
836
+ #: contact_form.php:2152
837
  msgid "Button text color"
838
  msgstr "ボタン文字の色"
839
 
840
+ #: contact_form.php:2181
841
  #, fuzzy
842
  msgid "Contact Form | Preview"
843
  msgstr "Contact Form Pro | プレビュー"
844
 
845
+ #: contact_form.php:2182
846
  msgid "Drag the necessary field to sort fields."
847
  msgstr ""
848
 
849
+ #: contact_form.php:2408
850
  #, fuzzy
851
  msgid ""
852
  "If you would like to add the Contact Form to your website, just copy and "
855
  "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
856
  "ページ又はウェジットにコピーして貼り付けるだけです:"
857
 
858
+ #: contact_form.php:2536
859
  msgid "Sorry, email message could not be delivered."
860
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
861
 
862
+ #: contact_form.php:3137 contact_form.php:3139
863
  msgid "Sent from (ip address)"
864
  msgstr "送信された(IP-Adresse)"
865
 
866
+ #: contact_form.php:3167
867
  msgid "Contact from"
868
  msgstr "Contact Form"
869
 
870
+ #: contact_form.php:3172 contact_form.php:3221
871
  msgid "Site"
872
  msgstr "サイト"
873
 
874
+ #: contact_form.php:3351
875
  msgid ""
876
  "If you can see this MIME, it means that the MIME type is not supported by "
877
  "your email client!"
878
  msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
879
 
880
+ #: contact_form.php:3434
881
  msgid "FAQ"
882
  msgstr "FAQ"
883
 
884
+ #: contact_form.php:3435
885
  msgid "Support"
886
  msgstr "サポート"
887
 
888
+ #: contact_form.php:3484
889
  msgid "Are you sure that you want to delete this language data?"
890
  msgstr "本当に、この言語データを削除しますか?"
891
 
892
+ #: contact_form.php:3505
893
  #, fuzzy
894
  msgid "Add multiple forms"
895
  msgstr "フォームに追加"
896
 
897
+ #: contact_form.php:3505
898
  msgid ""
899
  "Install Contact Form Multi plugin to create unlimited number of contact "
900
  "forms."
901
  msgstr ""
902
 
903
+ #: contact_form.php:3510
904
  msgid "Learn more"
905
  msgstr "もっと学ぶ"
906
 
907
+ #: contact_form.php:3751
908
  msgid "Close notice"
909
  msgstr ""
910
 
911
+ #: contact_form.php:3756
912
  #, fuzzy
913
  msgid "allows to store your messages to the database."
914
  msgstr ""
915
  "<strong>Contact Form to DB</strong>は、貴方のメッセージをデータベースに保存し"
916
  "ます。"
917
 
918
+ #: contact_form.php:3757
919
  msgid "Manage messages that have been sent from your website."
920
  msgstr "貴方のウェブサイトから送られるメッセージを管理"
921
 
922
+ #: contact_form.php:3760
923
  msgid "Learn More"
924
  msgstr "もっと学ぶ"
925
 
926
+ #: contact_form.php:3820
927
  #, fuzzy
928
  msgid "Contact form"
929
  msgstr "Contact Form"
930
 
931
+ #: contact_form.php:3833 contact_form.php:3843
932
  #, fuzzy
933
  msgid "Language"
934
  msgstr "言語の追加"
935
 
 
 
 
 
 
 
 
 
936
  #, fuzzy
937
  #~ msgid "Unlock premium options by upgrading to Pro version"
938
  #~ msgstr ""
languages/contact-form-plugin-nb_NO.mo CHANGED
Binary file
languages/contact-form-plugin-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: 2017-02-27 16:23+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Per Rommetveit <bestwebsoftcontact@nordsoft.no>\n"
9
  "Language: nb_NO\n"
@@ -16,54 +16,54 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:42 contact_form.php:1066
20
  msgid "Contact Form Settings"
21
  msgstr "Instillinger for kontaktskjema"
22
 
23
- #: contact_form.php:42
24
  msgid "Contact Form"
25
  msgstr "Kontaktskjema"
26
 
27
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
28
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
29
- #: contact_form.php:3138 contact_form.php:3184
30
  msgid "Name"
31
  msgstr "Navn"
32
 
33
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
34
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
35
- #: contact_form.php:3190
36
  msgid "Address"
37
  msgstr "Adresse"
38
 
39
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
40
- #: contact_form.php:1767
41
  msgid "Email Address"
42
  msgstr "E-post"
43
 
44
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
45
- #: contact_form.php:1768
46
  msgid "Phone number"
47
  msgstr "Telefon"
48
 
49
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
50
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
51
- #: contact_form.php:3199
52
  msgid "Subject"
53
  msgstr "Tema"
54
 
55
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
56
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
57
- #: contact_form.php:3203
58
  msgid "Message"
59
  msgstr "Melding"
60
 
61
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
62
- #: contact_form.php:2040
63
  msgid "Attachment"
64
  msgstr "Vedheng"
65
 
66
- #: contact_form.php:302
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -71,77 +71,77 @@ msgstr ""
71
  "Støttede filtyper: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, "
72
  "PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
75
  msgid "Send me a copy"
76
  msgstr "Send meg en kopi"
77
 
78
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
79
  msgid "Submit"
80
  msgstr "Send"
81
 
82
- #: contact_form.php:305
83
  msgid "Your name is required."
84
  msgstr "Navn er obligatorisk."
85
 
86
- #: contact_form.php:306
87
  msgid "Address is required."
88
  msgstr "Adresse er påkrevet."
89
 
90
- #: contact_form.php:307
91
  msgid "A valid email address is required."
92
  msgstr "Gyldig e-post adresse er nødvendig."
93
 
94
- #: contact_form.php:308
95
  msgid "Phone number is required."
96
  msgstr "Telefon er nødvendig."
97
 
98
- #: contact_form.php:309
99
  msgid "Subject is required."
100
  msgstr "Tema er nødvendig."
101
 
102
- #: contact_form.php:310
103
  msgid "Message text is required."
104
  msgstr "Meldingsinnhold er nødvendig."
105
 
106
- #: contact_form.php:311
107
  msgid "File format is not valid."
108
  msgstr "Filformat er ikke gyldig"
109
 
110
- #: contact_form.php:312
111
  msgid "File upload error."
112
  msgstr "Feil ved opplasting av fil."
113
 
114
- #: contact_form.php:313
115
  msgid "The file could not be uploaded."
116
  msgstr "Filen kunne ikke lastes opp."
117
 
118
- #: contact_form.php:314
119
  msgid "This file is too large."
120
  msgstr "Filen er for stor."
121
 
122
- #: contact_form.php:315
123
  msgid "Please fill out the CAPTCHA."
124
  msgstr "Vennligst fyll ut CAPTCHA."
125
 
126
- #: contact_form.php:316
127
  msgid "Please make corrections below and try again."
128
  msgstr "Vennligst gjør korrigeringer, og prøv igjen."
129
 
130
- #: contact_form.php:318
131
  msgid "Thank you for contacting us."
132
  msgstr "Takk for at du kontakter oss."
133
 
134
- #: contact_form.php:761 contact_form.php:1023
135
  msgid "Settings saved."
136
  msgstr "Instillinger lagret."
137
 
138
- #: contact_form.php:968
139
  msgid ""
140
  "Email 'FROM' field option was changed, which may cause email messages being "
141
  "moved to the spam folder or email delivery failures."
142
  msgstr ""
143
 
144
- #: contact_form.php:978
145
  msgid ""
146
  "If the 'Redirect to page' option is selected then the URL field should be in "
147
  "the following format"
@@ -149,63 +149,63 @@ msgstr ""
149
  "Dersom 'Videresend til side' instilling er valgt, så skal URL feltet være i "
150
  "følgende format"
151
 
152
- #: contact_form.php:985
153
  msgid "Such user does not exist."
154
  msgstr "En slik bruker eksisterer ikke."
155
 
156
- #: contact_form.php:995
157
  msgid ""
158
  "Please enter a valid email address in the 'Use this email address' field."
159
  msgstr ""
160
  "Vennligst skriv inn en gyldig e-postadresse i 'Bruk denne e-posten' feltet."
161
 
162
- #: contact_form.php:1003
163
  msgid "Please enter a valid email address in the 'FROM' field."
164
  msgstr "Vennligst skriv inn en gyldig e-post i 'FRA' feltet."
165
 
166
- #: contact_form.php:1025
167
  msgid "Settings are not saved."
168
  msgstr "Instillinger er ikke lagret."
169
 
170
- #: contact_form.php:1063
171
  msgid "All plugin settings were restored."
172
  msgstr ""
173
 
174
- #: contact_form.php:1069
175
  msgid "How to Use Step-by-step Instruction"
176
  msgstr ""
177
 
178
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
179
  msgid "Settings"
180
  msgstr "Instillinger"
181
 
182
- #: contact_form.php:1073
183
  #, fuzzy
184
  msgid "Additional settings"
185
  msgstr "Ekstrainstillinger"
186
 
187
- #: contact_form.php:1074
188
  msgid "Appearance"
189
  msgstr ""
190
 
191
- #: contact_form.php:1075
192
  msgid "Custom code"
193
  msgstr ""
194
 
195
- #: contact_form.php:1076
196
  msgid "Go PRO"
197
  msgstr "Go PRO"
198
 
199
- #: contact_form.php:1087
200
  #, fuzzy
201
  msgid "Notice"
202
  msgstr "Notis:"
203
 
204
- #: contact_form.php:1091
205
  msgid "NEW_FORM"
206
  msgstr ""
207
 
208
- #: contact_form.php:1092
209
  msgid ""
210
  "If you want to create multiple contact forms, please install the Contact "
211
  "Form Multi plugin."
@@ -213,7 +213,7 @@ msgstr ""
213
  "Dersom du ønsker å opprette flere kontaktskjema, vennligst installer Contact "
214
  "From Multi plugin"
215
 
216
- #: contact_form.php:1101
217
  #, fuzzy, php-format
218
  msgid ""
219
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -222,7 +222,7 @@ msgstr ""
222
  "Om du ønsker å legge til kontakskjema for din webside, kopier denne "
223
  "shortcoden til din post, side eller widget."
224
 
225
- #: contact_form.php:1107
226
  #, php-format
227
  msgid ""
228
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -231,7 +231,7 @@ msgid ""
231
  "language."
232
  msgstr ""
233
 
234
- #: contact_form.php:1116
235
  msgid ""
236
  "If you leave the fields empty, the messages will be sent to the email "
237
  "address specified during registration."
@@ -239,17 +239,17 @@ msgstr ""
239
  "Om du lar feltene være tomme, vil meldingene bli sent til e-post adresse "
240
  "oppgitt ved registreringen."
241
 
242
- #: contact_form.php:1119
243
  #, fuzzy
244
  msgid "The user's email address"
245
  msgstr "Brukerens e-post adress:"
246
 
247
- #: contact_form.php:1123
248
  #, fuzzy
249
  msgid "Select a username"
250
  msgstr "Opprett et brukernavn"
251
 
252
- #: contact_form.php:1136
253
  #, fuzzy
254
  msgid ""
255
  "Select a username of the person who should get the messages from the contact "
@@ -257,266 +257,266 @@ msgid ""
257
  msgstr ""
258
  "Oppgi brukernavn til personen som skal få meldingene fra kontaktskjemaet."
259
 
260
- #: contact_form.php:1140
261
  #, fuzzy
262
  msgid "Use this email address"
263
  msgstr "Bruk denne e-post adressen:"
264
 
265
- #: contact_form.php:1144
266
  #, fuzzy
267
  msgid "Enter the email address for receiving messages"
268
  msgstr "Legg inn e-post adressen du ønsker meldingene videresendt til."
269
 
270
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
271
- #: contact_form.php:1939 contact_form.php:3471
272
  msgid "Close"
273
  msgstr ""
274
 
275
- #: contact_form.php:1155
276
  #, fuzzy
277
  msgid "Add department selectbox to the contact form"
278
  msgstr "Legg til avdelingssjekkboks til kontaktskjemaet:"
279
 
280
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
281
- #: contact_form.php:2145
282
  msgid "If you upgrade to Pro version all your settings will be saved."
283
  msgstr ""
284
  "Om du oppgraderer til Pro versjonen, vil alle instillingene dine bli lagret."
285
 
286
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
287
- #: contact_form.php:1880 contact_form.php:2152
288
  msgid "Upgrade to Pro"
289
  msgstr ""
290
 
291
- #: contact_form.php:1178
292
  msgid "Save emails to the database"
293
  msgstr "Lagre e-poster til databasen."
294
 
295
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
296
  msgid "Using"
297
  msgstr "Bruker"
298
 
299
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
300
- #: contact_form.php:1625
301
  msgid "Please activate the appropriate option on"
302
  msgstr ""
303
 
304
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
305
- #: contact_form.php:1628
306
  #, fuzzy
307
  msgid "settings page"
308
  msgstr "siden for instillinger"
309
 
310
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
311
- #: contact_form.php:1635
312
  msgid "Activate"
313
  msgstr "Aktiver"
314
 
315
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
316
- #: contact_form.php:1640
317
  msgid "Download"
318
  msgstr "Завантажити"
319
 
320
- #: contact_form.php:1224
321
  msgid "Sending method"
322
  msgstr ""
323
 
324
- #: contact_form.php:1229
325
  msgid "Wp-mail"
326
  msgstr "Wp-mail"
327
 
328
- #: contact_form.php:1231
329
  #, fuzzy
330
  msgid "You can use the Wordpress wp_mail function for mailing"
331
  msgstr "Du kan bruke wp_mail funksjon for å sende e-post."
332
 
333
- #: contact_form.php:1234
334
  msgid "Mail"
335
  msgstr "E-post"
336
 
337
- #: contact_form.php:1236
338
  #, fuzzy
339
  msgid "You can use the PHP mail function for mailing"
340
  msgstr "Du kan bruke wp_mail funksjon for å sende e-post."
341
 
342
- #: contact_form.php:1241
343
  msgid "'FROM' field"
344
  msgstr ""
345
 
346
- #: contact_form.php:1257
347
  msgid "User name"
348
  msgstr "Brukernavn"
349
 
350
- #: contact_form.php:1259
351
  msgid ""
352
  "The name of the user who fills the form will be used in the field 'From'."
353
  msgstr ""
354
  "Navnet til brukeren som fyller ut skjema vil bli brukt i 'From'-feltet."
355
 
356
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
357
  msgid "Email"
358
  msgstr "E-post"
359
 
360
- #: contact_form.php:1281
361
  msgid "User email"
362
  msgstr "Brukers e-post"
363
 
364
- #: contact_form.php:1283
365
  msgid ""
366
  "The email address of the user who fills the form will be used in the field "
367
  "'From'."
368
  msgstr ""
369
  "E-post adresse til bruker som fyller ut skjema vil bli brukt i 'From'-feltet."
370
 
371
- #: contact_form.php:1292
372
  msgid ""
373
  "If this option is changed, email messages may be moved to the spam folder or "
374
  "email delivery failures may occur."
375
  msgstr ""
376
 
377
- #: contact_form.php:1301
378
  msgid "Required symbol"
379
  msgstr "Obligatorisk symbol"
380
 
381
- #: contact_form.php:1311
382
  msgid "Fields"
383
  msgstr "Felt"
384
 
385
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
386
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
387
  msgid "Used"
388
  msgstr "Brukt"
389
 
390
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
391
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
392
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
393
  msgid "Required"
394
  msgstr "Obligatorisk"
395
 
396
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
397
- #: contact_form.php:1447 contact_form.php:1471
398
  msgid "Visible"
399
  msgstr "Synlig"
400
 
401
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
402
- #: contact_form.php:1451 contact_form.php:1475
403
  msgid "Disabled for editing"
404
  msgstr "Sperret for redigering"
405
 
406
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
407
- #: contact_form.php:1479
408
  msgid "Field's default value"
409
  msgstr "Feltets standardverdi"
410
 
411
- #: contact_form.php:1324
412
  #, fuzzy
413
  msgid "Department selectbox"
414
  msgstr "Flervalgsboks for sted"
415
 
416
- #: contact_form.php:1356
417
  msgid "Use User's name as a default value if the user is logged in."
418
  msgstr ""
419
 
420
- #: contact_form.php:1357 contact_form.php:1417
421
  msgid ""
422
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
423
  "in users."
424
  msgstr ""
425
 
426
- #: contact_form.php:1363
427
  msgid "Location selectbox"
428
  msgstr "Flervalgsboks for sted"
429
 
430
- #: contact_form.php:1416
431
  msgid "Use User's email as a default value if the user is logged in."
432
  msgstr ""
433
 
434
- #: contact_form.php:1500
435
  msgid "Attachment block"
436
  msgstr "Vedhengsblokk"
437
 
438
- #: contact_form.php:1502
439
  msgid "Users can attach the following file formats"
440
  msgstr "Brukere kan legge ved følgende filformat"
441
 
442
- #: contact_form.php:1520
443
  msgid "Add to the form"
444
  msgstr "Legg til skjemaet"
445
 
446
- #: contact_form.php:1525
447
  msgid "Tips below the Attachment"
448
  msgstr "Tips under vedheng"
449
 
450
- #: contact_form.php:1532
451
  msgid "'Send me a copy' block"
452
  msgstr "'Send meg en kopi' blokk"
453
 
454
- #: contact_form.php:1560
455
  #, fuzzy
456
  msgid "Activate for network"
457
  msgstr "Активовані плагіни"
458
 
459
- #: contact_form.php:1651
460
  msgid "Agreement checkbox"
461
  msgstr "Sjekkboks for vilkår"
462
 
463
- #: contact_form.php:1651
464
  msgid "Required checkbox for submitting the form"
465
  msgstr "Obligatoriske sjekkbokser for å sende inn skjemaet"
466
 
467
- #: contact_form.php:1652
468
  msgid "Optional checkbox"
469
  msgstr "Valgfri sjekkboks"
470
 
471
- #: contact_form.php:1652
472
  msgid "Optional checkbox, the results of which will be displayed in email"
473
  msgstr "Valgfri sjekkboks, resultatene vil bli vist i e-post"
474
 
475
- #: contact_form.php:1670
476
  msgid "Delete an attachment file from the server after the email is sent"
477
  msgstr "Slett vedhengsfil fra server etter at e-posten er sendt."
478
 
479
- #: contact_form.php:1676
480
  msgid "Email in HTML format sending"
481
  msgstr "Send e-post i HTML format"
482
 
483
- #: contact_form.php:1680
484
  msgid "Display additional info in the email"
485
  msgstr "Vis ekstra informasjon i e-posten"
486
 
487
- #: contact_form.php:1686
488
  #, fuzzy
489
  msgid "Sent from (IP address)"
490
  msgstr "Sent fra (ip-adresse)"
491
 
492
- #: contact_form.php:1686
493
  msgid "Example: Sent from (IP address):\t127.0.0.1"
494
  msgstr "Eksempel: Sendt fra (IP adresse):\t127.0.0.1"
495
 
496
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
497
  msgid "Date/Time"
498
  msgstr "Dato/Tid"
499
 
500
- #: contact_form.php:1687
501
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
502
  msgstr "Eksempel: Dato/Tid:\tAugust 19, 2013 8:50 pm"
503
 
504
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
505
  msgid "Sent from (referer)"
506
  msgstr "Sent fra (referer)"
507
 
508
- #: contact_form.php:1688
509
  #, fuzzy
510
  msgid ""
511
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
512
  msgstr ""
513
  "Eksempel: Sent fra (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
514
 
515
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
516
  msgid "Using (user agent)"
517
  msgstr "Bruker (user agent)"
518
 
519
- #: contact_form.php:1689
520
  msgid ""
521
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
522
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -524,134 +524,134 @@ msgstr ""
524
  "Eksempel: Bruker (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
525
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
526
 
527
- #: contact_form.php:1694
528
  msgid "Language settings for the field names in the form"
529
  msgstr "Språkinstillinger for feltnavn i skjemaet"
530
 
531
- #: contact_form.php:1703
532
  msgid "Add a language"
533
  msgstr "Legg til et språk"
534
 
535
- #: contact_form.php:1707
536
  msgid "Change the names of the contact form fields and error messages"
537
  msgstr "Endre navnene på kontaktskjemafeltene og feilmeldingene"
538
 
539
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
540
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
541
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
542
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
543
- #: contact_form.php:2132 contact_form.php:2137
544
  msgid "Default"
545
  msgstr "Standard"
546
 
547
- #: contact_form.php:1725 contact_form.php:1763
548
  msgid "click to expand/hide the list"
549
  msgstr "klikk for å ekspandere/gjemme listen"
550
 
551
- #: contact_form.php:1734 contact_form.php:1772
552
  msgid "Tips below the Attachment block"
553
  msgstr "Tips under Vedhengblokken"
554
 
555
- #: contact_form.php:1737 contact_form.php:1775
556
  msgid "Error message for the Name field"
557
  msgstr "Feilmelding for navnefeltet"
558
 
559
- #: contact_form.php:1738 contact_form.php:1776
560
  msgid "Error message for the Address field"
561
  msgstr "Feilmelding for adressefeltet"
562
 
563
- #: contact_form.php:1739 contact_form.php:1777
564
  msgid "Error message for the Email field"
565
  msgstr "Feilmelding for e-post feltet"
566
 
567
- #: contact_form.php:1740 contact_form.php:1778
568
  msgid "Error message for the Phone field"
569
  msgstr "Feilmelding for telefon-feltet"
570
 
571
- #: contact_form.php:1741 contact_form.php:1779
572
  msgid "Error message for the Subject field"
573
  msgstr "Feilmelding for tema-feltet"
574
 
575
- #: contact_form.php:1742 contact_form.php:1780
576
  msgid "Error message for the Message field"
577
  msgstr "Feilmelding for meldingsfeltet"
578
 
579
- #: contact_form.php:1743 contact_form.php:1781
580
  msgid "Error message about the file type for the Attachment field"
581
  msgstr "Feilmelding for filtype til vedhengsfeltet"
582
 
583
- #: contact_form.php:1744 contact_form.php:1782
584
  msgid ""
585
  "Error message while uploading a file for the Attachment field to the server"
586
  msgstr "Feilmelding ved opplasting av fil for vedhengsfeltet til server"
587
 
588
- #: contact_form.php:1745 contact_form.php:1783
589
  msgid "Error message while moving the file for the Attachment field"
590
  msgstr "Feilmedling ved flytting av fil for vedhengsfeltet."
591
 
592
- #: contact_form.php:1746 contact_form.php:1784
593
  msgid "Error message when file size limit for the Attachment field is exceeded"
594
  msgstr "Feilmelding når filstørrelsebegrensning for vedhengsfeltet er nådd"
595
 
596
- #: contact_form.php:1747 contact_form.php:1785
597
  msgid "Error message for the Captcha field"
598
  msgstr "Feilmelding for Captcha-feltet"
599
 
600
- #: contact_form.php:1748 contact_form.php:1786
601
  msgid "Error message for the whole form"
602
  msgstr "Feilmelding for hele skjemaet"
603
 
604
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
605
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
606
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
607
- #: contact_form.php:3540
608
  msgid "Use shortcode"
609
  msgstr "Bruk shortcode"
610
 
611
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
612
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
613
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
614
- #: contact_form.php:3540
615
  msgid "for this language"
616
  msgstr "for dette språket"
617
 
618
- #: contact_form.php:1799
619
  msgid "Use the changed names of the contact form fields in the email"
620
  msgstr "Bruk de endrede navnene i kontaktskjemafeltene i e-posten"
621
 
622
- #: contact_form.php:1805
623
  msgid "Action after email is sent"
624
  msgstr "Handling etter at e-posten er sendt"
625
 
626
- #: contact_form.php:1807
627
  msgid "Display text"
628
  msgstr "Vis tekst"
629
 
630
- #: contact_form.php:1821 contact_form.php:1835
631
  msgid "Text"
632
  msgstr "Tekst"
633
 
634
- #: contact_form.php:1846
635
  msgid "Redirect to the page"
636
  msgstr "Videresend til siden"
637
 
638
- #: contact_form.php:1847
639
  msgid "Url"
640
  msgstr "Url"
641
 
642
- #: contact_form.php:1858
643
  msgid "Add field 'Reply-To' to the email header"
644
  msgstr ""
645
 
646
- #: contact_form.php:1860
647
  msgid "Field 'Reply-To' will be initialized by user email"
648
  msgstr ""
649
 
650
- #: contact_form.php:1864
651
  msgid "Auto Response"
652
  msgstr ""
653
 
654
- #: contact_form.php:1868
655
  #, php-format
656
  msgid ""
657
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -659,182 +659,194 @@ msgid ""
659
  "name."
660
  msgstr ""
661
 
662
- #: contact_form.php:1890 contact_form.php:2389
663
  msgid "Save Changes"
664
  msgstr "Lagre endringer"
665
 
666
- #: contact_form.php:1903
667
  #, php-format
668
  msgid ""
669
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
670
  msgstr ""
671
 
672
- #: contact_form.php:1903 contact_form.php:1912
673
  msgid "Form layout"
674
  msgstr ""
675
 
676
- #: contact_form.php:1903 contact_form.php:1924
677
  #, fuzzy
678
  msgid "Submit position"
679
  msgstr "Send knapp"
680
 
681
- #: contact_form.php:1916
682
  msgid "One column"
683
  msgstr ""
684
 
685
- #: contact_form.php:1919
686
  msgid "Two columns"
687
  msgstr ""
688
 
689
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
690
- #: contact_form.php:1980
691
  msgid "Left"
692
  msgstr ""
693
 
694
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
695
- #: contact_form.php:1986
696
  msgid "Right"
697
  msgstr ""
698
 
699
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
700
  msgid "Form align"
701
  msgstr ""
702
 
703
- #: contact_form.php:1950 contact_form.php:1983
704
  msgid "Center"
705
  msgstr ""
706
 
707
- #: contact_form.php:1958
708
  #, fuzzy
709
  msgid "Labels position"
710
  msgstr "Send knapp"
711
 
712
- #: contact_form.php:1962
713
  msgid "Top"
714
  msgstr ""
715
 
716
- #: contact_form.php:1971
717
  msgid "Bottom"
718
  msgstr ""
719
 
720
- #: contact_form.php:1976
721
  msgid "Labels align"
722
  msgstr ""
723
 
724
- #: contact_form.php:1991
725
  msgid "Errors output"
726
  msgstr "Feilmelding utdata"
727
 
728
- #: contact_form.php:1994
729
  msgid "Display error messages"
730
  msgstr "Vise feilmeldinger"
731
 
732
- #: contact_form.php:1995
733
  msgid "Color of the input field errors."
734
  msgstr "Farger på feilmeldingene for inputfelt"
735
 
736
- #: contact_form.php:1996
737
  msgid "Display error messages & color of the input field errors"
738
  msgstr "Vis feilmeldinger og farge på inputfeltfeil"
739
 
740
- #: contact_form.php:2001
741
  msgid "Add placeholder to the input blocks"
742
  msgstr "Legg til placeholder på inputblokkene"
743
 
744
- #: contact_form.php:2007
745
  msgid "Add tooltips"
746
  msgstr "Legg til tooltips"
747
 
748
- #: contact_form.php:2021
749
  msgid "Email address"
750
  msgstr "E-post adresse"
751
 
752
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
753
  msgid "Phone Number"
754
  msgstr "Telefon"
755
 
756
- #: contact_form.php:2052
757
  msgid "Style options"
758
  msgstr "Styleringsopsjoner"
759
 
760
- #: contact_form.php:2056
761
  msgid "Text color"
762
  msgstr "Tekstfarge"
763
 
764
- #: contact_form.php:2061
765
  msgid "Label text color"
766
  msgstr "Tekstfarge på merkelapp"
767
 
768
- #: contact_form.php:2066
769
  msgid "Placeholder color"
770
  msgstr "Placeholder farge"
771
 
772
- #: contact_form.php:2071
773
  msgid "Errors color"
774
  msgstr "Feilmeldingsfarge"
775
 
776
- #: contact_form.php:2076
777
  msgid "Error text color"
778
  msgstr "Tekstfarge på feilmelding"
779
 
780
- #: contact_form.php:2081
781
  msgid "Background color of the input field errors"
782
  msgstr "Bakgrunnsfarge på inputfeltfeil"
783
 
784
- #: contact_form.php:2086
785
  msgid "Border color of the input field errors"
786
  msgstr "Rammefarge på inputfeltfeil"
787
 
788
- #: contact_form.php:2091
789
  msgid "Placeholder color of the input field errors"
790
  msgstr "Placeholderfarge på inputfeltfeil"
791
 
792
- #: contact_form.php:2096
793
  msgid "Input fields"
794
  msgstr "Inputfelt"
795
 
796
- #: contact_form.php:2101
797
  msgid "Input fields background color"
798
  msgstr "Bakgrunnsfarge på inputfelter"
799
 
800
- #: contact_form.php:2106
801
  msgid "Text fields color"
802
  msgstr "Farge på tekstfelter"
803
 
804
- #: contact_form.php:2110
805
  msgid "Border width in px, numbers only"
806
  msgstr "Rammebredde i pixler, kun tall"
807
 
808
- #: contact_form.php:2115 contact_form.php:2139
809
  msgid "Border color"
810
  msgstr "Ramme farge"
811
 
812
- #: contact_form.php:2120
813
  msgid "Submit button"
814
  msgstr "Send knapp"
815
 
816
- #: contact_form.php:2124
817
  msgid "Width in px, numbers only"
818
  msgstr "Bredde i piksler, kun tall"
819
 
820
- #: contact_form.php:2129
821
  msgid "Button color"
822
  msgstr "Knappfarge"
823
 
824
- #: contact_form.php:2134
825
  msgid "Button text color"
826
  msgstr "Farge på knappetekst"
827
 
828
- #: contact_form.php:2163
829
  #, fuzzy
830
  msgid "Contact Form | Preview"
831
  msgstr "Contact Form Pro | Forhåndsvisning"
832
 
833
- #: contact_form.php:2164
834
  msgid "Drag the necessary field to sort fields."
835
  msgstr ""
836
 
837
- #: contact_form.php:2376
838
  #, fuzzy
839
  msgid ""
840
  "If you would like to add the Contact Form to your website, just copy and "
@@ -843,23 +855,23 @@ msgstr ""
843
  "Om du ønsker å legge til kontakskjema for din webside, kopier denne "
844
  "shortcoden til din post, side eller widget."
845
 
846
- #: contact_form.php:2504
847
  msgid "Sorry, email message could not be delivered."
848
  msgstr "Beklager, e-postmelding kunne ikke leveres."
849
 
850
- #: contact_form.php:3094 contact_form.php:3096
851
  msgid "Sent from (ip address)"
852
  msgstr "Sent fra (ip-adresse)"
853
 
854
- #: contact_form.php:3124
855
  msgid "Contact from"
856
  msgstr "Kontaktskjema"
857
 
858
- #: contact_form.php:3129 contact_form.php:3178
859
  msgid "Site"
860
  msgstr "side"
861
 
862
- #: contact_form.php:3308
863
  msgid ""
864
  "If you can see this MIME, it means that the MIME type is not supported by "
865
  "your email client!"
@@ -867,70 +879,62 @@ msgstr ""
867
  "Om du kan se denne MIME, betyr det at MIME format ikke er støttet av din e-"
868
  "postklient!"
869
 
870
- #: contact_form.php:3391
871
  msgid "FAQ"
872
  msgstr "Часті питання"
873
 
874
- #: contact_form.php:3392
875
  msgid "Support"
876
  msgstr "Support"
877
 
878
- #: contact_form.php:3441
879
  msgid "Are you sure that you want to delete this language data?"
880
  msgstr "Er du sikker på at du ønsker å slette disse språkdatane?"
881
 
882
- #: contact_form.php:3462
883
  #, fuzzy
884
  msgid "Add multiple forms"
885
  msgstr "Legg til skjemaet"
886
 
887
- #: contact_form.php:3462
888
  msgid ""
889
  "Install Contact Form Multi plugin to create unlimited number of contact "
890
  "forms."
891
  msgstr ""
892
 
893
- #: contact_form.php:3467
894
  #, fuzzy
895
  msgid "Learn more"
896
  msgstr "Lær mer"
897
 
898
- #: contact_form.php:3693
899
  msgid "Close notice"
900
  msgstr ""
901
 
902
- #: contact_form.php:3698
903
  #, fuzzy
904
  msgid "allows to store your messages to the database."
905
  msgstr ""
906
  "<strong>Contact Form to DB</strong> lar deg lagre meldinger i databasen."
907
 
908
- #: contact_form.php:3699
909
  msgid "Manage messages that have been sent from your website."
910
  msgstr "Administrer meldinger som har blitt sendt fra din webside."
911
 
912
- #: contact_form.php:3702
913
  msgid "Learn More"
914
  msgstr "Lær mer"
915
 
916
- #: contact_form.php:3762
917
  #, fuzzy
918
  msgid "Contact form"
919
  msgstr "Kontaktskjema"
920
 
921
- #: contact_form.php:3775 contact_form.php:3785
922
  #, fuzzy
923
  msgid "Language"
924
  msgstr "Legg til et språk"
925
 
926
- #: includes/deprecated.php:168
927
- #, php-format
928
- msgid ""
929
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
930
- "replace it with %3s. If you close this message it'll appear again after "
931
- "deprecated shortcode reuse."
932
- msgstr ""
933
-
934
  #, fuzzy
935
  #~ msgid "Unlock premium options by upgrading to Pro version"
936
  #~ msgstr "Lås opp ekstrafunksjoner ved å oppgradere til en PRO-versjon."
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:15+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Per Rommetveit <bestwebsoftcontact@nordsoft.no>\n"
9
  "Language: nb_NO\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:37 contact_form.php:1064
20
  msgid "Contact Form Settings"
21
  msgstr "Instillinger for kontaktskjema"
22
 
23
+ #: contact_form.php:37
24
  msgid "Contact Form"
25
  msgstr "Kontaktskjema"
26
 
27
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
28
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
29
+ #: contact_form.php:3181 contact_form.php:3227
30
  msgid "Name"
31
  msgstr "Navn"
32
 
33
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
34
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
35
+ #: contact_form.php:3233
36
  msgid "Address"
37
  msgstr "Adresse"
38
 
39
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
40
+ #: contact_form.php:1765
41
  msgid "Email Address"
42
  msgstr "E-post"
43
 
44
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
45
+ #: contact_form.php:1766
46
  msgid "Phone number"
47
  msgstr "Telefon"
48
 
49
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
50
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
51
+ #: contact_form.php:3242
52
  msgid "Subject"
53
  msgstr "Tema"
54
 
55
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
56
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
57
+ #: contact_form.php:3246
58
  msgid "Message"
59
  msgstr "Melding"
60
 
61
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
62
+ #: contact_form.php:2058
63
  msgid "Attachment"
64
  msgstr "Vedheng"
65
 
66
+ #: contact_form.php:287
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
71
  "Støttede filtyper: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, "
72
  "PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
75
  msgid "Send me a copy"
76
  msgstr "Send meg en kopi"
77
 
78
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
79
  msgid "Submit"
80
  msgstr "Send"
81
 
82
+ #: contact_form.php:290
83
  msgid "Your name is required."
84
  msgstr "Navn er obligatorisk."
85
 
86
+ #: contact_form.php:291
87
  msgid "Address is required."
88
  msgstr "Adresse er påkrevet."
89
 
90
+ #: contact_form.php:292
91
  msgid "A valid email address is required."
92
  msgstr "Gyldig e-post adresse er nødvendig."
93
 
94
+ #: contact_form.php:293
95
  msgid "Phone number is required."
96
  msgstr "Telefon er nødvendig."
97
 
98
+ #: contact_form.php:294
99
  msgid "Subject is required."
100
  msgstr "Tema er nødvendig."
101
 
102
+ #: contact_form.php:295
103
  msgid "Message text is required."
104
  msgstr "Meldingsinnhold er nødvendig."
105
 
106
+ #: contact_form.php:296
107
  msgid "File format is not valid."
108
  msgstr "Filformat er ikke gyldig"
109
 
110
+ #: contact_form.php:297
111
  msgid "File upload error."
112
  msgstr "Feil ved opplasting av fil."
113
 
114
+ #: contact_form.php:298
115
  msgid "The file could not be uploaded."
116
  msgstr "Filen kunne ikke lastes opp."
117
 
118
+ #: contact_form.php:299
119
  msgid "This file is too large."
120
  msgstr "Filen er for stor."
121
 
122
+ #: contact_form.php:300
123
  msgid "Please fill out the CAPTCHA."
124
  msgstr "Vennligst fyll ut CAPTCHA."
125
 
126
+ #: contact_form.php:301
127
  msgid "Please make corrections below and try again."
128
  msgstr "Vennligst gjør korrigeringer, og prøv igjen."
129
 
130
+ #: contact_form.php:303
131
  msgid "Thank you for contacting us."
132
  msgstr "Takk for at du kontakter oss."
133
 
134
+ #: contact_form.php:759 contact_form.php:1021
135
  msgid "Settings saved."
136
  msgstr "Instillinger lagret."
137
 
138
+ #: contact_form.php:966
139
  msgid ""
140
  "Email 'FROM' field option was changed, which may cause email messages being "
141
  "moved to the spam folder or email delivery failures."
142
  msgstr ""
143
 
144
+ #: contact_form.php:976
145
  msgid ""
146
  "If the 'Redirect to page' option is selected then the URL field should be in "
147
  "the following format"
149
  "Dersom 'Videresend til side' instilling er valgt, så skal URL feltet være i "
150
  "følgende format"
151
 
152
+ #: contact_form.php:983
153
  msgid "Such user does not exist."
154
  msgstr "En slik bruker eksisterer ikke."
155
 
156
+ #: contact_form.php:993
157
  msgid ""
158
  "Please enter a valid email address in the 'Use this email address' field."
159
  msgstr ""
160
  "Vennligst skriv inn en gyldig e-postadresse i 'Bruk denne e-posten' feltet."
161
 
162
+ #: contact_form.php:1001
163
  msgid "Please enter a valid email address in the 'FROM' field."
164
  msgstr "Vennligst skriv inn en gyldig e-post i 'FRA' feltet."
165
 
166
+ #: contact_form.php:1023
167
  msgid "Settings are not saved."
168
  msgstr "Instillinger er ikke lagret."
169
 
170
+ #: contact_form.php:1061
171
  msgid "All plugin settings were restored."
172
  msgstr ""
173
 
174
+ #: contact_form.php:1067
175
  msgid "How to Use Step-by-step Instruction"
176
  msgstr ""
177
 
178
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
179
  msgid "Settings"
180
  msgstr "Instillinger"
181
 
182
+ #: contact_form.php:1071
183
  #, fuzzy
184
  msgid "Additional settings"
185
  msgstr "Ekstrainstillinger"
186
 
187
+ #: contact_form.php:1072
188
  msgid "Appearance"
189
  msgstr ""
190
 
191
+ #: contact_form.php:1073
192
  msgid "Custom code"
193
  msgstr ""
194
 
195
+ #: contact_form.php:1074
196
  msgid "Go PRO"
197
  msgstr "Go PRO"
198
 
199
+ #: contact_form.php:1085
200
  #, fuzzy
201
  msgid "Notice"
202
  msgstr "Notis:"
203
 
204
+ #: contact_form.php:1089
205
  msgid "NEW_FORM"
206
  msgstr ""
207
 
208
+ #: contact_form.php:1090
209
  msgid ""
210
  "If you want to create multiple contact forms, please install the Contact "
211
  "Form Multi plugin."
213
  "Dersom du ønsker å opprette flere kontaktskjema, vennligst installer Contact "
214
  "From Multi plugin"
215
 
216
+ #: contact_form.php:1099
217
  #, fuzzy, php-format
218
  msgid ""
219
  "If you would like to add a Contact Form to your page or post, please use %s "
222
  "Om du ønsker å legge til kontakskjema for din webside, kopier denne "
223
  "shortcoden til din post, side eller widget."
224
 
225
+ #: contact_form.php:1105
226
  #, php-format
227
  msgid ""
228
  "You can add the Contact Form to your page or post by clicking on %s button "
231
  "language."
232
  msgstr ""
233
 
234
+ #: contact_form.php:1114
235
  msgid ""
236
  "If you leave the fields empty, the messages will be sent to the email "
237
  "address specified during registration."
239
  "Om du lar feltene være tomme, vil meldingene bli sent til e-post adresse "
240
  "oppgitt ved registreringen."
241
 
242
+ #: contact_form.php:1117
243
  #, fuzzy
244
  msgid "The user's email address"
245
  msgstr "Brukerens e-post adress:"
246
 
247
+ #: contact_form.php:1121
248
  #, fuzzy
249
  msgid "Select a username"
250
  msgstr "Opprett et brukernavn"
251
 
252
+ #: contact_form.php:1134
253
  #, fuzzy
254
  msgid ""
255
  "Select a username of the person who should get the messages from the contact "
257
  msgstr ""
258
  "Oppgi brukernavn til personen som skal få meldingene fra kontaktskjemaet."
259
 
260
+ #: contact_form.php:1138
261
  #, fuzzy
262
  msgid "Use this email address"
263
  msgstr "Bruk denne e-post adressen:"
264
 
265
+ #: contact_form.php:1142
266
  #, fuzzy
267
  msgid "Enter the email address for receiving messages"
268
  msgstr "Legg inn e-post adressen du ønsker meldingene videresendt til."
269
 
270
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
271
+ #: contact_form.php:1957 contact_form.php:3514
272
  msgid "Close"
273
  msgstr ""
274
 
275
+ #: contact_form.php:1153
276
  #, fuzzy
277
  msgid "Add department selectbox to the contact form"
278
  msgstr "Legg til avdelingssjekkboks til kontaktskjemaet:"
279
 
280
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
281
+ #: contact_form.php:2163
282
  msgid "If you upgrade to Pro version all your settings will be saved."
283
  msgstr ""
284
  "Om du oppgraderer til Pro versjonen, vil alle instillingene dine bli lagret."
285
 
286
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
287
+ #: contact_form.php:1878 contact_form.php:2170
288
  msgid "Upgrade to Pro"
289
  msgstr ""
290
 
291
+ #: contact_form.php:1176
292
  msgid "Save emails to the database"
293
  msgstr "Lagre e-poster til databasen."
294
 
295
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
296
  msgid "Using"
297
  msgstr "Bruker"
298
 
299
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
300
+ #: contact_form.php:1623
301
  msgid "Please activate the appropriate option on"
302
  msgstr ""
303
 
304
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
305
+ #: contact_form.php:1626
306
  #, fuzzy
307
  msgid "settings page"
308
  msgstr "siden for instillinger"
309
 
310
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
311
+ #: contact_form.php:1633
312
  msgid "Activate"
313
  msgstr "Aktiver"
314
 
315
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
316
+ #: contact_form.php:1638
317
  msgid "Download"
318
  msgstr "Завантажити"
319
 
320
+ #: contact_form.php:1222
321
  msgid "Sending method"
322
  msgstr ""
323
 
324
+ #: contact_form.php:1227
325
  msgid "Wp-mail"
326
  msgstr "Wp-mail"
327
 
328
+ #: contact_form.php:1229
329
  #, fuzzy
330
  msgid "You can use the Wordpress wp_mail function for mailing"
331
  msgstr "Du kan bruke wp_mail funksjon for å sende e-post."
332
 
333
+ #: contact_form.php:1232
334
  msgid "Mail"
335
  msgstr "E-post"
336
 
337
+ #: contact_form.php:1234
338
  #, fuzzy
339
  msgid "You can use the PHP mail function for mailing"
340
  msgstr "Du kan bruke wp_mail funksjon for å sende e-post."
341
 
342
+ #: contact_form.php:1239
343
  msgid "'FROM' field"
344
  msgstr ""
345
 
346
+ #: contact_form.php:1255
347
  msgid "User name"
348
  msgstr "Brukernavn"
349
 
350
+ #: contact_form.php:1257
351
  msgid ""
352
  "The name of the user who fills the form will be used in the field 'From'."
353
  msgstr ""
354
  "Navnet til brukeren som fyller ut skjema vil bli brukt i 'From'-feltet."
355
 
356
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
357
  msgid "Email"
358
  msgstr "E-post"
359
 
360
+ #: contact_form.php:1279
361
  msgid "User email"
362
  msgstr "Brukers e-post"
363
 
364
+ #: contact_form.php:1281
365
  msgid ""
366
  "The email address of the user who fills the form will be used in the field "
367
  "'From'."
368
  msgstr ""
369
  "E-post adresse til bruker som fyller ut skjema vil bli brukt i 'From'-feltet."
370
 
371
+ #: contact_form.php:1290
372
  msgid ""
373
  "If this option is changed, email messages may be moved to the spam folder or "
374
  "email delivery failures may occur."
375
  msgstr ""
376
 
377
+ #: contact_form.php:1299
378
  msgid "Required symbol"
379
  msgstr "Obligatorisk symbol"
380
 
381
+ #: contact_form.php:1309
382
  msgid "Fields"
383
  msgstr "Felt"
384
 
385
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
386
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
387
  msgid "Used"
388
  msgstr "Brukt"
389
 
390
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
391
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
392
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
393
  msgid "Required"
394
  msgstr "Obligatorisk"
395
 
396
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
397
+ #: contact_form.php:1445 contact_form.php:1469
398
  msgid "Visible"
399
  msgstr "Synlig"
400
 
401
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
402
+ #: contact_form.php:1449 contact_form.php:1473
403
  msgid "Disabled for editing"
404
  msgstr "Sperret for redigering"
405
 
406
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
407
+ #: contact_form.php:1477
408
  msgid "Field's default value"
409
  msgstr "Feltets standardverdi"
410
 
411
+ #: contact_form.php:1322
412
  #, fuzzy
413
  msgid "Department selectbox"
414
  msgstr "Flervalgsboks for sted"
415
 
416
+ #: contact_form.php:1354
417
  msgid "Use User's name as a default value if the user is logged in."
418
  msgstr ""
419
 
420
+ #: contact_form.php:1355 contact_form.php:1415
421
  msgid ""
422
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
423
  "in users."
424
  msgstr ""
425
 
426
+ #: contact_form.php:1361
427
  msgid "Location selectbox"
428
  msgstr "Flervalgsboks for sted"
429
 
430
+ #: contact_form.php:1414
431
  msgid "Use User's email as a default value if the user is logged in."
432
  msgstr ""
433
 
434
+ #: contact_form.php:1498
435
  msgid "Attachment block"
436
  msgstr "Vedhengsblokk"
437
 
438
+ #: contact_form.php:1500
439
  msgid "Users can attach the following file formats"
440
  msgstr "Brukere kan legge ved følgende filformat"
441
 
442
+ #: contact_form.php:1518
443
  msgid "Add to the form"
444
  msgstr "Legg til skjemaet"
445
 
446
+ #: contact_form.php:1523
447
  msgid "Tips below the Attachment"
448
  msgstr "Tips under vedheng"
449
 
450
+ #: contact_form.php:1530
451
  msgid "'Send me a copy' block"
452
  msgstr "'Send meg en kopi' blokk"
453
 
454
+ #: contact_form.php:1558
455
  #, fuzzy
456
  msgid "Activate for network"
457
  msgstr "Активовані плагіни"
458
 
459
+ #: contact_form.php:1649
460
  msgid "Agreement checkbox"
461
  msgstr "Sjekkboks for vilkår"
462
 
463
+ #: contact_form.php:1649
464
  msgid "Required checkbox for submitting the form"
465
  msgstr "Obligatoriske sjekkbokser for å sende inn skjemaet"
466
 
467
+ #: contact_form.php:1650
468
  msgid "Optional checkbox"
469
  msgstr "Valgfri sjekkboks"
470
 
471
+ #: contact_form.php:1650
472
  msgid "Optional checkbox, the results of which will be displayed in email"
473
  msgstr "Valgfri sjekkboks, resultatene vil bli vist i e-post"
474
 
475
+ #: contact_form.php:1668
476
  msgid "Delete an attachment file from the server after the email is sent"
477
  msgstr "Slett vedhengsfil fra server etter at e-posten er sendt."
478
 
479
+ #: contact_form.php:1674
480
  msgid "Email in HTML format sending"
481
  msgstr "Send e-post i HTML format"
482
 
483
+ #: contact_form.php:1678
484
  msgid "Display additional info in the email"
485
  msgstr "Vis ekstra informasjon i e-posten"
486
 
487
+ #: contact_form.php:1684
488
  #, fuzzy
489
  msgid "Sent from (IP address)"
490
  msgstr "Sent fra (ip-adresse)"
491
 
492
+ #: contact_form.php:1684
493
  msgid "Example: Sent from (IP address):\t127.0.0.1"
494
  msgstr "Eksempel: Sendt fra (IP adresse):\t127.0.0.1"
495
 
496
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
497
  msgid "Date/Time"
498
  msgstr "Dato/Tid"
499
 
500
+ #: contact_form.php:1685
501
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
502
  msgstr "Eksempel: Dato/Tid:\tAugust 19, 2013 8:50 pm"
503
 
504
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
505
  msgid "Sent from (referer)"
506
  msgstr "Sent fra (referer)"
507
 
508
+ #: contact_form.php:1686
509
  #, fuzzy
510
  msgid ""
511
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
512
  msgstr ""
513
  "Eksempel: Sent fra (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
514
 
515
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
516
  msgid "Using (user agent)"
517
  msgstr "Bruker (user agent)"
518
 
519
+ #: contact_form.php:1687
520
  msgid ""
521
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
522
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
524
  "Eksempel: Bruker (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
525
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
526
 
527
+ #: contact_form.php:1692
528
  msgid "Language settings for the field names in the form"
529
  msgstr "Språkinstillinger for feltnavn i skjemaet"
530
 
531
+ #: contact_form.php:1701
532
  msgid "Add a language"
533
  msgstr "Legg til et språk"
534
 
535
+ #: contact_form.php:1705
536
  msgid "Change the names of the contact form fields and error messages"
537
  msgstr "Endre navnene på kontaktskjemafeltene og feilmeldingene"
538
 
539
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
540
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
541
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
542
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
543
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
544
  msgid "Default"
545
  msgstr "Standard"
546
 
547
+ #: contact_form.php:1723 contact_form.php:1761
548
  msgid "click to expand/hide the list"
549
  msgstr "klikk for å ekspandere/gjemme listen"
550
 
551
+ #: contact_form.php:1732 contact_form.php:1770
552
  msgid "Tips below the Attachment block"
553
  msgstr "Tips under Vedhengblokken"
554
 
555
+ #: contact_form.php:1735 contact_form.php:1773
556
  msgid "Error message for the Name field"
557
  msgstr "Feilmelding for navnefeltet"
558
 
559
+ #: contact_form.php:1736 contact_form.php:1774
560
  msgid "Error message for the Address field"
561
  msgstr "Feilmelding for adressefeltet"
562
 
563
+ #: contact_form.php:1737 contact_form.php:1775
564
  msgid "Error message for the Email field"
565
  msgstr "Feilmelding for e-post feltet"
566
 
567
+ #: contact_form.php:1738 contact_form.php:1776
568
  msgid "Error message for the Phone field"
569
  msgstr "Feilmelding for telefon-feltet"
570
 
571
+ #: contact_form.php:1739 contact_form.php:1777
572
  msgid "Error message for the Subject field"
573
  msgstr "Feilmelding for tema-feltet"
574
 
575
+ #: contact_form.php:1740 contact_form.php:1778
576
  msgid "Error message for the Message field"
577
  msgstr "Feilmelding for meldingsfeltet"
578
 
579
+ #: contact_form.php:1741 contact_form.php:1779
580
  msgid "Error message about the file type for the Attachment field"
581
  msgstr "Feilmelding for filtype til vedhengsfeltet"
582
 
583
+ #: contact_form.php:1742 contact_form.php:1780
584
  msgid ""
585
  "Error message while uploading a file for the Attachment field to the server"
586
  msgstr "Feilmelding ved opplasting av fil for vedhengsfeltet til server"
587
 
588
+ #: contact_form.php:1743 contact_form.php:1781
589
  msgid "Error message while moving the file for the Attachment field"
590
  msgstr "Feilmedling ved flytting av fil for vedhengsfeltet."
591
 
592
+ #: contact_form.php:1744 contact_form.php:1782
593
  msgid "Error message when file size limit for the Attachment field is exceeded"
594
  msgstr "Feilmelding når filstørrelsebegrensning for vedhengsfeltet er nådd"
595
 
596
+ #: contact_form.php:1745 contact_form.php:1783
597
  msgid "Error message for the Captcha field"
598
  msgstr "Feilmelding for Captcha-feltet"
599
 
600
+ #: contact_form.php:1746 contact_form.php:1784
601
  msgid "Error message for the whole form"
602
  msgstr "Feilmelding for hele skjemaet"
603
 
604
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
605
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
606
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
607
+ #: contact_form.php:3604
608
  msgid "Use shortcode"
609
  msgstr "Bruk shortcode"
610
 
611
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
612
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
613
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
614
+ #: contact_form.php:3604
615
  msgid "for this language"
616
  msgstr "for dette språket"
617
 
618
+ #: contact_form.php:1797
619
  msgid "Use the changed names of the contact form fields in the email"
620
  msgstr "Bruk de endrede navnene i kontaktskjemafeltene i e-posten"
621
 
622
+ #: contact_form.php:1803
623
  msgid "Action after email is sent"
624
  msgstr "Handling etter at e-posten er sendt"
625
 
626
+ #: contact_form.php:1805
627
  msgid "Display text"
628
  msgstr "Vis tekst"
629
 
630
+ #: contact_form.php:1819 contact_form.php:1833
631
  msgid "Text"
632
  msgstr "Tekst"
633
 
634
+ #: contact_form.php:1844
635
  msgid "Redirect to the page"
636
  msgstr "Videresend til siden"
637
 
638
+ #: contact_form.php:1845
639
  msgid "Url"
640
  msgstr "Url"
641
 
642
+ #: contact_form.php:1856
643
  msgid "Add field 'Reply-To' to the email header"
644
  msgstr ""
645
 
646
+ #: contact_form.php:1858
647
  msgid "Field 'Reply-To' will be initialized by user email"
648
  msgstr ""
649
 
650
+ #: contact_form.php:1862
651
  msgid "Auto Response"
652
  msgstr ""
653
 
654
+ #: contact_form.php:1866
655
  #, php-format
656
  msgid ""
657
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
659
  "name."
660
  msgstr ""
661
 
662
+ #: contact_form.php:1888 contact_form.php:2419
663
  msgid "Save Changes"
664
  msgstr "Lagre endringer"
665
 
666
+ #: contact_form.php:1901
667
  #, php-format
668
  msgid ""
669
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
670
  msgstr ""
671
 
672
+ #: contact_form.php:1901 contact_form.php:1910
673
  msgid "Form layout"
674
  msgstr ""
675
 
676
+ #: contact_form.php:1901 contact_form.php:1922
677
  #, fuzzy
678
  msgid "Submit position"
679
  msgstr "Send knapp"
680
 
681
+ #: contact_form.php:1914
682
  msgid "One column"
683
  msgstr ""
684
 
685
+ #: contact_form.php:1917
686
  msgid "Two columns"
687
  msgstr ""
688
 
689
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
690
+ #: contact_form.php:1998
691
  msgid "Left"
692
  msgstr ""
693
 
694
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
695
+ #: contact_form.php:2004
696
  msgid "Right"
697
  msgstr ""
698
 
699
+ #: contact_form.php:1934
700
+ msgid "Width"
701
+ msgstr ""
702
+
703
+ #: contact_form.php:1941
704
+ msgid "Custom"
705
+ msgstr ""
706
+
707
+ #: contact_form.php:1948
708
+ msgid "px"
709
+ msgstr ""
710
+
711
+ #: contact_form.php:1961
712
  msgid "Form align"
713
  msgstr ""
714
 
715
+ #: contact_form.php:1968 contact_form.php:2001
716
  msgid "Center"
717
  msgstr ""
718
 
719
+ #: contact_form.php:1976
720
  #, fuzzy
721
  msgid "Labels position"
722
  msgstr "Send knapp"
723
 
724
+ #: contact_form.php:1980
725
  msgid "Top"
726
  msgstr ""
727
 
728
+ #: contact_form.php:1989
729
  msgid "Bottom"
730
  msgstr ""
731
 
732
+ #: contact_form.php:1994
733
  msgid "Labels align"
734
  msgstr ""
735
 
736
+ #: contact_form.php:2009
737
  msgid "Errors output"
738
  msgstr "Feilmelding utdata"
739
 
740
+ #: contact_form.php:2012
741
  msgid "Display error messages"
742
  msgstr "Vise feilmeldinger"
743
 
744
+ #: contact_form.php:2013
745
  msgid "Color of the input field errors."
746
  msgstr "Farger på feilmeldingene for inputfelt"
747
 
748
+ #: contact_form.php:2014
749
  msgid "Display error messages & color of the input field errors"
750
  msgstr "Vis feilmeldinger og farge på inputfeltfeil"
751
 
752
+ #: contact_form.php:2019
753
  msgid "Add placeholder to the input blocks"
754
  msgstr "Legg til placeholder på inputblokkene"
755
 
756
+ #: contact_form.php:2025
757
  msgid "Add tooltips"
758
  msgstr "Legg til tooltips"
759
 
760
+ #: contact_form.php:2039
761
  msgid "Email address"
762
  msgstr "E-post adresse"
763
 
764
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
765
  msgid "Phone Number"
766
  msgstr "Telefon"
767
 
768
+ #: contact_form.php:2070
769
  msgid "Style options"
770
  msgstr "Styleringsopsjoner"
771
 
772
+ #: contact_form.php:2074
773
  msgid "Text color"
774
  msgstr "Tekstfarge"
775
 
776
+ #: contact_form.php:2079
777
  msgid "Label text color"
778
  msgstr "Tekstfarge på merkelapp"
779
 
780
+ #: contact_form.php:2084
781
  msgid "Placeholder color"
782
  msgstr "Placeholder farge"
783
 
784
+ #: contact_form.php:2089
785
  msgid "Errors color"
786
  msgstr "Feilmeldingsfarge"
787
 
788
+ #: contact_form.php:2094
789
  msgid "Error text color"
790
  msgstr "Tekstfarge på feilmelding"
791
 
792
+ #: contact_form.php:2099
793
  msgid "Background color of the input field errors"
794
  msgstr "Bakgrunnsfarge på inputfeltfeil"
795
 
796
+ #: contact_form.php:2104
797
  msgid "Border color of the input field errors"
798
  msgstr "Rammefarge på inputfeltfeil"
799
 
800
+ #: contact_form.php:2109
801
  msgid "Placeholder color of the input field errors"
802
  msgstr "Placeholderfarge på inputfeltfeil"
803
 
804
+ #: contact_form.php:2114
805
  msgid "Input fields"
806
  msgstr "Inputfelt"
807
 
808
+ #: contact_form.php:2119
809
  msgid "Input fields background color"
810
  msgstr "Bakgrunnsfarge på inputfelter"
811
 
812
+ #: contact_form.php:2124
813
  msgid "Text fields color"
814
  msgstr "Farge på tekstfelter"
815
 
816
+ #: contact_form.php:2128
817
  msgid "Border width in px, numbers only"
818
  msgstr "Rammebredde i pixler, kun tall"
819
 
820
+ #: contact_form.php:2133 contact_form.php:2157
821
  msgid "Border color"
822
  msgstr "Ramme farge"
823
 
824
+ #: contact_form.php:2138
825
  msgid "Submit button"
826
  msgstr "Send knapp"
827
 
828
+ #: contact_form.php:2142
829
  msgid "Width in px, numbers only"
830
  msgstr "Bredde i piksler, kun tall"
831
 
832
+ #: contact_form.php:2147
833
  msgid "Button color"
834
  msgstr "Knappfarge"
835
 
836
+ #: contact_form.php:2152
837
  msgid "Button text color"
838
  msgstr "Farge på knappetekst"
839
 
840
+ #: contact_form.php:2181
841
  #, fuzzy
842
  msgid "Contact Form | Preview"
843
  msgstr "Contact Form Pro | Forhåndsvisning"
844
 
845
+ #: contact_form.php:2182
846
  msgid "Drag the necessary field to sort fields."
847
  msgstr ""
848
 
849
+ #: contact_form.php:2408
850
  #, fuzzy
851
  msgid ""
852
  "If you would like to add the Contact Form to your website, just copy and "
855
  "Om du ønsker å legge til kontakskjema for din webside, kopier denne "
856
  "shortcoden til din post, side eller widget."
857
 
858
+ #: contact_form.php:2536
859
  msgid "Sorry, email message could not be delivered."
860
  msgstr "Beklager, e-postmelding kunne ikke leveres."
861
 
862
+ #: contact_form.php:3137 contact_form.php:3139
863
  msgid "Sent from (ip address)"
864
  msgstr "Sent fra (ip-adresse)"
865
 
866
+ #: contact_form.php:3167
867
  msgid "Contact from"
868
  msgstr "Kontaktskjema"
869
 
870
+ #: contact_form.php:3172 contact_form.php:3221
871
  msgid "Site"
872
  msgstr "side"
873
 
874
+ #: contact_form.php:3351
875
  msgid ""
876
  "If you can see this MIME, it means that the MIME type is not supported by "
877
  "your email client!"
879
  "Om du kan se denne MIME, betyr det at MIME format ikke er støttet av din e-"
880
  "postklient!"
881
 
882
+ #: contact_form.php:3434
883
  msgid "FAQ"
884
  msgstr "Часті питання"
885
 
886
+ #: contact_form.php:3435
887
  msgid "Support"
888
  msgstr "Support"
889
 
890
+ #: contact_form.php:3484
891
  msgid "Are you sure that you want to delete this language data?"
892
  msgstr "Er du sikker på at du ønsker å slette disse språkdatane?"
893
 
894
+ #: contact_form.php:3505
895
  #, fuzzy
896
  msgid "Add multiple forms"
897
  msgstr "Legg til skjemaet"
898
 
899
+ #: contact_form.php:3505
900
  msgid ""
901
  "Install Contact Form Multi plugin to create unlimited number of contact "
902
  "forms."
903
  msgstr ""
904
 
905
+ #: contact_form.php:3510
906
  #, fuzzy
907
  msgid "Learn more"
908
  msgstr "Lær mer"
909
 
910
+ #: contact_form.php:3751
911
  msgid "Close notice"
912
  msgstr ""
913
 
914
+ #: contact_form.php:3756
915
  #, fuzzy
916
  msgid "allows to store your messages to the database."
917
  msgstr ""
918
  "<strong>Contact Form to DB</strong> lar deg lagre meldinger i databasen."
919
 
920
+ #: contact_form.php:3757
921
  msgid "Manage messages that have been sent from your website."
922
  msgstr "Administrer meldinger som har blitt sendt fra din webside."
923
 
924
+ #: contact_form.php:3760
925
  msgid "Learn More"
926
  msgstr "Lær mer"
927
 
928
+ #: contact_form.php:3820
929
  #, fuzzy
930
  msgid "Contact form"
931
  msgstr "Kontaktskjema"
932
 
933
+ #: contact_form.php:3833 contact_form.php:3843
934
  #, fuzzy
935
  msgid "Language"
936
  msgstr "Legg til et språk"
937
 
 
 
 
 
 
 
 
 
938
  #, fuzzy
939
  #~ msgid "Unlock premium options by upgrading to Pro version"
940
  #~ msgstr "Lås opp ekstrafunksjoner ved å oppgradere til en PRO-versjon."
languages/contact-form-plugin-nl_NL.mo CHANGED
Binary file
languages/contact-form-plugin-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: 2017-02-27 16:23+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Olivier Smet <olivier.smet@dynata.nl>\n"
9
  "Language: nl\n"
@@ -18,54 +18,54 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: contact_form.php:42 contact_form.php:1066
22
  msgid "Contact Form Settings"
23
  msgstr "Contact Formulier Instellingen"
24
 
25
- #: contact_form.php:42
26
  msgid "Contact Form"
27
  msgstr "Contact Formulier"
28
 
29
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
30
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
31
- #: contact_form.php:3138 contact_form.php:3184
32
  msgid "Name"
33
  msgstr "Naam"
34
 
35
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
36
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
37
- #: contact_form.php:3190
38
  msgid "Address"
39
  msgstr "Adres"
40
 
41
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
42
- #: contact_form.php:1767
43
  msgid "Email Address"
44
  msgstr "E-mailadres"
45
 
46
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
47
- #: contact_form.php:1768
48
  msgid "Phone number"
49
  msgstr "Telefoonnummer"
50
 
51
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
52
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
53
- #: contact_form.php:3199
54
  msgid "Subject"
55
  msgstr "Onderwerp"
56
 
57
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
58
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
59
- #: contact_form.php:3203
60
  msgid "Message"
61
  msgstr "Bericht"
62
 
63
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
64
- #: contact_form.php:2040
65
  msgid "Attachment"
66
  msgstr "Bijlage"
67
 
68
- #: contact_form.php:302
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -74,71 +74,71 @@ msgstr ""
74
  "BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, "
75
  "PPT."
76
 
77
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
78
  msgid "Send me a copy"
79
  msgstr "Stuur mij een kopie"
80
 
81
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
82
  msgid "Submit"
83
  msgstr "Verstuur"
84
 
85
- #: contact_form.php:305
86
  msgid "Your name is required."
87
  msgstr "Je naam is vereist."
88
 
89
- #: contact_form.php:306
90
  msgid "Address is required."
91
  msgstr "Je adres is vereist."
92
 
93
- #: contact_form.php:307
94
  msgid "A valid email address is required."
95
  msgstr "Een geldig e-mailadres is vereist."
96
 
97
- #: contact_form.php:308
98
  msgid "Phone number is required."
99
  msgstr "Je telefoonnummer is vereist."
100
 
101
- #: contact_form.php:309
102
  msgid "Subject is required."
103
  msgstr "Het onderwerp is vereist."
104
 
105
- #: contact_form.php:310
106
  msgid "Message text is required."
107
  msgstr "Het bericht is vereist."
108
 
109
- #: contact_form.php:311
110
  msgid "File format is not valid."
111
  msgstr "Het bestandsformaat van je bijlage is niet geldig."
112
 
113
- #: contact_form.php:312
114
  msgid "File upload error."
115
  msgstr "Bestand upload fout."
116
 
117
- #: contact_form.php:313
118
  msgid "The file could not be uploaded."
119
  msgstr "Het bestand kon niet worden geüpload."
120
 
121
- #: contact_form.php:314
122
  msgid "This file is too large."
123
  msgstr "Het bestand is te groot."
124
 
125
- #: contact_form.php:315
126
  msgid "Please fill out the CAPTCHA."
127
  msgstr "Vul alsjeblieft de CAPTCHA in."
128
 
129
- #: contact_form.php:316
130
  msgid "Please make corrections below and try again."
131
  msgstr "Maak hieronder alsjeblieft correcties en probeer het dan opnieuw."
132
 
133
- #: contact_form.php:318
134
  msgid "Thank you for contacting us."
135
  msgstr "Bedankt voor het opnemen van contact met ons."
136
 
137
- #: contact_form.php:761 contact_form.php:1023
138
  msgid "Settings saved."
139
  msgstr "Instellingen opgeslagen."
140
 
141
- #: contact_form.php:968
142
  msgid ""
143
  "Email 'FROM' field option was changed, which may cause email messages being "
144
  "moved to the spam folder or email delivery failures."
@@ -147,7 +147,7 @@ msgstr ""
147
  "mailberichten naar de spam map worden verplaats of dat de e-mailberichten "
148
  "niet kunnen worden afgeleverd."
149
 
150
- #: contact_form.php:978
151
  msgid ""
152
  "If the 'Redirect to page' option is selected then the URL field should be in "
153
  "the following format"
@@ -155,64 +155,64 @@ msgstr ""
155
  "Als de 'Stuur door naar pagina' optie is geselecteerd, moet het URL veld in "
156
  "het volgende format zijn"
157
 
158
- #: contact_form.php:985
159
  msgid "Such user does not exist."
160
  msgstr "Deze gebruiker bestaat niet."
161
 
162
- #: contact_form.php:995
163
  msgid ""
164
  "Please enter a valid email address in the 'Use this email address' field."
165
  msgstr ""
166
  "Vul alsjeblieft een geldig e-mailadres in, in het 'Gebruik dit e-mailadres' "
167
  "veld."
168
 
169
- #: contact_form.php:1003
170
  msgid "Please enter a valid email address in the 'FROM' field."
171
  msgstr "Vul alsjeblieft een geldig e-mailadres in, in het 'VAN' veld."
172
 
173
- #: contact_form.php:1025
174
  msgid "Settings are not saved."
175
  msgstr "De instellingen zijn niet opgeslagen."
176
 
177
- #: contact_form.php:1063
178
  msgid "All plugin settings were restored."
179
  msgstr "Alle plugin instellingen zijn hersteld."
180
 
181
- #: contact_form.php:1069
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr ""
184
 
185
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
186
  msgid "Settings"
187
  msgstr "Instellingen"
188
 
189
- #: contact_form.php:1073
190
  msgid "Additional settings"
191
  msgstr "Aanvullende instellingen"
192
 
193
- #: contact_form.php:1074
194
  msgid "Appearance"
195
  msgstr "Weergave"
196
 
197
- #: contact_form.php:1075
198
  #, fuzzy
199
  msgid "Custom code"
200
  msgstr "Aanpassen"
201
 
202
- #: contact_form.php:1076
203
  msgid "Go PRO"
204
  msgstr "Gebruik PRO"
205
 
206
- #: contact_form.php:1087
207
  #, fuzzy
208
  msgid "Notice"
209
  msgstr "Let op:"
210
 
211
- #: contact_form.php:1091
212
  msgid "NEW_FORM"
213
  msgstr ""
214
 
215
- #: contact_form.php:1092
216
  msgid ""
217
  "If you want to create multiple contact forms, please install the Contact "
218
  "Form Multi plugin."
@@ -220,7 +220,7 @@ msgstr ""
220
  "Als je meerdere contact formulieren wil maken, installeer dan alsjeblieft de "
221
  "'Contact Form Multi plugin'."
222
 
223
- #: contact_form.php:1101
224
  #, fuzzy, php-format
225
  msgid ""
226
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -229,7 +229,7 @@ msgstr ""
229
  "Als je het contactformulier aan je website wil toevoegen, kopieer en plak "
230
  "deze code dan in je post of pagina:"
231
 
232
- #: contact_form.php:1107
233
  #, php-format
234
  msgid ""
235
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -238,7 +238,7 @@ msgid ""
238
  "language."
239
  msgstr ""
240
 
241
- #: contact_form.php:1116
242
  msgid ""
243
  "If you leave the fields empty, the messages will be sent to the email "
244
  "address specified during registration."
@@ -246,16 +246,16 @@ msgstr ""
246
  "Als je de velden leeg laat, zullen alle berichten worden verstuurd naar het "
247
  "e-mailadres dat is opgegeven tijdens de registratie."
248
 
249
- #: contact_form.php:1119
250
  #, fuzzy
251
  msgid "The user's email address"
252
  msgstr "Het e-mailadres van de gebruiker:"
253
 
254
- #: contact_form.php:1123
255
  msgid "Select a username"
256
  msgstr "Selecteer een gebruikersnaam"
257
 
258
- #: contact_form.php:1136
259
  #, fuzzy
260
  msgid ""
261
  "Select a username of the person who should get the messages from the contact "
@@ -264,112 +264,112 @@ msgstr ""
264
  "Vul de gebruikersnaam in van de persoon die de berichten van het "
265
  "contactformulier zou moeten ontvangen."
266
 
267
- #: contact_form.php:1140
268
  #, fuzzy
269
  msgid "Use this email address"
270
  msgstr "Gebruik dit e-mailadres:"
271
 
272
- #: contact_form.php:1144
273
  #, fuzzy
274
  msgid "Enter the email address for receiving messages"
275
  msgstr "Vul het e-mailadres in waar je de berichten naar wil laten doorsturen."
276
 
277
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
278
- #: contact_form.php:1939 contact_form.php:3471
279
  msgid "Close"
280
  msgstr "Sluiten"
281
 
282
- #: contact_form.php:1155
283
  #, fuzzy
284
  msgid "Add department selectbox to the contact form"
285
  msgstr "Voeg het departement keuzeveld aan het contactformulier toe:"
286
 
287
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
288
- #: contact_form.php:2145
289
  msgid "If you upgrade to Pro version all your settings will be saved."
290
  msgstr ""
291
  "Als je naar de Pro versie upgrade worden al je instellingen opgeslagen."
292
 
293
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
294
- #: contact_form.php:1880 contact_form.php:2152
295
  msgid "Upgrade to Pro"
296
  msgstr ""
297
 
298
- #: contact_form.php:1178
299
  msgid "Save emails to the database"
300
  msgstr "E-mailberichten opslaan in de database"
301
 
302
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
303
  msgid "Using"
304
  msgstr "Gebruikt"
305
 
306
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
307
- #: contact_form.php:1625
308
  msgid "Please activate the appropriate option on"
309
  msgstr ""
310
 
311
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
312
- #: contact_form.php:1628
313
  #, fuzzy
314
  msgid "settings page"
315
  msgstr "de instellingen pagina"
316
 
317
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
318
- #: contact_form.php:1635
319
  msgid "Activate"
320
  msgstr "Activeren"
321
 
322
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
323
- #: contact_form.php:1640
324
  msgid "Download"
325
  msgstr "Downloaden"
326
 
327
- #: contact_form.php:1224
328
  msgid "Sending method"
329
  msgstr ""
330
 
331
- #: contact_form.php:1229
332
  msgid "Wp-mail"
333
  msgstr "wp-mail"
334
 
335
- #: contact_form.php:1231
336
  #, fuzzy
337
  msgid "You can use the Wordpress wp_mail function for mailing"
338
  msgstr "Je kan de wp_mail functie gebruiken voor e-mailen"
339
 
340
- #: contact_form.php:1234
341
  msgid "Mail"
342
  msgstr "E-Mail"
343
 
344
- #: contact_form.php:1236
345
  #, fuzzy
346
  msgid "You can use the PHP mail function for mailing"
347
  msgstr "Je kan de wp_mail functie gebruiken voor e-mailen"
348
 
349
- #: contact_form.php:1241
350
  msgid "'FROM' field"
351
  msgstr "'VAN' veld"
352
 
353
- #: contact_form.php:1257
354
  msgid "User name"
355
  msgstr "Gebruikersnaam"
356
 
357
- #: contact_form.php:1259
358
  msgid ""
359
  "The name of the user who fills the form will be used in the field 'From'."
360
  msgstr ""
361
  "De naam van de gebruiker die het formulier invult zal worden gebruikt in het "
362
  "'Van' veld."
363
 
364
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
365
  msgid "Email"
366
  msgstr "E-mailadres"
367
 
368
- #: contact_form.php:1281
369
  msgid "User email"
370
  msgstr "E-mailadres van de gebruiker"
371
 
372
- #: contact_form.php:1283
373
  msgid ""
374
  "The email address of the user who fills the form will be used in the field "
375
  "'From'."
@@ -377,7 +377,7 @@ msgstr ""
377
  "De naam van de gebruiker die het formulier invult zal worden gebruikt in het "
378
  "'Van' veld."
379
 
380
- #: contact_form.php:1292
381
  msgid ""
382
  "If this option is changed, email messages may be moved to the spam folder or "
383
  "email delivery failures may occur."
@@ -386,51 +386,51 @@ msgstr ""
386
  "spam map worden verplaats of dat de e-mailberichten niet kunnen worden "
387
  "afgeleverd."
388
 
389
- #: contact_form.php:1301
390
  msgid "Required symbol"
391
  msgstr "Vereist symbool"
392
 
393
- #: contact_form.php:1311
394
  msgid "Fields"
395
  msgstr "Velden"
396
 
397
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
398
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
399
  msgid "Used"
400
  msgstr "Gebruikt"
401
 
402
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
403
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
404
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
405
  msgid "Required"
406
  msgstr "Vereist"
407
 
408
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
409
- #: contact_form.php:1447 contact_form.php:1471
410
  msgid "Visible"
411
  msgstr "Zichtbaar"
412
 
413
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
414
- #: contact_form.php:1451 contact_form.php:1475
415
  msgid "Disabled for editing"
416
  msgstr "Uitgesloten van bewerken"
417
 
418
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
419
- #: contact_form.php:1479
420
  msgid "Field's default value"
421
  msgstr "Standaard waarde van het veld"
422
 
423
- #: contact_form.php:1324
424
  msgid "Department selectbox"
425
  msgstr "Departement keuzeveld"
426
 
427
- #: contact_form.php:1356
428
  msgid "Use User's name as a default value if the user is logged in."
429
  msgstr ""
430
  "Gebruik de naam van de gebruiker als standaard waarde wanneer de gebruik is "
431
  "ingelogd."
432
 
433
- #: contact_form.php:1357 contact_form.php:1417
434
  msgid ""
435
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
436
  "in users."
@@ -438,93 +438,93 @@ msgstr ""
438
  "De opties 'Zichtbaar' en 'Uitgesloten van bewerken' zullen alleen worden "
439
  "toegepast op ingelogde gebruikers."
440
 
441
- #: contact_form.php:1363
442
  msgid "Location selectbox"
443
  msgstr "Locatie keuzeveld"
444
 
445
- #: contact_form.php:1416
446
  msgid "Use User's email as a default value if the user is logged in."
447
  msgstr ""
448
  "Gebruik het e-mailadres van de gebruiker als standaard waarde wanneer de "
449
  "gebruiker is ingelogd."
450
 
451
- #: contact_form.php:1500
452
  msgid "Attachment block"
453
  msgstr "Bijlagen blok"
454
 
455
- #: contact_form.php:1502
456
  msgid "Users can attach the following file formats"
457
  msgstr "Gebruikers kunnen de volgende bestandsformaten bijvoegen"
458
 
459
- #: contact_form.php:1520
460
  msgid "Add to the form"
461
  msgstr "Aan het formulier toevoegen"
462
 
463
- #: contact_form.php:1525
464
  msgid "Tips below the Attachment"
465
  msgstr "Tips onder de bijlagen weergeven"
466
 
467
- #: contact_form.php:1532
468
  msgid "'Send me a copy' block"
469
  msgstr "'Stuur mij een kopie' blok"
470
 
471
- #: contact_form.php:1560
472
  #, fuzzy
473
  msgid "Activate for network"
474
  msgstr "Geactiveerde plugins"
475
 
476
- #: contact_form.php:1651
477
  msgid "Agreement checkbox"
478
  msgstr "Akkoord gaan vinkje"
479
 
480
- #: contact_form.php:1651
481
  msgid "Required checkbox for submitting the form"
482
  msgstr "Vereist vinkje voor het verzenden van het formulier"
483
 
484
- #: contact_form.php:1652
485
  msgid "Optional checkbox"
486
  msgstr "Optioneel vinkje"
487
 
488
- #: contact_form.php:1652
489
  msgid "Optional checkbox, the results of which will be displayed in email"
490
  msgstr ""
491
  "Optioneel vinkje, waarvan de resultaten in de e-mail zullen worden "
492
  "weergegeven"
493
 
494
- #: contact_form.php:1670
495
  msgid "Delete an attachment file from the server after the email is sent"
496
  msgstr "Verwijder een bijlage van de server nadat de e-mail is verzonden"
497
 
498
- #: contact_form.php:1676
499
  msgid "Email in HTML format sending"
500
  msgstr "E-mail in HTML formaat verzenden"
501
 
502
- #: contact_form.php:1680
503
  msgid "Display additional info in the email"
504
  msgstr "Additionele informatie in de e-mail weergeven"
505
 
506
- #: contact_form.php:1686
507
  #, fuzzy
508
  msgid "Sent from (IP address)"
509
  msgstr "Verstuurd van (IP-adres)"
510
 
511
- #: contact_form.php:1686
512
  msgid "Example: Sent from (IP address):\t127.0.0.1"
513
  msgstr "Voorbeeld: Verstuur van (IP-adres):\t127.0.0.1"
514
 
515
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
516
  msgid "Date/Time"
517
  msgstr "Dag/Tijd"
518
 
519
- #: contact_form.php:1687
520
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
521
  msgstr "Voorbeeld: Dag/Tijd:\tAugustus 19, 2013 8:50 pm"
522
 
523
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
524
  msgid "Sent from (referer)"
525
  msgstr "Verzonden van (verwijzing)"
526
 
527
- #: contact_form.php:1688
528
  #, fuzzy
529
  msgid ""
530
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
@@ -532,11 +532,11 @@ msgstr ""
532
  "Voorbeeld: Verzonden van (verwijzing):\thttp://bestwebsoft.com/contacts/"
533
  "contact-us/"
534
 
535
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
536
  msgid "Using (user agent)"
537
  msgstr "Met behulp van (user agent)"
538
 
539
- #: contact_form.php:1689
540
  msgid ""
541
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
542
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -544,142 +544,142 @@ msgstr ""
544
  "Voorbeeld: Met behulp van (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
545
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
546
 
547
- #: contact_form.php:1694
548
  msgid "Language settings for the field names in the form"
549
  msgstr "Taal instellingen voor de veldnamen in het formulier"
550
 
551
- #: contact_form.php:1703
552
  msgid "Add a language"
553
  msgstr "Een taal toevoegen"
554
 
555
- #: contact_form.php:1707
556
  msgid "Change the names of the contact form fields and error messages"
557
  msgstr ""
558
  "De namen voor de velden en foutmeldingen van het contactformulier aanpassen"
559
 
560
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
561
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
562
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
563
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
564
- #: contact_form.php:2132 contact_form.php:2137
565
  msgid "Default"
566
  msgstr "Standaard"
567
 
568
- #: contact_form.php:1725 contact_form.php:1763
569
  msgid "click to expand/hide the list"
570
  msgstr "klik om de lijst weer te geven/te verbergen"
571
 
572
- #: contact_form.php:1734 contact_form.php:1772
573
  msgid "Tips below the Attachment block"
574
  msgstr "Tips onder het bijlagen blok weergeven"
575
 
576
- #: contact_form.php:1737 contact_form.php:1775
577
  msgid "Error message for the Name field"
578
  msgstr "Foutmelding voor het Naam veld"
579
 
580
- #: contact_form.php:1738 contact_form.php:1776
581
  msgid "Error message for the Address field"
582
  msgstr "Foutmelding voor het Adres veld"
583
 
584
- #: contact_form.php:1739 contact_form.php:1777
585
  msgid "Error message for the Email field"
586
  msgstr "Foutmelding voor het E-mailadres veld"
587
 
588
- #: contact_form.php:1740 contact_form.php:1778
589
  msgid "Error message for the Phone field"
590
  msgstr "Foutmelding voor het Telefoonnummer veld"
591
 
592
- #: contact_form.php:1741 contact_form.php:1779
593
  msgid "Error message for the Subject field"
594
  msgstr "Foutmelding voor het Onderwerp veld"
595
 
596
- #: contact_form.php:1742 contact_form.php:1780
597
  msgid "Error message for the Message field"
598
  msgstr "Foutmelding voor het Bericht veld"
599
 
600
- #: contact_form.php:1743 contact_form.php:1781
601
  msgid "Error message about the file type for the Attachment field"
602
  msgstr "Foutmelding over het bestandsformaat voor het bijlagen veld"
603
 
604
- #: contact_form.php:1744 contact_form.php:1782
605
  msgid ""
606
  "Error message while uploading a file for the Attachment field to the server"
607
  msgstr ""
608
  "Foutmelding tijdens het uploaden van een bestand naar de server voor het "
609
  "bijlagen veld"
610
 
611
- #: contact_form.php:1745 contact_form.php:1783
612
  msgid "Error message while moving the file for the Attachment field"
613
  msgstr ""
614
  "Foutmelding tijdens het verplaatsen van een bestand voor het bijlagen veld"
615
 
616
- #: contact_form.php:1746 contact_form.php:1784
617
  msgid "Error message when file size limit for the Attachment field is exceeded"
618
  msgstr ""
619
  "Foutmelding wanner de maximale bestandsgrootte voor het bijlagen veld wordt "
620
  "overschreden"
621
 
622
- #: contact_form.php:1747 contact_form.php:1785
623
  msgid "Error message for the Captcha field"
624
  msgstr "Foutmelding voor het CAPTCHA veld"
625
 
626
- #: contact_form.php:1748 contact_form.php:1786
627
  msgid "Error message for the whole form"
628
  msgstr "Foutmelding voor het volledige formulier"
629
 
630
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
631
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
632
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
633
- #: contact_form.php:3540
634
  msgid "Use shortcode"
635
  msgstr "Gebruik code"
636
 
637
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
638
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
639
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
640
- #: contact_form.php:3540
641
  msgid "for this language"
642
  msgstr "voor deze taal"
643
 
644
- #: contact_form.php:1799
645
  msgid "Use the changed names of the contact form fields in the email"
646
  msgstr ""
647
  "Gebruik de onaangepaste namen van de velden van het contactformulier in de e-"
648
  "mail"
649
 
650
- #: contact_form.php:1805
651
  msgid "Action after email is sent"
652
  msgstr "Actie nadat de e-mail is verzonden"
653
 
654
- #: contact_form.php:1807
655
  msgid "Display text"
656
  msgstr "Tekst weergeven"
657
 
658
- #: contact_form.php:1821 contact_form.php:1835
659
  msgid "Text"
660
  msgstr "Tekst"
661
 
662
- #: contact_form.php:1846
663
  msgid "Redirect to the page"
664
  msgstr "Doorsturen naar pagina"
665
 
666
- #: contact_form.php:1847
667
  msgid "Url"
668
  msgstr "URL"
669
 
670
- #: contact_form.php:1858
671
  msgid "Add field 'Reply-To' to the email header"
672
  msgstr ""
673
 
674
- #: contact_form.php:1860
675
  msgid "Field 'Reply-To' will be initialized by user email"
676
  msgstr ""
677
 
678
- #: contact_form.php:1864
679
  msgid "Auto Response"
680
  msgstr "Automatisch Antwoord"
681
 
682
- #: contact_form.php:1868
683
  #, php-format
684
  msgid ""
685
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -690,182 +690,195 @@ msgstr ""
690
  "%%MESSAGE%% om data weer te geven uit het bericht veld en %%SITENAME%% om de "
691
  "naam van het blog weer te geven."
692
 
693
- #: contact_form.php:1890 contact_form.php:2389
694
  msgid "Save Changes"
695
  msgstr "Instellingen Opslaan"
696
 
697
- #: contact_form.php:1903
698
  #, php-format
699
  msgid ""
700
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
701
  msgstr ""
702
 
703
- #: contact_form.php:1903 contact_form.php:1912
704
  msgid "Form layout"
705
  msgstr ""
706
 
707
- #: contact_form.php:1903 contact_form.php:1924
708
  #, fuzzy
709
  msgid "Submit position"
710
  msgstr "Verzend knop"
711
 
712
- #: contact_form.php:1916
713
  msgid "One column"
714
  msgstr ""
715
 
716
- #: contact_form.php:1919
717
  msgid "Two columns"
718
  msgstr ""
719
 
720
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
721
- #: contact_form.php:1980
722
  msgid "Left"
723
  msgstr ""
724
 
725
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
726
- #: contact_form.php:1986
727
  msgid "Right"
728
  msgstr ""
729
 
730
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
 
731
  msgid "Form align"
732
  msgstr ""
733
 
734
- #: contact_form.php:1950 contact_form.php:1983
735
  msgid "Center"
736
  msgstr ""
737
 
738
- #: contact_form.php:1958
739
  #, fuzzy
740
  msgid "Labels position"
741
  msgstr "Verzend knop"
742
 
743
- #: contact_form.php:1962
744
  msgid "Top"
745
  msgstr ""
746
 
747
- #: contact_form.php:1971
748
  msgid "Bottom"
749
  msgstr ""
750
 
751
- #: contact_form.php:1976
752
  msgid "Labels align"
753
  msgstr ""
754
 
755
- #: contact_form.php:1991
756
  msgid "Errors output"
757
  msgstr "Foutmeldingen uitvoer"
758
 
759
- #: contact_form.php:1994
760
  msgid "Display error messages"
761
  msgstr "Foutmeldingen weergeven"
762
 
763
- #: contact_form.php:1995
764
  msgid "Color of the input field errors."
765
  msgstr "Kleur van de velden met foutmeldingen"
766
 
767
- #: contact_form.php:1996
768
  msgid "Display error messages & color of the input field errors"
769
  msgstr "Foutmeldingen & kleur van de velden met foutmeldingen weergeven"
770
 
771
- #: contact_form.php:2001
772
  msgid "Add placeholder to the input blocks"
773
  msgstr "Tijdelijke aanduiding aan de velden toevoegen"
774
 
775
- #: contact_form.php:2007
776
  msgid "Add tooltips"
777
  msgstr "Tooltips toevoegen"
778
 
779
- #: contact_form.php:2021
780
  msgid "Email address"
781
  msgstr "E-mailadres"
782
 
783
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
784
  msgid "Phone Number"
785
  msgstr "Telefoonnummer"
786
 
787
- #: contact_form.php:2052
788
  msgid "Style options"
789
  msgstr "Stijl opties"
790
 
791
- #: contact_form.php:2056
792
  msgid "Text color"
793
  msgstr "Tekstkleur"
794
 
795
- #: contact_form.php:2061
796
  msgid "Label text color"
797
  msgstr "Label tekstkleur"
798
 
799
- #: contact_form.php:2066
800
  msgid "Placeholder color"
801
  msgstr "Kleur van tijdelijke aanduiding"
802
 
803
- #: contact_form.php:2071
804
  msgid "Errors color"
805
  msgstr "Kleur van foutmeldingen"
806
 
807
- #: contact_form.php:2076
808
  msgid "Error text color"
809
  msgstr "Tekstkleur van foutmeldingen"
810
 
811
- #: contact_form.php:2081
812
  msgid "Background color of the input field errors"
813
  msgstr "Achtergrondkleur van veldfoutmeldingen"
814
 
815
- #: contact_form.php:2086
816
  msgid "Border color of the input field errors"
817
  msgstr "Randkleur van veldfoutmeldingen"
818
 
819
- #: contact_form.php:2091
820
  msgid "Placeholder color of the input field errors"
821
  msgstr "Kleur van tijdelijke aanduidingen in een veld met foutmeldingen"
822
 
823
- #: contact_form.php:2096
824
  msgid "Input fields"
825
  msgstr "Velden"
826
 
827
- #: contact_form.php:2101
828
  msgid "Input fields background color"
829
  msgstr "Achtergrondkleur van velden"
830
 
831
- #: contact_form.php:2106
832
  msgid "Text fields color"
833
  msgstr "Kleur van velden met tekst"
834
 
835
- #: contact_form.php:2110
836
  msgid "Border width in px, numbers only"
837
  msgstr "Border breedte in px, slechts getallen"
838
 
839
- #: contact_form.php:2115 contact_form.php:2139
840
  msgid "Border color"
841
  msgstr "Border kleur"
842
 
843
- #: contact_form.php:2120
844
  msgid "Submit button"
845
  msgstr "Verzend knop"
846
 
847
- #: contact_form.php:2124
848
  msgid "Width in px, numbers only"
849
  msgstr "Breedte in px, slechts getallen"
850
 
851
- #: contact_form.php:2129
852
  msgid "Button color"
853
  msgstr "Kleur van knop"
854
 
855
- #: contact_form.php:2134
856
  msgid "Button text color"
857
  msgstr "Tekstkleur van knop"
858
 
859
- #: contact_form.php:2163
860
  #, fuzzy
861
  msgid "Contact Form | Preview"
862
  msgstr "Contact Formulier Pro | Voorbeeld"
863
 
864
- #: contact_form.php:2164
865
  msgid "Drag the necessary field to sort fields."
866
  msgstr ""
867
 
868
- #: contact_form.php:2376
869
  #, fuzzy
870
  msgid ""
871
  "If you would like to add the Contact Form to your website, just copy and "
@@ -874,23 +887,23 @@ msgstr ""
874
  "Als je het Contact Formulier aan je website wil toevoegen, kopieer en plak "
875
  "deze code dan naar je bericht, pagina of widget:"
876
 
877
- #: contact_form.php:2504
878
  msgid "Sorry, email message could not be delivered."
879
  msgstr "Sorry, het e-mailbericht kon niet worden afgeleverd."
880
 
881
- #: contact_form.php:3094 contact_form.php:3096
882
  msgid "Sent from (ip address)"
883
  msgstr "Verstuurd van (IP-adres)"
884
 
885
- #: contact_form.php:3124
886
  msgid "Contact from"
887
  msgstr "Contact van"
888
 
889
- #: contact_form.php:3129 contact_form.php:3178
890
  msgid "Site"
891
  msgstr "Website"
892
 
893
- #: contact_form.php:3308
894
  msgid ""
895
  "If you can see this MIME, it means that the MIME type is not supported by "
896
  "your email client!"
@@ -898,23 +911,23 @@ msgstr ""
898
  "Als je deze MIME kan zien, betekent dat dat het MIME type niet wordt "
899
  "ondersteund door je e-mailprogramma!"
900
 
901
- #: contact_form.php:3391
902
  msgid "FAQ"
903
  msgstr "Veelgestelde vragen"
904
 
905
- #: contact_form.php:3392
906
  msgid "Support"
907
  msgstr "Ondersteuning"
908
 
909
- #: contact_form.php:3441
910
  msgid "Are you sure that you want to delete this language data?"
911
  msgstr "Weet je zeker dat je deze taal data wil verwijderen?"
912
 
913
- #: contact_form.php:3462
914
  msgid "Add multiple forms"
915
  msgstr "Meerdere formulieren toevoegen"
916
 
917
- #: contact_form.php:3462
918
  msgid ""
919
  "Install Contact Form Multi plugin to create unlimited number of contact "
920
  "forms."
@@ -922,44 +935,36 @@ msgstr ""
922
  "Installeer de Contact Form Multi plugin om een ongelimiteerd aantal "
923
  "contactformulieren te maken"
924
 
925
- #: contact_form.php:3467
926
  msgid "Learn more"
927
  msgstr "Meer informatie"
928
 
929
- #: contact_form.php:3693
930
  msgid "Close notice"
931
  msgstr ""
932
 
933
- #: contact_form.php:3698
934
  msgid "allows to store your messages to the database."
935
  msgstr "staat toe om je berichten in de database op te slaan"
936
 
937
- #: contact_form.php:3699
938
  msgid "Manage messages that have been sent from your website."
939
  msgstr "Beheer berichten die van je website zijn verstuurd."
940
 
941
- #: contact_form.php:3702
942
  msgid "Learn More"
943
  msgstr "Meer Informatie"
944
 
945
- #: contact_form.php:3762
946
  #, fuzzy
947
  msgid "Contact form"
948
  msgstr "Contact van"
949
 
950
- #: contact_form.php:3775 contact_form.php:3785
951
  #, fuzzy
952
  msgid "Language"
953
  msgstr "Een taal toevoegen"
954
 
955
- #: includes/deprecated.php:168
956
- #, php-format
957
- msgid ""
958
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
959
- "replace it with %3s. If you close this message it'll appear again after "
960
- "deprecated shortcode reuse."
961
- msgstr ""
962
-
963
  #, fuzzy
964
  #~ msgid "Unlock premium options by upgrading to Pro version"
965
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:15+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:15+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Olivier Smet <olivier.smet@dynata.nl>\n"
9
  "Language: nl\n"
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: contact_form.php:37 contact_form.php:1064
22
  msgid "Contact Form Settings"
23
  msgstr "Contact Formulier Instellingen"
24
 
25
+ #: contact_form.php:37
26
  msgid "Contact Form"
27
  msgstr "Contact Formulier"
28
 
29
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
30
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
31
+ #: contact_form.php:3181 contact_form.php:3227
32
  msgid "Name"
33
  msgstr "Naam"
34
 
35
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
36
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
37
+ #: contact_form.php:3233
38
  msgid "Address"
39
  msgstr "Adres"
40
 
41
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
42
+ #: contact_form.php:1765
43
  msgid "Email Address"
44
  msgstr "E-mailadres"
45
 
46
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
47
+ #: contact_form.php:1766
48
  msgid "Phone number"
49
  msgstr "Telefoonnummer"
50
 
51
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
52
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
53
+ #: contact_form.php:3242
54
  msgid "Subject"
55
  msgstr "Onderwerp"
56
 
57
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
58
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
59
+ #: contact_form.php:3246
60
  msgid "Message"
61
  msgstr "Bericht"
62
 
63
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
64
+ #: contact_form.php:2058
65
  msgid "Attachment"
66
  msgstr "Bijlage"
67
 
68
+ #: contact_form.php:287
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
  "BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, "
75
  "PPT."
76
 
77
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
78
  msgid "Send me a copy"
79
  msgstr "Stuur mij een kopie"
80
 
81
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
82
  msgid "Submit"
83
  msgstr "Verstuur"
84
 
85
+ #: contact_form.php:290
86
  msgid "Your name is required."
87
  msgstr "Je naam is vereist."
88
 
89
+ #: contact_form.php:291
90
  msgid "Address is required."
91
  msgstr "Je adres is vereist."
92
 
93
+ #: contact_form.php:292
94
  msgid "A valid email address is required."
95
  msgstr "Een geldig e-mailadres is vereist."
96
 
97
+ #: contact_form.php:293
98
  msgid "Phone number is required."
99
  msgstr "Je telefoonnummer is vereist."
100
 
101
+ #: contact_form.php:294
102
  msgid "Subject is required."
103
  msgstr "Het onderwerp is vereist."
104
 
105
+ #: contact_form.php:295
106
  msgid "Message text is required."
107
  msgstr "Het bericht is vereist."
108
 
109
+ #: contact_form.php:296
110
  msgid "File format is not valid."
111
  msgstr "Het bestandsformaat van je bijlage is niet geldig."
112
 
113
+ #: contact_form.php:297
114
  msgid "File upload error."
115
  msgstr "Bestand upload fout."
116
 
117
+ #: contact_form.php:298
118
  msgid "The file could not be uploaded."
119
  msgstr "Het bestand kon niet worden geüpload."
120
 
121
+ #: contact_form.php:299
122
  msgid "This file is too large."
123
  msgstr "Het bestand is te groot."
124
 
125
+ #: contact_form.php:300
126
  msgid "Please fill out the CAPTCHA."
127
  msgstr "Vul alsjeblieft de CAPTCHA in."
128
 
129
+ #: contact_form.php:301
130
  msgid "Please make corrections below and try again."
131
  msgstr "Maak hieronder alsjeblieft correcties en probeer het dan opnieuw."
132
 
133
+ #: contact_form.php:303
134
  msgid "Thank you for contacting us."
135
  msgstr "Bedankt voor het opnemen van contact met ons."
136
 
137
+ #: contact_form.php:759 contact_form.php:1021
138
  msgid "Settings saved."
139
  msgstr "Instellingen opgeslagen."
140
 
141
+ #: contact_form.php:966
142
  msgid ""
143
  "Email 'FROM' field option was changed, which may cause email messages being "
144
  "moved to the spam folder or email delivery failures."
147
  "mailberichten naar de spam map worden verplaats of dat de e-mailberichten "
148
  "niet kunnen worden afgeleverd."
149
 
150
+ #: contact_form.php:976
151
  msgid ""
152
  "If the 'Redirect to page' option is selected then the URL field should be in "
153
  "the following format"
155
  "Als de 'Stuur door naar pagina' optie is geselecteerd, moet het URL veld in "
156
  "het volgende format zijn"
157
 
158
+ #: contact_form.php:983
159
  msgid "Such user does not exist."
160
  msgstr "Deze gebruiker bestaat niet."
161
 
162
+ #: contact_form.php:993
163
  msgid ""
164
  "Please enter a valid email address in the 'Use this email address' field."
165
  msgstr ""
166
  "Vul alsjeblieft een geldig e-mailadres in, in het 'Gebruik dit e-mailadres' "
167
  "veld."
168
 
169
+ #: contact_form.php:1001
170
  msgid "Please enter a valid email address in the 'FROM' field."
171
  msgstr "Vul alsjeblieft een geldig e-mailadres in, in het 'VAN' veld."
172
 
173
+ #: contact_form.php:1023
174
  msgid "Settings are not saved."
175
  msgstr "De instellingen zijn niet opgeslagen."
176
 
177
+ #: contact_form.php:1061
178
  msgid "All plugin settings were restored."
179
  msgstr "Alle plugin instellingen zijn hersteld."
180
 
181
+ #: contact_form.php:1067
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr ""
184
 
185
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
186
  msgid "Settings"
187
  msgstr "Instellingen"
188
 
189
+ #: contact_form.php:1071
190
  msgid "Additional settings"
191
  msgstr "Aanvullende instellingen"
192
 
193
+ #: contact_form.php:1072
194
  msgid "Appearance"
195
  msgstr "Weergave"
196
 
197
+ #: contact_form.php:1073
198
  #, fuzzy
199
  msgid "Custom code"
200
  msgstr "Aanpassen"
201
 
202
+ #: contact_form.php:1074
203
  msgid "Go PRO"
204
  msgstr "Gebruik PRO"
205
 
206
+ #: contact_form.php:1085
207
  #, fuzzy
208
  msgid "Notice"
209
  msgstr "Let op:"
210
 
211
+ #: contact_form.php:1089
212
  msgid "NEW_FORM"
213
  msgstr ""
214
 
215
+ #: contact_form.php:1090
216
  msgid ""
217
  "If you want to create multiple contact forms, please install the Contact "
218
  "Form Multi plugin."
220
  "Als je meerdere contact formulieren wil maken, installeer dan alsjeblieft de "
221
  "'Contact Form Multi plugin'."
222
 
223
+ #: contact_form.php:1099
224
  #, fuzzy, php-format
225
  msgid ""
226
  "If you would like to add a Contact Form to your page or post, please use %s "
229
  "Als je het contactformulier aan je website wil toevoegen, kopieer en plak "
230
  "deze code dan in je post of pagina:"
231
 
232
+ #: contact_form.php:1105
233
  #, php-format
234
  msgid ""
235
  "You can add the Contact Form to your page or post by clicking on %s button "
238
  "language."
239
  msgstr ""
240
 
241
+ #: contact_form.php:1114
242
  msgid ""
243
  "If you leave the fields empty, the messages will be sent to the email "
244
  "address specified during registration."
246
  "Als je de velden leeg laat, zullen alle berichten worden verstuurd naar het "
247
  "e-mailadres dat is opgegeven tijdens de registratie."
248
 
249
+ #: contact_form.php:1117
250
  #, fuzzy
251
  msgid "The user's email address"
252
  msgstr "Het e-mailadres van de gebruiker:"
253
 
254
+ #: contact_form.php:1121
255
  msgid "Select a username"
256
  msgstr "Selecteer een gebruikersnaam"
257
 
258
+ #: contact_form.php:1134
259
  #, fuzzy
260
  msgid ""
261
  "Select a username of the person who should get the messages from the contact "
264
  "Vul de gebruikersnaam in van de persoon die de berichten van het "
265
  "contactformulier zou moeten ontvangen."
266
 
267
+ #: contact_form.php:1138
268
  #, fuzzy
269
  msgid "Use this email address"
270
  msgstr "Gebruik dit e-mailadres:"
271
 
272
+ #: contact_form.php:1142
273
  #, fuzzy
274
  msgid "Enter the email address for receiving messages"
275
  msgstr "Vul het e-mailadres in waar je de berichten naar wil laten doorsturen."
276
 
277
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
278
+ #: contact_form.php:1957 contact_form.php:3514
279
  msgid "Close"
280
  msgstr "Sluiten"
281
 
282
+ #: contact_form.php:1153
283
  #, fuzzy
284
  msgid "Add department selectbox to the contact form"
285
  msgstr "Voeg het departement keuzeveld aan het contactformulier toe:"
286
 
287
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
288
+ #: contact_form.php:2163
289
  msgid "If you upgrade to Pro version all your settings will be saved."
290
  msgstr ""
291
  "Als je naar de Pro versie upgrade worden al je instellingen opgeslagen."
292
 
293
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
294
+ #: contact_form.php:1878 contact_form.php:2170
295
  msgid "Upgrade to Pro"
296
  msgstr ""
297
 
298
+ #: contact_form.php:1176
299
  msgid "Save emails to the database"
300
  msgstr "E-mailberichten opslaan in de database"
301
 
302
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
303
  msgid "Using"
304
  msgstr "Gebruikt"
305
 
306
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
307
+ #: contact_form.php:1623
308
  msgid "Please activate the appropriate option on"
309
  msgstr ""
310
 
311
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
312
+ #: contact_form.php:1626
313
  #, fuzzy
314
  msgid "settings page"
315
  msgstr "de instellingen pagina"
316
 
317
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
318
+ #: contact_form.php:1633
319
  msgid "Activate"
320
  msgstr "Activeren"
321
 
322
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
323
+ #: contact_form.php:1638
324
  msgid "Download"
325
  msgstr "Downloaden"
326
 
327
+ #: contact_form.php:1222
328
  msgid "Sending method"
329
  msgstr ""
330
 
331
+ #: contact_form.php:1227
332
  msgid "Wp-mail"
333
  msgstr "wp-mail"
334
 
335
+ #: contact_form.php:1229
336
  #, fuzzy
337
  msgid "You can use the Wordpress wp_mail function for mailing"
338
  msgstr "Je kan de wp_mail functie gebruiken voor e-mailen"
339
 
340
+ #: contact_form.php:1232
341
  msgid "Mail"
342
  msgstr "E-Mail"
343
 
344
+ #: contact_form.php:1234
345
  #, fuzzy
346
  msgid "You can use the PHP mail function for mailing"
347
  msgstr "Je kan de wp_mail functie gebruiken voor e-mailen"
348
 
349
+ #: contact_form.php:1239
350
  msgid "'FROM' field"
351
  msgstr "'VAN' veld"
352
 
353
+ #: contact_form.php:1255
354
  msgid "User name"
355
  msgstr "Gebruikersnaam"
356
 
357
+ #: contact_form.php:1257
358
  msgid ""
359
  "The name of the user who fills the form will be used in the field 'From'."
360
  msgstr ""
361
  "De naam van de gebruiker die het formulier invult zal worden gebruikt in het "
362
  "'Van' veld."
363
 
364
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
365
  msgid "Email"
366
  msgstr "E-mailadres"
367
 
368
+ #: contact_form.php:1279
369
  msgid "User email"
370
  msgstr "E-mailadres van de gebruiker"
371
 
372
+ #: contact_form.php:1281
373
  msgid ""
374
  "The email address of the user who fills the form will be used in the field "
375
  "'From'."
377
  "De naam van de gebruiker die het formulier invult zal worden gebruikt in het "
378
  "'Van' veld."
379
 
380
+ #: contact_form.php:1290
381
  msgid ""
382
  "If this option is changed, email messages may be moved to the spam folder or "
383
  "email delivery failures may occur."
386
  "spam map worden verplaats of dat de e-mailberichten niet kunnen worden "
387
  "afgeleverd."
388
 
389
+ #: contact_form.php:1299
390
  msgid "Required symbol"
391
  msgstr "Vereist symbool"
392
 
393
+ #: contact_form.php:1309
394
  msgid "Fields"
395
  msgstr "Velden"
396
 
397
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
398
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
399
  msgid "Used"
400
  msgstr "Gebruikt"
401
 
402
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
403
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
404
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
405
  msgid "Required"
406
  msgstr "Vereist"
407
 
408
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
409
+ #: contact_form.php:1445 contact_form.php:1469
410
  msgid "Visible"
411
  msgstr "Zichtbaar"
412
 
413
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
414
+ #: contact_form.php:1449 contact_form.php:1473
415
  msgid "Disabled for editing"
416
  msgstr "Uitgesloten van bewerken"
417
 
418
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
419
+ #: contact_form.php:1477
420
  msgid "Field's default value"
421
  msgstr "Standaard waarde van het veld"
422
 
423
+ #: contact_form.php:1322
424
  msgid "Department selectbox"
425
  msgstr "Departement keuzeveld"
426
 
427
+ #: contact_form.php:1354
428
  msgid "Use User's name as a default value if the user is logged in."
429
  msgstr ""
430
  "Gebruik de naam van de gebruiker als standaard waarde wanneer de gebruik is "
431
  "ingelogd."
432
 
433
+ #: contact_form.php:1355 contact_form.php:1415
434
  msgid ""
435
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
436
  "in users."
438
  "De opties 'Zichtbaar' en 'Uitgesloten van bewerken' zullen alleen worden "
439
  "toegepast op ingelogde gebruikers."
440
 
441
+ #: contact_form.php:1361
442
  msgid "Location selectbox"
443
  msgstr "Locatie keuzeveld"
444
 
445
+ #: contact_form.php:1414
446
  msgid "Use User's email as a default value if the user is logged in."
447
  msgstr ""
448
  "Gebruik het e-mailadres van de gebruiker als standaard waarde wanneer de "
449
  "gebruiker is ingelogd."
450
 
451
+ #: contact_form.php:1498
452
  msgid "Attachment block"
453
  msgstr "Bijlagen blok"
454
 
455
+ #: contact_form.php:1500
456
  msgid "Users can attach the following file formats"
457
  msgstr "Gebruikers kunnen de volgende bestandsformaten bijvoegen"
458
 
459
+ #: contact_form.php:1518
460
  msgid "Add to the form"
461
  msgstr "Aan het formulier toevoegen"
462
 
463
+ #: contact_form.php:1523
464
  msgid "Tips below the Attachment"
465
  msgstr "Tips onder de bijlagen weergeven"
466
 
467
+ #: contact_form.php:1530
468
  msgid "'Send me a copy' block"
469
  msgstr "'Stuur mij een kopie' blok"
470
 
471
+ #: contact_form.php:1558
472
  #, fuzzy
473
  msgid "Activate for network"
474
  msgstr "Geactiveerde plugins"
475
 
476
+ #: contact_form.php:1649
477
  msgid "Agreement checkbox"
478
  msgstr "Akkoord gaan vinkje"
479
 
480
+ #: contact_form.php:1649
481
  msgid "Required checkbox for submitting the form"
482
  msgstr "Vereist vinkje voor het verzenden van het formulier"
483
 
484
+ #: contact_form.php:1650
485
  msgid "Optional checkbox"
486
  msgstr "Optioneel vinkje"
487
 
488
+ #: contact_form.php:1650
489
  msgid "Optional checkbox, the results of which will be displayed in email"
490
  msgstr ""
491
  "Optioneel vinkje, waarvan de resultaten in de e-mail zullen worden "
492
  "weergegeven"
493
 
494
+ #: contact_form.php:1668
495
  msgid "Delete an attachment file from the server after the email is sent"
496
  msgstr "Verwijder een bijlage van de server nadat de e-mail is verzonden"
497
 
498
+ #: contact_form.php:1674
499
  msgid "Email in HTML format sending"
500
  msgstr "E-mail in HTML formaat verzenden"
501
 
502
+ #: contact_form.php:1678
503
  msgid "Display additional info in the email"
504
  msgstr "Additionele informatie in de e-mail weergeven"
505
 
506
+ #: contact_form.php:1684
507
  #, fuzzy
508
  msgid "Sent from (IP address)"
509
  msgstr "Verstuurd van (IP-adres)"
510
 
511
+ #: contact_form.php:1684
512
  msgid "Example: Sent from (IP address):\t127.0.0.1"
513
  msgstr "Voorbeeld: Verstuur van (IP-adres):\t127.0.0.1"
514
 
515
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
516
  msgid "Date/Time"
517
  msgstr "Dag/Tijd"
518
 
519
+ #: contact_form.php:1685
520
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
521
  msgstr "Voorbeeld: Dag/Tijd:\tAugustus 19, 2013 8:50 pm"
522
 
523
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
524
  msgid "Sent from (referer)"
525
  msgstr "Verzonden van (verwijzing)"
526
 
527
+ #: contact_form.php:1686
528
  #, fuzzy
529
  msgid ""
530
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
532
  "Voorbeeld: Verzonden van (verwijzing):\thttp://bestwebsoft.com/contacts/"
533
  "contact-us/"
534
 
535
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
536
  msgid "Using (user agent)"
537
  msgstr "Met behulp van (user agent)"
538
 
539
+ #: contact_form.php:1687
540
  msgid ""
541
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
542
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
544
  "Voorbeeld: Met behulp van (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
545
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
546
 
547
+ #: contact_form.php:1692
548
  msgid "Language settings for the field names in the form"
549
  msgstr "Taal instellingen voor de veldnamen in het formulier"
550
 
551
+ #: contact_form.php:1701
552
  msgid "Add a language"
553
  msgstr "Een taal toevoegen"
554
 
555
+ #: contact_form.php:1705
556
  msgid "Change the names of the contact form fields and error messages"
557
  msgstr ""
558
  "De namen voor de velden en foutmeldingen van het contactformulier aanpassen"
559
 
560
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
561
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
562
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
563
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
564
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
565
  msgid "Default"
566
  msgstr "Standaard"
567
 
568
+ #: contact_form.php:1723 contact_form.php:1761
569
  msgid "click to expand/hide the list"
570
  msgstr "klik om de lijst weer te geven/te verbergen"
571
 
572
+ #: contact_form.php:1732 contact_form.php:1770
573
  msgid "Tips below the Attachment block"
574
  msgstr "Tips onder het bijlagen blok weergeven"
575
 
576
+ #: contact_form.php:1735 contact_form.php:1773
577
  msgid "Error message for the Name field"
578
  msgstr "Foutmelding voor het Naam veld"
579
 
580
+ #: contact_form.php:1736 contact_form.php:1774
581
  msgid "Error message for the Address field"
582
  msgstr "Foutmelding voor het Adres veld"
583
 
584
+ #: contact_form.php:1737 contact_form.php:1775
585
  msgid "Error message for the Email field"
586
  msgstr "Foutmelding voor het E-mailadres veld"
587
 
588
+ #: contact_form.php:1738 contact_form.php:1776
589
  msgid "Error message for the Phone field"
590
  msgstr "Foutmelding voor het Telefoonnummer veld"
591
 
592
+ #: contact_form.php:1739 contact_form.php:1777
593
  msgid "Error message for the Subject field"
594
  msgstr "Foutmelding voor het Onderwerp veld"
595
 
596
+ #: contact_form.php:1740 contact_form.php:1778
597
  msgid "Error message for the Message field"
598
  msgstr "Foutmelding voor het Bericht veld"
599
 
600
+ #: contact_form.php:1741 contact_form.php:1779
601
  msgid "Error message about the file type for the Attachment field"
602
  msgstr "Foutmelding over het bestandsformaat voor het bijlagen veld"
603
 
604
+ #: contact_form.php:1742 contact_form.php:1780
605
  msgid ""
606
  "Error message while uploading a file for the Attachment field to the server"
607
  msgstr ""
608
  "Foutmelding tijdens het uploaden van een bestand naar de server voor het "
609
  "bijlagen veld"
610
 
611
+ #: contact_form.php:1743 contact_form.php:1781
612
  msgid "Error message while moving the file for the Attachment field"
613
  msgstr ""
614
  "Foutmelding tijdens het verplaatsen van een bestand voor het bijlagen veld"
615
 
616
+ #: contact_form.php:1744 contact_form.php:1782
617
  msgid "Error message when file size limit for the Attachment field is exceeded"
618
  msgstr ""
619
  "Foutmelding wanner de maximale bestandsgrootte voor het bijlagen veld wordt "
620
  "overschreden"
621
 
622
+ #: contact_form.php:1745 contact_form.php:1783
623
  msgid "Error message for the Captcha field"
624
  msgstr "Foutmelding voor het CAPTCHA veld"
625
 
626
+ #: contact_form.php:1746 contact_form.php:1784
627
  msgid "Error message for the whole form"
628
  msgstr "Foutmelding voor het volledige formulier"
629
 
630
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
631
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
632
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
633
+ #: contact_form.php:3604
634
  msgid "Use shortcode"
635
  msgstr "Gebruik code"
636
 
637
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
638
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
639
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
640
+ #: contact_form.php:3604
641
  msgid "for this language"
642
  msgstr "voor deze taal"
643
 
644
+ #: contact_form.php:1797
645
  msgid "Use the changed names of the contact form fields in the email"
646
  msgstr ""
647
  "Gebruik de onaangepaste namen van de velden van het contactformulier in de e-"
648
  "mail"
649
 
650
+ #: contact_form.php:1803
651
  msgid "Action after email is sent"
652
  msgstr "Actie nadat de e-mail is verzonden"
653
 
654
+ #: contact_form.php:1805
655
  msgid "Display text"
656
  msgstr "Tekst weergeven"
657
 
658
+ #: contact_form.php:1819 contact_form.php:1833
659
  msgid "Text"
660
  msgstr "Tekst"
661
 
662
+ #: contact_form.php:1844
663
  msgid "Redirect to the page"
664
  msgstr "Doorsturen naar pagina"
665
 
666
+ #: contact_form.php:1845
667
  msgid "Url"
668
  msgstr "URL"
669
 
670
+ #: contact_form.php:1856
671
  msgid "Add field 'Reply-To' to the email header"
672
  msgstr ""
673
 
674
+ #: contact_form.php:1858
675
  msgid "Field 'Reply-To' will be initialized by user email"
676
  msgstr ""
677
 
678
+ #: contact_form.php:1862
679
  msgid "Auto Response"
680
  msgstr "Automatisch Antwoord"
681
 
682
+ #: contact_form.php:1866
683
  #, php-format
684
  msgid ""
685
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
690
  "%%MESSAGE%% om data weer te geven uit het bericht veld en %%SITENAME%% om de "
691
  "naam van het blog weer te geven."
692
 
693
+ #: contact_form.php:1888 contact_form.php:2419
694
  msgid "Save Changes"
695
  msgstr "Instellingen Opslaan"
696
 
697
+ #: contact_form.php:1901
698
  #, php-format
699
  msgid ""
700
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
701
  msgstr ""
702
 
703
+ #: contact_form.php:1901 contact_form.php:1910
704
  msgid "Form layout"
705
  msgstr ""
706
 
707
+ #: contact_form.php:1901 contact_form.php:1922
708
  #, fuzzy
709
  msgid "Submit position"
710
  msgstr "Verzend knop"
711
 
712
+ #: contact_form.php:1914
713
  msgid "One column"
714
  msgstr ""
715
 
716
+ #: contact_form.php:1917
717
  msgid "Two columns"
718
  msgstr ""
719
 
720
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
721
+ #: contact_form.php:1998
722
  msgid "Left"
723
  msgstr ""
724
 
725
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
726
+ #: contact_form.php:2004
727
  msgid "Right"
728
  msgstr ""
729
 
730
+ #: contact_form.php:1934
731
+ msgid "Width"
732
+ msgstr ""
733
+
734
+ #: contact_form.php:1941
735
+ #, fuzzy
736
+ msgid "Custom"
737
+ msgstr "Aanpassen"
738
+
739
+ #: contact_form.php:1948
740
+ msgid "px"
741
+ msgstr ""
742
+
743
+ #: contact_form.php:1961
744
  msgid "Form align"
745
  msgstr ""
746
 
747
+ #: contact_form.php:1968 contact_form.php:2001
748
  msgid "Center"
749
  msgstr ""
750
 
751
+ #: contact_form.php:1976
752
  #, fuzzy
753
  msgid "Labels position"
754
  msgstr "Verzend knop"
755
 
756
+ #: contact_form.php:1980
757
  msgid "Top"
758
  msgstr ""
759
 
760
+ #: contact_form.php:1989
761
  msgid "Bottom"
762
  msgstr ""
763
 
764
+ #: contact_form.php:1994
765
  msgid "Labels align"
766
  msgstr ""
767
 
768
+ #: contact_form.php:2009
769
  msgid "Errors output"
770
  msgstr "Foutmeldingen uitvoer"
771
 
772
+ #: contact_form.php:2012
773
  msgid "Display error messages"
774
  msgstr "Foutmeldingen weergeven"
775
 
776
+ #: contact_form.php:2013
777
  msgid "Color of the input field errors."
778
  msgstr "Kleur van de velden met foutmeldingen"
779
 
780
+ #: contact_form.php:2014
781
  msgid "Display error messages & color of the input field errors"
782
  msgstr "Foutmeldingen & kleur van de velden met foutmeldingen weergeven"
783
 
784
+ #: contact_form.php:2019
785
  msgid "Add placeholder to the input blocks"
786
  msgstr "Tijdelijke aanduiding aan de velden toevoegen"
787
 
788
+ #: contact_form.php:2025
789
  msgid "Add tooltips"
790
  msgstr "Tooltips toevoegen"
791
 
792
+ #: contact_form.php:2039
793
  msgid "Email address"
794
  msgstr "E-mailadres"
795
 
796
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
797
  msgid "Phone Number"
798
  msgstr "Telefoonnummer"
799
 
800
+ #: contact_form.php:2070
801
  msgid "Style options"
802
  msgstr "Stijl opties"
803
 
804
+ #: contact_form.php:2074
805
  msgid "Text color"
806
  msgstr "Tekstkleur"
807
 
808
+ #: contact_form.php:2079
809
  msgid "Label text color"
810
  msgstr "Label tekstkleur"
811
 
812
+ #: contact_form.php:2084
813
  msgid "Placeholder color"
814
  msgstr "Kleur van tijdelijke aanduiding"
815
 
816
+ #: contact_form.php:2089
817
  msgid "Errors color"
818
  msgstr "Kleur van foutmeldingen"
819
 
820
+ #: contact_form.php:2094
821
  msgid "Error text color"
822
  msgstr "Tekstkleur van foutmeldingen"
823
 
824
+ #: contact_form.php:2099
825
  msgid "Background color of the input field errors"
826
  msgstr "Achtergrondkleur van veldfoutmeldingen"
827
 
828
+ #: contact_form.php:2104
829
  msgid "Border color of the input field errors"
830
  msgstr "Randkleur van veldfoutmeldingen"
831
 
832
+ #: contact_form.php:2109
833
  msgid "Placeholder color of the input field errors"
834
  msgstr "Kleur van tijdelijke aanduidingen in een veld met foutmeldingen"
835
 
836
+ #: contact_form.php:2114
837
  msgid "Input fields"
838
  msgstr "Velden"
839
 
840
+ #: contact_form.php:2119
841
  msgid "Input fields background color"
842
  msgstr "Achtergrondkleur van velden"
843
 
844
+ #: contact_form.php:2124
845
  msgid "Text fields color"
846
  msgstr "Kleur van velden met tekst"
847
 
848
+ #: contact_form.php:2128
849
  msgid "Border width in px, numbers only"
850
  msgstr "Border breedte in px, slechts getallen"
851
 
852
+ #: contact_form.php:2133 contact_form.php:2157
853
  msgid "Border color"
854
  msgstr "Border kleur"
855
 
856
+ #: contact_form.php:2138
857
  msgid "Submit button"
858
  msgstr "Verzend knop"
859
 
860
+ #: contact_form.php:2142
861
  msgid "Width in px, numbers only"
862
  msgstr "Breedte in px, slechts getallen"
863
 
864
+ #: contact_form.php:2147
865
  msgid "Button color"
866
  msgstr "Kleur van knop"
867
 
868
+ #: contact_form.php:2152
869
  msgid "Button text color"
870
  msgstr "Tekstkleur van knop"
871
 
872
+ #: contact_form.php:2181
873
  #, fuzzy
874
  msgid "Contact Form | Preview"
875
  msgstr "Contact Formulier Pro | Voorbeeld"
876
 
877
+ #: contact_form.php:2182
878
  msgid "Drag the necessary field to sort fields."
879
  msgstr ""
880
 
881
+ #: contact_form.php:2408
882
  #, fuzzy
883
  msgid ""
884
  "If you would like to add the Contact Form to your website, just copy and "
887
  "Als je het Contact Formulier aan je website wil toevoegen, kopieer en plak "
888
  "deze code dan naar je bericht, pagina of widget:"
889
 
890
+ #: contact_form.php:2536
891
  msgid "Sorry, email message could not be delivered."
892
  msgstr "Sorry, het e-mailbericht kon niet worden afgeleverd."
893
 
894
+ #: contact_form.php:3137 contact_form.php:3139
895
  msgid "Sent from (ip address)"
896
  msgstr "Verstuurd van (IP-adres)"
897
 
898
+ #: contact_form.php:3167
899
  msgid "Contact from"
900
  msgstr "Contact van"
901
 
902
+ #: contact_form.php:3172 contact_form.php:3221
903
  msgid "Site"
904
  msgstr "Website"
905
 
906
+ #: contact_form.php:3351
907
  msgid ""
908
  "If you can see this MIME, it means that the MIME type is not supported by "
909
  "your email client!"
911
  "Als je deze MIME kan zien, betekent dat dat het MIME type niet wordt "
912
  "ondersteund door je e-mailprogramma!"
913
 
914
+ #: contact_form.php:3434
915
  msgid "FAQ"
916
  msgstr "Veelgestelde vragen"
917
 
918
+ #: contact_form.php:3435
919
  msgid "Support"
920
  msgstr "Ondersteuning"
921
 
922
+ #: contact_form.php:3484
923
  msgid "Are you sure that you want to delete this language data?"
924
  msgstr "Weet je zeker dat je deze taal data wil verwijderen?"
925
 
926
+ #: contact_form.php:3505
927
  msgid "Add multiple forms"
928
  msgstr "Meerdere formulieren toevoegen"
929
 
930
+ #: contact_form.php:3505
931
  msgid ""
932
  "Install Contact Form Multi plugin to create unlimited number of contact "
933
  "forms."
935
  "Installeer de Contact Form Multi plugin om een ongelimiteerd aantal "
936
  "contactformulieren te maken"
937
 
938
+ #: contact_form.php:3510
939
  msgid "Learn more"
940
  msgstr "Meer informatie"
941
 
942
+ #: contact_form.php:3751
943
  msgid "Close notice"
944
  msgstr ""
945
 
946
+ #: contact_form.php:3756
947
  msgid "allows to store your messages to the database."
948
  msgstr "staat toe om je berichten in de database op te slaan"
949
 
950
+ #: contact_form.php:3757
951
  msgid "Manage messages that have been sent from your website."
952
  msgstr "Beheer berichten die van je website zijn verstuurd."
953
 
954
+ #: contact_form.php:3760
955
  msgid "Learn More"
956
  msgstr "Meer Informatie"
957
 
958
+ #: contact_form.php:3820
959
  #, fuzzy
960
  msgid "Contact form"
961
  msgstr "Contact van"
962
 
963
+ #: contact_form.php:3833 contact_form.php:3843
964
  #, fuzzy
965
  msgid "Language"
966
  msgstr "Een taal toevoegen"
967
 
 
 
 
 
 
 
 
 
968
  #, fuzzy
969
  #~ msgid "Unlock premium options by upgrading to Pro version"
970
  #~ msgstr ""
languages/contact-form-plugin-pt_BR.mo CHANGED
Binary file
languages/contact-form-plugin-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: 2017-02-27 16:23+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Breno Jacinto, DJIO | Dionizio Bonfim Bach <brenojac@gmail."
9
  "com, wordpress@djio.com.br>\n"
@@ -20,64 +20,64 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
- #: contact_form.php:42 contact_form.php:1066
24
  msgid "Contact Form Settings"
25
  msgstr "Configurações do Formulário de Contato"
26
 
27
  # @ contact_form
28
- #: contact_form.php:42
29
  msgid "Contact Form"
30
  msgstr "Formulário de contato"
31
 
32
  # @ contact_form
33
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
34
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
35
- #: contact_form.php:3138 contact_form.php:3184
36
  msgid "Name"
37
  msgstr "Nome"
38
 
39
  # @ contact_form
40
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
41
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
42
- #: contact_form.php:3190
43
  msgid "Address"
44
  msgstr "Endereço"
45
 
46
  # @ contact_form
47
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
48
- #: contact_form.php:1767
49
  msgid "Email Address"
50
  msgstr "Endereço de email"
51
 
52
  # @ contact_form
53
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
54
- #: contact_form.php:1768
55
  #, fuzzy
56
  msgid "Phone number"
57
  msgstr "Número de Telefone:"
58
 
59
  # @ contact_form
60
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
61
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
62
- #: contact_form.php:3199
63
  msgid "Subject"
64
  msgstr "Assunto"
65
 
66
  # @ contact_form
67
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
68
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
69
- #: contact_form.php:3203
70
  msgid "Message"
71
  msgstr "Mensagem"
72
 
73
  # @ contact_form
74
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
75
- #: contact_form.php:2040
76
  msgid "Attachment"
77
  msgstr "Anexo"
78
 
79
  # @ contact_form
80
- #: contact_form.php:302
81
  msgid ""
82
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
83
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -86,95 +86,95 @@ msgstr ""
86
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
87
 
88
  # @ contact_form
89
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
90
  msgid "Send me a copy"
91
  msgstr "Envie-me uma cópia"
92
 
93
  # @ contact_form
94
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
95
  msgid "Submit"
96
  msgstr "Enviar"
97
 
98
  # @ contact_form
99
- #: contact_form.php:305
100
  msgid "Your name is required."
101
  msgstr "Seu nome é obrigatório"
102
 
103
  # @ contact_form
104
- #: contact_form.php:306
105
  msgid "Address is required."
106
  msgstr "Endereço é obrigatório."
107
 
108
  # @ contact_form
109
- #: contact_form.php:307
110
  msgid "A valid email address is required."
111
  msgstr "Um e-mail válido é obrigatório."
112
 
113
  # @ contact_form
114
- #: contact_form.php:308
115
  msgid "Phone number is required."
116
  msgstr "Telefone é obrigatório."
117
 
118
  # @ contact_form
119
- #: contact_form.php:309
120
  msgid "Subject is required."
121
  msgstr "O Assunto da mensagem é obrigatório."
122
 
123
  # @ contact_form
124
- #: contact_form.php:310
125
  msgid "Message text is required."
126
  msgstr "O texto da Mensagem é obrigatório."
127
 
128
  # @ contact_form
129
- #: contact_form.php:311
130
  msgid "File format is not valid."
131
  msgstr "Impossível anexar arquivo. "
132
 
133
  # @ contact_form
134
- #: contact_form.php:312
135
  msgid "File upload error."
136
  msgstr "Erro no upload do arquivo."
137
 
138
  # @ contact_form
139
- #: contact_form.php:313
140
  msgid "The file could not be uploaded."
141
  msgstr "O foi possível fazer upload do arquivo."
142
 
143
  # @ contact_form
144
- #: contact_form.php:314
145
  msgid "This file is too large."
146
  msgstr "Este arquivo é muito grande."
147
 
148
  # @ contact_form
149
- #: contact_form.php:315
150
  msgid "Please fill out the CAPTCHA."
151
  msgstr "Por favor, complete a resposta da charada ."
152
 
153
  # @ contact_form
154
- #: contact_form.php:316
155
  msgid "Please make corrections below and try again."
156
  msgstr ""
157
  "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
158
 
159
  # @ bestwebsoft
160
  # @ contact_form
161
- #: contact_form.php:318
162
  msgid "Thank you for contacting us."
163
  msgstr "Obrigado por nos contatar"
164
 
165
  # @ contact_form
166
- #: contact_form.php:761 contact_form.php:1023
167
  msgid "Settings saved."
168
  msgstr "As configurações foram salvas."
169
 
170
- #: contact_form.php:968
171
  msgid ""
172
  "Email 'FROM' field option was changed, which may cause email messages being "
173
  "moved to the spam folder or email delivery failures."
174
  msgstr ""
175
 
176
  # @ contact_form
177
- #: contact_form.php:978
178
  msgid ""
179
  "If the 'Redirect to page' option is selected then the URL field should be in "
180
  "the following format"
@@ -183,13 +183,13 @@ msgstr ""
183
  "URL deve ser no seguinte formato"
184
 
185
  # @ contact_form
186
- #: contact_form.php:985
187
  #, fuzzy
188
  msgid "Such user does not exist."
189
  msgstr "Tal usuário não existe. Configurações não foram salvas."
190
 
191
  # @ contact_form
192
- #: contact_form.php:995
193
  #, fuzzy
194
  msgid ""
195
  "Please enter a valid email address in the 'Use this email address' field."
@@ -198,7 +198,7 @@ msgstr ""
198
  "salvas."
199
 
200
  # @ contact_form
201
- #: contact_form.php:1003
202
  #, fuzzy
203
  msgid "Please enter a valid email address in the 'FROM' field."
204
  msgstr ""
@@ -206,59 +206,59 @@ msgstr ""
206
  "salvas."
207
 
208
  # @ contact_form
209
- #: contact_form.php:1025
210
  #, fuzzy
211
  msgid "Settings are not saved."
212
  msgstr "As configurações foram salvas."
213
 
214
- #: contact_form.php:1063
215
  msgid "All plugin settings were restored."
216
  msgstr ""
217
 
218
- #: contact_form.php:1069
219
  msgid "How to Use Step-by-step Instruction"
220
  msgstr ""
221
 
222
  # @ bestwebsoft
223
  # @ contact_form
224
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
225
  msgid "Settings"
226
  msgstr "Configurações"
227
 
228
  # @ contact_form
229
- #: contact_form.php:1073
230
  #, fuzzy
231
  msgid "Additional settings"
232
  msgstr "Opções adicionais"
233
 
234
- #: contact_form.php:1074
235
  msgid "Appearance"
236
  msgstr ""
237
 
238
- #: contact_form.php:1075
239
  msgid "Custom code"
240
  msgstr ""
241
 
242
- #: contact_form.php:1076
243
  msgid "Go PRO"
244
  msgstr ""
245
 
246
- #: contact_form.php:1087
247
  msgid "Notice"
248
  msgstr ""
249
 
250
- #: contact_form.php:1091
251
  msgid "NEW_FORM"
252
  msgstr ""
253
 
254
- #: contact_form.php:1092
255
  msgid ""
256
  "If you want to create multiple contact forms, please install the Contact "
257
  "Form Multi plugin."
258
  msgstr ""
259
 
260
  # @ contact_form
261
- #: contact_form.php:1101
262
  #, fuzzy, php-format
263
  msgid ""
264
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -267,7 +267,7 @@ msgstr ""
267
  "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
268
  "copie e cole este código na sua postagem ou página ou widget:"
269
 
270
- #: contact_form.php:1107
271
  #, php-format
272
  msgid ""
273
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -277,7 +277,7 @@ msgid ""
277
  msgstr ""
278
 
279
  # @ contact_form
280
- #: contact_form.php:1116
281
  msgid ""
282
  "If you leave the fields empty, the messages will be sent to the email "
283
  "address specified during registration."
@@ -286,19 +286,19 @@ msgstr ""
286
  "enviadas para um endereço que foi especificado durante o registro."
287
 
288
  # @ contact_form
289
- #: contact_form.php:1119
290
  #, fuzzy
291
  msgid "The user's email address"
292
  msgstr "Use o email de um usuário do wordpress:"
293
 
294
  # @ contact_form
295
- #: contact_form.php:1123
296
  #, fuzzy
297
  msgid "Select a username"
298
  msgstr "Selecione o nome do usuário"
299
 
300
  # @ contact_form
301
- #: contact_form.php:1136
302
  #, fuzzy
303
  msgid ""
304
  "Select a username of the person who should get the messages from the contact "
@@ -308,110 +308,110 @@ msgstr ""
308
  "Formulário de Contato."
309
 
310
  # @ contact_form
311
- #: contact_form.php:1140
312
  #, fuzzy
313
  msgid "Use this email address"
314
  msgstr "Use este email:"
315
 
316
  # @ contact_form
317
- #: contact_form.php:1144
318
  #, fuzzy
319
  msgid "Enter the email address for receiving messages"
320
  msgstr ""
321
  "Configure um endereço de email que será usado para o recebimento de "
322
  "mensagens."
323
 
324
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
325
- #: contact_form.php:1939 contact_form.php:3471
326
  msgid "Close"
327
  msgstr ""
328
 
329
- #: contact_form.php:1155
330
  msgid "Add department selectbox to the contact form"
331
  msgstr ""
332
 
333
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
334
- #: contact_form.php:2145
335
  msgid "If you upgrade to Pro version all your settings will be saved."
336
  msgstr ""
337
 
338
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
339
- #: contact_form.php:1880 contact_form.php:2152
340
  msgid "Upgrade to Pro"
341
  msgstr ""
342
 
343
- #: contact_form.php:1178
344
  msgid "Save emails to the database"
345
  msgstr ""
346
 
347
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
348
  msgid "Using"
349
  msgstr ""
350
 
351
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
352
- #: contact_form.php:1625
353
  msgid "Please activate the appropriate option on"
354
  msgstr ""
355
 
356
  # @ contact_form
357
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
358
- #: contact_form.php:1628
359
  #, fuzzy
360
  msgid "settings page"
361
  msgstr "Configurações extras"
362
 
363
  # @ contact_form
364
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
365
- #: contact_form.php:1635
366
  #, fuzzy
367
  msgid "Activate"
368
  msgstr "Ativar captcha"
369
 
370
  # @ contact_form
371
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
372
- #: contact_form.php:1640
373
  #, fuzzy
374
  msgid "Download"
375
  msgstr "Fazer Download do Captcha"
376
 
377
- #: contact_form.php:1224
378
  msgid "Sending method"
379
  msgstr ""
380
 
381
  # @ contact_form
382
- #: contact_form.php:1229
383
  msgid "Wp-mail"
384
  msgstr "Wp-mail"
385
 
386
  # @ contact_form
387
- #: contact_form.php:1231
388
  #, fuzzy
389
  msgid "You can use the Wordpress wp_mail function for mailing"
390
  msgstr "Você pode usar a função wp_mail para enviar emails"
391
 
392
  # @ contact_form
393
- #: contact_form.php:1234
394
  msgid "Mail"
395
  msgstr "Mail"
396
 
397
  # @ contact_form
398
- #: contact_form.php:1236
399
  #, fuzzy
400
  msgid "You can use the PHP mail function for mailing"
401
  msgstr "Você pode usar a função wp_mail para enviar emails"
402
 
403
- #: contact_form.php:1241
404
  msgid "'FROM' field"
405
  msgstr ""
406
 
407
  # @ contact_form
408
- #: contact_form.php:1257
409
  #, fuzzy
410
  msgid "User name"
411
  msgstr "Email do usuário"
412
 
413
  # @ contact_form
414
- #: contact_form.php:1259
415
  #, fuzzy
416
  msgid ""
417
  "The name of the user who fills the form will be used in the field 'From'."
@@ -420,17 +420,17 @@ msgstr ""
420
  "campo 'De'"
421
 
422
  # @ contact_form
423
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
424
  msgid "Email"
425
  msgstr "E-Mail"
426
 
427
  # @ contact_form
428
- #: contact_form.php:1281
429
  msgid "User email"
430
  msgstr "Email do usuário"
431
 
432
  # @ contact_form
433
- #: contact_form.php:1283
434
  msgid ""
435
  "The email address of the user who fills the form will be used in the field "
436
  "'From'."
@@ -438,160 +438,160 @@ msgstr ""
438
  "O endereço de email do usuário que preencher o formulário será usado no "
439
  "campo 'De'"
440
 
441
- #: contact_form.php:1292
442
  msgid ""
443
  "If this option is changed, email messages may be moved to the spam folder or "
444
  "email delivery failures may occur."
445
  msgstr ""
446
 
447
  # @ contact_form
448
- #: contact_form.php:1301
449
  #, fuzzy
450
  msgid "Required symbol"
451
  msgstr "Campos obrigatórios"
452
 
453
- #: contact_form.php:1311
454
  msgid "Fields"
455
  msgstr ""
456
 
457
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
458
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
459
  msgid "Used"
460
  msgstr ""
461
 
462
  # @ contact_form
463
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
464
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
465
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
466
  #, fuzzy
467
  msgid "Required"
468
  msgstr "Campos obrigatórios"
469
 
470
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
471
- #: contact_form.php:1447 contact_form.php:1471
472
  msgid "Visible"
473
  msgstr ""
474
 
475
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
476
- #: contact_form.php:1451 contact_form.php:1475
477
  msgid "Disabled for editing"
478
  msgstr ""
479
 
480
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
481
- #: contact_form.php:1479
482
  msgid "Field's default value"
483
  msgstr ""
484
 
485
- #: contact_form.php:1324
486
  msgid "Department selectbox"
487
  msgstr ""
488
 
489
- #: contact_form.php:1356
490
  msgid "Use User's name as a default value if the user is logged in."
491
  msgstr ""
492
 
493
- #: contact_form.php:1357 contact_form.php:1417
494
  msgid ""
495
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
496
  "in users."
497
  msgstr ""
498
 
499
- #: contact_form.php:1363
500
  msgid "Location selectbox"
501
  msgstr ""
502
 
503
- #: contact_form.php:1416
504
  msgid "Use User's email as a default value if the user is logged in."
505
  msgstr ""
506
 
507
  # @ contact_form
508
- #: contact_form.php:1500
509
  msgid "Attachment block"
510
  msgstr "Bloco de anexos"
511
 
512
  # @ contact_form
513
- #: contact_form.php:1502
514
  msgid "Users can attach the following file formats"
515
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
516
 
517
- #: contact_form.php:1520
518
  msgid "Add to the form"
519
  msgstr ""
520
 
521
  # @ contact_form
522
- #: contact_form.php:1525
523
  #, fuzzy
524
  msgid "Tips below the Attachment"
525
  msgstr "Exibir dicas abaixo do bloco de Anexos"
526
 
527
  # @ contact_form
528
- #: contact_form.php:1532
529
  #, fuzzy
530
  msgid "'Send me a copy' block"
531
  msgstr "Exibir bloco 'Enviar-me uma cópia'"
532
 
533
- #: contact_form.php:1560
534
  msgid "Activate for network"
535
  msgstr ""
536
 
537
- #: contact_form.php:1651
538
  msgid "Agreement checkbox"
539
  msgstr ""
540
 
541
- #: contact_form.php:1651
542
  msgid "Required checkbox for submitting the form"
543
  msgstr ""
544
 
545
- #: contact_form.php:1652
546
  msgid "Optional checkbox"
547
  msgstr ""
548
 
549
- #: contact_form.php:1652
550
  msgid "Optional checkbox, the results of which will be displayed in email"
551
  msgstr ""
552
 
553
  # @ contact_form
554
- #: contact_form.php:1670
555
  msgid "Delete an attachment file from the server after the email is sent"
556
  msgstr "Excluir um arquivo anexo do servidor depois que o e-mail for enviado"
557
 
558
- #: contact_form.php:1676
559
  msgid "Email in HTML format sending"
560
  msgstr ""
561
 
562
  # @ contact_form
563
- #: contact_form.php:1680
564
  msgid "Display additional info in the email"
565
  msgstr "Mostre informações adicionais no email"
566
 
567
  # @ contact_form
568
- #: contact_form.php:1686
569
  #, fuzzy
570
  msgid "Sent from (IP address)"
571
  msgstr "Enviado de (Endereço IP)"
572
 
573
  # @ contact_form
574
- #: contact_form.php:1686
575
  msgid "Example: Sent from (IP address):\t127.0.0.1"
576
  msgstr "Examplo: Enviado de (endereço IP):\\\t127.0.0.1"
577
 
578
  # @ contact_form
579
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
580
  msgid "Date/Time"
581
  msgstr "Data / Hora"
582
 
583
  # @ contact_form
584
- #: contact_form.php:1687
585
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
586
  msgstr "Exemplo: Data/Hora:\\\t19 de Agosto de 2013 20:50"
587
 
588
  # @ contact_form
589
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
590
  msgid "Sent from (referer)"
591
  msgstr "Vindo de (origem)"
592
 
593
  # @ contact_form
594
- #: contact_form.php:1688
595
  #, fuzzy
596
  msgid ""
597
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
@@ -599,12 +599,12 @@ msgstr ""
599
  "Exemplo: Enviado do (referer):\\\thttp://bestwebsoft.com/contacts/contact-us/"
600
 
601
  # @ contact_form
602
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
603
  msgid "Using (user agent)"
604
  msgstr "Usando (cliente de email)"
605
 
606
  # @ contact_form
607
- #: contact_form.php:1689
608
  msgid ""
609
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
610
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -613,76 +613,76 @@ msgstr ""
613
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
614
 
615
  # @ contact_form
616
- #: contact_form.php:1694
617
  msgid "Language settings for the field names in the form"
618
  msgstr "Configurações de idioma para os nomes dos campos no formulário"
619
 
620
  # @ contact_form
621
- #: contact_form.php:1703
622
  msgid "Add a language"
623
  msgstr "Adicione um idioma"
624
 
625
  # @ contact_form
626
- #: contact_form.php:1707
627
  msgid "Change the names of the contact form fields and error messages"
628
  msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
629
 
630
  # @ contact_form
631
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
632
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
633
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
634
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
635
- #: contact_form.php:2132 contact_form.php:2137
636
  msgid "Default"
637
  msgstr "Padrão"
638
 
639
- #: contact_form.php:1725 contact_form.php:1763
640
  msgid "click to expand/hide the list"
641
  msgstr ""
642
 
643
  # @ contact_form
644
- #: contact_form.php:1734 contact_form.php:1772
645
  #, fuzzy
646
  msgid "Tips below the Attachment block"
647
  msgstr "Exibir dicas abaixo do bloco de Anexos"
648
 
649
  # @ contact_form
650
- #: contact_form.php:1737 contact_form.php:1775
651
  msgid "Error message for the Name field"
652
  msgstr "Mensagem de erro para o campo Nome"
653
 
654
  # @ contact_form
655
- #: contact_form.php:1738 contact_form.php:1776
656
  msgid "Error message for the Address field"
657
  msgstr "Mensagem de erro para o campo Endereço"
658
 
659
  # @ contact_form
660
- #: contact_form.php:1739 contact_form.php:1777
661
  msgid "Error message for the Email field"
662
  msgstr "Mensagem de erro para o campo Email"
663
 
664
  # @ contact_form
665
- #: contact_form.php:1740 contact_form.php:1778
666
  msgid "Error message for the Phone field"
667
  msgstr "Mensagem de erro para o campo Telefone"
668
 
669
  # @ contact_form
670
- #: contact_form.php:1741 contact_form.php:1779
671
  msgid "Error message for the Subject field"
672
  msgstr "Mensagem de erro para o campo Assunto"
673
 
674
  # @ contact_form
675
- #: contact_form.php:1742 contact_form.php:1780
676
  msgid "Error message for the Message field"
677
  msgstr "Mensagem de erro para o campo Mensagem"
678
 
679
  # @ contact_form
680
- #: contact_form.php:1743 contact_form.php:1781
681
  msgid "Error message about the file type for the Attachment field"
682
  msgstr "Mensagem de erro para o campo Anexo sobre o tipo de arquivo"
683
 
684
  # @ contact_form
685
- #: contact_form.php:1744 contact_form.php:1782
686
  msgid ""
687
  "Error message while uploading a file for the Attachment field to the server"
688
  msgstr ""
@@ -690,87 +690,87 @@ msgstr ""
690
  "servidor"
691
 
692
  # @ contact_form
693
- #: contact_form.php:1745 contact_form.php:1783
694
  msgid "Error message while moving the file for the Attachment field"
695
  msgstr "Mensagem de erro para o campo Anexo quando estiver movendo o arquivo"
696
 
697
  # @ contact_form
698
- #: contact_form.php:1746 contact_form.php:1784
699
  msgid "Error message when file size limit for the Attachment field is exceeded"
700
  msgstr ""
701
  "Mensagem de erro para o campo Anexo quando o tamanho máximo do arquivo for "
702
  "excedido"
703
 
704
  # @ contact_form
705
- #: contact_form.php:1747 contact_form.php:1785
706
  msgid "Error message for the Captcha field"
707
  msgstr "Mensagem de erro para o campo Captcha"
708
 
709
  # @ contact_form
710
- #: contact_form.php:1748 contact_form.php:1786
711
  msgid "Error message for the whole form"
712
  msgstr "Mensagem de erro para o formulário inteiro"
713
 
714
  # @ contact_form
715
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
716
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
717
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
718
- #: contact_form.php:3540
719
  msgid "Use shortcode"
720
  msgstr "Use shortcode (abreviações)"
721
 
722
  # @ contact_form
723
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
724
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
725
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
726
- #: contact_form.php:3540
727
  msgid "for this language"
728
  msgstr "para este idioma"
729
 
730
  # @ contact_form
731
- #: contact_form.php:1799
732
  #, fuzzy
733
  msgid "Use the changed names of the contact form fields in the email"
734
  msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
735
 
736
  # @ contact_form
737
- #: contact_form.php:1805
738
  msgid "Action after email is sent"
739
  msgstr "Ação após o email ser enviado"
740
 
741
  # @ contact_form
742
- #: contact_form.php:1807
743
  msgid "Display text"
744
  msgstr "Mostrar texto"
745
 
746
  # @ contact_form
747
- #: contact_form.php:1821 contact_form.php:1835
748
  msgid "Text"
749
  msgstr "Texto"
750
 
751
  # @ contact_form
752
- #: contact_form.php:1846
753
  msgid "Redirect to the page"
754
  msgstr "Redirecione para a página"
755
 
756
  # @ contact_form
757
- #: contact_form.php:1847
758
  msgid "Url"
759
  msgstr "URL"
760
 
761
- #: contact_form.php:1858
762
  msgid "Add field 'Reply-To' to the email header"
763
  msgstr ""
764
 
765
- #: contact_form.php:1860
766
  msgid "Field 'Reply-To' will be initialized by user email"
767
  msgstr ""
768
 
769
- #: contact_form.php:1864
770
  msgid "Auto Response"
771
  msgstr ""
772
 
773
- #: contact_form.php:1868
774
  #, php-format
775
  msgid ""
776
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -779,212 +779,224 @@ msgid ""
779
  msgstr ""
780
 
781
  # @ default
782
- #: contact_form.php:1890 contact_form.php:2389
783
  msgid "Save Changes"
784
  msgstr "Salvar Mudanças"
785
 
786
- #: contact_form.php:1903
787
  #, php-format
788
  msgid ""
789
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
790
  msgstr ""
791
 
792
- #: contact_form.php:1903 contact_form.php:1912
793
  msgid "Form layout"
794
  msgstr ""
795
 
796
  # @ contact_form
797
- #: contact_form.php:1903 contact_form.php:1924
798
  #, fuzzy
799
  msgid "Submit position"
800
  msgstr "Botão de Envio"
801
 
802
- #: contact_form.php:1916
803
  msgid "One column"
804
  msgstr ""
805
 
806
- #: contact_form.php:1919
807
  msgid "Two columns"
808
  msgstr ""
809
 
810
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
811
- #: contact_form.php:1980
812
  msgid "Left"
813
  msgstr ""
814
 
815
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
816
- #: contact_form.php:1986
817
  msgid "Right"
818
  msgstr ""
819
 
820
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
821
  msgid "Form align"
822
  msgstr ""
823
 
824
- #: contact_form.php:1950 contact_form.php:1983
825
  msgid "Center"
826
  msgstr ""
827
 
828
  # @ contact_form
829
- #: contact_form.php:1958
830
  #, fuzzy
831
  msgid "Labels position"
832
  msgstr "Botão de Envio"
833
 
834
- #: contact_form.php:1962
835
  msgid "Top"
836
  msgstr ""
837
 
838
- #: contact_form.php:1971
839
  msgid "Bottom"
840
  msgstr ""
841
 
842
- #: contact_form.php:1976
843
  msgid "Labels align"
844
  msgstr ""
845
 
846
  # @ contact_form
847
- #: contact_form.php:1991
848
  msgid "Errors output"
849
  msgstr "Saída de erros."
850
 
851
  # @ contact_form
852
- #: contact_form.php:1994
853
  msgid "Display error messages"
854
  msgstr "Mostrar mensagens de erro"
855
 
856
  # @ contact_form
857
- #: contact_form.php:1995
858
  msgid "Color of the input field errors."
859
  msgstr "Cor do erro nos campos de formulário"
860
 
861
  # @ contact_form
862
- #: contact_form.php:1996
863
  msgid "Display error messages & color of the input field errors"
864
  msgstr "Mostrar mensagens de erro e cores para os campos com erro"
865
 
866
  # @ contact_form
867
- #: contact_form.php:2001
868
  msgid "Add placeholder to the input blocks"
869
  msgstr "Adicione reserva de espaço aos blocos de inserção"
870
 
871
  # @ contact_form
872
- #: contact_form.php:2007
873
  msgid "Add tooltips"
874
  msgstr "Adicionar mensagens de ajuda"
875
 
876
  # @ contact_form
877
- #: contact_form.php:2021
878
  msgid "Email address"
879
  msgstr "Endereço de email"
880
 
881
  # @ contact_form
882
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
883
  msgid "Phone Number"
884
  msgstr "Telefone"
885
 
886
  # @ contact_form
887
- #: contact_form.php:2052
888
  msgid "Style options"
889
  msgstr "Opções de estilo"
890
 
891
  # @ contact_form
892
- #: contact_form.php:2056
893
  msgid "Text color"
894
  msgstr "Cor do texto"
895
 
896
  # @ contact_form
897
- #: contact_form.php:2061
898
  msgid "Label text color"
899
  msgstr "Cor do texto descritivo"
900
 
901
  # @ contact_form
902
- #: contact_form.php:2066
903
  msgid "Placeholder color"
904
  msgstr "Cor da reserva de espaço"
905
 
906
  # @ contact_form
907
- #: contact_form.php:2071
908
  msgid "Errors color"
909
  msgstr "Cor dos erros"
910
 
911
  # @ contact_form
912
- #: contact_form.php:2076
913
  msgid "Error text color"
914
  msgstr "Cor de texto do erro"
915
 
916
  # @ contact_form
917
- #: contact_form.php:2081
918
  msgid "Background color of the input field errors"
919
  msgstr "Cor de fundo do campo de formulário com erros"
920
 
921
  # @ contact_form
922
- #: contact_form.php:2086
923
  msgid "Border color of the input field errors"
924
  msgstr "Cor de borda do campo de formulário com erros"
925
 
926
  # @ contact_form
927
- #: contact_form.php:2091
928
  msgid "Placeholder color of the input field errors"
929
  msgstr "Cor de reserva de espaço do campo de formulário com erros"
930
 
931
  # @ contact_form
932
- #: contact_form.php:2096
933
  msgid "Input fields"
934
  msgstr "Campos do folmulário"
935
 
936
  # @ contact_form
937
- #: contact_form.php:2101
938
  msgid "Input fields background color"
939
  msgstr "Cor de fundo dos campos de formulário"
940
 
941
  # @ contact_form
942
- #: contact_form.php:2106
943
  msgid "Text fields color"
944
  msgstr "Cor dos campos de texto"
945
 
946
  # @ contact_form
947
- #: contact_form.php:2110
948
  msgid "Border width in px, numbers only"
949
  msgstr "Largura da borda em px, somente o número"
950
 
951
  # @ contact_form
952
- #: contact_form.php:2115 contact_form.php:2139
953
  msgid "Border color"
954
  msgstr "Cor da borda"
955
 
956
  # @ contact_form
957
- #: contact_form.php:2120
958
  msgid "Submit button"
959
  msgstr "Botão de Envio"
960
 
961
  # @ contact_form
962
- #: contact_form.php:2124
963
  msgid "Width in px, numbers only"
964
  msgstr "Largura em px, somente o número"
965
 
966
  # @ contact_form
967
- #: contact_form.php:2129
968
  msgid "Button color"
969
  msgstr "Cor do botão"
970
 
971
  # @ contact_form
972
- #: contact_form.php:2134
973
  msgid "Button text color"
974
  msgstr "Cor do texto do botão"
975
 
976
  # @ contact_form
977
- #: contact_form.php:2163
978
  #, fuzzy
979
  msgid "Contact Form | Preview"
980
  msgstr "Formulário de Contato Pro | Prévia"
981
 
982
- #: contact_form.php:2164
983
  msgid "Drag the necessary field to sort fields."
984
  msgstr ""
985
 
986
  # @ contact_form
987
- #: contact_form.php:2376
988
  #, fuzzy
989
  msgid ""
990
  "If you would like to add the Contact Form to your website, just copy and "
@@ -995,27 +1007,27 @@ msgstr ""
995
 
996
  # @ bestwebsoft
997
  # @ contact_form
998
- #: contact_form.php:2504
999
  msgid "Sorry, email message could not be delivered."
1000
  msgstr "Desculpe, seu e-mail não pode ser entregue."
1001
 
1002
  # @ contact_form
1003
- #: contact_form.php:3094 contact_form.php:3096
1004
  msgid "Sent from (ip address)"
1005
  msgstr "Enviado de (Endereço IP)"
1006
 
1007
  # @ contact_form
1008
- #: contact_form.php:3124
1009
  msgid "Contact from"
1010
  msgstr "Formulário de Contato"
1011
 
1012
  # @ contact_form
1013
- #: contact_form.php:3129 contact_form.php:3178
1014
  msgid "Site"
1015
  msgstr "Site"
1016
 
1017
  # @ contact_form
1018
- #: contact_form.php:3308
1019
  msgid ""
1020
  "If you can see this MIME, it means that the MIME type is not supported by "
1021
  "your email client!"
@@ -1024,72 +1036,64 @@ msgstr ""
1024
  "Favor usar um cliente mais atualizado."
1025
 
1026
  # @ contact_form
1027
- #: contact_form.php:3391
1028
  msgid "FAQ"
1029
  msgstr "Perguntas Frequentes"
1030
 
1031
  # @ contact_form
1032
- #: contact_form.php:3392
1033
  msgid "Support"
1034
  msgstr "Suporte"
1035
 
1036
  # @ contact_form
1037
- #: contact_form.php:3441
1038
  msgid "Are you sure that you want to delete this language data?"
1039
  msgstr "Tem certeza que você quer apagar estes dados de idioma?"
1040
 
1041
  # @ contact_form
1042
- #: contact_form.php:3462
1043
  #, fuzzy
1044
  msgid "Add multiple forms"
1045
  msgstr "Adicionar mensagens de ajuda"
1046
 
1047
- #: contact_form.php:3462
1048
  msgid ""
1049
  "Install Contact Form Multi plugin to create unlimited number of contact "
1050
  "forms."
1051
  msgstr ""
1052
 
1053
- #: contact_form.php:3467
1054
  msgid "Learn more"
1055
  msgstr ""
1056
 
1057
- #: contact_form.php:3693
1058
  msgid "Close notice"
1059
  msgstr ""
1060
 
1061
- #: contact_form.php:3698
1062
  msgid "allows to store your messages to the database."
1063
  msgstr ""
1064
 
1065
- #: contact_form.php:3699
1066
  msgid "Manage messages that have been sent from your website."
1067
  msgstr ""
1068
 
1069
- #: contact_form.php:3702
1070
  msgid "Learn More"
1071
  msgstr ""
1072
 
1073
  # @ contact_form
1074
- #: contact_form.php:3762
1075
  #, fuzzy
1076
  msgid "Contact form"
1077
  msgstr "Formulário de Contato"
1078
 
1079
  # @ contact_form
1080
- #: contact_form.php:3775 contact_form.php:3785
1081
  #, fuzzy
1082
  msgid "Language"
1083
  msgstr "Adicione um idioma"
1084
 
1085
- #: includes/deprecated.php:168
1086
- #, php-format
1087
- msgid ""
1088
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
1089
- "replace it with %3s. If you close this message it'll appear again after "
1090
- "deprecated shortcode reuse."
1091
- msgstr ""
1092
-
1093
  # @ contact_form
1094
  #~ msgid "Name:"
1095
  #~ msgstr "Nome:"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:16+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:16+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Breno Jacinto, DJIO | Dionizio Bonfim Bach <brenojac@gmail."
9
  "com, wordpress@djio.com.br>\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
+ #: contact_form.php:37 contact_form.php:1064
24
  msgid "Contact Form Settings"
25
  msgstr "Configurações do Formulário de Contato"
26
 
27
  # @ contact_form
28
+ #: contact_form.php:37
29
  msgid "Contact Form"
30
  msgstr "Formulário de contato"
31
 
32
  # @ contact_form
33
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
34
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
35
+ #: contact_form.php:3181 contact_form.php:3227
36
  msgid "Name"
37
  msgstr "Nome"
38
 
39
  # @ contact_form
40
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
41
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
42
+ #: contact_form.php:3233
43
  msgid "Address"
44
  msgstr "Endereço"
45
 
46
  # @ contact_form
47
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
48
+ #: contact_form.php:1765
49
  msgid "Email Address"
50
  msgstr "Endereço de email"
51
 
52
  # @ contact_form
53
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
54
+ #: contact_form.php:1766
55
  #, fuzzy
56
  msgid "Phone number"
57
  msgstr "Número de Telefone:"
58
 
59
  # @ contact_form
60
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
61
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
62
+ #: contact_form.php:3242
63
  msgid "Subject"
64
  msgstr "Assunto"
65
 
66
  # @ contact_form
67
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
68
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
69
+ #: contact_form.php:3246
70
  msgid "Message"
71
  msgstr "Mensagem"
72
 
73
  # @ contact_form
74
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
75
+ #: contact_form.php:2058
76
  msgid "Attachment"
77
  msgstr "Anexo"
78
 
79
  # @ contact_form
80
+ #: contact_form.php:287
81
  msgid ""
82
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
83
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
86
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
87
 
88
  # @ contact_form
89
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
90
  msgid "Send me a copy"
91
  msgstr "Envie-me uma cópia"
92
 
93
  # @ contact_form
94
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
95
  msgid "Submit"
96
  msgstr "Enviar"
97
 
98
  # @ contact_form
99
+ #: contact_form.php:290
100
  msgid "Your name is required."
101
  msgstr "Seu nome é obrigatório"
102
 
103
  # @ contact_form
104
+ #: contact_form.php:291
105
  msgid "Address is required."
106
  msgstr "Endereço é obrigatório."
107
 
108
  # @ contact_form
109
+ #: contact_form.php:292
110
  msgid "A valid email address is required."
111
  msgstr "Um e-mail válido é obrigatório."
112
 
113
  # @ contact_form
114
+ #: contact_form.php:293
115
  msgid "Phone number is required."
116
  msgstr "Telefone é obrigatório."
117
 
118
  # @ contact_form
119
+ #: contact_form.php:294
120
  msgid "Subject is required."
121
  msgstr "O Assunto da mensagem é obrigatório."
122
 
123
  # @ contact_form
124
+ #: contact_form.php:295
125
  msgid "Message text is required."
126
  msgstr "O texto da Mensagem é obrigatório."
127
 
128
  # @ contact_form
129
+ #: contact_form.php:296
130
  msgid "File format is not valid."
131
  msgstr "Impossível anexar arquivo. "
132
 
133
  # @ contact_form
134
+ #: contact_form.php:297
135
  msgid "File upload error."
136
  msgstr "Erro no upload do arquivo."
137
 
138
  # @ contact_form
139
+ #: contact_form.php:298
140
  msgid "The file could not be uploaded."
141
  msgstr "O foi possível fazer upload do arquivo."
142
 
143
  # @ contact_form
144
+ #: contact_form.php:299
145
  msgid "This file is too large."
146
  msgstr "Este arquivo é muito grande."
147
 
148
  # @ contact_form
149
+ #: contact_form.php:300
150
  msgid "Please fill out the CAPTCHA."
151
  msgstr "Por favor, complete a resposta da charada ."
152
 
153
  # @ contact_form
154
+ #: contact_form.php:301
155
  msgid "Please make corrections below and try again."
156
  msgstr ""
157
  "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
158
 
159
  # @ bestwebsoft
160
  # @ contact_form
161
+ #: contact_form.php:303
162
  msgid "Thank you for contacting us."
163
  msgstr "Obrigado por nos contatar"
164
 
165
  # @ contact_form
166
+ #: contact_form.php:759 contact_form.php:1021
167
  msgid "Settings saved."
168
  msgstr "As configurações foram salvas."
169
 
170
+ #: contact_form.php:966
171
  msgid ""
172
  "Email 'FROM' field option was changed, which may cause email messages being "
173
  "moved to the spam folder or email delivery failures."
174
  msgstr ""
175
 
176
  # @ contact_form
177
+ #: contact_form.php:976
178
  msgid ""
179
  "If the 'Redirect to page' option is selected then the URL field should be in "
180
  "the following format"
183
  "URL deve ser no seguinte formato"
184
 
185
  # @ contact_form
186
+ #: contact_form.php:983
187
  #, fuzzy
188
  msgid "Such user does not exist."
189
  msgstr "Tal usuário não existe. Configurações não foram salvas."
190
 
191
  # @ contact_form
192
+ #: contact_form.php:993
193
  #, fuzzy
194
  msgid ""
195
  "Please enter a valid email address in the 'Use this email address' field."
198
  "salvas."
199
 
200
  # @ contact_form
201
+ #: contact_form.php:1001
202
  #, fuzzy
203
  msgid "Please enter a valid email address in the 'FROM' field."
204
  msgstr ""
206
  "salvas."
207
 
208
  # @ contact_form
209
+ #: contact_form.php:1023
210
  #, fuzzy
211
  msgid "Settings are not saved."
212
  msgstr "As configurações foram salvas."
213
 
214
+ #: contact_form.php:1061
215
  msgid "All plugin settings were restored."
216
  msgstr ""
217
 
218
+ #: contact_form.php:1067
219
  msgid "How to Use Step-by-step Instruction"
220
  msgstr ""
221
 
222
  # @ bestwebsoft
223
  # @ contact_form
224
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
225
  msgid "Settings"
226
  msgstr "Configurações"
227
 
228
  # @ contact_form
229
+ #: contact_form.php:1071
230
  #, fuzzy
231
  msgid "Additional settings"
232
  msgstr "Opções adicionais"
233
 
234
+ #: contact_form.php:1072
235
  msgid "Appearance"
236
  msgstr ""
237
 
238
+ #: contact_form.php:1073
239
  msgid "Custom code"
240
  msgstr ""
241
 
242
+ #: contact_form.php:1074
243
  msgid "Go PRO"
244
  msgstr ""
245
 
246
+ #: contact_form.php:1085
247
  msgid "Notice"
248
  msgstr ""
249
 
250
+ #: contact_form.php:1089
251
  msgid "NEW_FORM"
252
  msgstr ""
253
 
254
+ #: contact_form.php:1090
255
  msgid ""
256
  "If you want to create multiple contact forms, please install the Contact "
257
  "Form Multi plugin."
258
  msgstr ""
259
 
260
  # @ contact_form
261
+ #: contact_form.php:1099
262
  #, fuzzy, php-format
263
  msgid ""
264
  "If you would like to add a Contact Form to your page or post, please use %s "
267
  "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
268
  "copie e cole este código na sua postagem ou página ou widget:"
269
 
270
+ #: contact_form.php:1105
271
  #, php-format
272
  msgid ""
273
  "You can add the Contact Form to your page or post by clicking on %s button "
277
  msgstr ""
278
 
279
  # @ contact_form
280
+ #: contact_form.php:1114
281
  msgid ""
282
  "If you leave the fields empty, the messages will be sent to the email "
283
  "address specified during registration."
286
  "enviadas para um endereço que foi especificado durante o registro."
287
 
288
  # @ contact_form
289
+ #: contact_form.php:1117
290
  #, fuzzy
291
  msgid "The user's email address"
292
  msgstr "Use o email de um usuário do wordpress:"
293
 
294
  # @ contact_form
295
+ #: contact_form.php:1121
296
  #, fuzzy
297
  msgid "Select a username"
298
  msgstr "Selecione o nome do usuário"
299
 
300
  # @ contact_form
301
+ #: contact_form.php:1134
302
  #, fuzzy
303
  msgid ""
304
  "Select a username of the person who should get the messages from the contact "
308
  "Formulário de Contato."
309
 
310
  # @ contact_form
311
+ #: contact_form.php:1138
312
  #, fuzzy
313
  msgid "Use this email address"
314
  msgstr "Use este email:"
315
 
316
  # @ contact_form
317
+ #: contact_form.php:1142
318
  #, fuzzy
319
  msgid "Enter the email address for receiving messages"
320
  msgstr ""
321
  "Configure um endereço de email que será usado para o recebimento de "
322
  "mensagens."
323
 
324
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
325
+ #: contact_form.php:1957 contact_form.php:3514
326
  msgid "Close"
327
  msgstr ""
328
 
329
+ #: contact_form.php:1153
330
  msgid "Add department selectbox to the contact form"
331
  msgstr ""
332
 
333
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
334
+ #: contact_form.php:2163
335
  msgid "If you upgrade to Pro version all your settings will be saved."
336
  msgstr ""
337
 
338
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
339
+ #: contact_form.php:1878 contact_form.php:2170
340
  msgid "Upgrade to Pro"
341
  msgstr ""
342
 
343
+ #: contact_form.php:1176
344
  msgid "Save emails to the database"
345
  msgstr ""
346
 
347
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
348
  msgid "Using"
349
  msgstr ""
350
 
351
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
352
+ #: contact_form.php:1623
353
  msgid "Please activate the appropriate option on"
354
  msgstr ""
355
 
356
  # @ contact_form
357
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
358
+ #: contact_form.php:1626
359
  #, fuzzy
360
  msgid "settings page"
361
  msgstr "Configurações extras"
362
 
363
  # @ contact_form
364
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
365
+ #: contact_form.php:1633
366
  #, fuzzy
367
  msgid "Activate"
368
  msgstr "Ativar captcha"
369
 
370
  # @ contact_form
371
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
372
+ #: contact_form.php:1638
373
  #, fuzzy
374
  msgid "Download"
375
  msgstr "Fazer Download do Captcha"
376
 
377
+ #: contact_form.php:1222
378
  msgid "Sending method"
379
  msgstr ""
380
 
381
  # @ contact_form
382
+ #: contact_form.php:1227
383
  msgid "Wp-mail"
384
  msgstr "Wp-mail"
385
 
386
  # @ contact_form
387
+ #: contact_form.php:1229
388
  #, fuzzy
389
  msgid "You can use the Wordpress wp_mail function for mailing"
390
  msgstr "Você pode usar a função wp_mail para enviar emails"
391
 
392
  # @ contact_form
393
+ #: contact_form.php:1232
394
  msgid "Mail"
395
  msgstr "Mail"
396
 
397
  # @ contact_form
398
+ #: contact_form.php:1234
399
  #, fuzzy
400
  msgid "You can use the PHP mail function for mailing"
401
  msgstr "Você pode usar a função wp_mail para enviar emails"
402
 
403
+ #: contact_form.php:1239
404
  msgid "'FROM' field"
405
  msgstr ""
406
 
407
  # @ contact_form
408
+ #: contact_form.php:1255
409
  #, fuzzy
410
  msgid "User name"
411
  msgstr "Email do usuário"
412
 
413
  # @ contact_form
414
+ #: contact_form.php:1257
415
  #, fuzzy
416
  msgid ""
417
  "The name of the user who fills the form will be used in the field 'From'."
420
  "campo 'De'"
421
 
422
  # @ contact_form
423
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
424
  msgid "Email"
425
  msgstr "E-Mail"
426
 
427
  # @ contact_form
428
+ #: contact_form.php:1279
429
  msgid "User email"
430
  msgstr "Email do usuário"
431
 
432
  # @ contact_form
433
+ #: contact_form.php:1281
434
  msgid ""
435
  "The email address of the user who fills the form will be used in the field "
436
  "'From'."
438
  "O endereço de email do usuário que preencher o formulário será usado no "
439
  "campo 'De'"
440
 
441
+ #: contact_form.php:1290
442
  msgid ""
443
  "If this option is changed, email messages may be moved to the spam folder or "
444
  "email delivery failures may occur."
445
  msgstr ""
446
 
447
  # @ contact_form
448
+ #: contact_form.php:1299
449
  #, fuzzy
450
  msgid "Required symbol"
451
  msgstr "Campos obrigatórios"
452
 
453
+ #: contact_form.php:1309
454
  msgid "Fields"
455
  msgstr ""
456
 
457
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
458
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
459
  msgid "Used"
460
  msgstr ""
461
 
462
  # @ contact_form
463
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
464
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
465
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
466
  #, fuzzy
467
  msgid "Required"
468
  msgstr "Campos obrigatórios"
469
 
470
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
471
+ #: contact_form.php:1445 contact_form.php:1469
472
  msgid "Visible"
473
  msgstr ""
474
 
475
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
476
+ #: contact_form.php:1449 contact_form.php:1473
477
  msgid "Disabled for editing"
478
  msgstr ""
479
 
480
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
481
+ #: contact_form.php:1477
482
  msgid "Field's default value"
483
  msgstr ""
484
 
485
+ #: contact_form.php:1322
486
  msgid "Department selectbox"
487
  msgstr ""
488
 
489
+ #: contact_form.php:1354
490
  msgid "Use User's name as a default value if the user is logged in."
491
  msgstr ""
492
 
493
+ #: contact_form.php:1355 contact_form.php:1415
494
  msgid ""
495
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
496
  "in users."
497
  msgstr ""
498
 
499
+ #: contact_form.php:1361
500
  msgid "Location selectbox"
501
  msgstr ""
502
 
503
+ #: contact_form.php:1414
504
  msgid "Use User's email as a default value if the user is logged in."
505
  msgstr ""
506
 
507
  # @ contact_form
508
+ #: contact_form.php:1498
509
  msgid "Attachment block"
510
  msgstr "Bloco de anexos"
511
 
512
  # @ contact_form
513
+ #: contact_form.php:1500
514
  msgid "Users can attach the following file formats"
515
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
516
 
517
+ #: contact_form.php:1518
518
  msgid "Add to the form"
519
  msgstr ""
520
 
521
  # @ contact_form
522
+ #: contact_form.php:1523
523
  #, fuzzy
524
  msgid "Tips below the Attachment"
525
  msgstr "Exibir dicas abaixo do bloco de Anexos"
526
 
527
  # @ contact_form
528
+ #: contact_form.php:1530
529
  #, fuzzy
530
  msgid "'Send me a copy' block"
531
  msgstr "Exibir bloco 'Enviar-me uma cópia'"
532
 
533
+ #: contact_form.php:1558
534
  msgid "Activate for network"
535
  msgstr ""
536
 
537
+ #: contact_form.php:1649
538
  msgid "Agreement checkbox"
539
  msgstr ""
540
 
541
+ #: contact_form.php:1649
542
  msgid "Required checkbox for submitting the form"
543
  msgstr ""
544
 
545
+ #: contact_form.php:1650
546
  msgid "Optional checkbox"
547
  msgstr ""
548
 
549
+ #: contact_form.php:1650
550
  msgid "Optional checkbox, the results of which will be displayed in email"
551
  msgstr ""
552
 
553
  # @ contact_form
554
+ #: contact_form.php:1668
555
  msgid "Delete an attachment file from the server after the email is sent"
556
  msgstr "Excluir um arquivo anexo do servidor depois que o e-mail for enviado"
557
 
558
+ #: contact_form.php:1674
559
  msgid "Email in HTML format sending"
560
  msgstr ""
561
 
562
  # @ contact_form
563
+ #: contact_form.php:1678
564
  msgid "Display additional info in the email"
565
  msgstr "Mostre informações adicionais no email"
566
 
567
  # @ contact_form
568
+ #: contact_form.php:1684
569
  #, fuzzy
570
  msgid "Sent from (IP address)"
571
  msgstr "Enviado de (Endereço IP)"
572
 
573
  # @ contact_form
574
+ #: contact_form.php:1684
575
  msgid "Example: Sent from (IP address):\t127.0.0.1"
576
  msgstr "Examplo: Enviado de (endereço IP):\\\t127.0.0.1"
577
 
578
  # @ contact_form
579
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
580
  msgid "Date/Time"
581
  msgstr "Data / Hora"
582
 
583
  # @ contact_form
584
+ #: contact_form.php:1685
585
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
586
  msgstr "Exemplo: Data/Hora:\\\t19 de Agosto de 2013 20:50"
587
 
588
  # @ contact_form
589
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
590
  msgid "Sent from (referer)"
591
  msgstr "Vindo de (origem)"
592
 
593
  # @ contact_form
594
+ #: contact_form.php:1686
595
  #, fuzzy
596
  msgid ""
597
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
599
  "Exemplo: Enviado do (referer):\\\thttp://bestwebsoft.com/contacts/contact-us/"
600
 
601
  # @ contact_form
602
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
603
  msgid "Using (user agent)"
604
  msgstr "Usando (cliente de email)"
605
 
606
  # @ contact_form
607
+ #: contact_form.php:1687
608
  msgid ""
609
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
610
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
613
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
614
 
615
  # @ contact_form
616
+ #: contact_form.php:1692
617
  msgid "Language settings for the field names in the form"
618
  msgstr "Configurações de idioma para os nomes dos campos no formulário"
619
 
620
  # @ contact_form
621
+ #: contact_form.php:1701
622
  msgid "Add a language"
623
  msgstr "Adicione um idioma"
624
 
625
  # @ contact_form
626
+ #: contact_form.php:1705
627
  msgid "Change the names of the contact form fields and error messages"
628
  msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
629
 
630
  # @ contact_form
631
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
632
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
633
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
634
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
635
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
636
  msgid "Default"
637
  msgstr "Padrão"
638
 
639
+ #: contact_form.php:1723 contact_form.php:1761
640
  msgid "click to expand/hide the list"
641
  msgstr ""
642
 
643
  # @ contact_form
644
+ #: contact_form.php:1732 contact_form.php:1770
645
  #, fuzzy
646
  msgid "Tips below the Attachment block"
647
  msgstr "Exibir dicas abaixo do bloco de Anexos"
648
 
649
  # @ contact_form
650
+ #: contact_form.php:1735 contact_form.php:1773
651
  msgid "Error message for the Name field"
652
  msgstr "Mensagem de erro para o campo Nome"
653
 
654
  # @ contact_form
655
+ #: contact_form.php:1736 contact_form.php:1774
656
  msgid "Error message for the Address field"
657
  msgstr "Mensagem de erro para o campo Endereço"
658
 
659
  # @ contact_form
660
+ #: contact_form.php:1737 contact_form.php:1775
661
  msgid "Error message for the Email field"
662
  msgstr "Mensagem de erro para o campo Email"
663
 
664
  # @ contact_form
665
+ #: contact_form.php:1738 contact_form.php:1776
666
  msgid "Error message for the Phone field"
667
  msgstr "Mensagem de erro para o campo Telefone"
668
 
669
  # @ contact_form
670
+ #: contact_form.php:1739 contact_form.php:1777
671
  msgid "Error message for the Subject field"
672
  msgstr "Mensagem de erro para o campo Assunto"
673
 
674
  # @ contact_form
675
+ #: contact_form.php:1740 contact_form.php:1778
676
  msgid "Error message for the Message field"
677
  msgstr "Mensagem de erro para o campo Mensagem"
678
 
679
  # @ contact_form
680
+ #: contact_form.php:1741 contact_form.php:1779
681
  msgid "Error message about the file type for the Attachment field"
682
  msgstr "Mensagem de erro para o campo Anexo sobre o tipo de arquivo"
683
 
684
  # @ contact_form
685
+ #: contact_form.php:1742 contact_form.php:1780
686
  msgid ""
687
  "Error message while uploading a file for the Attachment field to the server"
688
  msgstr ""
690
  "servidor"
691
 
692
  # @ contact_form
693
+ #: contact_form.php:1743 contact_form.php:1781
694
  msgid "Error message while moving the file for the Attachment field"
695
  msgstr "Mensagem de erro para o campo Anexo quando estiver movendo o arquivo"
696
 
697
  # @ contact_form
698
+ #: contact_form.php:1744 contact_form.php:1782
699
  msgid "Error message when file size limit for the Attachment field is exceeded"
700
  msgstr ""
701
  "Mensagem de erro para o campo Anexo quando o tamanho máximo do arquivo for "
702
  "excedido"
703
 
704
  # @ contact_form
705
+ #: contact_form.php:1745 contact_form.php:1783
706
  msgid "Error message for the Captcha field"
707
  msgstr "Mensagem de erro para o campo Captcha"
708
 
709
  # @ contact_form
710
+ #: contact_form.php:1746 contact_form.php:1784
711
  msgid "Error message for the whole form"
712
  msgstr "Mensagem de erro para o formulário inteiro"
713
 
714
  # @ contact_form
715
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
716
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
717
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
718
+ #: contact_form.php:3604
719
  msgid "Use shortcode"
720
  msgstr "Use shortcode (abreviações)"
721
 
722
  # @ contact_form
723
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
724
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
725
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
726
+ #: contact_form.php:3604
727
  msgid "for this language"
728
  msgstr "para este idioma"
729
 
730
  # @ contact_form
731
+ #: contact_form.php:1797
732
  #, fuzzy
733
  msgid "Use the changed names of the contact form fields in the email"
734
  msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
735
 
736
  # @ contact_form
737
+ #: contact_form.php:1803
738
  msgid "Action after email is sent"
739
  msgstr "Ação após o email ser enviado"
740
 
741
  # @ contact_form
742
+ #: contact_form.php:1805
743
  msgid "Display text"
744
  msgstr "Mostrar texto"
745
 
746
  # @ contact_form
747
+ #: contact_form.php:1819 contact_form.php:1833
748
  msgid "Text"
749
  msgstr "Texto"
750
 
751
  # @ contact_form
752
+ #: contact_form.php:1844
753
  msgid "Redirect to the page"
754
  msgstr "Redirecione para a página"
755
 
756
  # @ contact_form
757
+ #: contact_form.php:1845
758
  msgid "Url"
759
  msgstr "URL"
760
 
761
+ #: contact_form.php:1856
762
  msgid "Add field 'Reply-To' to the email header"
763
  msgstr ""
764
 
765
+ #: contact_form.php:1858
766
  msgid "Field 'Reply-To' will be initialized by user email"
767
  msgstr ""
768
 
769
+ #: contact_form.php:1862
770
  msgid "Auto Response"
771
  msgstr ""
772
 
773
+ #: contact_form.php:1866
774
  #, php-format
775
  msgid ""
776
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
779
  msgstr ""
780
 
781
  # @ default
782
+ #: contact_form.php:1888 contact_form.php:2419
783
  msgid "Save Changes"
784
  msgstr "Salvar Mudanças"
785
 
786
+ #: contact_form.php:1901
787
  #, php-format
788
  msgid ""
789
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
790
  msgstr ""
791
 
792
+ #: contact_form.php:1901 contact_form.php:1910
793
  msgid "Form layout"
794
  msgstr ""
795
 
796
  # @ contact_form
797
+ #: contact_form.php:1901 contact_form.php:1922
798
  #, fuzzy
799
  msgid "Submit position"
800
  msgstr "Botão de Envio"
801
 
802
+ #: contact_form.php:1914
803
  msgid "One column"
804
  msgstr ""
805
 
806
+ #: contact_form.php:1917
807
  msgid "Two columns"
808
  msgstr ""
809
 
810
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
811
+ #: contact_form.php:1998
812
  msgid "Left"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
816
+ #: contact_form.php:2004
817
  msgid "Right"
818
  msgstr ""
819
 
820
+ #: contact_form.php:1934
821
+ msgid "Width"
822
+ msgstr ""
823
+
824
+ #: contact_form.php:1941
825
+ msgid "Custom"
826
+ msgstr ""
827
+
828
+ #: contact_form.php:1948
829
+ msgid "px"
830
+ msgstr ""
831
+
832
+ #: contact_form.php:1961
833
  msgid "Form align"
834
  msgstr ""
835
 
836
+ #: contact_form.php:1968 contact_form.php:2001
837
  msgid "Center"
838
  msgstr ""
839
 
840
  # @ contact_form
841
+ #: contact_form.php:1976
842
  #, fuzzy
843
  msgid "Labels position"
844
  msgstr "Botão de Envio"
845
 
846
+ #: contact_form.php:1980
847
  msgid "Top"
848
  msgstr ""
849
 
850
+ #: contact_form.php:1989
851
  msgid "Bottom"
852
  msgstr ""
853
 
854
+ #: contact_form.php:1994
855
  msgid "Labels align"
856
  msgstr ""
857
 
858
  # @ contact_form
859
+ #: contact_form.php:2009
860
  msgid "Errors output"
861
  msgstr "Saída de erros."
862
 
863
  # @ contact_form
864
+ #: contact_form.php:2012
865
  msgid "Display error messages"
866
  msgstr "Mostrar mensagens de erro"
867
 
868
  # @ contact_form
869
+ #: contact_form.php:2013
870
  msgid "Color of the input field errors."
871
  msgstr "Cor do erro nos campos de formulário"
872
 
873
  # @ contact_form
874
+ #: contact_form.php:2014
875
  msgid "Display error messages & color of the input field errors"
876
  msgstr "Mostrar mensagens de erro e cores para os campos com erro"
877
 
878
  # @ contact_form
879
+ #: contact_form.php:2019
880
  msgid "Add placeholder to the input blocks"
881
  msgstr "Adicione reserva de espaço aos blocos de inserção"
882
 
883
  # @ contact_form
884
+ #: contact_form.php:2025
885
  msgid "Add tooltips"
886
  msgstr "Adicionar mensagens de ajuda"
887
 
888
  # @ contact_form
889
+ #: contact_form.php:2039
890
  msgid "Email address"
891
  msgstr "Endereço de email"
892
 
893
  # @ contact_form
894
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
895
  msgid "Phone Number"
896
  msgstr "Telefone"
897
 
898
  # @ contact_form
899
+ #: contact_form.php:2070
900
  msgid "Style options"
901
  msgstr "Opções de estilo"
902
 
903
  # @ contact_form
904
+ #: contact_form.php:2074
905
  msgid "Text color"
906
  msgstr "Cor do texto"
907
 
908
  # @ contact_form
909
+ #: contact_form.php:2079
910
  msgid "Label text color"
911
  msgstr "Cor do texto descritivo"
912
 
913
  # @ contact_form
914
+ #: contact_form.php:2084
915
  msgid "Placeholder color"
916
  msgstr "Cor da reserva de espaço"
917
 
918
  # @ contact_form
919
+ #: contact_form.php:2089
920
  msgid "Errors color"
921
  msgstr "Cor dos erros"
922
 
923
  # @ contact_form
924
+ #: contact_form.php:2094
925
  msgid "Error text color"
926
  msgstr "Cor de texto do erro"
927
 
928
  # @ contact_form
929
+ #: contact_form.php:2099
930
  msgid "Background color of the input field errors"
931
  msgstr "Cor de fundo do campo de formulário com erros"
932
 
933
  # @ contact_form
934
+ #: contact_form.php:2104
935
  msgid "Border color of the input field errors"
936
  msgstr "Cor de borda do campo de formulário com erros"
937
 
938
  # @ contact_form
939
+ #: contact_form.php:2109
940
  msgid "Placeholder color of the input field errors"
941
  msgstr "Cor de reserva de espaço do campo de formulário com erros"
942
 
943
  # @ contact_form
944
+ #: contact_form.php:2114
945
  msgid "Input fields"
946
  msgstr "Campos do folmulário"
947
 
948
  # @ contact_form
949
+ #: contact_form.php:2119
950
  msgid "Input fields background color"
951
  msgstr "Cor de fundo dos campos de formulário"
952
 
953
  # @ contact_form
954
+ #: contact_form.php:2124
955
  msgid "Text fields color"
956
  msgstr "Cor dos campos de texto"
957
 
958
  # @ contact_form
959
+ #: contact_form.php:2128
960
  msgid "Border width in px, numbers only"
961
  msgstr "Largura da borda em px, somente o número"
962
 
963
  # @ contact_form
964
+ #: contact_form.php:2133 contact_form.php:2157
965
  msgid "Border color"
966
  msgstr "Cor da borda"
967
 
968
  # @ contact_form
969
+ #: contact_form.php:2138
970
  msgid "Submit button"
971
  msgstr "Botão de Envio"
972
 
973
  # @ contact_form
974
+ #: contact_form.php:2142
975
  msgid "Width in px, numbers only"
976
  msgstr "Largura em px, somente o número"
977
 
978
  # @ contact_form
979
+ #: contact_form.php:2147
980
  msgid "Button color"
981
  msgstr "Cor do botão"
982
 
983
  # @ contact_form
984
+ #: contact_form.php:2152
985
  msgid "Button text color"
986
  msgstr "Cor do texto do botão"
987
 
988
  # @ contact_form
989
+ #: contact_form.php:2181
990
  #, fuzzy
991
  msgid "Contact Form | Preview"
992
  msgstr "Formulário de Contato Pro | Prévia"
993
 
994
+ #: contact_form.php:2182
995
  msgid "Drag the necessary field to sort fields."
996
  msgstr ""
997
 
998
  # @ contact_form
999
+ #: contact_form.php:2408
1000
  #, fuzzy
1001
  msgid ""
1002
  "If you would like to add the Contact Form to your website, just copy and "
1007
 
1008
  # @ bestwebsoft
1009
  # @ contact_form
1010
+ #: contact_form.php:2536
1011
  msgid "Sorry, email message could not be delivered."
1012
  msgstr "Desculpe, seu e-mail não pode ser entregue."
1013
 
1014
  # @ contact_form
1015
+ #: contact_form.php:3137 contact_form.php:3139
1016
  msgid "Sent from (ip address)"
1017
  msgstr "Enviado de (Endereço IP)"
1018
 
1019
  # @ contact_form
1020
+ #: contact_form.php:3167
1021
  msgid "Contact from"
1022
  msgstr "Formulário de Contato"
1023
 
1024
  # @ contact_form
1025
+ #: contact_form.php:3172 contact_form.php:3221
1026
  msgid "Site"
1027
  msgstr "Site"
1028
 
1029
  # @ contact_form
1030
+ #: contact_form.php:3351
1031
  msgid ""
1032
  "If you can see this MIME, it means that the MIME type is not supported by "
1033
  "your email client!"
1036
  "Favor usar um cliente mais atualizado."
1037
 
1038
  # @ contact_form
1039
+ #: contact_form.php:3434
1040
  msgid "FAQ"
1041
  msgstr "Perguntas Frequentes"
1042
 
1043
  # @ contact_form
1044
+ #: contact_form.php:3435
1045
  msgid "Support"
1046
  msgstr "Suporte"
1047
 
1048
  # @ contact_form
1049
+ #: contact_form.php:3484
1050
  msgid "Are you sure that you want to delete this language data?"
1051
  msgstr "Tem certeza que você quer apagar estes dados de idioma?"
1052
 
1053
  # @ contact_form
1054
+ #: contact_form.php:3505
1055
  #, fuzzy
1056
  msgid "Add multiple forms"
1057
  msgstr "Adicionar mensagens de ajuda"
1058
 
1059
+ #: contact_form.php:3505
1060
  msgid ""
1061
  "Install Contact Form Multi plugin to create unlimited number of contact "
1062
  "forms."
1063
  msgstr ""
1064
 
1065
+ #: contact_form.php:3510
1066
  msgid "Learn more"
1067
  msgstr ""
1068
 
1069
+ #: contact_form.php:3751
1070
  msgid "Close notice"
1071
  msgstr ""
1072
 
1073
+ #: contact_form.php:3756
1074
  msgid "allows to store your messages to the database."
1075
  msgstr ""
1076
 
1077
+ #: contact_form.php:3757
1078
  msgid "Manage messages that have been sent from your website."
1079
  msgstr ""
1080
 
1081
+ #: contact_form.php:3760
1082
  msgid "Learn More"
1083
  msgstr ""
1084
 
1085
  # @ contact_form
1086
+ #: contact_form.php:3820
1087
  #, fuzzy
1088
  msgid "Contact form"
1089
  msgstr "Formulário de Contato"
1090
 
1091
  # @ contact_form
1092
+ #: contact_form.php:3833 contact_form.php:3843
1093
  #, fuzzy
1094
  msgid "Language"
1095
  msgstr "Adicione um idioma"
1096
 
 
 
 
 
 
 
 
 
1097
  # @ contact_form
1098
  #~ msgid "Name:"
1099
  #~ msgstr "Nome:"
languages/contact-form-plugin-ru_RU.mo CHANGED
Binary file
languages/contact-form-plugin-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: 2017-02-27 16:21+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:22+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n"
14
  "+9)%10>3 ? 2 : 1;\n"
15
- "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e\n"
18
  "X-Poedit-Basepath: ..\n"
@@ -20,63 +20,63 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
- #: contact_form.php:42 contact_form.php:1066
24
  msgid "Contact Form Settings"
25
  msgstr "Настройки Contact Form"
26
 
27
  # @ contact_form
28
- #: contact_form.php:42
29
  msgid "Contact Form"
30
  msgstr "Contact Form"
31
 
32
  # @ contact_form
33
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
34
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
35
- #: contact_form.php:3138 contact_form.php:3184
36
  msgid "Name"
37
  msgstr "Имя"
38
 
39
  # @ contact_form
40
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
41
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
42
- #: contact_form.php:3190
43
  msgid "Address"
44
  msgstr "Адрес"
45
 
46
  # @ contact_form
47
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
48
- #: contact_form.php:1767
49
  msgid "Email Address"
50
  msgstr "Email адрес"
51
 
52
  # @ contact_form
53
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
54
- #: contact_form.php:1768
55
  msgid "Phone number"
56
  msgstr "Телефон"
57
 
58
  # @ contact_form
59
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
60
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
61
- #: contact_form.php:3199
62
  msgid "Subject"
63
  msgstr "Тема"
64
 
65
  # @ contact_form
66
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
67
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
68
- #: contact_form.php:3203
69
  msgid "Message"
70
  msgstr "Сообщение"
71
 
72
  # @ contact_form
73
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
74
- #: contact_form.php:2040
75
  msgid "Attachment"
76
  msgstr "Прикрепить файл"
77
 
78
  # @ contact_form
79
- #: contact_form.php:302
80
  msgid ""
81
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
82
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -85,87 +85,87 @@ msgstr ""
85
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
86
 
87
  # @ contact_form
88
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
89
  msgid "Send me a copy"
90
  msgstr "Отправить мне копию"
91
 
92
  # @ contact_form
93
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
94
  msgid "Submit"
95
  msgstr "Отправить"
96
 
97
  # @ contact_form
98
- #: contact_form.php:305
99
  msgid "Your name is required."
100
  msgstr "Поле Имя - это обязательное поле для заполнения."
101
 
102
  # @ contact_form
103
- #: contact_form.php:306
104
  msgid "Address is required."
105
  msgstr "Поле Адрес - это обязательное поле для заполнения."
106
 
107
  # @ contact_form
108
- #: contact_form.php:307
109
  msgid "A valid email address is required."
110
  msgstr "Укажите корректный email - адрес."
111
 
112
  # @ contact_form
113
- #: contact_form.php:308
114
  msgid "Phone number is required."
115
  msgstr "Поле Телефон - это обязательное поле для заполнения."
116
 
117
  # @ contact_form
118
- #: contact_form.php:309
119
  msgid "Subject is required."
120
  msgstr "Поле Тема - это обязательное поле для заполнения."
121
 
122
  # @ contact_form
123
- #: contact_form.php:310
124
  msgid "Message text is required."
125
  msgstr "Поле Сообщение - это обязательное поле для заполнения."
126
 
127
  # @ contact_form
128
- #: contact_form.php:311
129
  msgid "File format is not valid."
130
  msgstr "Прикрепленный тип файла не поддерживается."
131
 
132
  # @ contact_form
133
- #: contact_form.php:312
134
  msgid "File upload error."
135
  msgstr "Ошибка при загрузке файла."
136
 
137
  # @ contact_form
138
- #: contact_form.php:313
139
  msgid "The file could not be uploaded."
140
  msgstr "Невозможно загрузить файл."
141
 
142
  # @ contact_form
143
- #: contact_form.php:314
144
  msgid "This file is too large."
145
  msgstr "Размер файла слишком большой."
146
 
147
  # @ contact_form
148
- #: contact_form.php:315
149
  msgid "Please fill out the CAPTCHA."
150
  msgstr "Пожалуйста, заполните CAPTCHA."
151
 
152
  # @ contact_form
153
- #: contact_form.php:316
154
  msgid "Please make corrections below and try again."
155
  msgstr ""
156
  "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
157
 
158
  # @ contact_form
159
- #: contact_form.php:318
160
  msgid "Thank you for contacting us."
161
  msgstr "Спасибо, что связались с нами."
162
 
163
  # @ contact_form
164
- #: contact_form.php:761 contact_form.php:1023
165
  msgid "Settings saved."
166
  msgstr "Настройки сохранены"
167
 
168
- #: contact_form.php:968
169
  msgid ""
170
  "Email 'FROM' field option was changed, which may cause email messages being "
171
  "moved to the spam folder or email delivery failures."
@@ -174,7 +174,7 @@ msgstr ""
174
  "что письма будут попадать в спам или не будут доставлены"
175
 
176
  # @ contact_form
177
- #: contact_form.php:978
178
  msgid ""
179
  "If the 'Redirect to page' option is selected then the URL field should be in "
180
  "the following format"
@@ -183,68 +183,68 @@ msgstr ""
183
  "в следующем формате"
184
 
185
  # @ contact_form
186
- #: contact_form.php:985
187
  msgid "Such user does not exist."
188
  msgstr "Данный пользователь не найден."
189
 
190
  # @ contact_form
191
- #: contact_form.php:995
192
  msgid ""
193
  "Please enter a valid email address in the 'Use this email address' field."
194
  msgstr "Пожалуйста, введите корректный email в поле 'Использовать этот email'."
195
 
196
  # @ contact_form
197
- #: contact_form.php:1003
198
  msgid "Please enter a valid email address in the 'FROM' field."
199
  msgstr "Пожалуйста, введите корректный email для поля \"От\"."
200
 
201
  # @ contact_form
202
- #: contact_form.php:1025
203
  msgid "Settings are not saved."
204
  msgstr "Настройки не сохранены."
205
 
206
- #: contact_form.php:1063
207
  msgid "All plugin settings were restored."
208
  msgstr "Все настройки плагина восстановлены."
209
 
210
- #: contact_form.php:1069
211
  msgid "How to Use Step-by-step Instruction"
212
  msgstr "Пошаговая инструкция по использованию плагина"
213
 
214
  # @ contact_form
215
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
216
  msgid "Settings"
217
  msgstr "Настройки"
218
 
219
  # @ contact_form
220
- #: contact_form.php:1073
221
  msgid "Additional settings"
222
  msgstr "Дополнительные настройки"
223
 
224
- #: contact_form.php:1074
225
  msgid "Appearance"
226
  msgstr "Отображение"
227
 
228
- #: contact_form.php:1075
229
  msgid "Custom code"
230
  msgstr "Пользовательский код"
231
 
232
  # @ contact_form
233
- #: contact_form.php:1076
234
  msgid "Go PRO"
235
  msgstr "Перейти на PRO версию"
236
 
237
  # @ contact_form
238
- #: contact_form.php:1087
239
  msgid "Notice"
240
  msgstr "Обратите внимание"
241
 
242
- #: contact_form.php:1091
243
  msgid "NEW_FORM"
244
  msgstr "НОВАЯ_ФОРМА"
245
 
246
  # @ contact_form
247
- #: contact_form.php:1092
248
  msgid ""
249
  "If you want to create multiple contact forms, please install the Contact "
250
  "Form Multi plugin."
@@ -253,7 +253,7 @@ msgstr ""
253
  "установите плагин Contact Form Multi."
254
 
255
  # @ contact_form
256
- #: contact_form.php:1101
257
  #, php-format
258
  msgid ""
259
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -262,7 +262,7 @@ msgstr ""
262
  "Если вы хотите добавить контактную форму на вашу страницу или в запись, то "
263
  "используйте кнопку %s"
264
 
265
- #: contact_form.php:1107
266
  #, php-format
267
  msgid ""
268
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -276,7 +276,7 @@ msgstr ""
276
  "язык контактной формы."
277
 
278
  # @ contact_form
279
- #: contact_form.php:1116
280
  msgid ""
281
  "If you leave the fields empty, the messages will be sent to the email "
282
  "address specified during registration."
@@ -285,17 +285,17 @@ msgstr ""
285
  "email, который был указан при регистрации сайта."
286
 
287
  # @ contact_form
288
- #: contact_form.php:1119
289
  msgid "The user's email address"
290
  msgstr "Email пользователя сайта"
291
 
292
  # @ contact_form
293
- #: contact_form.php:1123
294
  msgid "Select a username"
295
  msgstr "Выберите имя пользователя"
296
 
297
  # @ contact_form
298
- #: contact_form.php:1136
299
  msgid ""
300
  "Select a username of the person who should get the messages from the contact "
301
  "form."
@@ -304,104 +304,104 @@ msgstr ""
304
  "формы."
305
 
306
  # @ contact_form
307
- #: contact_form.php:1140
308
  msgid "Use this email address"
309
  msgstr "Использовать этот email"
310
 
311
  # @ contact_form
312
- #: contact_form.php:1144
313
  msgid "Enter the email address for receiving messages"
314
  msgstr "Укажите email, на который будут отправляться сообщения"
315
 
316
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
317
- #: contact_form.php:1939 contact_form.php:3471
318
  msgid "Close"
319
  msgstr "Закрыть"
320
 
321
  # @ contact_form
322
- #: contact_form.php:1155
323
  msgid "Add department selectbox to the contact form"
324
  msgstr "Добавить выбор отдела в контактную форму"
325
 
326
  # @ contact_form
327
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
328
- #: contact_form.php:2145
329
  msgid "If you upgrade to Pro version all your settings will be saved."
330
  msgstr "При установке Pro версии все ваши настройки сохраняются."
331
 
332
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
333
- #: contact_form.php:1880 contact_form.php:2152
334
  msgid "Upgrade to Pro"
335
  msgstr "Обновиться до Pro"
336
 
337
  # @ contact_form
338
- #: contact_form.php:1178
339
  msgid "Save emails to the database"
340
  msgstr "Сохранять email в базу данных"
341
 
342
  # @ contact_form
343
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
344
  msgid "Using"
345
  msgstr "Используя"
346
 
347
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
348
- #: contact_form.php:1625
349
  msgid "Please activate the appropriate option on"
350
  msgstr "Пожалуйста, активируйте соответствующую опцию на странице настроек"
351
 
352
  # @ contact_form
353
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
354
- #: contact_form.php:1628
355
  msgid "settings page"
356
  msgstr " "
357
 
358
  # @ contact_form
359
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
360
- #: contact_form.php:1635
361
  msgid "Activate"
362
  msgstr "Активировать"
363
 
364
  # @ contact_form
365
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
366
- #: contact_form.php:1640
367
  msgid "Download"
368
  msgstr "Скачать"
369
 
370
- #: contact_form.php:1224
371
  msgid "Sending method"
372
  msgstr "Метод отправки"
373
 
374
  # @ contact_form
375
- #: contact_form.php:1229
376
  msgid "Wp-mail"
377
  msgstr "Wp-mail"
378
 
379
  # @ contact_form
380
- #: contact_form.php:1231
381
  msgid "You can use the Wordpress wp_mail function for mailing"
382
  msgstr "Для отправки почты вы можете использовать Wordpress функцию wp_mail"
383
 
384
  # @ contact_form
385
- #: contact_form.php:1234
386
  msgid "Mail"
387
  msgstr "Mail"
388
 
389
  # @ contact_form
390
- #: contact_form.php:1236
391
  msgid "You can use the PHP mail function for mailing"
392
  msgstr "Для отправки почты вы можете использовать PHP функцию mail"
393
 
394
- #: contact_form.php:1241
395
  msgid "'FROM' field"
396
  msgstr "Поле \"От\""
397
 
398
  # @ contact_form
399
- #: contact_form.php:1257
400
  msgid "User name"
401
  msgstr "Имя пользователя"
402
 
403
  # @ contact_form
404
- #: contact_form.php:1259
405
  msgid ""
406
  "The name of the user who fills the form will be used in the field 'From'."
407
  msgstr ""
@@ -409,17 +409,17 @@ msgstr ""
409
  "заполняет форму."
410
 
411
  # @ contact_form
412
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
413
  msgid "Email"
414
  msgstr "Email"
415
 
416
  # @ contact_form
417
- #: contact_form.php:1281
418
  msgid "User email"
419
  msgstr "Email пользователя"
420
 
421
  # @ contact_form
422
- #: contact_form.php:1283
423
  msgid ""
424
  "The email address of the user who fills the form will be used in the field "
425
  "'From'."
@@ -427,7 +427,7 @@ msgstr ""
427
  "В поле \"От\" в письме будет использоваться email того пользователя, который "
428
  "заполняет форму."
429
 
430
- #: contact_form.php:1292
431
  msgid ""
432
  "If this option is changed, email messages may be moved to the spam folder or "
433
  "email delivery failures may occur."
@@ -436,58 +436,58 @@ msgstr ""
436
  "будут попадать в спам или не будут доставлены."
437
 
438
  # @ contact_form
439
- #: contact_form.php:1301
440
  msgid "Required symbol"
441
  msgstr "Символ, отображающий обязательное поле"
442
 
443
  # @ contact_form
444
- #: contact_form.php:1311
445
  msgid "Fields"
446
  msgstr "Поля"
447
 
448
  # @ contact_form
449
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
450
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
451
  msgid "Used"
452
  msgstr "Используется"
453
 
454
  # @ contact_form
455
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
456
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
457
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
458
  msgid "Required"
459
  msgstr "Обязательное"
460
 
461
  # @ contact_form
462
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
463
- #: contact_form.php:1447 contact_form.php:1471
464
  msgid "Visible"
465
  msgstr "Видимое"
466
 
467
  # @ contact_form
468
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
469
- #: contact_form.php:1451 contact_form.php:1475
470
  msgid "Disabled for editing"
471
  msgstr "Нет возможности редактировать"
472
 
473
  # @ contact_form
474
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
475
- #: contact_form.php:1479
476
  msgid "Field's default value"
477
  msgstr "Значение полей по умолчанию"
478
 
479
  # @ contact_form
480
- #: contact_form.php:1324
481
  msgid "Department selectbox"
482
  msgstr "Список отделов"
483
 
484
- #: contact_form.php:1356
485
  msgid "Use User's name as a default value if the user is logged in."
486
  msgstr ""
487
  "Использовать имя Пользователя как значение по умолчанию, если пользователь "
488
  "залогинен."
489
 
490
- #: contact_form.php:1357 contact_form.php:1417
491
  msgid ""
492
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
493
  "in users."
@@ -496,107 +496,107 @@ msgstr ""
496
  "к залогиненным пользователям."
497
 
498
  # @ contact_form
499
- #: contact_form.php:1363
500
  msgid "Location selectbox"
501
  msgstr "Список местоположений"
502
 
503
- #: contact_form.php:1416
504
  msgid "Use User's email as a default value if the user is logged in."
505
  msgstr ""
506
  "Использовать Email Пользователя как значение по умолчанию, если пользователь "
507
  "залогинен."
508
 
509
  # @ contact_form
510
- #: contact_form.php:1500
511
  msgid "Attachment block"
512
  msgstr "Блок \"Прикрепить файл\""
513
 
514
  # @ contact_form
515
- #: contact_form.php:1502
516
  msgid "Users can attach the following file formats"
517
  msgstr "Пользователи могут прикрепить файлы таких типов"
518
 
519
  # @ contact_form
520
- #: contact_form.php:1520
521
  msgid "Add to the form"
522
  msgstr "Добавить в форму"
523
 
524
  # @ contact_form
525
- #: contact_form.php:1525
526
  msgid "Tips below the Attachment"
527
  msgstr "Пояснения после блока \"Прикрепить файл\""
528
 
529
  # @ contact_form
530
- #: contact_form.php:1532
531
  msgid "'Send me a copy' block"
532
  msgstr "Блок \"Отправить мне копию\""
533
 
534
- #: contact_form.php:1560
535
  msgid "Activate for network"
536
  msgstr "Активировать для сети"
537
 
538
  # @ contact_form
539
- #: contact_form.php:1651
540
  msgid "Agreement checkbox"
541
  msgstr "Чекбокс согласия с условиями"
542
 
543
  # @ contact_form
544
- #: contact_form.php:1651
545
  msgid "Required checkbox for submitting the form"
546
  msgstr "Обязательный чекбокс для отправки формы"
547
 
548
  # @ contact_form
549
- #: contact_form.php:1652
550
  msgid "Optional checkbox"
551
  msgstr "Дополнительный чекбокс"
552
 
553
  # @ contact_form
554
- #: contact_form.php:1652
555
  msgid "Optional checkbox, the results of which will be displayed in email"
556
  msgstr "Дополнительный чекбокс, результаты которого будут отображены в email"
557
 
558
  # @ contact_form
559
- #: contact_form.php:1670
560
  msgid "Delete an attachment file from the server after the email is sent"
561
  msgstr "Удалить прикрепленный файл с сервера после отправки email"
562
 
563
  # @ contact_form
564
- #: contact_form.php:1676
565
  msgid "Email in HTML format sending"
566
  msgstr "Отправка еmail в формате HTML"
567
 
568
  # @ contact_form
569
- #: contact_form.php:1680
570
  msgid "Display additional info in the email"
571
  msgstr "Отображение дополнительной информации в письме"
572
 
573
  # @ contact_form
574
- #: contact_form.php:1686
575
  msgid "Sent from (IP address)"
576
  msgstr "Отправлено от (IP адрес)"
577
 
578
  # @ contact_form
579
- #: contact_form.php:1686
580
  msgid "Example: Sent from (IP address):\t127.0.0.1"
581
  msgstr "Пример: Отправлено от (IP адрес):\t127.0.0.1"
582
 
583
  # @ contact_form
584
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
585
  msgid "Date/Time"
586
  msgstr "Дата/Время"
587
 
588
  # @ contact_form
589
- #: contact_form.php:1687
590
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
591
  msgstr "Пример: Дата/Время:\tАвгуст 19, 2013 8:50"
592
 
593
  # @ contact_form
594
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
595
  msgid "Sent from (referer)"
596
  msgstr "Отправлено от (referer)"
597
 
598
  # @ contact_form
599
- #: contact_form.php:1688
600
  msgid ""
601
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
602
  msgstr ""
@@ -604,12 +604,12 @@ msgstr ""
604
  "us/"
605
 
606
  # @ contact_form
607
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
608
  msgid "Using (user agent)"
609
  msgstr "Используя (user agent)"
610
 
611
  # @ contact_form
612
- #: contact_form.php:1689
613
  msgid ""
614
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
615
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -618,165 +618,165 @@ msgstr ""
618
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
619
 
620
  # @ contact_form
621
- #: contact_form.php:1694
622
  msgid "Language settings for the field names in the form"
623
  msgstr "Языковые настройки для имён полей в форме"
624
 
625
  # @ contact_form
626
- #: contact_form.php:1703
627
  msgid "Add a language"
628
  msgstr "Добавить язык"
629
 
630
  # @ contact_form
631
- #: contact_form.php:1707
632
  msgid "Change the names of the contact form fields and error messages"
633
  msgstr "Изменить имена полей контактной формы и сообщений об ошибках"
634
 
635
  # @ contact_form
636
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
637
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
638
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
639
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
640
- #: contact_form.php:2132 contact_form.php:2137
641
  msgid "Default"
642
  msgstr "По умолчанию"
643
 
644
  # @ contact_form
645
- #: contact_form.php:1725 contact_form.php:1763
646
  msgid "click to expand/hide the list"
647
  msgstr "нажмите чтобы развернуть/свернуть список"
648
 
649
  # @ contact_form
650
- #: contact_form.php:1734 contact_form.php:1772
651
  msgid "Tips below the Attachment block"
652
  msgstr "Пояснения после блока \"Прикрепить файл\""
653
 
654
  # @ contact_form
655
- #: contact_form.php:1737 contact_form.php:1775
656
  msgid "Error message for the Name field"
657
  msgstr "Сообщение об ошибке для поля Имя"
658
 
659
  # @ contact_form
660
- #: contact_form.php:1738 contact_form.php:1776
661
  msgid "Error message for the Address field"
662
  msgstr "Сообщение об ошибке для поля Адрес"
663
 
664
  # @ contact_form
665
- #: contact_form.php:1739 contact_form.php:1777
666
  msgid "Error message for the Email field"
667
  msgstr "Сообщение об ошибке для поля Email"
668
 
669
  # @ contact_form
670
- #: contact_form.php:1740 contact_form.php:1778
671
  msgid "Error message for the Phone field"
672
  msgstr "Сообщение об ошибке для поля Телефон"
673
 
674
  # @ contact_form
675
- #: contact_form.php:1741 contact_form.php:1779
676
  msgid "Error message for the Subject field"
677
  msgstr "Сообщение об ошибке для поля Тема"
678
 
679
  # @ contact_form
680
- #: contact_form.php:1742 contact_form.php:1780
681
  msgid "Error message for the Message field"
682
  msgstr "Сообщение об ошибке для поля Сообщение"
683
 
684
  # @ contact_form
685
- #: contact_form.php:1743 contact_form.php:1781
686
  msgid "Error message about the file type for the Attachment field"
687
  msgstr "Сообщение об ошибке о типе файла для поля \"Прикрепить файл\""
688
 
689
  # @ contact_form
690
- #: contact_form.php:1744 contact_form.php:1782
691
  msgid ""
692
  "Error message while uploading a file for the Attachment field to the server"
693
  msgstr ""
694
  "Сообщение об ошибке при загрузке файла на сервер для поля \"Прикрепить файл\""
695
 
696
  # @ contact_form
697
- #: contact_form.php:1745 contact_form.php:1783
698
  msgid "Error message while moving the file for the Attachment field"
699
  msgstr "Сообщение об ошибке при перемещении файла для поля \"Прикрепить файл\""
700
 
701
  # @ contact_form
702
- #: contact_form.php:1746 contact_form.php:1784
703
  msgid "Error message when file size limit for the Attachment field is exceeded"
704
  msgstr ""
705
  "Сообщение об ошибке, когда размер файла превышает размер разрешенного "
706
  "сервером для поля \"Прикрепить файл\""
707
 
708
  # @ contact_form
709
- #: contact_form.php:1747 contact_form.php:1785
710
  msgid "Error message for the Captcha field"
711
  msgstr "Сообщение об ошибке для поля Captcha"
712
 
713
  # @ contact_form
714
- #: contact_form.php:1748 contact_form.php:1786
715
  msgid "Error message for the whole form"
716
  msgstr "Сообщение об ошибке для всей формы"
717
 
718
  # @ contact_form
719
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
720
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
721
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
722
- #: contact_form.php:3540
723
  msgid "Use shortcode"
724
  msgstr "Используйте шорткод"
725
 
726
  # @ contact_form
727
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
728
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
729
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
730
- #: contact_form.php:3540
731
  msgid "for this language"
732
  msgstr "для данного языка"
733
 
734
  # @ contact_form
735
- #: contact_form.php:1799
736
  msgid "Use the changed names of the contact form fields in the email"
737
  msgstr "Использовать измененные имена полей контактной формы в email"
738
 
739
  # @ contact_form
740
- #: contact_form.php:1805
741
  msgid "Action after email is sent"
742
  msgstr "Действие после отправки письма"
743
 
744
  # @ contact_form
745
- #: contact_form.php:1807
746
  msgid "Display text"
747
  msgstr "Отобразить текст"
748
 
749
  # @ contact_form
750
- #: contact_form.php:1821 contact_form.php:1835
751
  msgid "Text"
752
  msgstr "Текст"
753
 
754
  # @ contact_form
755
- #: contact_form.php:1846
756
  msgid "Redirect to the page"
757
  msgstr "Перенаправление на страницу"
758
 
759
  # @ contact_form
760
- #: contact_form.php:1847
761
  msgid "Url"
762
  msgstr "Ссылка"
763
 
764
- #: contact_form.php:1858
765
  msgid "Add field 'Reply-To' to the email header"
766
  msgstr "Добавить поле 'Reply-To' в заголовок емейла"
767
 
768
- #: contact_form.php:1860
769
  msgid "Field 'Reply-To' will be initialized by user email"
770
  msgstr ""
771
  "Поле 'Reply-To' будет проинициализировано электронной почтой пользователя"
772
 
773
  # @ contact_form_pro
774
- #: contact_form.php:1864
775
  msgid "Auto Response"
776
  msgstr "Автоответ"
777
 
778
  # @ contact_form
779
- #: contact_form.php:1868
780
  #, php-format
781
  msgid ""
782
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -788,11 +788,11 @@ msgstr ""
788
  "названия блога."
789
 
790
  # @ default
791
- #: contact_form.php:1890 contact_form.php:2389
792
  msgid "Save Changes"
793
  msgstr "Сохранить изменения"
794
 
795
- #: contact_form.php:1903
796
  #, php-format
797
  msgid ""
798
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
@@ -800,199 +800,211 @@ msgstr ""
800
  "Пожалуйста, включите JavaScript для изменения опций '%s', '%s' и сортировки "
801
  "полей."
802
 
803
- #: contact_form.php:1903 contact_form.php:1912
804
  msgid "Form layout"
805
  msgstr "Шаблон формы"
806
 
807
  # @ contact_form
808
- #: contact_form.php:1903 contact_form.php:1924
809
  msgid "Submit position"
810
  msgstr "Позиция кнопки 'Отправить'"
811
 
812
- #: contact_form.php:1916
813
  msgid "One column"
814
  msgstr "Одна колонка"
815
 
816
- #: contact_form.php:1919
817
  msgid "Two columns"
818
  msgstr "Две колонки"
819
 
820
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
821
- #: contact_form.php:1980
822
  msgid "Left"
823
  msgstr "Слева"
824
 
825
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
826
- #: contact_form.php:1986
827
  msgid "Right"
828
  msgstr "Справа"
829
 
830
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
831
  msgid "Form align"
832
  msgstr "Выравнивание формы"
833
 
834
- #: contact_form.php:1950 contact_form.php:1983
835
  msgid "Center"
836
  msgstr "По центру"
837
 
838
  # @ contact_form
839
- #: contact_form.php:1958
840
  msgid "Labels position"
841
  msgstr "Расположение имен полей"
842
 
843
- #: contact_form.php:1962
844
  msgid "Top"
845
  msgstr "Сверху"
846
 
847
- #: contact_form.php:1971
848
  msgid "Bottom"
849
  msgstr "Снизу"
850
 
851
- #: contact_form.php:1976
852
  msgid "Labels align"
853
- msgstr "Выравнивание лейблов"
854
 
855
  # @ contact_form
856
- #: contact_form.php:1991
857
  msgid "Errors output"
858
  msgstr "Отображение ошибок"
859
 
860
  # @ contact_form
861
- #: contact_form.php:1994
862
  msgid "Display error messages"
863
  msgstr "Отображать сообщения об ошибках"
864
 
865
  # @ contact_form
866
- #: contact_form.php:1995
867
  msgid "Color of the input field errors."
868
  msgstr "Отображать ошибки цветом для полей ввода."
869
 
870
  # @ contact_form
871
- #: contact_form.php:1996
872
  msgid "Display error messages & color of the input field errors"
873
  msgstr "Отображать сообщения об ошибках и цвет полей ввода с ошибками"
874
 
875
  # @ contact_form
876
- #: contact_form.php:2001
877
  msgid "Add placeholder to the input blocks"
878
  msgstr "Добавить вспомогательный текст в поля ввода"
879
 
880
  # @ contact_form
881
- #: contact_form.php:2007
882
  msgid "Add tooltips"
883
  msgstr "Добавить подсказки"
884
 
885
  # @ contact_form
886
- #: contact_form.php:2021
887
  msgid "Email address"
888
  msgstr "Email"
889
 
890
  # @ contact_form
891
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
892
  msgid "Phone Number"
893
  msgstr "Телефон"
894
 
895
  # @ contact_form
896
- #: contact_form.php:2052
897
  msgid "Style options"
898
  msgstr "Настройки стиля"
899
 
900
  # @ contact_form
901
- #: contact_form.php:2056
902
  msgid "Text color"
903
  msgstr "Цвет текста"
904
 
905
  # @ contact_form
906
- #: contact_form.php:2061
907
  msgid "Label text color"
908
  msgstr "Цвет текста"
909
 
910
  # @ contact_form
911
- #: contact_form.php:2066
912
  msgid "Placeholder color"
913
  msgstr "Цвет вспомогательного текста"
914
 
915
  # @ contact_form
916
- #: contact_form.php:2071
917
  msgid "Errors color"
918
  msgstr "Цвет ошибок"
919
 
920
  # @ contact_form
921
- #: contact_form.php:2076
922
  msgid "Error text color"
923
  msgstr "Цвет текста для ошибок"
924
 
925
  # @ contact_form
926
- #: contact_form.php:2081
927
  msgid "Background color of the input field errors"
928
  msgstr "Цвет фона для полей ввода с ошибками"
929
 
930
  # @ contact_form
931
- #: contact_form.php:2086
932
  msgid "Border color of the input field errors"
933
  msgstr "Цвет рамки для полей ввода с ошибками"
934
 
935
  # @ contact_form
936
- #: contact_form.php:2091
937
  msgid "Placeholder color of the input field errors"
938
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
939
 
940
  # @ contact_form
941
- #: contact_form.php:2096
942
  msgid "Input fields"
943
  msgstr "Поля ввода"
944
 
945
  # @ contact_form
946
- #: contact_form.php:2101
947
  msgid "Input fields background color"
948
  msgstr "Цвет фона для полей ввода"
949
 
950
  # @ contact_form
951
- #: contact_form.php:2106
952
  msgid "Text fields color"
953
  msgstr "Цвет текста для полей ввода"
954
 
955
  # @ contact_form
956
- #: contact_form.php:2110
957
  msgid "Border width in px, numbers only"
958
  msgstr "Ширина рамки в пикселях, только цифры"
959
 
960
  # @ contact_form
961
- #: contact_form.php:2115 contact_form.php:2139
962
  msgid "Border color"
963
  msgstr "Цвет рамки"
964
 
965
  # @ contact_form
966
- #: contact_form.php:2120
967
  msgid "Submit button"
968
  msgstr "Кнопка Отправить"
969
 
970
  # @ contact_form
971
- #: contact_form.php:2124
972
  msgid "Width in px, numbers only"
973
  msgstr "Ширина в пикселях, только цифры"
974
 
975
  # @ contact_form
976
- #: contact_form.php:2129
977
  msgid "Button color"
978
  msgstr "Цвет кнопки"
979
 
980
  # @ contact_form
981
- #: contact_form.php:2134
982
  msgid "Button text color"
983
  msgstr "Цвет текста для кнопки"
984
 
985
  # @ contact_form
986
- #: contact_form.php:2163
987
  msgid "Contact Form | Preview"
988
  msgstr "Contact Form | Предпросмотр"
989
 
990
- #: contact_form.php:2164
991
  msgid "Drag the necessary field to sort fields."
992
  msgstr "Перетащите необходимое поле для сортировки полей."
993
 
994
  # @ contact_form
995
- #: contact_form.php:2376
996
  msgid ""
997
  "If you would like to add the Contact Form to your website, just copy and "
998
  "paste this shortcode to your post or page or widget"
@@ -1001,27 +1013,27 @@ msgstr ""
1001
  "скопировать и вставить шорткод в контент страницы, записи или виджета"
1002
 
1003
  # @ contact_form
1004
- #: contact_form.php:2504
1005
  msgid "Sorry, email message could not be delivered."
1006
  msgstr "Извините, ваш email не может быть отправлен."
1007
 
1008
  # @ contact_form
1009
- #: contact_form.php:3094 contact_form.php:3096
1010
  msgid "Sent from (ip address)"
1011
  msgstr "Отправлено от (IP адрес)"
1012
 
1013
  # @ contact_form
1014
- #: contact_form.php:3124
1015
  msgid "Contact from"
1016
  msgstr "Контакт из"
1017
 
1018
  # @ contact_form
1019
- #: contact_form.php:3129 contact_form.php:3178
1020
  msgid "Site"
1021
  msgstr "Сайт"
1022
 
1023
  # @ contact_form
1024
- #: contact_form.php:3308
1025
  msgid ""
1026
  "If you can see this MIME, it means that the MIME type is not supported by "
1027
  "your email client!"
@@ -1030,26 +1042,26 @@ msgstr ""
1030
  "MIME тип!"
1031
 
1032
  # @ contact_form
1033
- #: contact_form.php:3391
1034
  msgid "FAQ"
1035
  msgstr "FAQ"
1036
 
1037
  # @ contact_form
1038
- #: contact_form.php:3392
1039
  msgid "Support"
1040
  msgstr "Поддержка"
1041
 
1042
  # @ contact_form
1043
- #: contact_form.php:3441
1044
  msgid "Are you sure that you want to delete this language data?"
1045
  msgstr "Вы действительно хотите удалить данные для этого языка?"
1046
 
1047
  # @ contact_form
1048
- #: contact_form.php:3462
1049
  msgid "Add multiple forms"
1050
  msgstr "Добавить несколько форм"
1051
 
1052
- #: contact_form.php:3462
1053
  msgid ""
1054
  "Install Contact Form Multi plugin to create unlimited number of contact "
1055
  "forms."
@@ -1058,46 +1070,44 @@ msgstr ""
1058
  "контактных форм."
1059
 
1060
  # @ contact_form
1061
- #: contact_form.php:3467
1062
  msgid "Learn more"
1063
  msgstr "Подробнее"
1064
 
1065
- #: contact_form.php:3693
1066
  msgid "Close notice"
1067
  msgstr "Закрыть"
1068
 
1069
  # @ contact_form
1070
- #: contact_form.php:3698
1071
  msgid "allows to store your messages to the database."
1072
  msgstr "позволяет хранить ваши сообщения в базе данных."
1073
 
1074
  # @ contact_form
1075
- #: contact_form.php:3699
1076
  msgid "Manage messages that have been sent from your website."
1077
  msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
1078
 
1079
  # @ contact_form
1080
- #: contact_form.php:3702
1081
  msgid "Learn More"
1082
  msgstr "Подробнее"
1083
 
1084
  # @ contact_form
1085
- #: contact_form.php:3762
1086
  msgid "Contact form"
1087
  msgstr "Контактная форма"
1088
 
1089
  # @ contact_form
1090
- #: contact_form.php:3775 contact_form.php:3785
1091
  msgid "Language"
1092
  msgstr "Язык"
1093
 
1094
- #: includes/deprecated.php:168
1095
- #, php-format
1096
- msgid ""
1097
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
1098
- "replace it with %3s. If you close this message it'll appear again after "
1099
- "deprecated shortcode reuse."
1100
- msgstr ""
1101
- "Устаревший шорткод %1s плагина %2s используется на вашем сайте. Пожалуйста, "
1102
- "замените его на %3s. Если закрыть это сообщение, оно появится снова после "
1103
- "повторного использования устаревшего шорткода."
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:16+0300\n"
6
+ "PO-Revision-Date: 2017-06-26 11:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n"
14
  "+9)%10>3 ? 2 : 1;\n"
15
+ "X-Generator: Poedit 1.8.7.1\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e\n"
18
  "X-Poedit-Basepath: ..\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
+ #: contact_form.php:37 contact_form.php:1064
24
  msgid "Contact Form Settings"
25
  msgstr "Настройки Contact Form"
26
 
27
  # @ contact_form
28
+ #: contact_form.php:37
29
  msgid "Contact Form"
30
  msgstr "Contact Form"
31
 
32
  # @ contact_form
33
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
34
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
35
+ #: contact_form.php:3181 contact_form.php:3227
36
  msgid "Name"
37
  msgstr "Имя"
38
 
39
  # @ contact_form
40
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
41
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
42
+ #: contact_form.php:3233
43
  msgid "Address"
44
  msgstr "Адрес"
45
 
46
  # @ contact_form
47
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
48
+ #: contact_form.php:1765
49
  msgid "Email Address"
50
  msgstr "Email адрес"
51
 
52
  # @ contact_form
53
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
54
+ #: contact_form.php:1766
55
  msgid "Phone number"
56
  msgstr "Телефон"
57
 
58
  # @ contact_form
59
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
60
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
61
+ #: contact_form.php:3242
62
  msgid "Subject"
63
  msgstr "Тема"
64
 
65
  # @ contact_form
66
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
67
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
68
+ #: contact_form.php:3246
69
  msgid "Message"
70
  msgstr "Сообщение"
71
 
72
  # @ contact_form
73
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
74
+ #: contact_form.php:2058
75
  msgid "Attachment"
76
  msgstr "Прикрепить файл"
77
 
78
  # @ contact_form
79
+ #: contact_form.php:287
80
  msgid ""
81
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
82
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
85
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
86
 
87
  # @ contact_form
88
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
89
  msgid "Send me a copy"
90
  msgstr "Отправить мне копию"
91
 
92
  # @ contact_form
93
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
94
  msgid "Submit"
95
  msgstr "Отправить"
96
 
97
  # @ contact_form
98
+ #: contact_form.php:290
99
  msgid "Your name is required."
100
  msgstr "Поле Имя - это обязательное поле для заполнения."
101
 
102
  # @ contact_form
103
+ #: contact_form.php:291
104
  msgid "Address is required."
105
  msgstr "Поле Адрес - это обязательное поле для заполнения."
106
 
107
  # @ contact_form
108
+ #: contact_form.php:292
109
  msgid "A valid email address is required."
110
  msgstr "Укажите корректный email - адрес."
111
 
112
  # @ contact_form
113
+ #: contact_form.php:293
114
  msgid "Phone number is required."
115
  msgstr "Поле Телефон - это обязательное поле для заполнения."
116
 
117
  # @ contact_form
118
+ #: contact_form.php:294
119
  msgid "Subject is required."
120
  msgstr "Поле Тема - это обязательное поле для заполнения."
121
 
122
  # @ contact_form
123
+ #: contact_form.php:295
124
  msgid "Message text is required."
125
  msgstr "Поле Сообщение - это обязательное поле для заполнения."
126
 
127
  # @ contact_form
128
+ #: contact_form.php:296
129
  msgid "File format is not valid."
130
  msgstr "Прикрепленный тип файла не поддерживается."
131
 
132
  # @ contact_form
133
+ #: contact_form.php:297
134
  msgid "File upload error."
135
  msgstr "Ошибка при загрузке файла."
136
 
137
  # @ contact_form
138
+ #: contact_form.php:298
139
  msgid "The file could not be uploaded."
140
  msgstr "Невозможно загрузить файл."
141
 
142
  # @ contact_form
143
+ #: contact_form.php:299
144
  msgid "This file is too large."
145
  msgstr "Размер файла слишком большой."
146
 
147
  # @ contact_form
148
+ #: contact_form.php:300
149
  msgid "Please fill out the CAPTCHA."
150
  msgstr "Пожалуйста, заполните CAPTCHA."
151
 
152
  # @ contact_form
153
+ #: contact_form.php:301
154
  msgid "Please make corrections below and try again."
155
  msgstr ""
156
  "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
157
 
158
  # @ contact_form
159
+ #: contact_form.php:303
160
  msgid "Thank you for contacting us."
161
  msgstr "Спасибо, что связались с нами."
162
 
163
  # @ contact_form
164
+ #: contact_form.php:759 contact_form.php:1021
165
  msgid "Settings saved."
166
  msgstr "Настройки сохранены"
167
 
168
+ #: contact_form.php:966
169
  msgid ""
170
  "Email 'FROM' field option was changed, which may cause email messages being "
171
  "moved to the spam folder or email delivery failures."
174
  "что письма будут попадать в спам или не будут доставлены"
175
 
176
  # @ contact_form
177
+ #: contact_form.php:976
178
  msgid ""
179
  "If the 'Redirect to page' option is selected then the URL field should be in "
180
  "the following format"
183
  "в следующем формате"
184
 
185
  # @ contact_form
186
+ #: contact_form.php:983
187
  msgid "Such user does not exist."
188
  msgstr "Данный пользователь не найден."
189
 
190
  # @ contact_form
191
+ #: contact_form.php:993
192
  msgid ""
193
  "Please enter a valid email address in the 'Use this email address' field."
194
  msgstr "Пожалуйста, введите корректный email в поле 'Использовать этот email'."
195
 
196
  # @ contact_form
197
+ #: contact_form.php:1001
198
  msgid "Please enter a valid email address in the 'FROM' field."
199
  msgstr "Пожалуйста, введите корректный email для поля \"От\"."
200
 
201
  # @ contact_form
202
+ #: contact_form.php:1023
203
  msgid "Settings are not saved."
204
  msgstr "Настройки не сохранены."
205
 
206
+ #: contact_form.php:1061
207
  msgid "All plugin settings were restored."
208
  msgstr "Все настройки плагина восстановлены."
209
 
210
+ #: contact_form.php:1067
211
  msgid "How to Use Step-by-step Instruction"
212
  msgstr "Пошаговая инструкция по использованию плагина"
213
 
214
  # @ contact_form
215
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
216
  msgid "Settings"
217
  msgstr "Настройки"
218
 
219
  # @ contact_form
220
+ #: contact_form.php:1071
221
  msgid "Additional settings"
222
  msgstr "Дополнительные настройки"
223
 
224
+ #: contact_form.php:1072
225
  msgid "Appearance"
226
  msgstr "Отображение"
227
 
228
+ #: contact_form.php:1073
229
  msgid "Custom code"
230
  msgstr "Пользовательский код"
231
 
232
  # @ contact_form
233
+ #: contact_form.php:1074
234
  msgid "Go PRO"
235
  msgstr "Перейти на PRO версию"
236
 
237
  # @ contact_form
238
+ #: contact_form.php:1085
239
  msgid "Notice"
240
  msgstr "Обратите внимание"
241
 
242
+ #: contact_form.php:1089
243
  msgid "NEW_FORM"
244
  msgstr "НОВАЯ_ФОРМА"
245
 
246
  # @ contact_form
247
+ #: contact_form.php:1090
248
  msgid ""
249
  "If you want to create multiple contact forms, please install the Contact "
250
  "Form Multi plugin."
253
  "установите плагин Contact Form Multi."
254
 
255
  # @ contact_form
256
+ #: contact_form.php:1099
257
  #, php-format
258
  msgid ""
259
  "If you would like to add a Contact Form to your page or post, please use %s "
262
  "Если вы хотите добавить контактную форму на вашу страницу или в запись, то "
263
  "используйте кнопку %s"
264
 
265
+ #: contact_form.php:1105
266
  #, php-format
267
  msgid ""
268
  "You can add the Contact Form to your page or post by clicking on %s button "
276
  "язык контактной формы."
277
 
278
  # @ contact_form
279
+ #: contact_form.php:1114
280
  msgid ""
281
  "If you leave the fields empty, the messages will be sent to the email "
282
  "address specified during registration."
285
  "email, который был указан при регистрации сайта."
286
 
287
  # @ contact_form
288
+ #: contact_form.php:1117
289
  msgid "The user's email address"
290
  msgstr "Email пользователя сайта"
291
 
292
  # @ contact_form
293
+ #: contact_form.php:1121
294
  msgid "Select a username"
295
  msgstr "Выберите имя пользователя"
296
 
297
  # @ contact_form
298
+ #: contact_form.php:1134
299
  msgid ""
300
  "Select a username of the person who should get the messages from the contact "
301
  "form."
304
  "формы."
305
 
306
  # @ contact_form
307
+ #: contact_form.php:1138
308
  msgid "Use this email address"
309
  msgstr "Использовать этот email"
310
 
311
  # @ contact_form
312
+ #: contact_form.php:1142
313
  msgid "Enter the email address for receiving messages"
314
  msgstr "Укажите email, на который будут отправляться сообщения"
315
 
316
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
317
+ #: contact_form.php:1957 contact_form.php:3514
318
  msgid "Close"
319
  msgstr "Закрыть"
320
 
321
  # @ contact_form
322
+ #: contact_form.php:1153
323
  msgid "Add department selectbox to the contact form"
324
  msgstr "Добавить выбор отдела в контактную форму"
325
 
326
  # @ contact_form
327
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
328
+ #: contact_form.php:2163
329
  msgid "If you upgrade to Pro version all your settings will be saved."
330
  msgstr "При установке Pro версии все ваши настройки сохраняются."
331
 
332
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
333
+ #: contact_form.php:1878 contact_form.php:2170
334
  msgid "Upgrade to Pro"
335
  msgstr "Обновиться до Pro"
336
 
337
  # @ contact_form
338
+ #: contact_form.php:1176
339
  msgid "Save emails to the database"
340
  msgstr "Сохранять email в базу данных"
341
 
342
  # @ contact_form
343
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
344
  msgid "Using"
345
  msgstr "Используя"
346
 
347
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
348
+ #: contact_form.php:1623
349
  msgid "Please activate the appropriate option on"
350
  msgstr "Пожалуйста, активируйте соответствующую опцию на странице настроек"
351
 
352
  # @ contact_form
353
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
354
+ #: contact_form.php:1626
355
  msgid "settings page"
356
  msgstr " "
357
 
358
  # @ contact_form
359
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
360
+ #: contact_form.php:1633
361
  msgid "Activate"
362
  msgstr "Активировать"
363
 
364
  # @ contact_form
365
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
366
+ #: contact_form.php:1638
367
  msgid "Download"
368
  msgstr "Скачать"
369
 
370
+ #: contact_form.php:1222
371
  msgid "Sending method"
372
  msgstr "Метод отправки"
373
 
374
  # @ contact_form
375
+ #: contact_form.php:1227
376
  msgid "Wp-mail"
377
  msgstr "Wp-mail"
378
 
379
  # @ contact_form
380
+ #: contact_form.php:1229
381
  msgid "You can use the Wordpress wp_mail function for mailing"
382
  msgstr "Для отправки почты вы можете использовать Wordpress функцию wp_mail"
383
 
384
  # @ contact_form
385
+ #: contact_form.php:1232
386
  msgid "Mail"
387
  msgstr "Mail"
388
 
389
  # @ contact_form
390
+ #: contact_form.php:1234
391
  msgid "You can use the PHP mail function for mailing"
392
  msgstr "Для отправки почты вы можете использовать PHP функцию mail"
393
 
394
+ #: contact_form.php:1239
395
  msgid "'FROM' field"
396
  msgstr "Поле \"От\""
397
 
398
  # @ contact_form
399
+ #: contact_form.php:1255
400
  msgid "User name"
401
  msgstr "Имя пользователя"
402
 
403
  # @ contact_form
404
+ #: contact_form.php:1257
405
  msgid ""
406
  "The name of the user who fills the form will be used in the field 'From'."
407
  msgstr ""
409
  "заполняет форму."
410
 
411
  # @ contact_form
412
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
413
  msgid "Email"
414
  msgstr "Email"
415
 
416
  # @ contact_form
417
+ #: contact_form.php:1279
418
  msgid "User email"
419
  msgstr "Email пользователя"
420
 
421
  # @ contact_form
422
+ #: contact_form.php:1281
423
  msgid ""
424
  "The email address of the user who fills the form will be used in the field "
425
  "'From'."
427
  "В поле \"От\" в письме будет использоваться email того пользователя, который "
428
  "заполняет форму."
429
 
430
+ #: contact_form.php:1290
431
  msgid ""
432
  "If this option is changed, email messages may be moved to the spam folder or "
433
  "email delivery failures may occur."
436
  "будут попадать в спам или не будут доставлены."
437
 
438
  # @ contact_form
439
+ #: contact_form.php:1299
440
  msgid "Required symbol"
441
  msgstr "Символ, отображающий обязательное поле"
442
 
443
  # @ contact_form
444
+ #: contact_form.php:1309
445
  msgid "Fields"
446
  msgstr "Поля"
447
 
448
  # @ contact_form
449
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
450
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
451
  msgid "Used"
452
  msgstr "Используется"
453
 
454
  # @ contact_form
455
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
456
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
457
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
458
  msgid "Required"
459
  msgstr "Обязательное"
460
 
461
  # @ contact_form
462
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
463
+ #: contact_form.php:1445 contact_form.php:1469
464
  msgid "Visible"
465
  msgstr "Видимое"
466
 
467
  # @ contact_form
468
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
469
+ #: contact_form.php:1449 contact_form.php:1473
470
  msgid "Disabled for editing"
471
  msgstr "Нет возможности редактировать"
472
 
473
  # @ contact_form
474
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
475
+ #: contact_form.php:1477
476
  msgid "Field's default value"
477
  msgstr "Значение полей по умолчанию"
478
 
479
  # @ contact_form
480
+ #: contact_form.php:1322
481
  msgid "Department selectbox"
482
  msgstr "Список отделов"
483
 
484
+ #: contact_form.php:1354
485
  msgid "Use User's name as a default value if the user is logged in."
486
  msgstr ""
487
  "Использовать имя Пользователя как значение по умолчанию, если пользователь "
488
  "залогинен."
489
 
490
+ #: contact_form.php:1355 contact_form.php:1415
491
  msgid ""
492
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
493
  "in users."
496
  "к залогиненным пользователям."
497
 
498
  # @ contact_form
499
+ #: contact_form.php:1361
500
  msgid "Location selectbox"
501
  msgstr "Список местоположений"
502
 
503
+ #: contact_form.php:1414
504
  msgid "Use User's email as a default value if the user is logged in."
505
  msgstr ""
506
  "Использовать Email Пользователя как значение по умолчанию, если пользователь "
507
  "залогинен."
508
 
509
  # @ contact_form
510
+ #: contact_form.php:1498
511
  msgid "Attachment block"
512
  msgstr "Блок \"Прикрепить файл\""
513
 
514
  # @ contact_form
515
+ #: contact_form.php:1500
516
  msgid "Users can attach the following file formats"
517
  msgstr "Пользователи могут прикрепить файлы таких типов"
518
 
519
  # @ contact_form
520
+ #: contact_form.php:1518
521
  msgid "Add to the form"
522
  msgstr "Добавить в форму"
523
 
524
  # @ contact_form
525
+ #: contact_form.php:1523
526
  msgid "Tips below the Attachment"
527
  msgstr "Пояснения после блока \"Прикрепить файл\""
528
 
529
  # @ contact_form
530
+ #: contact_form.php:1530
531
  msgid "'Send me a copy' block"
532
  msgstr "Блок \"Отправить мне копию\""
533
 
534
+ #: contact_form.php:1558
535
  msgid "Activate for network"
536
  msgstr "Активировать для сети"
537
 
538
  # @ contact_form
539
+ #: contact_form.php:1649
540
  msgid "Agreement checkbox"
541
  msgstr "Чекбокс согласия с условиями"
542
 
543
  # @ contact_form
544
+ #: contact_form.php:1649
545
  msgid "Required checkbox for submitting the form"
546
  msgstr "Обязательный чекбокс для отправки формы"
547
 
548
  # @ contact_form
549
+ #: contact_form.php:1650
550
  msgid "Optional checkbox"
551
  msgstr "Дополнительный чекбокс"
552
 
553
  # @ contact_form
554
+ #: contact_form.php:1650
555
  msgid "Optional checkbox, the results of which will be displayed in email"
556
  msgstr "Дополнительный чекбокс, результаты которого будут отображены в email"
557
 
558
  # @ contact_form
559
+ #: contact_form.php:1668
560
  msgid "Delete an attachment file from the server after the email is sent"
561
  msgstr "Удалить прикрепленный файл с сервера после отправки email"
562
 
563
  # @ contact_form
564
+ #: contact_form.php:1674
565
  msgid "Email in HTML format sending"
566
  msgstr "Отправка еmail в формате HTML"
567
 
568
  # @ contact_form
569
+ #: contact_form.php:1678
570
  msgid "Display additional info in the email"
571
  msgstr "Отображение дополнительной информации в письме"
572
 
573
  # @ contact_form
574
+ #: contact_form.php:1684
575
  msgid "Sent from (IP address)"
576
  msgstr "Отправлено от (IP адрес)"
577
 
578
  # @ contact_form
579
+ #: contact_form.php:1684
580
  msgid "Example: Sent from (IP address):\t127.0.0.1"
581
  msgstr "Пример: Отправлено от (IP адрес):\t127.0.0.1"
582
 
583
  # @ contact_form
584
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
585
  msgid "Date/Time"
586
  msgstr "Дата/Время"
587
 
588
  # @ contact_form
589
+ #: contact_form.php:1685
590
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
591
  msgstr "Пример: Дата/Время:\tАвгуст 19, 2013 8:50"
592
 
593
  # @ contact_form
594
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
595
  msgid "Sent from (referer)"
596
  msgstr "Отправлено от (referer)"
597
 
598
  # @ contact_form
599
+ #: contact_form.php:1686
600
  msgid ""
601
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
602
  msgstr ""
604
  "us/"
605
 
606
  # @ contact_form
607
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
608
  msgid "Using (user agent)"
609
  msgstr "Используя (user agent)"
610
 
611
  # @ contact_form
612
+ #: contact_form.php:1687
613
  msgid ""
614
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
615
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
618
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
619
 
620
  # @ contact_form
621
+ #: contact_form.php:1692
622
  msgid "Language settings for the field names in the form"
623
  msgstr "Языковые настройки для имён полей в форме"
624
 
625
  # @ contact_form
626
+ #: contact_form.php:1701
627
  msgid "Add a language"
628
  msgstr "Добавить язык"
629
 
630
  # @ contact_form
631
+ #: contact_form.php:1705
632
  msgid "Change the names of the contact form fields and error messages"
633
  msgstr "Изменить имена полей контактной формы и сообщений об ошибках"
634
 
635
  # @ contact_form
636
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
637
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
638
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
639
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
640
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
641
  msgid "Default"
642
  msgstr "По умолчанию"
643
 
644
  # @ contact_form
645
+ #: contact_form.php:1723 contact_form.php:1761
646
  msgid "click to expand/hide the list"
647
  msgstr "нажмите чтобы развернуть/свернуть список"
648
 
649
  # @ contact_form
650
+ #: contact_form.php:1732 contact_form.php:1770
651
  msgid "Tips below the Attachment block"
652
  msgstr "Пояснения после блока \"Прикрепить файл\""
653
 
654
  # @ contact_form
655
+ #: contact_form.php:1735 contact_form.php:1773
656
  msgid "Error message for the Name field"
657
  msgstr "Сообщение об ошибке для поля Имя"
658
 
659
  # @ contact_form
660
+ #: contact_form.php:1736 contact_form.php:1774
661
  msgid "Error message for the Address field"
662
  msgstr "Сообщение об ошибке для поля Адрес"
663
 
664
  # @ contact_form
665
+ #: contact_form.php:1737 contact_form.php:1775
666
  msgid "Error message for the Email field"
667
  msgstr "Сообщение об ошибке для поля Email"
668
 
669
  # @ contact_form
670
+ #: contact_form.php:1738 contact_form.php:1776
671
  msgid "Error message for the Phone field"
672
  msgstr "Сообщение об ошибке для поля Телефон"
673
 
674
  # @ contact_form
675
+ #: contact_form.php:1739 contact_form.php:1777
676
  msgid "Error message for the Subject field"
677
  msgstr "Сообщение об ошибке для поля Тема"
678
 
679
  # @ contact_form
680
+ #: contact_form.php:1740 contact_form.php:1778
681
  msgid "Error message for the Message field"
682
  msgstr "Сообщение об ошибке для поля Сообщение"
683
 
684
  # @ contact_form
685
+ #: contact_form.php:1741 contact_form.php:1779
686
  msgid "Error message about the file type for the Attachment field"
687
  msgstr "Сообщение об ошибке о типе файла для поля \"Прикрепить файл\""
688
 
689
  # @ contact_form
690
+ #: contact_form.php:1742 contact_form.php:1780
691
  msgid ""
692
  "Error message while uploading a file for the Attachment field to the server"
693
  msgstr ""
694
  "Сообщение об ошибке при загрузке файла на сервер для поля \"Прикрепить файл\""
695
 
696
  # @ contact_form
697
+ #: contact_form.php:1743 contact_form.php:1781
698
  msgid "Error message while moving the file for the Attachment field"
699
  msgstr "Сообщение об ошибке при перемещении файла для поля \"Прикрепить файл\""
700
 
701
  # @ contact_form
702
+ #: contact_form.php:1744 contact_form.php:1782
703
  msgid "Error message when file size limit for the Attachment field is exceeded"
704
  msgstr ""
705
  "Сообщение об ошибке, когда размер файла превышает размер разрешенного "
706
  "сервером для поля \"Прикрепить файл\""
707
 
708
  # @ contact_form
709
+ #: contact_form.php:1745 contact_form.php:1783
710
  msgid "Error message for the Captcha field"
711
  msgstr "Сообщение об ошибке для поля Captcha"
712
 
713
  # @ contact_form
714
+ #: contact_form.php:1746 contact_form.php:1784
715
  msgid "Error message for the whole form"
716
  msgstr "Сообщение об ошибке для всей формы"
717
 
718
  # @ contact_form
719
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
720
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
721
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
722
+ #: contact_form.php:3604
723
  msgid "Use shortcode"
724
  msgstr "Используйте шорткод"
725
 
726
  # @ contact_form
727
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
728
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
729
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
730
+ #: contact_form.php:3604
731
  msgid "for this language"
732
  msgstr "для данного языка"
733
 
734
  # @ contact_form
735
+ #: contact_form.php:1797
736
  msgid "Use the changed names of the contact form fields in the email"
737
  msgstr "Использовать измененные имена полей контактной формы в email"
738
 
739
  # @ contact_form
740
+ #: contact_form.php:1803
741
  msgid "Action after email is sent"
742
  msgstr "Действие после отправки письма"
743
 
744
  # @ contact_form
745
+ #: contact_form.php:1805
746
  msgid "Display text"
747
  msgstr "Отобразить текст"
748
 
749
  # @ contact_form
750
+ #: contact_form.php:1819 contact_form.php:1833
751
  msgid "Text"
752
  msgstr "Текст"
753
 
754
  # @ contact_form
755
+ #: contact_form.php:1844
756
  msgid "Redirect to the page"
757
  msgstr "Перенаправление на страницу"
758
 
759
  # @ contact_form
760
+ #: contact_form.php:1845
761
  msgid "Url"
762
  msgstr "Ссылка"
763
 
764
+ #: contact_form.php:1856
765
  msgid "Add field 'Reply-To' to the email header"
766
  msgstr "Добавить поле 'Reply-To' в заголовок емейла"
767
 
768
+ #: contact_form.php:1858
769
  msgid "Field 'Reply-To' will be initialized by user email"
770
  msgstr ""
771
  "Поле 'Reply-To' будет проинициализировано электронной почтой пользователя"
772
 
773
  # @ contact_form_pro
774
+ #: contact_form.php:1862
775
  msgid "Auto Response"
776
  msgstr "Автоответ"
777
 
778
  # @ contact_form
779
+ #: contact_form.php:1866
780
  #, php-format
781
  msgid ""
782
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
788
  "названия блога."
789
 
790
  # @ default
791
+ #: contact_form.php:1888 contact_form.php:2419
792
  msgid "Save Changes"
793
  msgstr "Сохранить изменения"
794
 
795
+ #: contact_form.php:1901
796
  #, php-format
797
  msgid ""
798
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
800
  "Пожалуйста, включите JavaScript для изменения опций '%s', '%s' и сортировки "
801
  "полей."
802
 
803
+ #: contact_form.php:1901 contact_form.php:1910
804
  msgid "Form layout"
805
  msgstr "Шаблон формы"
806
 
807
  # @ contact_form
808
+ #: contact_form.php:1901 contact_form.php:1922
809
  msgid "Submit position"
810
  msgstr "Позиция кнопки 'Отправить'"
811
 
812
+ #: contact_form.php:1914
813
  msgid "One column"
814
  msgstr "Одна колонка"
815
 
816
+ #: contact_form.php:1917
817
  msgid "Two columns"
818
  msgstr "Две колонки"
819
 
820
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
821
+ #: contact_form.php:1998
822
  msgid "Left"
823
  msgstr "Слева"
824
 
825
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
826
+ #: contact_form.php:2004
827
  msgid "Right"
828
  msgstr "Справа"
829
 
830
+ #: contact_form.php:1934
831
+ msgid "Width"
832
+ msgstr "Ширина"
833
+
834
+ #: contact_form.php:1941
835
+ msgid "Custom"
836
+ msgstr "Пользовательская"
837
+
838
+ #: contact_form.php:1948
839
+ msgid "px"
840
+ msgstr "пикс"
841
+
842
+ #: contact_form.php:1961
843
  msgid "Form align"
844
  msgstr "Выравнивание формы"
845
 
846
+ #: contact_form.php:1968 contact_form.php:2001
847
  msgid "Center"
848
  msgstr "По центру"
849
 
850
  # @ contact_form
851
+ #: contact_form.php:1976
852
  msgid "Labels position"
853
  msgstr "Расположение имен полей"
854
 
855
+ #: contact_form.php:1980
856
  msgid "Top"
857
  msgstr "Сверху"
858
 
859
+ #: contact_form.php:1989
860
  msgid "Bottom"
861
  msgstr "Снизу"
862
 
863
+ #: contact_form.php:1994
864
  msgid "Labels align"
865
+ msgstr "Выравнивание имен полей"
866
 
867
  # @ contact_form
868
+ #: contact_form.php:2009
869
  msgid "Errors output"
870
  msgstr "Отображение ошибок"
871
 
872
  # @ contact_form
873
+ #: contact_form.php:2012
874
  msgid "Display error messages"
875
  msgstr "Отображать сообщения об ошибках"
876
 
877
  # @ contact_form
878
+ #: contact_form.php:2013
879
  msgid "Color of the input field errors."
880
  msgstr "Отображать ошибки цветом для полей ввода."
881
 
882
  # @ contact_form
883
+ #: contact_form.php:2014
884
  msgid "Display error messages & color of the input field errors"
885
  msgstr "Отображать сообщения об ошибках и цвет полей ввода с ошибками"
886
 
887
  # @ contact_form
888
+ #: contact_form.php:2019
889
  msgid "Add placeholder to the input blocks"
890
  msgstr "Добавить вспомогательный текст в поля ввода"
891
 
892
  # @ contact_form
893
+ #: contact_form.php:2025
894
  msgid "Add tooltips"
895
  msgstr "Добавить подсказки"
896
 
897
  # @ contact_form
898
+ #: contact_form.php:2039
899
  msgid "Email address"
900
  msgstr "Email"
901
 
902
  # @ contact_form
903
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
904
  msgid "Phone Number"
905
  msgstr "Телефон"
906
 
907
  # @ contact_form
908
+ #: contact_form.php:2070
909
  msgid "Style options"
910
  msgstr "Настройки стиля"
911
 
912
  # @ contact_form
913
+ #: contact_form.php:2074
914
  msgid "Text color"
915
  msgstr "Цвет текста"
916
 
917
  # @ contact_form
918
+ #: contact_form.php:2079
919
  msgid "Label text color"
920
  msgstr "Цвет текста"
921
 
922
  # @ contact_form
923
+ #: contact_form.php:2084
924
  msgid "Placeholder color"
925
  msgstr "Цвет вспомогательного текста"
926
 
927
  # @ contact_form
928
+ #: contact_form.php:2089
929
  msgid "Errors color"
930
  msgstr "Цвет ошибок"
931
 
932
  # @ contact_form
933
+ #: contact_form.php:2094
934
  msgid "Error text color"
935
  msgstr "Цвет текста для ошибок"
936
 
937
  # @ contact_form
938
+ #: contact_form.php:2099
939
  msgid "Background color of the input field errors"
940
  msgstr "Цвет фона для полей ввода с ошибками"
941
 
942
  # @ contact_form
943
+ #: contact_form.php:2104
944
  msgid "Border color of the input field errors"
945
  msgstr "Цвет рамки для полей ввода с ошибками"
946
 
947
  # @ contact_form
948
+ #: contact_form.php:2109
949
  msgid "Placeholder color of the input field errors"
950
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
951
 
952
  # @ contact_form
953
+ #: contact_form.php:2114
954
  msgid "Input fields"
955
  msgstr "Поля ввода"
956
 
957
  # @ contact_form
958
+ #: contact_form.php:2119
959
  msgid "Input fields background color"
960
  msgstr "Цвет фона для полей ввода"
961
 
962
  # @ contact_form
963
+ #: contact_form.php:2124
964
  msgid "Text fields color"
965
  msgstr "Цвет текста для полей ввода"
966
 
967
  # @ contact_form
968
+ #: contact_form.php:2128
969
  msgid "Border width in px, numbers only"
970
  msgstr "Ширина рамки в пикселях, только цифры"
971
 
972
  # @ contact_form
973
+ #: contact_form.php:2133 contact_form.php:2157
974
  msgid "Border color"
975
  msgstr "Цвет рамки"
976
 
977
  # @ contact_form
978
+ #: contact_form.php:2138
979
  msgid "Submit button"
980
  msgstr "Кнопка Отправить"
981
 
982
  # @ contact_form
983
+ #: contact_form.php:2142
984
  msgid "Width in px, numbers only"
985
  msgstr "Ширина в пикселях, только цифры"
986
 
987
  # @ contact_form
988
+ #: contact_form.php:2147
989
  msgid "Button color"
990
  msgstr "Цвет кнопки"
991
 
992
  # @ contact_form
993
+ #: contact_form.php:2152
994
  msgid "Button text color"
995
  msgstr "Цвет текста для кнопки"
996
 
997
  # @ contact_form
998
+ #: contact_form.php:2181
999
  msgid "Contact Form | Preview"
1000
  msgstr "Contact Form | Предпросмотр"
1001
 
1002
+ #: contact_form.php:2182
1003
  msgid "Drag the necessary field to sort fields."
1004
  msgstr "Перетащите необходимое поле для сортировки полей."
1005
 
1006
  # @ contact_form
1007
+ #: contact_form.php:2408
1008
  msgid ""
1009
  "If you would like to add the Contact Form to your website, just copy and "
1010
  "paste this shortcode to your post or page or widget"
1013
  "скопировать и вставить шорткод в контент страницы, записи или виджета"
1014
 
1015
  # @ contact_form
1016
+ #: contact_form.php:2536
1017
  msgid "Sorry, email message could not be delivered."
1018
  msgstr "Извините, ваш email не может быть отправлен."
1019
 
1020
  # @ contact_form
1021
+ #: contact_form.php:3137 contact_form.php:3139
1022
  msgid "Sent from (ip address)"
1023
  msgstr "Отправлено от (IP адрес)"
1024
 
1025
  # @ contact_form
1026
+ #: contact_form.php:3167
1027
  msgid "Contact from"
1028
  msgstr "Контакт из"
1029
 
1030
  # @ contact_form
1031
+ #: contact_form.php:3172 contact_form.php:3221
1032
  msgid "Site"
1033
  msgstr "Сайт"
1034
 
1035
  # @ contact_form
1036
+ #: contact_form.php:3351
1037
  msgid ""
1038
  "If you can see this MIME, it means that the MIME type is not supported by "
1039
  "your email client!"
1042
  "MIME тип!"
1043
 
1044
  # @ contact_form
1045
+ #: contact_form.php:3434
1046
  msgid "FAQ"
1047
  msgstr "FAQ"
1048
 
1049
  # @ contact_form
1050
+ #: contact_form.php:3435
1051
  msgid "Support"
1052
  msgstr "Поддержка"
1053
 
1054
  # @ contact_form
1055
+ #: contact_form.php:3484
1056
  msgid "Are you sure that you want to delete this language data?"
1057
  msgstr "Вы действительно хотите удалить данные для этого языка?"
1058
 
1059
  # @ contact_form
1060
+ #: contact_form.php:3505
1061
  msgid "Add multiple forms"
1062
  msgstr "Добавить несколько форм"
1063
 
1064
+ #: contact_form.php:3505
1065
  msgid ""
1066
  "Install Contact Form Multi plugin to create unlimited number of contact "
1067
  "forms."
1070
  "контактных форм."
1071
 
1072
  # @ contact_form
1073
+ #: contact_form.php:3510
1074
  msgid "Learn more"
1075
  msgstr "Подробнее"
1076
 
1077
+ #: contact_form.php:3751
1078
  msgid "Close notice"
1079
  msgstr "Закрыть"
1080
 
1081
  # @ contact_form
1082
+ #: contact_form.php:3756
1083
  msgid "allows to store your messages to the database."
1084
  msgstr "позволяет хранить ваши сообщения в базе данных."
1085
 
1086
  # @ contact_form
1087
+ #: contact_form.php:3757
1088
  msgid "Manage messages that have been sent from your website."
1089
  msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
1090
 
1091
  # @ contact_form
1092
+ #: contact_form.php:3760
1093
  msgid "Learn More"
1094
  msgstr "Подробнее"
1095
 
1096
  # @ contact_form
1097
+ #: contact_form.php:3820
1098
  msgid "Contact form"
1099
  msgstr "Контактная форма"
1100
 
1101
  # @ contact_form
1102
+ #: contact_form.php:3833 contact_form.php:3843
1103
  msgid "Language"
1104
  msgstr "Язык"
1105
 
1106
+ #~ msgid ""
1107
+ #~ "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
1108
+ #~ "replace it with %3s. If you close this message it'll appear again after "
1109
+ #~ "deprecated shortcode reuse."
1110
+ #~ msgstr ""
1111
+ #~ "Устаревший шорткод %1s плагина %2s используется на вашем сайте. "
1112
+ #~ "Пожалуйста, замените его на %3s. Если закрыть это сообщение, оно появится "
1113
+ #~ "снова после повторного использования устаревшего шорткода."
 
 
languages/contact-form-plugin-sk_SK.mo CHANGED
Binary file
languages/contact-form-plugin-sk_SK.po CHANGED
@@ -6,8 +6,8 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Contact Form\n"
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2017-02-27 16:23+0300\n"
10
- "PO-Revision-Date: 2017-02-27 16:23+0300\n"
11
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
12
  "Language-Team: Michal Vittek, www.wp.sk <michal.vittek@wp.sk>\n"
13
  "Language: sk_SK\n"
@@ -21,54 +21,54 @@ msgstr ""
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: contact_form.php:42 contact_form.php:1066
25
  msgid "Contact Form Settings"
26
  msgstr "Nastavenie kontaktného formulára"
27
 
28
- #: contact_form.php:42
29
  msgid "Contact Form"
30
  msgstr "Kontaktný formulár"
31
 
32
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
33
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
34
- #: contact_form.php:3138 contact_form.php:3184
35
  msgid "Name"
36
  msgstr "Meno"
37
 
38
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
39
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
40
- #: contact_form.php:3190
41
  msgid "Address"
42
  msgstr "Adresa"
43
 
44
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
45
- #: contact_form.php:1767
46
  msgid "Email Address"
47
  msgstr "Emailová adresa"
48
 
49
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
50
- #: contact_form.php:1768
51
  msgid "Phone number"
52
  msgstr "Telefónne číslo"
53
 
54
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
55
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
56
- #: contact_form.php:3199
57
  msgid "Subject"
58
  msgstr "Predmet"
59
 
60
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
61
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
62
- #: contact_form.php:3203
63
  msgid "Message"
64
  msgstr "Správa"
65
 
66
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
67
- #: contact_form.php:2040
68
  msgid "Attachment"
69
  msgstr "Príloha"
70
 
71
- #: contact_form.php:302
72
  msgid ""
73
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
74
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -76,77 +76,77 @@ msgstr ""
76
  "Podporované typy súborov: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
77
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
78
 
79
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
80
  msgid "Send me a copy"
81
  msgstr "Zaslať mi kópiu"
82
 
83
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
84
  msgid "Submit"
85
  msgstr "Odoslať"
86
 
87
- #: contact_form.php:305
88
  msgid "Your name is required."
89
  msgstr "Vaše meno je vyžadované."
90
 
91
- #: contact_form.php:306
92
  msgid "Address is required."
93
  msgstr "Adresa je vyžadovaná."
94
 
95
- #: contact_form.php:307
96
  msgid "A valid email address is required."
97
  msgstr "Platný E-mail je vyžadovaný."
98
 
99
- #: contact_form.php:308
100
  msgid "Phone number is required."
101
  msgstr "Telefónne číslo je vyžadované."
102
 
103
- #: contact_form.php:309
104
  msgid "Subject is required."
105
  msgstr "Predmet je vyžadovaný."
106
 
107
- #: contact_form.php:310
108
  msgid "Message text is required."
109
  msgstr "Správa je vyžadovaná."
110
 
111
- #: contact_form.php:311
112
  msgid "File format is not valid."
113
  msgstr "Nesprávny typ súboru."
114
 
115
- #: contact_form.php:312
116
  msgid "File upload error."
117
  msgstr "Nahrávanie súboru zlyhalo."
118
 
119
- #: contact_form.php:313
120
  msgid "The file could not be uploaded."
121
  msgstr "Súbor nemôže byť nahraný."
122
 
123
- #: contact_form.php:314
124
  msgid "This file is too large."
125
  msgstr "Súbor je príliš veľký."
126
 
127
- #: contact_form.php:315
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Prosím opíšte CAPTCHA text."
130
 
131
- #: contact_form.php:316
132
  msgid "Please make corrections below and try again."
133
  msgstr "Prosím opravte chyby a skúste to opäť."
134
 
135
- #: contact_form.php:318
136
  msgid "Thank you for contacting us."
137
  msgstr "Ďakujeme za správu."
138
 
139
- #: contact_form.php:761 contact_form.php:1023
140
  msgid "Settings saved."
141
  msgstr "Nastavenie uložené."
142
 
143
- #: contact_form.php:968
144
  msgid ""
145
  "Email 'FROM' field option was changed, which may cause email messages being "
146
  "moved to the spam folder or email delivery failures."
147
  msgstr ""
148
 
149
- #: contact_form.php:978
150
  msgid ""
151
  "If the 'Redirect to page' option is selected then the URL field should be in "
152
  "the following format"
@@ -154,62 +154,62 @@ msgstr ""
154
  "Ak je vybratá možnosť \"Presmerovanie na stránku\" potom pole URL by malo "
155
  "mať nasledujúci formát"
156
 
157
- #: contact_form.php:985
158
  msgid "Such user does not exist."
159
  msgstr "Taký užívateľ neexistuje."
160
 
161
- #: contact_form.php:995
162
  msgid ""
163
  "Please enter a valid email address in the 'Use this email address' field."
164
  msgstr "Zadajte platnú e-mailovú adresu v poli \"Použiť tento email\"."
165
 
166
- #: contact_form.php:1003
167
  msgid "Please enter a valid email address in the 'FROM' field."
168
  msgstr "Zadajte platnú e-mailovú adresu v poli \"Od\"."
169
 
170
- #: contact_form.php:1025
171
  msgid "Settings are not saved."
172
  msgstr "Nastavenie sa neuloží."
173
 
174
- #: contact_form.php:1063
175
  msgid "All plugin settings were restored."
176
  msgstr ""
177
 
178
- #: contact_form.php:1069
179
  msgid "How to Use Step-by-step Instruction"
180
  msgstr ""
181
 
182
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
183
  msgid "Settings"
184
  msgstr "Nastavenia"
185
 
186
- #: contact_form.php:1073
187
  #, fuzzy
188
  msgid "Additional settings"
189
  msgstr "Ďalšie nastavenia"
190
 
191
- #: contact_form.php:1074
192
  msgid "Appearance"
193
  msgstr ""
194
 
195
- #: contact_form.php:1075
196
  msgid "Custom code"
197
  msgstr ""
198
 
199
- #: contact_form.php:1076
200
  msgid "Go PRO"
201
  msgstr "Zakúpiť PRO"
202
 
203
- #: contact_form.php:1087
204
  #, fuzzy
205
  msgid "Notice"
206
  msgstr "Oznam:"
207
 
208
- #: contact_form.php:1091
209
  msgid "NEW_FORM"
210
  msgstr ""
211
 
212
- #: contact_form.php:1092
213
  msgid ""
214
  "If you want to create multiple contact forms, please install the Contact "
215
  "Form Multi plugin."
@@ -217,7 +217,7 @@ msgstr ""
217
  "Ak si želáte vytvoriť viac formulárov, prosím nainštalujte si modul Contact "
218
  "Form Multi "
219
 
220
- #: contact_form.php:1101
221
  #, fuzzy, php-format
222
  msgid ""
223
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -226,7 +226,7 @@ msgstr ""
226
  "Ak by ste chceli pridať kontaktný formulár na svoje webové stránky, stačí "
227
  "skopírovať a vložiť shortcode k príspevku, stránke alebo widgetu:"
228
 
229
- #: contact_form.php:1107
230
  #, php-format
231
  msgid ""
232
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -235,7 +235,7 @@ msgid ""
235
  "language."
236
  msgstr ""
237
 
238
- #: contact_form.php:1116
239
  msgid ""
240
  "If you leave the fields empty, the messages will be sent to the email "
241
  "address specified during registration."
@@ -243,17 +243,17 @@ msgstr ""
243
  "Ak necháte pole prázdne, budú správy posielané na e-mailovú adresu zadanú "
244
  "pri registrácii."
245
 
246
- #: contact_form.php:1119
247
  #, fuzzy
248
  msgid "The user's email address"
249
  msgstr "Užívateľova e-mailová adresa:"
250
 
251
- #: contact_form.php:1123
252
  #, fuzzy
253
  msgid "Select a username"
254
  msgstr "Vytvorte užívateľské meno"
255
 
256
- #: contact_form.php:1136
257
  #, fuzzy
258
  msgid ""
259
  "Select a username of the person who should get the messages from the contact "
@@ -262,253 +262,253 @@ msgstr ""
262
  "Zadajte užívateľské meno osoby, ktorá by mala dostať správy z kontaktného "
263
  "formulára."
264
 
265
- #: contact_form.php:1140
266
  #, fuzzy
267
  msgid "Use this email address"
268
  msgstr "Použíte tento email::"
269
 
270
- #: contact_form.php:1144
271
  #, fuzzy
272
  msgid "Enter the email address for receiving messages"
273
  msgstr "Zadajte e-mailovú adresu, ktorú chcete do správy presmerovať."
274
 
275
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
276
- #: contact_form.php:1939 contact_form.php:3471
277
  msgid "Close"
278
  msgstr ""
279
 
280
- #: contact_form.php:1155
281
  #, fuzzy
282
  msgid "Add department selectbox to the contact form"
283
  msgstr "Pridať oddelenie výberového oddielu do formulára:"
284
 
285
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
286
- #: contact_form.php:2145
287
  msgid "If you upgrade to Pro version all your settings will be saved."
288
  msgstr "Ak si zakúpite PRO verziu, vaše nastavenia sa uložia."
289
 
290
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
291
- #: contact_form.php:1880 contact_form.php:2152
292
  msgid "Upgrade to Pro"
293
  msgstr ""
294
 
295
- #: contact_form.php:1178
296
  msgid "Save emails to the database"
297
  msgstr "Uložiť emaily do databázy"
298
 
299
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
300
  msgid "Using"
301
  msgstr "Používa"
302
 
303
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
304
- #: contact_form.php:1625
305
  msgid "Please activate the appropriate option on"
306
  msgstr ""
307
 
308
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
309
- #: contact_form.php:1628
310
  #, fuzzy
311
  msgid "settings page"
312
  msgstr "stránku nastavení"
313
 
314
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
315
- #: contact_form.php:1635
316
  msgid "Activate"
317
  msgstr "Aktivovať"
318
 
319
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
320
- #: contact_form.php:1640
321
  msgid "Download"
322
  msgstr "Stiahnuť"
323
 
324
- #: contact_form.php:1224
325
  msgid "Sending method"
326
  msgstr ""
327
 
328
- #: contact_form.php:1229
329
  msgid "Wp-mail"
330
  msgstr "Wp-mail"
331
 
332
- #: contact_form.php:1231
333
  #, fuzzy
334
  msgid "You can use the Wordpress wp_mail function for mailing"
335
  msgstr "Môžete použiť wp_mail funkcie pre zasielanie"
336
 
337
- #: contact_form.php:1234
338
  msgid "Mail"
339
  msgstr "Email"
340
 
341
- #: contact_form.php:1236
342
  #, fuzzy
343
  msgid "You can use the PHP mail function for mailing"
344
  msgstr "Môžete použiť wp_mail funkcie pre zasielanie"
345
 
346
- #: contact_form.php:1241
347
  msgid "'FROM' field"
348
  msgstr ""
349
 
350
- #: contact_form.php:1257
351
  msgid "User name"
352
  msgstr "Používateľské meno"
353
 
354
- #: contact_form.php:1259
355
  msgid ""
356
  "The name of the user who fills the form will be used in the field 'From'."
357
  msgstr "Meno, zobrazené ako odosielateľ emailu."
358
 
359
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
360
  msgid "Email"
361
  msgstr "Email"
362
 
363
- #: contact_form.php:1281
364
  msgid "User email"
365
  msgstr "Používateľský email"
366
 
367
- #: contact_form.php:1283
368
  msgid ""
369
  "The email address of the user who fills the form will be used in the field "
370
  "'From'."
371
  msgstr ""
372
  "Emailová adresa používateľa, ktorý vyplní formulár bude použitá v poli \"Od\""
373
 
374
- #: contact_form.php:1292
375
  msgid ""
376
  "If this option is changed, email messages may be moved to the spam folder or "
377
  "email delivery failures may occur."
378
  msgstr ""
379
 
380
- #: contact_form.php:1301
381
  msgid "Required symbol"
382
  msgstr "Vyžadovaný znak"
383
 
384
- #: contact_form.php:1311
385
  msgid "Fields"
386
  msgstr "Polia"
387
 
388
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
389
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
390
  msgid "Used"
391
  msgstr "Použité"
392
 
393
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
394
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
395
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
396
  msgid "Required"
397
  msgstr "Vyžadované"
398
 
399
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
400
- #: contact_form.php:1447 contact_form.php:1471
401
  msgid "Visible"
402
  msgstr "Viditeľné"
403
 
404
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
405
- #: contact_form.php:1451 contact_form.php:1475
406
  msgid "Disabled for editing"
407
  msgstr "Nedá sa upraviť"
408
 
409
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
410
- #: contact_form.php:1479
411
  msgid "Field's default value"
412
  msgstr "Základná hodnota pola"
413
 
414
- #: contact_form.php:1324
415
  #, fuzzy
416
  msgid "Department selectbox"
417
  msgstr "Poloha výberového oddielu"
418
 
419
- #: contact_form.php:1356
420
  msgid "Use User's name as a default value if the user is logged in."
421
  msgstr ""
422
 
423
- #: contact_form.php:1357 contact_form.php:1417
424
  msgid ""
425
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
426
  "in users."
427
  msgstr ""
428
 
429
- #: contact_form.php:1363
430
  msgid "Location selectbox"
431
  msgstr "Poloha výberového oddielu"
432
 
433
- #: contact_form.php:1416
434
  msgid "Use User's email as a default value if the user is logged in."
435
  msgstr ""
436
 
437
- #: contact_form.php:1500
438
  msgid "Attachment block"
439
  msgstr "Blok príloh"
440
 
441
- #: contact_form.php:1502
442
  msgid "Users can attach the following file formats"
443
  msgstr "Užívatelia môžu pripojiť nasledujúce formáty súborov"
444
 
445
- #: contact_form.php:1520
446
  msgid "Add to the form"
447
  msgstr "Pridať do formulára"
448
 
449
- #: contact_form.php:1525
450
  msgid "Tips below the Attachment"
451
  msgstr "Rady zobrazené pod prílohami"
452
 
453
- #: contact_form.php:1532
454
  msgid "'Send me a copy' block"
455
  msgstr "Zobraziť blok 'Zaslať kópiu'"
456
 
457
- #: contact_form.php:1560
458
  #, fuzzy
459
  msgid "Activate for network"
460
  msgstr "Aktivované pluginy"
461
 
462
- #: contact_form.php:1651
463
  msgid "Agreement checkbox"
464
  msgstr "Označenie súhlasu"
465
 
466
- #: contact_form.php:1651
467
  msgid "Required checkbox for submitting the form"
468
  msgstr "Vyžaduje označenie súhlasu pri odoslaní formulára"
469
 
470
- #: contact_form.php:1652
471
  msgid "Optional checkbox"
472
  msgstr "Voliteľné zaškrtávacie políčko"
473
 
474
- #: contact_form.php:1652
475
  msgid "Optional checkbox, the results of which will be displayed in email"
476
  msgstr "Voliteľné zaškrtávacie políčko, jeho výsledok bude zobrazený v emaile"
477
 
478
- #: contact_form.php:1670
479
  msgid "Delete an attachment file from the server after the email is sent"
480
  msgstr "Vymazať prílohy zo servera po odoslaní emailu"
481
 
482
- #: contact_form.php:1676
483
  msgid "Email in HTML format sending"
484
  msgstr "Povoliť HTML formátovanie"
485
 
486
- #: contact_form.php:1680
487
  msgid "Display additional info in the email"
488
  msgstr "Zobraziť ďalšie informácie v e-maile"
489
 
490
- #: contact_form.php:1686
491
  #, fuzzy
492
  msgid "Sent from (IP address)"
493
  msgstr "Odoslané z (ip adresa)"
494
 
495
- #: contact_form.php:1686
496
  msgid "Example: Sent from (IP address):\t127.0.0.1"
497
  msgstr "Príklad: Odoslané z (IP addresa):\t127.0.0.1"
498
 
499
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
500
  msgid "Date/Time"
501
  msgstr "Datum / Čas"
502
 
503
- #: contact_form.php:1687
504
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
505
  msgstr "Príklad: Dátum/Čas:\tAugust 19, 2013 8:50 pm"
506
 
507
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
508
  msgid "Sent from (referer)"
509
  msgstr "Odoslané z"
510
 
511
- #: contact_form.php:1688
512
  #, fuzzy
513
  msgid ""
514
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
@@ -516,11 +516,11 @@ msgstr ""
516
  "Príklad: Odoslané pomocou (odkaz):\thttp://bestwebsoft.com/contacts/contact-"
517
  "us/"
518
 
519
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
520
  msgid "Using (user agent)"
521
  msgstr "Použitie (user agent)"
522
 
523
- #: contact_form.php:1689
524
  msgid ""
525
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
526
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -528,134 +528,134 @@ msgstr ""
528
  "Príklad: Prehliadač (používateľ):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
529
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
530
 
531
- #: contact_form.php:1694
532
  msgid "Language settings for the field names in the form"
533
  msgstr "Nastavenie jazyka pre názvy polí vo formulári"
534
 
535
- #: contact_form.php:1703
536
  msgid "Add a language"
537
  msgstr "Pridať jazyk"
538
 
539
- #: contact_form.php:1707
540
  msgid "Change the names of the contact form fields and error messages"
541
  msgstr "Zmena názvov polí kontaktného formulára a chybových hlásení"
542
 
543
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
544
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
545
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
546
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
547
- #: contact_form.php:2132 contact_form.php:2137
548
  msgid "Default"
549
  msgstr "Základná"
550
 
551
- #: contact_form.php:1725 contact_form.php:1763
552
  msgid "click to expand/hide the list"
553
  msgstr "kliknite pre rozbalenie/schovanie zoznamu"
554
 
555
- #: contact_form.php:1734 contact_form.php:1772
556
  msgid "Tips below the Attachment block"
557
  msgstr "Zobrazenie rád pod blokom príloh"
558
 
559
- #: contact_form.php:1737 contact_form.php:1775
560
  msgid "Error message for the Name field"
561
  msgstr "Chybová správa v poli: Meno"
562
 
563
- #: contact_form.php:1738 contact_form.php:1776
564
  msgid "Error message for the Address field"
565
  msgstr "Chybová správa v poli: Adresa"
566
 
567
- #: contact_form.php:1739 contact_form.php:1777
568
  msgid "Error message for the Email field"
569
  msgstr "Chybová správa v poli: Email"
570
 
571
- #: contact_form.php:1740 contact_form.php:1778
572
  msgid "Error message for the Phone field"
573
  msgstr "Chybová správa v poli: Telefón"
574
 
575
- #: contact_form.php:1741 contact_form.php:1779
576
  msgid "Error message for the Subject field"
577
  msgstr "Chybová správa v poli: Predmet"
578
 
579
- #: contact_form.php:1742 contact_form.php:1780
580
  msgid "Error message for the Message field"
581
  msgstr "Chybová správa v poli: Správa"
582
 
583
- #: contact_form.php:1743 contact_form.php:1781
584
  msgid "Error message about the file type for the Attachment field"
585
  msgstr "Chybová správa o type súbora v poli príloh"
586
 
587
- #: contact_form.php:1744 contact_form.php:1782
588
  msgid ""
589
  "Error message while uploading a file for the Attachment field to the server"
590
  msgstr "Chybová správa pri neúspešnom nahraní súbora na server"
591
 
592
- #: contact_form.php:1745 contact_form.php:1783
593
  msgid "Error message while moving the file for the Attachment field"
594
  msgstr "Chybová správa pri neúspešnom presune súbora do pola prílohy"
595
 
596
- #: contact_form.php:1746 contact_form.php:1784
597
  msgid "Error message when file size limit for the Attachment field is exceeded"
598
  msgstr "Chybová správa pri prekročení maximálnej veľkosti súboru"
599
 
600
- #: contact_form.php:1747 contact_form.php:1785
601
  msgid "Error message for the Captcha field"
602
  msgstr "Chybová správa v poli Captcha"
603
 
604
- #: contact_form.php:1748 contact_form.php:1786
605
  msgid "Error message for the whole form"
606
  msgstr "Chybová správa celého formulára"
607
 
608
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
609
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
610
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
611
- #: contact_form.php:3540
612
  msgid "Use shortcode"
613
  msgstr "Použite krátky kód"
614
 
615
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
616
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
617
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
618
- #: contact_form.php:3540
619
  msgid "for this language"
620
  msgstr "pre tento jazyk"
621
 
622
- #: contact_form.php:1799
623
  msgid "Use the changed names of the contact form fields in the email"
624
  msgstr "Použite zmenu názvov polí v emaile"
625
 
626
- #: contact_form.php:1805
627
  msgid "Action after email is sent"
628
  msgstr "Akcia po zaslaní mailu."
629
 
630
- #: contact_form.php:1807
631
  msgid "Display text"
632
  msgstr "Zobraziť text"
633
 
634
- #: contact_form.php:1821 contact_form.php:1835
635
  msgid "Text"
636
  msgstr "Text"
637
 
638
- #: contact_form.php:1846
639
  msgid "Redirect to the page"
640
  msgstr "Presmerovať na stránku"
641
 
642
- #: contact_form.php:1847
643
  msgid "Url"
644
  msgstr "Url"
645
 
646
- #: contact_form.php:1858
647
  msgid "Add field 'Reply-To' to the email header"
648
  msgstr ""
649
 
650
- #: contact_form.php:1860
651
  msgid "Field 'Reply-To' will be initialized by user email"
652
  msgstr ""
653
 
654
- #: contact_form.php:1864
655
  msgid "Auto Response"
656
  msgstr ""
657
 
658
- #: contact_form.php:1868
659
  #, php-format
660
  msgid ""
661
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -663,182 +663,194 @@ msgid ""
663
  "name."
664
  msgstr ""
665
 
666
- #: contact_form.php:1890 contact_form.php:2389
667
  msgid "Save Changes"
668
  msgstr "Uložiť zmeny"
669
 
670
- #: contact_form.php:1903
671
  #, php-format
672
  msgid ""
673
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
674
  msgstr ""
675
 
676
- #: contact_form.php:1903 contact_form.php:1912
677
  msgid "Form layout"
678
  msgstr ""
679
 
680
- #: contact_form.php:1903 contact_form.php:1924
681
  #, fuzzy
682
  msgid "Submit position"
683
  msgstr "Porvrdzovacie tlačidlo"
684
 
685
- #: contact_form.php:1916
686
  msgid "One column"
687
  msgstr ""
688
 
689
- #: contact_form.php:1919
690
  msgid "Two columns"
691
  msgstr ""
692
 
693
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
694
- #: contact_form.php:1980
695
  msgid "Left"
696
  msgstr ""
697
 
698
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
699
- #: contact_form.php:1986
700
  msgid "Right"
701
  msgstr ""
702
 
703
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
704
  msgid "Form align"
705
  msgstr ""
706
 
707
- #: contact_form.php:1950 contact_form.php:1983
708
  msgid "Center"
709
  msgstr ""
710
 
711
- #: contact_form.php:1958
712
  #, fuzzy
713
  msgid "Labels position"
714
  msgstr "Porvrdzovacie tlačidlo"
715
 
716
- #: contact_form.php:1962
717
  msgid "Top"
718
  msgstr ""
719
 
720
- #: contact_form.php:1971
721
  msgid "Bottom"
722
  msgstr ""
723
 
724
- #: contact_form.php:1976
725
  msgid "Labels align"
726
  msgstr ""
727
 
728
- #: contact_form.php:1991
729
  msgid "Errors output"
730
  msgstr "Chybový výstup"
731
 
732
- #: contact_form.php:1994
733
  msgid "Display error messages"
734
  msgstr "Zobrazí chybové správy"
735
 
736
- #: contact_form.php:1995
737
  msgid "Color of the input field errors."
738
  msgstr "Farba textu chybových polí."
739
 
740
- #: contact_form.php:1996
741
  msgid "Display error messages & color of the input field errors"
742
  msgstr "Zobrazí chybové správy a ich farbu"
743
 
744
- #: contact_form.php:2001
745
  msgid "Add placeholder to the input blocks"
746
  msgstr "Pridať zástupný znak do blokov"
747
 
748
- #: contact_form.php:2007
749
  msgid "Add tooltips"
750
  msgstr "Pridať popisky"
751
 
752
- #: contact_form.php:2021
753
  msgid "Email address"
754
  msgstr "Emailová adresa"
755
 
756
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
757
  msgid "Phone Number"
758
  msgstr "Tel. číslo"
759
 
760
- #: contact_form.php:2052
761
  msgid "Style options"
762
  msgstr "Nastavenie štýlu"
763
 
764
- #: contact_form.php:2056
765
  msgid "Text color"
766
  msgstr "Farba textu"
767
 
768
- #: contact_form.php:2061
769
  msgid "Label text color"
770
  msgstr "Označenie farby textu"
771
 
772
- #: contact_form.php:2066
773
  msgid "Placeholder color"
774
  msgstr "Farba zástupného znaku"
775
 
776
- #: contact_form.php:2071
777
  msgid "Errors color"
778
  msgstr "Farba chýb"
779
 
780
- #: contact_form.php:2076
781
  msgid "Error text color"
782
  msgstr "Farba textu"
783
 
784
- #: contact_form.php:2081
785
  msgid "Background color of the input field errors"
786
  msgstr "Farba pozadia polí chýb"
787
 
788
- #: contact_form.php:2086
789
  msgid "Border color of the input field errors"
790
  msgstr "Farba ohraničenia polí chýb"
791
 
792
- #: contact_form.php:2091
793
  msgid "Placeholder color of the input field errors"
794
  msgstr "Farba zástupného znaku polí chýb"
795
 
796
- #: contact_form.php:2096
797
  msgid "Input fields"
798
  msgstr "Vložiť polia"
799
 
800
- #: contact_form.php:2101
801
  msgid "Input fields background color"
802
  msgstr "Farba pozadia polí"
803
 
804
- #: contact_form.php:2106
805
  msgid "Text fields color"
806
  msgstr "Farba textových polí"
807
 
808
- #: contact_form.php:2110
809
  msgid "Border width in px, numbers only"
810
  msgstr "Šírka orámovania v px, vkladajte iba číselné hodnoty"
811
 
812
- #: contact_form.php:2115 contact_form.php:2139
813
  msgid "Border color"
814
  msgstr "Farba ohraničenia"
815
 
816
- #: contact_form.php:2120
817
  msgid "Submit button"
818
  msgstr "Porvrdzovacie tlačidlo"
819
 
820
- #: contact_form.php:2124
821
  msgid "Width in px, numbers only"
822
  msgstr "Šírka v px, vkladajte iba číselné hodnoty"
823
 
824
- #: contact_form.php:2129
825
  msgid "Button color"
826
  msgstr "Farba tlačidla"
827
 
828
- #: contact_form.php:2134
829
  msgid "Button text color"
830
  msgstr "Farba textu v tlačidle"
831
 
832
- #: contact_form.php:2163
833
  #, fuzzy
834
  msgid "Contact Form | Preview"
835
  msgstr "Kontaktný formulár Pro | Zobrazenie"
836
 
837
- #: contact_form.php:2164
838
  msgid "Drag the necessary field to sort fields."
839
  msgstr ""
840
 
841
- #: contact_form.php:2376
842
  #, fuzzy
843
  msgid ""
844
  "If you would like to add the Contact Form to your website, just copy and "
@@ -847,23 +859,23 @@ msgstr ""
847
  "Ak by ste chceli pridať kontaktný formulár na svoje webové stránky, stačí "
848
  "skopírovať a vložiť shortcode k príspevku, stránke alebo widgetu:"
849
 
850
- #: contact_form.php:2504
851
  msgid "Sorry, email message could not be delivered."
852
  msgstr "Prepáčte, správa nemohla byť doručená."
853
 
854
- #: contact_form.php:3094 contact_form.php:3096
855
  msgid "Sent from (ip address)"
856
  msgstr "Odoslané z (ip adresa)"
857
 
858
- #: contact_form.php:3124
859
  msgid "Contact from"
860
  msgstr "Kontaktný formulár"
861
 
862
- #: contact_form.php:3129 contact_form.php:3178
863
  msgid "Site"
864
  msgstr "Stránka"
865
 
866
- #: contact_form.php:3308
867
  msgid ""
868
  "If you can see this MIME, it means that the MIME type is not supported by "
869
  "your email client!"
@@ -871,70 +883,62 @@ msgstr ""
871
  "Ak vidíte túto MIME, znamená to, že MIME typ nie je podporovaný vyším e-"
872
  "mailovým klientom!"
873
 
874
- #: contact_form.php:3391
875
  msgid "FAQ"
876
  msgstr "Často kladené otázky"
877
 
878
- #: contact_form.php:3392
879
  msgid "Support"
880
  msgstr "Podpora"
881
 
882
- #: contact_form.php:3441
883
  msgid "Are you sure that you want to delete this language data?"
884
  msgstr "Naozaj chcete vymazať tieto jazykové dáta?"
885
 
886
- #: contact_form.php:3462
887
  #, fuzzy
888
  msgid "Add multiple forms"
889
  msgstr "Pridať do formulára"
890
 
891
- #: contact_form.php:3462
892
  msgid ""
893
  "Install Contact Form Multi plugin to create unlimited number of contact "
894
  "forms."
895
  msgstr ""
896
 
897
- #: contact_form.php:3467
898
  #, fuzzy
899
  msgid "Learn more"
900
  msgstr "Zistiť viac"
901
 
902
- #: contact_form.php:3693
903
  msgid "Close notice"
904
  msgstr ""
905
 
906
- #: contact_form.php:3698
907
  #, fuzzy
908
  msgid "allows to store your messages to the database."
909
  msgstr ""
910
  "<strong>Contact Form to DB</strong> vám dovolí ukladať spravy do databázy."
911
 
912
- #: contact_form.php:3699
913
  msgid "Manage messages that have been sent from your website."
914
  msgstr "Spravujte správy, ktoré boli odoslané z vašej stránky"
915
 
916
- #: contact_form.php:3702
917
  msgid "Learn More"
918
  msgstr "Zistiť viac"
919
 
920
- #: contact_form.php:3762
921
  #, fuzzy
922
  msgid "Contact form"
923
  msgstr "Kontaktný formulár"
924
 
925
- #: contact_form.php:3775 contact_form.php:3785
926
  #, fuzzy
927
  msgid "Language"
928
  msgstr "Pridať jazyk"
929
 
930
- #: includes/deprecated.php:168
931
- #, php-format
932
- msgid ""
933
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
934
- "replace it with %3s. If you close this message it'll appear again after "
935
- "deprecated shortcode reuse."
936
- msgstr ""
937
-
938
  #, fuzzy
939
  #~ msgid "Unlock premium options by upgrading to Pro version"
940
  #~ msgstr "Odblokujte prémiové nastavenia kúpením PRO verzie modulu."
6
  msgstr ""
7
  "Project-Id-Version: Contact Form\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2017-05-23 15:16+0300\n"
10
+ "PO-Revision-Date: 2017-05-23 15:16+0300\n"
11
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
12
  "Language-Team: Michal Vittek, www.wp.sk <michal.vittek@wp.sk>\n"
13
  "Language: sk_SK\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: contact_form.php:37 contact_form.php:1064
25
  msgid "Contact Form Settings"
26
  msgstr "Nastavenie kontaktného formulára"
27
 
28
+ #: contact_form.php:37
29
  msgid "Contact Form"
30
  msgstr "Kontaktný formulár"
31
 
32
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
33
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
34
+ #: contact_form.php:3181 contact_form.php:3227
35
  msgid "Name"
36
  msgstr "Meno"
37
 
38
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
39
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
40
+ #: contact_form.php:3233
41
  msgid "Address"
42
  msgstr "Adresa"
43
 
44
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
45
+ #: contact_form.php:1765
46
  msgid "Email Address"
47
  msgstr "Emailová adresa"
48
 
49
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
50
+ #: contact_form.php:1766
51
  msgid "Phone number"
52
  msgstr "Telefónne číslo"
53
 
54
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
55
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
56
+ #: contact_form.php:3242
57
  msgid "Subject"
58
  msgstr "Predmet"
59
 
60
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
61
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
62
+ #: contact_form.php:3246
63
  msgid "Message"
64
  msgstr "Správa"
65
 
66
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
67
+ #: contact_form.php:2058
68
  msgid "Attachment"
69
  msgstr "Príloha"
70
 
71
+ #: contact_form.php:287
72
  msgid ""
73
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
74
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
76
  "Podporované typy súborov: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
77
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
78
 
79
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
80
  msgid "Send me a copy"
81
  msgstr "Zaslať mi kópiu"
82
 
83
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
84
  msgid "Submit"
85
  msgstr "Odoslať"
86
 
87
+ #: contact_form.php:290
88
  msgid "Your name is required."
89
  msgstr "Vaše meno je vyžadované."
90
 
91
+ #: contact_form.php:291
92
  msgid "Address is required."
93
  msgstr "Adresa je vyžadovaná."
94
 
95
+ #: contact_form.php:292
96
  msgid "A valid email address is required."
97
  msgstr "Platný E-mail je vyžadovaný."
98
 
99
+ #: contact_form.php:293
100
  msgid "Phone number is required."
101
  msgstr "Telefónne číslo je vyžadované."
102
 
103
+ #: contact_form.php:294
104
  msgid "Subject is required."
105
  msgstr "Predmet je vyžadovaný."
106
 
107
+ #: contact_form.php:295
108
  msgid "Message text is required."
109
  msgstr "Správa je vyžadovaná."
110
 
111
+ #: contact_form.php:296
112
  msgid "File format is not valid."
113
  msgstr "Nesprávny typ súboru."
114
 
115
+ #: contact_form.php:297
116
  msgid "File upload error."
117
  msgstr "Nahrávanie súboru zlyhalo."
118
 
119
+ #: contact_form.php:298
120
  msgid "The file could not be uploaded."
121
  msgstr "Súbor nemôže byť nahraný."
122
 
123
+ #: contact_form.php:299
124
  msgid "This file is too large."
125
  msgstr "Súbor je príliš veľký."
126
 
127
+ #: contact_form.php:300
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Prosím opíšte CAPTCHA text."
130
 
131
+ #: contact_form.php:301
132
  msgid "Please make corrections below and try again."
133
  msgstr "Prosím opravte chyby a skúste to opäť."
134
 
135
+ #: contact_form.php:303
136
  msgid "Thank you for contacting us."
137
  msgstr "Ďakujeme za správu."
138
 
139
+ #: contact_form.php:759 contact_form.php:1021
140
  msgid "Settings saved."
141
  msgstr "Nastavenie uložené."
142
 
143
+ #: contact_form.php:966
144
  msgid ""
145
  "Email 'FROM' field option was changed, which may cause email messages being "
146
  "moved to the spam folder or email delivery failures."
147
  msgstr ""
148
 
149
+ #: contact_form.php:976
150
  msgid ""
151
  "If the 'Redirect to page' option is selected then the URL field should be in "
152
  "the following format"
154
  "Ak je vybratá možnosť \"Presmerovanie na stránku\" potom pole URL by malo "
155
  "mať nasledujúci formát"
156
 
157
+ #: contact_form.php:983
158
  msgid "Such user does not exist."
159
  msgstr "Taký užívateľ neexistuje."
160
 
161
+ #: contact_form.php:993
162
  msgid ""
163
  "Please enter a valid email address in the 'Use this email address' field."
164
  msgstr "Zadajte platnú e-mailovú adresu v poli \"Použiť tento email\"."
165
 
166
+ #: contact_form.php:1001
167
  msgid "Please enter a valid email address in the 'FROM' field."
168
  msgstr "Zadajte platnú e-mailovú adresu v poli \"Od\"."
169
 
170
+ #: contact_form.php:1023
171
  msgid "Settings are not saved."
172
  msgstr "Nastavenie sa neuloží."
173
 
174
+ #: contact_form.php:1061
175
  msgid "All plugin settings were restored."
176
  msgstr ""
177
 
178
+ #: contact_form.php:1067
179
  msgid "How to Use Step-by-step Instruction"
180
  msgstr ""
181
 
182
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
183
  msgid "Settings"
184
  msgstr "Nastavenia"
185
 
186
+ #: contact_form.php:1071
187
  #, fuzzy
188
  msgid "Additional settings"
189
  msgstr "Ďalšie nastavenia"
190
 
191
+ #: contact_form.php:1072
192
  msgid "Appearance"
193
  msgstr ""
194
 
195
+ #: contact_form.php:1073
196
  msgid "Custom code"
197
  msgstr ""
198
 
199
+ #: contact_form.php:1074
200
  msgid "Go PRO"
201
  msgstr "Zakúpiť PRO"
202
 
203
+ #: contact_form.php:1085
204
  #, fuzzy
205
  msgid "Notice"
206
  msgstr "Oznam:"
207
 
208
+ #: contact_form.php:1089
209
  msgid "NEW_FORM"
210
  msgstr ""
211
 
212
+ #: contact_form.php:1090
213
  msgid ""
214
  "If you want to create multiple contact forms, please install the Contact "
215
  "Form Multi plugin."
217
  "Ak si želáte vytvoriť viac formulárov, prosím nainštalujte si modul Contact "
218
  "Form Multi "
219
 
220
+ #: contact_form.php:1099
221
  #, fuzzy, php-format
222
  msgid ""
223
  "If you would like to add a Contact Form to your page or post, please use %s "
226
  "Ak by ste chceli pridať kontaktný formulár na svoje webové stránky, stačí "
227
  "skopírovať a vložiť shortcode k príspevku, stránke alebo widgetu:"
228
 
229
+ #: contact_form.php:1105
230
  #, php-format
231
  msgid ""
232
  "You can add the Contact Form to your page or post by clicking on %s button "
235
  "language."
236
  msgstr ""
237
 
238
+ #: contact_form.php:1114
239
  msgid ""
240
  "If you leave the fields empty, the messages will be sent to the email "
241
  "address specified during registration."
243
  "Ak necháte pole prázdne, budú správy posielané na e-mailovú adresu zadanú "
244
  "pri registrácii."
245
 
246
+ #: contact_form.php:1117
247
  #, fuzzy
248
  msgid "The user's email address"
249
  msgstr "Užívateľova e-mailová adresa:"
250
 
251
+ #: contact_form.php:1121
252
  #, fuzzy
253
  msgid "Select a username"
254
  msgstr "Vytvorte užívateľské meno"
255
 
256
+ #: contact_form.php:1134
257
  #, fuzzy
258
  msgid ""
259
  "Select a username of the person who should get the messages from the contact "
262
  "Zadajte užívateľské meno osoby, ktorá by mala dostať správy z kontaktného "
263
  "formulára."
264
 
265
+ #: contact_form.php:1138
266
  #, fuzzy
267
  msgid "Use this email address"
268
  msgstr "Použíte tento email::"
269
 
270
+ #: contact_form.php:1142
271
  #, fuzzy
272
  msgid "Enter the email address for receiving messages"
273
  msgstr "Zadajte e-mailovú adresu, ktorú chcete do správy presmerovať."
274
 
275
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
276
+ #: contact_form.php:1957 contact_form.php:3514
277
  msgid "Close"
278
  msgstr ""
279
 
280
+ #: contact_form.php:1153
281
  #, fuzzy
282
  msgid "Add department selectbox to the contact form"
283
  msgstr "Pridať oddelenie výberového oddielu do formulára:"
284
 
285
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
286
+ #: contact_form.php:2163
287
  msgid "If you upgrade to Pro version all your settings will be saved."
288
  msgstr "Ak si zakúpite PRO verziu, vaše nastavenia sa uložia."
289
 
290
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
291
+ #: contact_form.php:1878 contact_form.php:2170
292
  msgid "Upgrade to Pro"
293
  msgstr ""
294
 
295
+ #: contact_form.php:1176
296
  msgid "Save emails to the database"
297
  msgstr "Uložiť emaily do databázy"
298
 
299
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
300
  msgid "Using"
301
  msgstr "Používa"
302
 
303
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
304
+ #: contact_form.php:1623
305
  msgid "Please activate the appropriate option on"
306
  msgstr ""
307
 
308
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
309
+ #: contact_form.php:1626
310
  #, fuzzy
311
  msgid "settings page"
312
  msgstr "stránku nastavení"
313
 
314
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
315
+ #: contact_form.php:1633
316
  msgid "Activate"
317
  msgstr "Aktivovať"
318
 
319
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
320
+ #: contact_form.php:1638
321
  msgid "Download"
322
  msgstr "Stiahnuť"
323
 
324
+ #: contact_form.php:1222
325
  msgid "Sending method"
326
  msgstr ""
327
 
328
+ #: contact_form.php:1227
329
  msgid "Wp-mail"
330
  msgstr "Wp-mail"
331
 
332
+ #: contact_form.php:1229
333
  #, fuzzy
334
  msgid "You can use the Wordpress wp_mail function for mailing"
335
  msgstr "Môžete použiť wp_mail funkcie pre zasielanie"
336
 
337
+ #: contact_form.php:1232
338
  msgid "Mail"
339
  msgstr "Email"
340
 
341
+ #: contact_form.php:1234
342
  #, fuzzy
343
  msgid "You can use the PHP mail function for mailing"
344
  msgstr "Môžete použiť wp_mail funkcie pre zasielanie"
345
 
346
+ #: contact_form.php:1239
347
  msgid "'FROM' field"
348
  msgstr ""
349
 
350
+ #: contact_form.php:1255
351
  msgid "User name"
352
  msgstr "Používateľské meno"
353
 
354
+ #: contact_form.php:1257
355
  msgid ""
356
  "The name of the user who fills the form will be used in the field 'From'."
357
  msgstr "Meno, zobrazené ako odosielateľ emailu."
358
 
359
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
360
  msgid "Email"
361
  msgstr "Email"
362
 
363
+ #: contact_form.php:1279
364
  msgid "User email"
365
  msgstr "Používateľský email"
366
 
367
+ #: contact_form.php:1281
368
  msgid ""
369
  "The email address of the user who fills the form will be used in the field "
370
  "'From'."
371
  msgstr ""
372
  "Emailová adresa používateľa, ktorý vyplní formulár bude použitá v poli \"Od\""
373
 
374
+ #: contact_form.php:1290
375
  msgid ""
376
  "If this option is changed, email messages may be moved to the spam folder or "
377
  "email delivery failures may occur."
378
  msgstr ""
379
 
380
+ #: contact_form.php:1299
381
  msgid "Required symbol"
382
  msgstr "Vyžadovaný znak"
383
 
384
+ #: contact_form.php:1309
385
  msgid "Fields"
386
  msgstr "Polia"
387
 
388
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
389
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
390
  msgid "Used"
391
  msgstr "Použité"
392
 
393
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
394
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
395
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
396
  msgid "Required"
397
  msgstr "Vyžadované"
398
 
399
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
400
+ #: contact_form.php:1445 contact_form.php:1469
401
  msgid "Visible"
402
  msgstr "Viditeľné"
403
 
404
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
405
+ #: contact_form.php:1449 contact_form.php:1473
406
  msgid "Disabled for editing"
407
  msgstr "Nedá sa upraviť"
408
 
409
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
410
+ #: contact_form.php:1477
411
  msgid "Field's default value"
412
  msgstr "Základná hodnota pola"
413
 
414
+ #: contact_form.php:1322
415
  #, fuzzy
416
  msgid "Department selectbox"
417
  msgstr "Poloha výberového oddielu"
418
 
419
+ #: contact_form.php:1354
420
  msgid "Use User's name as a default value if the user is logged in."
421
  msgstr ""
422
 
423
+ #: contact_form.php:1355 contact_form.php:1415
424
  msgid ""
425
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
426
  "in users."
427
  msgstr ""
428
 
429
+ #: contact_form.php:1361
430
  msgid "Location selectbox"
431
  msgstr "Poloha výberového oddielu"
432
 
433
+ #: contact_form.php:1414
434
  msgid "Use User's email as a default value if the user is logged in."
435
  msgstr ""
436
 
437
+ #: contact_form.php:1498
438
  msgid "Attachment block"
439
  msgstr "Blok príloh"
440
 
441
+ #: contact_form.php:1500
442
  msgid "Users can attach the following file formats"
443
  msgstr "Užívatelia môžu pripojiť nasledujúce formáty súborov"
444
 
445
+ #: contact_form.php:1518
446
  msgid "Add to the form"
447
  msgstr "Pridať do formulára"
448
 
449
+ #: contact_form.php:1523
450
  msgid "Tips below the Attachment"
451
  msgstr "Rady zobrazené pod prílohami"
452
 
453
+ #: contact_form.php:1530
454
  msgid "'Send me a copy' block"
455
  msgstr "Zobraziť blok 'Zaslať kópiu'"
456
 
457
+ #: contact_form.php:1558
458
  #, fuzzy
459
  msgid "Activate for network"
460
  msgstr "Aktivované pluginy"
461
 
462
+ #: contact_form.php:1649
463
  msgid "Agreement checkbox"
464
  msgstr "Označenie súhlasu"
465
 
466
+ #: contact_form.php:1649
467
  msgid "Required checkbox for submitting the form"
468
  msgstr "Vyžaduje označenie súhlasu pri odoslaní formulára"
469
 
470
+ #: contact_form.php:1650
471
  msgid "Optional checkbox"
472
  msgstr "Voliteľné zaškrtávacie políčko"
473
 
474
+ #: contact_form.php:1650
475
  msgid "Optional checkbox, the results of which will be displayed in email"
476
  msgstr "Voliteľné zaškrtávacie políčko, jeho výsledok bude zobrazený v emaile"
477
 
478
+ #: contact_form.php:1668
479
  msgid "Delete an attachment file from the server after the email is sent"
480
  msgstr "Vymazať prílohy zo servera po odoslaní emailu"
481
 
482
+ #: contact_form.php:1674
483
  msgid "Email in HTML format sending"
484
  msgstr "Povoliť HTML formátovanie"
485
 
486
+ #: contact_form.php:1678
487
  msgid "Display additional info in the email"
488
  msgstr "Zobraziť ďalšie informácie v e-maile"
489
 
490
+ #: contact_form.php:1684
491
  #, fuzzy
492
  msgid "Sent from (IP address)"
493
  msgstr "Odoslané z (ip adresa)"
494
 
495
+ #: contact_form.php:1684
496
  msgid "Example: Sent from (IP address):\t127.0.0.1"
497
  msgstr "Príklad: Odoslané z (IP addresa):\t127.0.0.1"
498
 
499
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
500
  msgid "Date/Time"
501
  msgstr "Datum / Čas"
502
 
503
+ #: contact_form.php:1685
504
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
505
  msgstr "Príklad: Dátum/Čas:\tAugust 19, 2013 8:50 pm"
506
 
507
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
508
  msgid "Sent from (referer)"
509
  msgstr "Odoslané z"
510
 
511
+ #: contact_form.php:1686
512
  #, fuzzy
513
  msgid ""
514
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
516
  "Príklad: Odoslané pomocou (odkaz):\thttp://bestwebsoft.com/contacts/contact-"
517
  "us/"
518
 
519
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
520
  msgid "Using (user agent)"
521
  msgstr "Použitie (user agent)"
522
 
523
+ #: contact_form.php:1687
524
  msgid ""
525
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
526
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
528
  "Príklad: Prehliadač (používateľ):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
529
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
530
 
531
+ #: contact_form.php:1692
532
  msgid "Language settings for the field names in the form"
533
  msgstr "Nastavenie jazyka pre názvy polí vo formulári"
534
 
535
+ #: contact_form.php:1701
536
  msgid "Add a language"
537
  msgstr "Pridať jazyk"
538
 
539
+ #: contact_form.php:1705
540
  msgid "Change the names of the contact form fields and error messages"
541
  msgstr "Zmena názvov polí kontaktného formulára a chybových hlásení"
542
 
543
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
544
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
545
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
546
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
547
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
548
  msgid "Default"
549
  msgstr "Základná"
550
 
551
+ #: contact_form.php:1723 contact_form.php:1761
552
  msgid "click to expand/hide the list"
553
  msgstr "kliknite pre rozbalenie/schovanie zoznamu"
554
 
555
+ #: contact_form.php:1732 contact_form.php:1770
556
  msgid "Tips below the Attachment block"
557
  msgstr "Zobrazenie rád pod blokom príloh"
558
 
559
+ #: contact_form.php:1735 contact_form.php:1773
560
  msgid "Error message for the Name field"
561
  msgstr "Chybová správa v poli: Meno"
562
 
563
+ #: contact_form.php:1736 contact_form.php:1774
564
  msgid "Error message for the Address field"
565
  msgstr "Chybová správa v poli: Adresa"
566
 
567
+ #: contact_form.php:1737 contact_form.php:1775
568
  msgid "Error message for the Email field"
569
  msgstr "Chybová správa v poli: Email"
570
 
571
+ #: contact_form.php:1738 contact_form.php:1776
572
  msgid "Error message for the Phone field"
573
  msgstr "Chybová správa v poli: Telefón"
574
 
575
+ #: contact_form.php:1739 contact_form.php:1777
576
  msgid "Error message for the Subject field"
577
  msgstr "Chybová správa v poli: Predmet"
578
 
579
+ #: contact_form.php:1740 contact_form.php:1778
580
  msgid "Error message for the Message field"
581
  msgstr "Chybová správa v poli: Správa"
582
 
583
+ #: contact_form.php:1741 contact_form.php:1779
584
  msgid "Error message about the file type for the Attachment field"
585
  msgstr "Chybová správa o type súbora v poli príloh"
586
 
587
+ #: contact_form.php:1742 contact_form.php:1780
588
  msgid ""
589
  "Error message while uploading a file for the Attachment field to the server"
590
  msgstr "Chybová správa pri neúspešnom nahraní súbora na server"
591
 
592
+ #: contact_form.php:1743 contact_form.php:1781
593
  msgid "Error message while moving the file for the Attachment field"
594
  msgstr "Chybová správa pri neúspešnom presune súbora do pola prílohy"
595
 
596
+ #: contact_form.php:1744 contact_form.php:1782
597
  msgid "Error message when file size limit for the Attachment field is exceeded"
598
  msgstr "Chybová správa pri prekročení maximálnej veľkosti súboru"
599
 
600
+ #: contact_form.php:1745 contact_form.php:1783
601
  msgid "Error message for the Captcha field"
602
  msgstr "Chybová správa v poli Captcha"
603
 
604
+ #: contact_form.php:1746 contact_form.php:1784
605
  msgid "Error message for the whole form"
606
  msgstr "Chybová správa celého formulára"
607
 
608
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
609
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
610
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
611
+ #: contact_form.php:3604
612
  msgid "Use shortcode"
613
  msgstr "Použite krátky kód"
614
 
615
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
616
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
617
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
618
+ #: contact_form.php:3604
619
  msgid "for this language"
620
  msgstr "pre tento jazyk"
621
 
622
+ #: contact_form.php:1797
623
  msgid "Use the changed names of the contact form fields in the email"
624
  msgstr "Použite zmenu názvov polí v emaile"
625
 
626
+ #: contact_form.php:1803
627
  msgid "Action after email is sent"
628
  msgstr "Akcia po zaslaní mailu."
629
 
630
+ #: contact_form.php:1805
631
  msgid "Display text"
632
  msgstr "Zobraziť text"
633
 
634
+ #: contact_form.php:1819 contact_form.php:1833
635
  msgid "Text"
636
  msgstr "Text"
637
 
638
+ #: contact_form.php:1844
639
  msgid "Redirect to the page"
640
  msgstr "Presmerovať na stránku"
641
 
642
+ #: contact_form.php:1845
643
  msgid "Url"
644
  msgstr "Url"
645
 
646
+ #: contact_form.php:1856
647
  msgid "Add field 'Reply-To' to the email header"
648
  msgstr ""
649
 
650
+ #: contact_form.php:1858
651
  msgid "Field 'Reply-To' will be initialized by user email"
652
  msgstr ""
653
 
654
+ #: contact_form.php:1862
655
  msgid "Auto Response"
656
  msgstr ""
657
 
658
+ #: contact_form.php:1866
659
  #, php-format
660
  msgid ""
661
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
663
  "name."
664
  msgstr ""
665
 
666
+ #: contact_form.php:1888 contact_form.php:2419
667
  msgid "Save Changes"
668
  msgstr "Uložiť zmeny"
669
 
670
+ #: contact_form.php:1901
671
  #, php-format
672
  msgid ""
673
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
674
  msgstr ""
675
 
676
+ #: contact_form.php:1901 contact_form.php:1910
677
  msgid "Form layout"
678
  msgstr ""
679
 
680
+ #: contact_form.php:1901 contact_form.php:1922
681
  #, fuzzy
682
  msgid "Submit position"
683
  msgstr "Porvrdzovacie tlačidlo"
684
 
685
+ #: contact_form.php:1914
686
  msgid "One column"
687
  msgstr ""
688
 
689
+ #: contact_form.php:1917
690
  msgid "Two columns"
691
  msgstr ""
692
 
693
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
694
+ #: contact_form.php:1998
695
  msgid "Left"
696
  msgstr ""
697
 
698
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
699
+ #: contact_form.php:2004
700
  msgid "Right"
701
  msgstr ""
702
 
703
+ #: contact_form.php:1934
704
+ msgid "Width"
705
+ msgstr ""
706
+
707
+ #: contact_form.php:1941
708
+ msgid "Custom"
709
+ msgstr ""
710
+
711
+ #: contact_form.php:1948
712
+ msgid "px"
713
+ msgstr ""
714
+
715
+ #: contact_form.php:1961
716
  msgid "Form align"
717
  msgstr ""
718
 
719
+ #: contact_form.php:1968 contact_form.php:2001
720
  msgid "Center"
721
  msgstr ""
722
 
723
+ #: contact_form.php:1976
724
  #, fuzzy
725
  msgid "Labels position"
726
  msgstr "Porvrdzovacie tlačidlo"
727
 
728
+ #: contact_form.php:1980
729
  msgid "Top"
730
  msgstr ""
731
 
732
+ #: contact_form.php:1989
733
  msgid "Bottom"
734
  msgstr ""
735
 
736
+ #: contact_form.php:1994
737
  msgid "Labels align"
738
  msgstr ""
739
 
740
+ #: contact_form.php:2009
741
  msgid "Errors output"
742
  msgstr "Chybový výstup"
743
 
744
+ #: contact_form.php:2012
745
  msgid "Display error messages"
746
  msgstr "Zobrazí chybové správy"
747
 
748
+ #: contact_form.php:2013
749
  msgid "Color of the input field errors."
750
  msgstr "Farba textu chybových polí."
751
 
752
+ #: contact_form.php:2014
753
  msgid "Display error messages & color of the input field errors"
754
  msgstr "Zobrazí chybové správy a ich farbu"
755
 
756
+ #: contact_form.php:2019
757
  msgid "Add placeholder to the input blocks"
758
  msgstr "Pridať zástupný znak do blokov"
759
 
760
+ #: contact_form.php:2025
761
  msgid "Add tooltips"
762
  msgstr "Pridať popisky"
763
 
764
+ #: contact_form.php:2039
765
  msgid "Email address"
766
  msgstr "Emailová adresa"
767
 
768
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
769
  msgid "Phone Number"
770
  msgstr "Tel. číslo"
771
 
772
+ #: contact_form.php:2070
773
  msgid "Style options"
774
  msgstr "Nastavenie štýlu"
775
 
776
+ #: contact_form.php:2074
777
  msgid "Text color"
778
  msgstr "Farba textu"
779
 
780
+ #: contact_form.php:2079
781
  msgid "Label text color"
782
  msgstr "Označenie farby textu"
783
 
784
+ #: contact_form.php:2084
785
  msgid "Placeholder color"
786
  msgstr "Farba zástupného znaku"
787
 
788
+ #: contact_form.php:2089
789
  msgid "Errors color"
790
  msgstr "Farba chýb"
791
 
792
+ #: contact_form.php:2094
793
  msgid "Error text color"
794
  msgstr "Farba textu"
795
 
796
+ #: contact_form.php:2099
797
  msgid "Background color of the input field errors"
798
  msgstr "Farba pozadia polí chýb"
799
 
800
+ #: contact_form.php:2104
801
  msgid "Border color of the input field errors"
802
  msgstr "Farba ohraničenia polí chýb"
803
 
804
+ #: contact_form.php:2109
805
  msgid "Placeholder color of the input field errors"
806
  msgstr "Farba zástupného znaku polí chýb"
807
 
808
+ #: contact_form.php:2114
809
  msgid "Input fields"
810
  msgstr "Vložiť polia"
811
 
812
+ #: contact_form.php:2119
813
  msgid "Input fields background color"
814
  msgstr "Farba pozadia polí"
815
 
816
+ #: contact_form.php:2124
817
  msgid "Text fields color"
818
  msgstr "Farba textových polí"
819
 
820
+ #: contact_form.php:2128
821
  msgid "Border width in px, numbers only"
822
  msgstr "Šírka orámovania v px, vkladajte iba číselné hodnoty"
823
 
824
+ #: contact_form.php:2133 contact_form.php:2157
825
  msgid "Border color"
826
  msgstr "Farba ohraničenia"
827
 
828
+ #: contact_form.php:2138
829
  msgid "Submit button"
830
  msgstr "Porvrdzovacie tlačidlo"
831
 
832
+ #: contact_form.php:2142
833
  msgid "Width in px, numbers only"
834
  msgstr "Šírka v px, vkladajte iba číselné hodnoty"
835
 
836
+ #: contact_form.php:2147
837
  msgid "Button color"
838
  msgstr "Farba tlačidla"
839
 
840
+ #: contact_form.php:2152
841
  msgid "Button text color"
842
  msgstr "Farba textu v tlačidle"
843
 
844
+ #: contact_form.php:2181
845
  #, fuzzy
846
  msgid "Contact Form | Preview"
847
  msgstr "Kontaktný formulár Pro | Zobrazenie"
848
 
849
+ #: contact_form.php:2182
850
  msgid "Drag the necessary field to sort fields."
851
  msgstr ""
852
 
853
+ #: contact_form.php:2408
854
  #, fuzzy
855
  msgid ""
856
  "If you would like to add the Contact Form to your website, just copy and "
859
  "Ak by ste chceli pridať kontaktný formulár na svoje webové stránky, stačí "
860
  "skopírovať a vložiť shortcode k príspevku, stránke alebo widgetu:"
861
 
862
+ #: contact_form.php:2536
863
  msgid "Sorry, email message could not be delivered."
864
  msgstr "Prepáčte, správa nemohla byť doručená."
865
 
866
+ #: contact_form.php:3137 contact_form.php:3139
867
  msgid "Sent from (ip address)"
868
  msgstr "Odoslané z (ip adresa)"
869
 
870
+ #: contact_form.php:3167
871
  msgid "Contact from"
872
  msgstr "Kontaktný formulár"
873
 
874
+ #: contact_form.php:3172 contact_form.php:3221
875
  msgid "Site"
876
  msgstr "Stránka"
877
 
878
+ #: contact_form.php:3351
879
  msgid ""
880
  "If you can see this MIME, it means that the MIME type is not supported by "
881
  "your email client!"
883
  "Ak vidíte túto MIME, znamená to, že MIME typ nie je podporovaný vyším e-"
884
  "mailovým klientom!"
885
 
886
+ #: contact_form.php:3434
887
  msgid "FAQ"
888
  msgstr "Často kladené otázky"
889
 
890
+ #: contact_form.php:3435
891
  msgid "Support"
892
  msgstr "Podpora"
893
 
894
+ #: contact_form.php:3484
895
  msgid "Are you sure that you want to delete this language data?"
896
  msgstr "Naozaj chcete vymazať tieto jazykové dáta?"
897
 
898
+ #: contact_form.php:3505
899
  #, fuzzy
900
  msgid "Add multiple forms"
901
  msgstr "Pridať do formulára"
902
 
903
+ #: contact_form.php:3505
904
  msgid ""
905
  "Install Contact Form Multi plugin to create unlimited number of contact "
906
  "forms."
907
  msgstr ""
908
 
909
+ #: contact_form.php:3510
910
  #, fuzzy
911
  msgid "Learn more"
912
  msgstr "Zistiť viac"
913
 
914
+ #: contact_form.php:3751
915
  msgid "Close notice"
916
  msgstr ""
917
 
918
+ #: contact_form.php:3756
919
  #, fuzzy
920
  msgid "allows to store your messages to the database."
921
  msgstr ""
922
  "<strong>Contact Form to DB</strong> vám dovolí ukladať spravy do databázy."
923
 
924
+ #: contact_form.php:3757
925
  msgid "Manage messages that have been sent from your website."
926
  msgstr "Spravujte správy, ktoré boli odoslané z vašej stránky"
927
 
928
+ #: contact_form.php:3760
929
  msgid "Learn More"
930
  msgstr "Zistiť viac"
931
 
932
+ #: contact_form.php:3820
933
  #, fuzzy
934
  msgid "Contact form"
935
  msgstr "Kontaktný formulár"
936
 
937
+ #: contact_form.php:3833 contact_form.php:3843
938
  #, fuzzy
939
  msgid "Language"
940
  msgstr "Pridať jazyk"
941
 
 
 
 
 
 
 
 
 
942
  #, fuzzy
943
  #~ msgid "Unlock premium options by upgrading to Pro version"
944
  #~ msgstr "Odblokujte prémiové nastavenia kúpením PRO verzie modulu."
languages/contact-form-plugin-sv_SE.mo CHANGED
Binary file
languages/contact-form-plugin-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: 2017-02-27 16:23+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest "
9
  "<joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
@@ -17,55 +17,55 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:42 contact_form.php:1066
21
  msgid "Contact Form Settings"
22
  msgstr "Kontaktformulärinställningar"
23
 
24
- #: contact_form.php:42
25
  msgid "Contact Form"
26
  msgstr "Kontaktformulär"
27
 
28
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
29
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
30
- #: contact_form.php:3138 contact_form.php:3184
31
  msgid "Name"
32
  msgstr "Namn"
33
 
34
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
35
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
36
- #: contact_form.php:3190
37
  msgid "Address"
38
  msgstr "Adress"
39
 
40
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
41
- #: contact_form.php:1767
42
  msgid "Email Address"
43
  msgstr "E-postadress"
44
 
45
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
46
- #: contact_form.php:1768
47
  #, fuzzy
48
  msgid "Phone number"
49
  msgstr "Telefonnummer:"
50
 
51
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
52
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
53
- #: contact_form.php:3199
54
  msgid "Subject"
55
  msgstr "Ämne"
56
 
57
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
58
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
59
- #: contact_form.php:3203
60
  msgid "Message"
61
  msgstr "Meddelande"
62
 
63
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
64
- #: contact_form.php:2040
65
  msgid "Attachment"
66
  msgstr "Bifoga fil"
67
 
68
- #: contact_form.php:302
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -73,77 +73,77 @@ msgstr ""
73
  "Stödda filformat: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, "
74
  "PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
75
 
76
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
77
  msgid "Send me a copy"
78
  msgstr "Skicka mig en kopia"
79
 
80
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
81
  msgid "Submit"
82
  msgstr "Skicka"
83
 
84
- #: contact_form.php:305
85
  msgid "Your name is required."
86
  msgstr "Ditt namn krävs."
87
 
88
- #: contact_form.php:306
89
  msgid "Address is required."
90
  msgstr "Adress krävs."
91
 
92
- #: contact_form.php:307
93
  msgid "A valid email address is required."
94
  msgstr "En giltig e-postadress krävs."
95
 
96
- #: contact_form.php:308
97
  msgid "Phone number is required."
98
  msgstr "Telefonnummer krävs."
99
 
100
- #: contact_form.php:309
101
  msgid "Subject is required."
102
  msgstr "Ämne krävs."
103
 
104
- #: contact_form.php:310
105
  msgid "Message text is required."
106
  msgstr "Meddelande krävs."
107
 
108
- #: contact_form.php:311
109
  msgid "File format is not valid."
110
  msgstr "Bilageformaten är inte giltigt."
111
 
112
- #: contact_form.php:312
113
  msgid "File upload error."
114
  msgstr "Filuppladdningsfel."
115
 
116
- #: contact_form.php:313
117
  msgid "The file could not be uploaded."
118
  msgstr "Filen kunde inte laddas upp."
119
 
120
- #: contact_form.php:314
121
  msgid "This file is too large."
122
  msgstr "Filen är för stor."
123
 
124
- #: contact_form.php:315
125
  msgid "Please fill out the CAPTCHA."
126
  msgstr "Var god fyll i CAPTCHA."
127
 
128
- #: contact_form.php:316
129
  msgid "Please make corrections below and try again."
130
  msgstr "Var god gör korrigeringar nedan och försök igen."
131
 
132
- #: contact_form.php:318
133
  msgid "Thank you for contacting us."
134
  msgstr "Tack för att du kontaktade oss."
135
 
136
- #: contact_form.php:761 contact_form.php:1023
137
  msgid "Settings saved."
138
  msgstr "Inställningar sparades."
139
 
140
- #: contact_form.php:968
141
  msgid ""
142
  "Email 'FROM' field option was changed, which may cause email messages being "
143
  "moved to the spam folder or email delivery failures."
144
  msgstr ""
145
 
146
- #: contact_form.php:978
147
  msgid ""
148
  "If the 'Redirect to page' option is selected then the URL field should be in "
149
  "the following format"
@@ -151,12 +151,12 @@ msgstr ""
151
  "Om alternativet 'Omdirigera till sida' väljs ska URL-fältet fyllas i med "
152
  "följande format"
153
 
154
- #: contact_form.php:985
155
  #, fuzzy
156
  msgid "Such user does not exist."
157
  msgstr "Användaren finns inte. Inställningarna sparades inte."
158
 
159
- #: contact_form.php:995
160
  #, fuzzy
161
  msgid ""
162
  "Please enter a valid email address in the 'Use this email address' field."
@@ -164,62 +164,62 @@ msgstr ""
164
  "Var god ange en giltig e-postadress i 'FRÅN'-fältet. Inställningarna "
165
  "sparades inte."
166
 
167
- #: contact_form.php:1003
168
  #, fuzzy
169
  msgid "Please enter a valid email address in the 'FROM' field."
170
  msgstr ""
171
  "Var god ange en giltig e-postadress i 'FRÅN'-fältet. Inställningarna "
172
  "sparades inte."
173
 
174
- #: contact_form.php:1025
175
  #, fuzzy
176
  msgid "Settings are not saved."
177
  msgstr "Inställningar sparades."
178
 
179
- #: contact_form.php:1063
180
  msgid "All plugin settings were restored."
181
  msgstr ""
182
 
183
- #: contact_form.php:1069
184
  msgid "How to Use Step-by-step Instruction"
185
  msgstr ""
186
 
187
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
188
  msgid "Settings"
189
  msgstr "Inställningar"
190
 
191
- #: contact_form.php:1073
192
  #, fuzzy
193
  msgid "Additional settings"
194
  msgstr "Ytterligare alternativ"
195
 
196
- #: contact_form.php:1074
197
  msgid "Appearance"
198
  msgstr ""
199
 
200
- #: contact_form.php:1075
201
  msgid "Custom code"
202
  msgstr ""
203
 
204
- #: contact_form.php:1076
205
  msgid "Go PRO"
206
  msgstr ""
207
 
208
- #: contact_form.php:1087
209
  msgid "Notice"
210
  msgstr ""
211
 
212
- #: contact_form.php:1091
213
  msgid "NEW_FORM"
214
  msgstr ""
215
 
216
- #: contact_form.php:1092
217
  msgid ""
218
  "If you want to create multiple contact forms, please install the Contact "
219
  "Form Multi plugin."
220
  msgstr ""
221
 
222
- #: contact_form.php:1101
223
  #, fuzzy, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -228,7 +228,7 @@ msgstr ""
228
  "Om du vill lägga till ett kontaktformulär på din webbplats, kopiera följande "
229
  "kortkod och klistra in den på rätt inlägg, sida eller widget:"
230
 
231
- #: contact_form.php:1107
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -237,7 +237,7 @@ msgid ""
237
  "language."
238
  msgstr ""
239
 
240
- #: contact_form.php:1116
241
  msgid ""
242
  "If you leave the fields empty, the messages will be sent to the email "
243
  "address specified during registration."
@@ -245,17 +245,17 @@ msgstr ""
245
  "Om du lämnar fälten tomma kommer meddelandena att skickas till den e-"
246
  "postadressen som angavs under registreringen."
247
 
248
- #: contact_form.php:1119
249
  #, fuzzy
250
  msgid "The user's email address"
251
  msgstr "Användarens e-postadress:"
252
 
253
- #: contact_form.php:1123
254
  #, fuzzy
255
  msgid "Select a username"
256
  msgstr "Skapa ett användarnamn"
257
 
258
- #: contact_form.php:1136
259
  #, fuzzy
260
  msgid ""
261
  "Select a username of the person who should get the messages from the contact "
@@ -264,97 +264,97 @@ msgstr ""
264
  "Ange ett användarnamn på den användare som ska få meddelanden från "
265
  "kontaktformuläret."
266
 
267
- #: contact_form.php:1140
268
  #, fuzzy
269
  msgid "Use this email address"
270
  msgstr "Använd den här e-postadressen:"
271
 
272
- #: contact_form.php:1144
273
  #, fuzzy
274
  msgid "Enter the email address for receiving messages"
275
  msgstr "Ange en e-postadress som ska användas för att ta emot meddelanden."
276
 
277
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
278
- #: contact_form.php:1939 contact_form.php:3471
279
  msgid "Close"
280
  msgstr ""
281
 
282
- #: contact_form.php:1155
283
  msgid "Add department selectbox to the contact form"
284
  msgstr ""
285
 
286
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
287
- #: contact_form.php:2145
288
  msgid "If you upgrade to Pro version all your settings will be saved."
289
  msgstr ""
290
 
291
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
292
- #: contact_form.php:1880 contact_form.php:2152
293
  msgid "Upgrade to Pro"
294
  msgstr ""
295
 
296
- #: contact_form.php:1178
297
  msgid "Save emails to the database"
298
  msgstr ""
299
 
300
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
301
  msgid "Using"
302
  msgstr ""
303
 
304
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
305
- #: contact_form.php:1625
306
  msgid "Please activate the appropriate option on"
307
  msgstr ""
308
 
309
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
310
- #: contact_form.php:1628
311
  #, fuzzy
312
  msgid "settings page"
313
  msgstr "Extra inställningar"
314
 
315
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
316
- #: contact_form.php:1635
317
  #, fuzzy
318
  msgid "Activate"
319
  msgstr "Aktivera captcha"
320
 
321
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
322
- #: contact_form.php:1640
323
  msgid "Download"
324
  msgstr "Hämta"
325
 
326
- #: contact_form.php:1224
327
  msgid "Sending method"
328
  msgstr ""
329
 
330
- #: contact_form.php:1229
331
  msgid "Wp-mail"
332
  msgstr "Wp-mail"
333
 
334
- #: contact_form.php:1231
335
  #, fuzzy
336
  msgid "You can use the Wordpress wp_mail function for mailing"
337
  msgstr "Du kan använda wp_mail-funktionen för att skicka e-post"
338
 
339
- #: contact_form.php:1234
340
  msgid "Mail"
341
  msgstr "E-post"
342
 
343
- #: contact_form.php:1236
344
  #, fuzzy
345
  msgid "You can use the PHP mail function for mailing"
346
  msgstr "Du kan använda wp_mail-funktionen för att skicka e-post"
347
 
348
- #: contact_form.php:1241
349
  msgid "'FROM' field"
350
  msgstr ""
351
 
352
- #: contact_form.php:1257
353
  #, fuzzy
354
  msgid "User name"
355
  msgstr "Användarens e-post"
356
 
357
- #: contact_form.php:1259
358
  #, fuzzy
359
  msgid ""
360
  "The name of the user who fills the form will be used in the field 'From'."
@@ -362,15 +362,15 @@ msgstr ""
362
  "E-postadressen för användaren som fyller i formuläret kommer att användas i "
363
  "'Från'-fältet."
364
 
365
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
366
  msgid "Email"
367
  msgstr "E-post"
368
 
369
- #: contact_form.php:1281
370
  msgid "User email"
371
  msgstr "Användarens e-post"
372
 
373
- #: contact_form.php:1283
374
  msgid ""
375
  "The email address of the user who fills the form will be used in the field "
376
  "'From'."
@@ -378,292 +378,292 @@ msgstr ""
378
  "E-postadressen för användaren som fyller i formuläret kommer att användas i "
379
  "'Från'-fältet."
380
 
381
- #: contact_form.php:1292
382
  msgid ""
383
  "If this option is changed, email messages may be moved to the spam folder or "
384
  "email delivery failures may occur."
385
  msgstr ""
386
 
387
- #: contact_form.php:1301
388
  #, fuzzy
389
  msgid "Required symbol"
390
  msgstr "Obligatoriska fält"
391
 
392
- #: contact_form.php:1311
393
  msgid "Fields"
394
  msgstr ""
395
 
396
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
397
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
398
  msgid "Used"
399
  msgstr ""
400
 
401
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
402
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
403
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
404
  #, fuzzy
405
  msgid "Required"
406
  msgstr "Obligatoriska fält"
407
 
408
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
409
- #: contact_form.php:1447 contact_form.php:1471
410
  msgid "Visible"
411
  msgstr ""
412
 
413
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
414
- #: contact_form.php:1451 contact_form.php:1475
415
  msgid "Disabled for editing"
416
  msgstr ""
417
 
418
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
419
- #: contact_form.php:1479
420
  msgid "Field's default value"
421
  msgstr ""
422
 
423
- #: contact_form.php:1324
424
  msgid "Department selectbox"
425
  msgstr ""
426
 
427
- #: contact_form.php:1356
428
  msgid "Use User's name as a default value if the user is logged in."
429
  msgstr ""
430
 
431
- #: contact_form.php:1357 contact_form.php:1417
432
  msgid ""
433
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
434
  "in users."
435
  msgstr ""
436
 
437
- #: contact_form.php:1363
438
  msgid "Location selectbox"
439
  msgstr ""
440
 
441
- #: contact_form.php:1416
442
  msgid "Use User's email as a default value if the user is logged in."
443
  msgstr ""
444
 
445
- #: contact_form.php:1500
446
  msgid "Attachment block"
447
  msgstr "Bilageblock"
448
 
449
- #: contact_form.php:1502
450
  msgid "Users can attach the following file formats"
451
  msgstr "Användare kan bifoga filer av följande format"
452
 
453
- #: contact_form.php:1520
454
  msgid "Add to the form"
455
  msgstr ""
456
 
457
- #: contact_form.php:1525
458
  #, fuzzy
459
  msgid "Tips below the Attachment"
460
  msgstr "Visa förklaringar under bilageblocket"
461
 
462
- #: contact_form.php:1532
463
  #, fuzzy
464
  msgid "'Send me a copy' block"
465
  msgstr "Skicka mig en kopia-block"
466
 
467
- #: contact_form.php:1560
468
  #, fuzzy
469
  msgid "Activate for network"
470
  msgstr "Aktiverade tillägg"
471
 
472
- #: contact_form.php:1651
473
  msgid "Agreement checkbox"
474
  msgstr ""
475
 
476
- #: contact_form.php:1651
477
  msgid "Required checkbox for submitting the form"
478
  msgstr ""
479
 
480
- #: contact_form.php:1652
481
  msgid "Optional checkbox"
482
  msgstr ""
483
 
484
- #: contact_form.php:1652
485
  msgid "Optional checkbox, the results of which will be displayed in email"
486
  msgstr ""
487
 
488
- #: contact_form.php:1670
489
  msgid "Delete an attachment file from the server after the email is sent"
490
  msgstr ""
491
 
492
- #: contact_form.php:1676
493
  msgid "Email in HTML format sending"
494
  msgstr ""
495
 
496
- #: contact_form.php:1680
497
  msgid "Display additional info in the email"
498
  msgstr "Visa ytterligare information i meddelandet"
499
 
500
- #: contact_form.php:1686
501
  #, fuzzy
502
  msgid "Sent from (IP address)"
503
  msgstr "Skickat från (ip-adress)"
504
 
505
- #: contact_form.php:1686
506
  #, fuzzy
507
  msgid "Example: Sent from (IP address):\t127.0.0.1"
508
  msgstr "Skickat från (ip-adress)"
509
 
510
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
511
  msgid "Date/Time"
512
  msgstr "Datum/Tid"
513
 
514
- #: contact_form.php:1687
515
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
516
  msgstr ""
517
 
518
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
519
  msgid "Sent from (referer)"
520
  msgstr "Skickat från (referer)"
521
 
522
- #: contact_form.php:1688
523
  msgid ""
524
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
525
  msgstr ""
526
 
527
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
528
  msgid "Using (user agent)"
529
  msgstr "Använder (user agent)"
530
 
531
- #: contact_form.php:1689
532
  msgid ""
533
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
534
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
535
  msgstr ""
536
 
537
- #: contact_form.php:1694
538
  msgid "Language settings for the field names in the form"
539
  msgstr "Språkinställningar för etikettnamn in formuläret"
540
 
541
- #: contact_form.php:1703
542
  msgid "Add a language"
543
  msgstr "Lägg till ett språk"
544
 
545
- #: contact_form.php:1707
546
  msgid "Change the names of the contact form fields and error messages"
547
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
548
 
549
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
550
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
551
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
552
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
553
- #: contact_form.php:2132 contact_form.php:2137
554
  msgid "Default"
555
  msgstr "Standard"
556
 
557
- #: contact_form.php:1725 contact_form.php:1763
558
  msgid "click to expand/hide the list"
559
  msgstr ""
560
 
561
- #: contact_form.php:1734 contact_form.php:1772
562
  #, fuzzy
563
  msgid "Tips below the Attachment block"
564
  msgstr "Visa förklaringar under bilageblocket"
565
 
566
- #: contact_form.php:1737 contact_form.php:1775
567
  msgid "Error message for the Name field"
568
  msgstr "Felmeddelande för namnfältet"
569
 
570
- #: contact_form.php:1738 contact_form.php:1776
571
  msgid "Error message for the Address field"
572
  msgstr "Felmeddelande för adressfältet"
573
 
574
- #: contact_form.php:1739 contact_form.php:1777
575
  msgid "Error message for the Email field"
576
  msgstr "Felmeddelande för e-postadressfältet"
577
 
578
- #: contact_form.php:1740 contact_form.php:1778
579
  msgid "Error message for the Phone field"
580
  msgstr "Felmeddelande för telefonfältet"
581
 
582
- #: contact_form.php:1741 contact_form.php:1779
583
  msgid "Error message for the Subject field"
584
  msgstr "Felmeddelande for ämnesfältet"
585
 
586
- #: contact_form.php:1742 contact_form.php:1780
587
  msgid "Error message for the Message field"
588
  msgstr "Felmeddelande för meddelandefältet"
589
 
590
- #: contact_form.php:1743 contact_form.php:1781
591
  msgid "Error message about the file type for the Attachment field"
592
  msgstr "Felmeddelande för filformat i bilagefältet"
593
 
594
- #: contact_form.php:1744 contact_form.php:1782
595
  msgid ""
596
  "Error message while uploading a file for the Attachment field to the server"
597
  msgstr "Felmeddelande för uppladdning av fil till bilagefältet på servern"
598
 
599
- #: contact_form.php:1745 contact_form.php:1783
600
  msgid "Error message while moving the file for the Attachment field"
601
  msgstr "Felmeddelande för flytt av fil till bilagefältet"
602
 
603
- #: contact_form.php:1746 contact_form.php:1784
604
  msgid "Error message when file size limit for the Attachment field is exceeded"
605
  msgstr "Felmeddelande för max filstorlek i bilagefältet "
606
 
607
- #: contact_form.php:1747 contact_form.php:1785
608
  msgid "Error message for the Captcha field"
609
  msgstr "Felmeddelande för CAPTCHA"
610
 
611
- #: contact_form.php:1748 contact_form.php:1786
612
  msgid "Error message for the whole form"
613
  msgstr "Felmeddelande för formuläret"
614
 
615
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
616
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
617
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
618
- #: contact_form.php:3540
619
  msgid "Use shortcode"
620
  msgstr "Använd kortkod"
621
 
622
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
623
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
624
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
625
- #: contact_form.php:3540
626
  msgid "for this language"
627
  msgstr "för detta språk"
628
 
629
- #: contact_form.php:1799
630
  #, fuzzy
631
  msgid "Use the changed names of the contact form fields in the email"
632
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
633
 
634
- #: contact_form.php:1805
635
  msgid "Action after email is sent"
636
  msgstr "Åtgärd efter meddelande skickats"
637
 
638
- #: contact_form.php:1807
639
  msgid "Display text"
640
  msgstr "Visa text"
641
 
642
- #: contact_form.php:1821 contact_form.php:1835
643
  msgid "Text"
644
  msgstr "Text"
645
 
646
- #: contact_form.php:1846
647
  msgid "Redirect to the page"
648
  msgstr "Omdirigera till sida"
649
 
650
- #: contact_form.php:1847
651
  msgid "Url"
652
  msgstr "Url"
653
 
654
- #: contact_form.php:1858
655
  msgid "Add field 'Reply-To' to the email header"
656
  msgstr ""
657
 
658
- #: contact_form.php:1860
659
  msgid "Field 'Reply-To' will be initialized by user email"
660
  msgstr ""
661
 
662
- #: contact_form.php:1864
663
  msgid "Auto Response"
664
  msgstr ""
665
 
666
- #: contact_form.php:1868
667
  #, php-format
668
  msgid ""
669
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -671,182 +671,194 @@ msgid ""
671
  "name."
672
  msgstr ""
673
 
674
- #: contact_form.php:1890 contact_form.php:2389
675
  msgid "Save Changes"
676
  msgstr "Spara ändringar"
677
 
678
- #: contact_form.php:1903
679
  #, php-format
680
  msgid ""
681
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
682
  msgstr ""
683
 
684
- #: contact_form.php:1903 contact_form.php:1912
685
  msgid "Form layout"
686
  msgstr ""
687
 
688
- #: contact_form.php:1903 contact_form.php:1924
689
  #, fuzzy
690
  msgid "Submit position"
691
  msgstr "Skicka-knapp"
692
 
693
- #: contact_form.php:1916
694
  msgid "One column"
695
  msgstr ""
696
 
697
- #: contact_form.php:1919
698
  msgid "Two columns"
699
  msgstr ""
700
 
701
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
702
- #: contact_form.php:1980
703
  msgid "Left"
704
  msgstr ""
705
 
706
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
707
- #: contact_form.php:1986
708
  msgid "Right"
709
  msgstr ""
710
 
711
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
712
  msgid "Form align"
713
  msgstr ""
714
 
715
- #: contact_form.php:1950 contact_form.php:1983
716
  msgid "Center"
717
  msgstr ""
718
 
719
- #: contact_form.php:1958
720
  #, fuzzy
721
  msgid "Labels position"
722
  msgstr "Skicka-knapp"
723
 
724
- #: contact_form.php:1962
725
  msgid "Top"
726
  msgstr ""
727
 
728
- #: contact_form.php:1971
729
  msgid "Bottom"
730
  msgstr ""
731
 
732
- #: contact_form.php:1976
733
  msgid "Labels align"
734
  msgstr ""
735
 
736
- #: contact_form.php:1991
737
  msgid "Errors output"
738
  msgstr "Felutmatning"
739
 
740
- #: contact_form.php:1994
741
  msgid "Display error messages"
742
  msgstr "Visa felmeddelanden"
743
 
744
- #: contact_form.php:1995
745
  msgid "Color of the input field errors."
746
  msgstr "Färg på inmatningfältsfel."
747
 
748
- #: contact_form.php:1996
749
  msgid "Display error messages & color of the input field errors"
750
  msgstr "Visa felmeddelanden & färg på inmatningfältsfel"
751
 
752
- #: contact_form.php:2001
753
  msgid "Add placeholder to the input blocks"
754
  msgstr "Lägg till platshållare på inmatningsblocken"
755
 
756
- #: contact_form.php:2007
757
  msgid "Add tooltips"
758
  msgstr "Visa verktygstips"
759
 
760
- #: contact_form.php:2021
761
  msgid "Email address"
762
  msgstr "E-postadress"
763
 
764
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
765
  msgid "Phone Number"
766
  msgstr "Telefonnummer"
767
 
768
- #: contact_form.php:2052
769
  msgid "Style options"
770
  msgstr "Stilalternativ"
771
 
772
- #: contact_form.php:2056
773
  msgid "Text color"
774
  msgstr "Textfärg"
775
 
776
- #: contact_form.php:2061
777
  msgid "Label text color"
778
  msgstr "Etikett-textfärg"
779
 
780
- #: contact_form.php:2066
781
  msgid "Placeholder color"
782
  msgstr "Platshållarfärg"
783
 
784
- #: contact_form.php:2071
785
  msgid "Errors color"
786
  msgstr "Felfärg"
787
 
788
- #: contact_form.php:2076
789
  msgid "Error text color"
790
  msgstr "Feltextfärg"
791
 
792
- #: contact_form.php:2081
793
  msgid "Background color of the input field errors"
794
  msgstr "Bakgrundsfärg på inmatningfältsfel"
795
 
796
- #: contact_form.php:2086
797
  msgid "Border color of the input field errors"
798
  msgstr "Ramfärg på inmatningfältsfel"
799
 
800
- #: contact_form.php:2091
801
  msgid "Placeholder color of the input field errors"
802
  msgstr "Platshållarfärg för inmatningfältsfel"
803
 
804
- #: contact_form.php:2096
805
  msgid "Input fields"
806
  msgstr "Inmatningsfält"
807
 
808
- #: contact_form.php:2101
809
  msgid "Input fields background color"
810
  msgstr "Inmatningfältsbakgrundsfärg"
811
 
812
- #: contact_form.php:2106
813
  msgid "Text fields color"
814
  msgstr "Textfältfärg"
815
 
816
- #: contact_form.php:2110
817
  msgid "Border width in px, numbers only"
818
  msgstr "Rambredd i px, endast siffror"
819
 
820
- #: contact_form.php:2115 contact_form.php:2139
821
  msgid "Border color"
822
  msgstr "Ramfärg"
823
 
824
- #: contact_form.php:2120
825
  msgid "Submit button"
826
  msgstr "Skicka-knapp"
827
 
828
- #: contact_form.php:2124
829
  msgid "Width in px, numbers only"
830
  msgstr "Bredd i px, endast siffror"
831
 
832
- #: contact_form.php:2129
833
  msgid "Button color"
834
  msgstr "Knappfärg"
835
 
836
- #: contact_form.php:2134
837
  msgid "Button text color"
838
  msgstr "Knapptextfärg"
839
 
840
- #: contact_form.php:2163
841
  #, fuzzy
842
  msgid "Contact Form | Preview"
843
  msgstr "Kontaktformulär Pro | Förhandsgranskning"
844
 
845
- #: contact_form.php:2164
846
  msgid "Drag the necessary field to sort fields."
847
  msgstr ""
848
 
849
- #: contact_form.php:2376
850
  #, fuzzy
851
  msgid ""
852
  "If you would like to add the Contact Form to your website, just copy and "
@@ -855,91 +867,83 @@ msgstr ""
855
  "Om du vill lägga till ett kontaktformulär på din webbplats, kopiera följande "
856
  "kortkod och klistra in den på rätt inlägg, sida eller widget:"
857
 
858
- #: contact_form.php:2504
859
  msgid "Sorry, email message could not be delivered."
860
  msgstr "Tyvärr kunde ditt meddelande inte levereras."
861
 
862
- #: contact_form.php:3094 contact_form.php:3096
863
  msgid "Sent from (ip address)"
864
  msgstr "Skickat från (ip-adress)"
865
 
866
- #: contact_form.php:3124
867
  msgid "Contact from"
868
  msgstr "Kontaktformulär"
869
 
870
- #: contact_form.php:3129 contact_form.php:3178
871
  msgid "Site"
872
  msgstr "Sajt"
873
 
874
- #: contact_form.php:3308
875
  msgid ""
876
  "If you can see this MIME, it means that the MIME type is not supported by "
877
  "your email client!"
878
  msgstr ""
879
  "Om du kan se detta MIME, så accepterar inte din e-postklient denna MIME-typ!"
880
 
881
- #: contact_form.php:3391
882
  msgid "FAQ"
883
  msgstr "FAQ"
884
 
885
- #: contact_form.php:3392
886
  msgid "Support"
887
  msgstr "Support"
888
 
889
- #: contact_form.php:3441
890
  msgid "Are you sure that you want to delete this language data?"
891
  msgstr "Är du säker på att du vill ta bort språkdatan?"
892
 
893
- #: contact_form.php:3462
894
  #, fuzzy
895
  msgid "Add multiple forms"
896
  msgstr "Visa verktygstips"
897
 
898
- #: contact_form.php:3462
899
  msgid ""
900
  "Install Contact Form Multi plugin to create unlimited number of contact "
901
  "forms."
902
  msgstr ""
903
 
904
- #: contact_form.php:3467
905
  #, fuzzy
906
  msgid "Learn more"
907
  msgstr "Läs mer"
908
 
909
- #: contact_form.php:3693
910
  msgid "Close notice"
911
  msgstr ""
912
 
913
- #: contact_form.php:3698
914
  msgid "allows to store your messages to the database."
915
  msgstr ""
916
 
917
- #: contact_form.php:3699
918
  msgid "Manage messages that have been sent from your website."
919
  msgstr ""
920
 
921
- #: contact_form.php:3702
922
  msgid "Learn More"
923
  msgstr ""
924
 
925
- #: contact_form.php:3762
926
  #, fuzzy
927
  msgid "Contact form"
928
  msgstr "Kontaktformulär"
929
 
930
- #: contact_form.php:3775 contact_form.php:3785
931
  #, fuzzy
932
  msgid "Language"
933
  msgstr "Lägg till ett språk"
934
 
935
- #: includes/deprecated.php:168
936
- #, php-format
937
- msgid ""
938
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
939
- "replace it with %3s. If you close this message it'll appear again after "
940
- "deprecated shortcode reuse."
941
- msgstr ""
942
-
943
  #~ msgid "Name:"
944
  #~ msgstr "Namn:"
945
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:16+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:16+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest "
9
  "<joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:37 contact_form.php:1064
21
  msgid "Contact Form Settings"
22
  msgstr "Kontaktformulärinställningar"
23
 
24
+ #: contact_form.php:37
25
  msgid "Contact Form"
26
  msgstr "Kontaktformulär"
27
 
28
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
29
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
30
+ #: contact_form.php:3181 contact_form.php:3227
31
  msgid "Name"
32
  msgstr "Namn"
33
 
34
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
35
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
36
+ #: contact_form.php:3233
37
  msgid "Address"
38
  msgstr "Adress"
39
 
40
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
41
+ #: contact_form.php:1765
42
  msgid "Email Address"
43
  msgstr "E-postadress"
44
 
45
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
46
+ #: contact_form.php:1766
47
  #, fuzzy
48
  msgid "Phone number"
49
  msgstr "Telefonnummer:"
50
 
51
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
52
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
53
+ #: contact_form.php:3242
54
  msgid "Subject"
55
  msgstr "Ämne"
56
 
57
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
58
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
59
+ #: contact_form.php:3246
60
  msgid "Message"
61
  msgstr "Meddelande"
62
 
63
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
64
+ #: contact_form.php:2058
65
  msgid "Attachment"
66
  msgstr "Bifoga fil"
67
 
68
+ #: contact_form.php:287
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
  "Stödda filformat: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, "
74
  "PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
75
 
76
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
77
  msgid "Send me a copy"
78
  msgstr "Skicka mig en kopia"
79
 
80
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
81
  msgid "Submit"
82
  msgstr "Skicka"
83
 
84
+ #: contact_form.php:290
85
  msgid "Your name is required."
86
  msgstr "Ditt namn krävs."
87
 
88
+ #: contact_form.php:291
89
  msgid "Address is required."
90
  msgstr "Adress krävs."
91
 
92
+ #: contact_form.php:292
93
  msgid "A valid email address is required."
94
  msgstr "En giltig e-postadress krävs."
95
 
96
+ #: contact_form.php:293
97
  msgid "Phone number is required."
98
  msgstr "Telefonnummer krävs."
99
 
100
+ #: contact_form.php:294
101
  msgid "Subject is required."
102
  msgstr "Ämne krävs."
103
 
104
+ #: contact_form.php:295
105
  msgid "Message text is required."
106
  msgstr "Meddelande krävs."
107
 
108
+ #: contact_form.php:296
109
  msgid "File format is not valid."
110
  msgstr "Bilageformaten är inte giltigt."
111
 
112
+ #: contact_form.php:297
113
  msgid "File upload error."
114
  msgstr "Filuppladdningsfel."
115
 
116
+ #: contact_form.php:298
117
  msgid "The file could not be uploaded."
118
  msgstr "Filen kunde inte laddas upp."
119
 
120
+ #: contact_form.php:299
121
  msgid "This file is too large."
122
  msgstr "Filen är för stor."
123
 
124
+ #: contact_form.php:300
125
  msgid "Please fill out the CAPTCHA."
126
  msgstr "Var god fyll i CAPTCHA."
127
 
128
+ #: contact_form.php:301
129
  msgid "Please make corrections below and try again."
130
  msgstr "Var god gör korrigeringar nedan och försök igen."
131
 
132
+ #: contact_form.php:303
133
  msgid "Thank you for contacting us."
134
  msgstr "Tack för att du kontaktade oss."
135
 
136
+ #: contact_form.php:759 contact_form.php:1021
137
  msgid "Settings saved."
138
  msgstr "Inställningar sparades."
139
 
140
+ #: contact_form.php:966
141
  msgid ""
142
  "Email 'FROM' field option was changed, which may cause email messages being "
143
  "moved to the spam folder or email delivery failures."
144
  msgstr ""
145
 
146
+ #: contact_form.php:976
147
  msgid ""
148
  "If the 'Redirect to page' option is selected then the URL field should be in "
149
  "the following format"
151
  "Om alternativet 'Omdirigera till sida' väljs ska URL-fältet fyllas i med "
152
  "följande format"
153
 
154
+ #: contact_form.php:983
155
  #, fuzzy
156
  msgid "Such user does not exist."
157
  msgstr "Användaren finns inte. Inställningarna sparades inte."
158
 
159
+ #: contact_form.php:993
160
  #, fuzzy
161
  msgid ""
162
  "Please enter a valid email address in the 'Use this email address' field."
164
  "Var god ange en giltig e-postadress i 'FRÅN'-fältet. Inställningarna "
165
  "sparades inte."
166
 
167
+ #: contact_form.php:1001
168
  #, fuzzy
169
  msgid "Please enter a valid email address in the 'FROM' field."
170
  msgstr ""
171
  "Var god ange en giltig e-postadress i 'FRÅN'-fältet. Inställningarna "
172
  "sparades inte."
173
 
174
+ #: contact_form.php:1023
175
  #, fuzzy
176
  msgid "Settings are not saved."
177
  msgstr "Inställningar sparades."
178
 
179
+ #: contact_form.php:1061
180
  msgid "All plugin settings were restored."
181
  msgstr ""
182
 
183
+ #: contact_form.php:1067
184
  msgid "How to Use Step-by-step Instruction"
185
  msgstr ""
186
 
187
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
188
  msgid "Settings"
189
  msgstr "Inställningar"
190
 
191
+ #: contact_form.php:1071
192
  #, fuzzy
193
  msgid "Additional settings"
194
  msgstr "Ytterligare alternativ"
195
 
196
+ #: contact_form.php:1072
197
  msgid "Appearance"
198
  msgstr ""
199
 
200
+ #: contact_form.php:1073
201
  msgid "Custom code"
202
  msgstr ""
203
 
204
+ #: contact_form.php:1074
205
  msgid "Go PRO"
206
  msgstr ""
207
 
208
+ #: contact_form.php:1085
209
  msgid "Notice"
210
  msgstr ""
211
 
212
+ #: contact_form.php:1089
213
  msgid "NEW_FORM"
214
  msgstr ""
215
 
216
+ #: contact_form.php:1090
217
  msgid ""
218
  "If you want to create multiple contact forms, please install the Contact "
219
  "Form Multi plugin."
220
  msgstr ""
221
 
222
+ #: contact_form.php:1099
223
  #, fuzzy, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
228
  "Om du vill lägga till ett kontaktformulär på din webbplats, kopiera följande "
229
  "kortkod och klistra in den på rätt inlägg, sida eller widget:"
230
 
231
+ #: contact_form.php:1105
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
237
  "language."
238
  msgstr ""
239
 
240
+ #: contact_form.php:1114
241
  msgid ""
242
  "If you leave the fields empty, the messages will be sent to the email "
243
  "address specified during registration."
245
  "Om du lämnar fälten tomma kommer meddelandena att skickas till den e-"
246
  "postadressen som angavs under registreringen."
247
 
248
+ #: contact_form.php:1117
249
  #, fuzzy
250
  msgid "The user's email address"
251
  msgstr "Användarens e-postadress:"
252
 
253
+ #: contact_form.php:1121
254
  #, fuzzy
255
  msgid "Select a username"
256
  msgstr "Skapa ett användarnamn"
257
 
258
+ #: contact_form.php:1134
259
  #, fuzzy
260
  msgid ""
261
  "Select a username of the person who should get the messages from the contact "
264
  "Ange ett användarnamn på den användare som ska få meddelanden från "
265
  "kontaktformuläret."
266
 
267
+ #: contact_form.php:1138
268
  #, fuzzy
269
  msgid "Use this email address"
270
  msgstr "Använd den här e-postadressen:"
271
 
272
+ #: contact_form.php:1142
273
  #, fuzzy
274
  msgid "Enter the email address for receiving messages"
275
  msgstr "Ange en e-postadress som ska användas för att ta emot meddelanden."
276
 
277
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
278
+ #: contact_form.php:1957 contact_form.php:3514
279
  msgid "Close"
280
  msgstr ""
281
 
282
+ #: contact_form.php:1153
283
  msgid "Add department selectbox to the contact form"
284
  msgstr ""
285
 
286
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
287
+ #: contact_form.php:2163
288
  msgid "If you upgrade to Pro version all your settings will be saved."
289
  msgstr ""
290
 
291
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
292
+ #: contact_form.php:1878 contact_form.php:2170
293
  msgid "Upgrade to Pro"
294
  msgstr ""
295
 
296
+ #: contact_form.php:1176
297
  msgid "Save emails to the database"
298
  msgstr ""
299
 
300
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
301
  msgid "Using"
302
  msgstr ""
303
 
304
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
305
+ #: contact_form.php:1623
306
  msgid "Please activate the appropriate option on"
307
  msgstr ""
308
 
309
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
310
+ #: contact_form.php:1626
311
  #, fuzzy
312
  msgid "settings page"
313
  msgstr "Extra inställningar"
314
 
315
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
316
+ #: contact_form.php:1633
317
  #, fuzzy
318
  msgid "Activate"
319
  msgstr "Aktivera captcha"
320
 
321
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
322
+ #: contact_form.php:1638
323
  msgid "Download"
324
  msgstr "Hämta"
325
 
326
+ #: contact_form.php:1222
327
  msgid "Sending method"
328
  msgstr ""
329
 
330
+ #: contact_form.php:1227
331
  msgid "Wp-mail"
332
  msgstr "Wp-mail"
333
 
334
+ #: contact_form.php:1229
335
  #, fuzzy
336
  msgid "You can use the Wordpress wp_mail function for mailing"
337
  msgstr "Du kan använda wp_mail-funktionen för att skicka e-post"
338
 
339
+ #: contact_form.php:1232
340
  msgid "Mail"
341
  msgstr "E-post"
342
 
343
+ #: contact_form.php:1234
344
  #, fuzzy
345
  msgid "You can use the PHP mail function for mailing"
346
  msgstr "Du kan använda wp_mail-funktionen för att skicka e-post"
347
 
348
+ #: contact_form.php:1239
349
  msgid "'FROM' field"
350
  msgstr ""
351
 
352
+ #: contact_form.php:1255
353
  #, fuzzy
354
  msgid "User name"
355
  msgstr "Användarens e-post"
356
 
357
+ #: contact_form.php:1257
358
  #, fuzzy
359
  msgid ""
360
  "The name of the user who fills the form will be used in the field 'From'."
362
  "E-postadressen för användaren som fyller i formuläret kommer att användas i "
363
  "'Från'-fältet."
364
 
365
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
366
  msgid "Email"
367
  msgstr "E-post"
368
 
369
+ #: contact_form.php:1279
370
  msgid "User email"
371
  msgstr "Användarens e-post"
372
 
373
+ #: contact_form.php:1281
374
  msgid ""
375
  "The email address of the user who fills the form will be used in the field "
376
  "'From'."
378
  "E-postadressen för användaren som fyller i formuläret kommer att användas i "
379
  "'Från'-fältet."
380
 
381
+ #: contact_form.php:1290
382
  msgid ""
383
  "If this option is changed, email messages may be moved to the spam folder or "
384
  "email delivery failures may occur."
385
  msgstr ""
386
 
387
+ #: contact_form.php:1299
388
  #, fuzzy
389
  msgid "Required symbol"
390
  msgstr "Obligatoriska fält"
391
 
392
+ #: contact_form.php:1309
393
  msgid "Fields"
394
  msgstr ""
395
 
396
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
397
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
398
  msgid "Used"
399
  msgstr ""
400
 
401
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
402
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
403
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
404
  #, fuzzy
405
  msgid "Required"
406
  msgstr "Obligatoriska fält"
407
 
408
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
409
+ #: contact_form.php:1445 contact_form.php:1469
410
  msgid "Visible"
411
  msgstr ""
412
 
413
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
414
+ #: contact_form.php:1449 contact_form.php:1473
415
  msgid "Disabled for editing"
416
  msgstr ""
417
 
418
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
419
+ #: contact_form.php:1477
420
  msgid "Field's default value"
421
  msgstr ""
422
 
423
+ #: contact_form.php:1322
424
  msgid "Department selectbox"
425
  msgstr ""
426
 
427
+ #: contact_form.php:1354
428
  msgid "Use User's name as a default value if the user is logged in."
429
  msgstr ""
430
 
431
+ #: contact_form.php:1355 contact_form.php:1415
432
  msgid ""
433
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
434
  "in users."
435
  msgstr ""
436
 
437
+ #: contact_form.php:1361
438
  msgid "Location selectbox"
439
  msgstr ""
440
 
441
+ #: contact_form.php:1414
442
  msgid "Use User's email as a default value if the user is logged in."
443
  msgstr ""
444
 
445
+ #: contact_form.php:1498
446
  msgid "Attachment block"
447
  msgstr "Bilageblock"
448
 
449
+ #: contact_form.php:1500
450
  msgid "Users can attach the following file formats"
451
  msgstr "Användare kan bifoga filer av följande format"
452
 
453
+ #: contact_form.php:1518
454
  msgid "Add to the form"
455
  msgstr ""
456
 
457
+ #: contact_form.php:1523
458
  #, fuzzy
459
  msgid "Tips below the Attachment"
460
  msgstr "Visa förklaringar under bilageblocket"
461
 
462
+ #: contact_form.php:1530
463
  #, fuzzy
464
  msgid "'Send me a copy' block"
465
  msgstr "Skicka mig en kopia-block"
466
 
467
+ #: contact_form.php:1558
468
  #, fuzzy
469
  msgid "Activate for network"
470
  msgstr "Aktiverade tillägg"
471
 
472
+ #: contact_form.php:1649
473
  msgid "Agreement checkbox"
474
  msgstr ""
475
 
476
+ #: contact_form.php:1649
477
  msgid "Required checkbox for submitting the form"
478
  msgstr ""
479
 
480
+ #: contact_form.php:1650
481
  msgid "Optional checkbox"
482
  msgstr ""
483
 
484
+ #: contact_form.php:1650
485
  msgid "Optional checkbox, the results of which will be displayed in email"
486
  msgstr ""
487
 
488
+ #: contact_form.php:1668
489
  msgid "Delete an attachment file from the server after the email is sent"
490
  msgstr ""
491
 
492
+ #: contact_form.php:1674
493
  msgid "Email in HTML format sending"
494
  msgstr ""
495
 
496
+ #: contact_form.php:1678
497
  msgid "Display additional info in the email"
498
  msgstr "Visa ytterligare information i meddelandet"
499
 
500
+ #: contact_form.php:1684
501
  #, fuzzy
502
  msgid "Sent from (IP address)"
503
  msgstr "Skickat från (ip-adress)"
504
 
505
+ #: contact_form.php:1684
506
  #, fuzzy
507
  msgid "Example: Sent from (IP address):\t127.0.0.1"
508
  msgstr "Skickat från (ip-adress)"
509
 
510
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
511
  msgid "Date/Time"
512
  msgstr "Datum/Tid"
513
 
514
+ #: contact_form.php:1685
515
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
516
  msgstr ""
517
 
518
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
519
  msgid "Sent from (referer)"
520
  msgstr "Skickat från (referer)"
521
 
522
+ #: contact_form.php:1686
523
  msgid ""
524
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
525
  msgstr ""
526
 
527
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
528
  msgid "Using (user agent)"
529
  msgstr "Använder (user agent)"
530
 
531
+ #: contact_form.php:1687
532
  msgid ""
533
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
534
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
535
  msgstr ""
536
 
537
+ #: contact_form.php:1692
538
  msgid "Language settings for the field names in the form"
539
  msgstr "Språkinställningar för etikettnamn in formuläret"
540
 
541
+ #: contact_form.php:1701
542
  msgid "Add a language"
543
  msgstr "Lägg till ett språk"
544
 
545
+ #: contact_form.php:1705
546
  msgid "Change the names of the contact form fields and error messages"
547
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
548
 
549
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
550
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
551
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
552
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
553
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
554
  msgid "Default"
555
  msgstr "Standard"
556
 
557
+ #: contact_form.php:1723 contact_form.php:1761
558
  msgid "click to expand/hide the list"
559
  msgstr ""
560
 
561
+ #: contact_form.php:1732 contact_form.php:1770
562
  #, fuzzy
563
  msgid "Tips below the Attachment block"
564
  msgstr "Visa förklaringar under bilageblocket"
565
 
566
+ #: contact_form.php:1735 contact_form.php:1773
567
  msgid "Error message for the Name field"
568
  msgstr "Felmeddelande för namnfältet"
569
 
570
+ #: contact_form.php:1736 contact_form.php:1774
571
  msgid "Error message for the Address field"
572
  msgstr "Felmeddelande för adressfältet"
573
 
574
+ #: contact_form.php:1737 contact_form.php:1775
575
  msgid "Error message for the Email field"
576
  msgstr "Felmeddelande för e-postadressfältet"
577
 
578
+ #: contact_form.php:1738 contact_form.php:1776
579
  msgid "Error message for the Phone field"
580
  msgstr "Felmeddelande för telefonfältet"
581
 
582
+ #: contact_form.php:1739 contact_form.php:1777
583
  msgid "Error message for the Subject field"
584
  msgstr "Felmeddelande for ämnesfältet"
585
 
586
+ #: contact_form.php:1740 contact_form.php:1778
587
  msgid "Error message for the Message field"
588
  msgstr "Felmeddelande för meddelandefältet"
589
 
590
+ #: contact_form.php:1741 contact_form.php:1779
591
  msgid "Error message about the file type for the Attachment field"
592
  msgstr "Felmeddelande för filformat i bilagefältet"
593
 
594
+ #: contact_form.php:1742 contact_form.php:1780
595
  msgid ""
596
  "Error message while uploading a file for the Attachment field to the server"
597
  msgstr "Felmeddelande för uppladdning av fil till bilagefältet på servern"
598
 
599
+ #: contact_form.php:1743 contact_form.php:1781
600
  msgid "Error message while moving the file for the Attachment field"
601
  msgstr "Felmeddelande för flytt av fil till bilagefältet"
602
 
603
+ #: contact_form.php:1744 contact_form.php:1782
604
  msgid "Error message when file size limit for the Attachment field is exceeded"
605
  msgstr "Felmeddelande för max filstorlek i bilagefältet "
606
 
607
+ #: contact_form.php:1745 contact_form.php:1783
608
  msgid "Error message for the Captcha field"
609
  msgstr "Felmeddelande för CAPTCHA"
610
 
611
+ #: contact_form.php:1746 contact_form.php:1784
612
  msgid "Error message for the whole form"
613
  msgstr "Felmeddelande för formuläret"
614
 
615
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
616
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
617
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
618
+ #: contact_form.php:3604
619
  msgid "Use shortcode"
620
  msgstr "Använd kortkod"
621
 
622
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
623
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
624
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
625
+ #: contact_form.php:3604
626
  msgid "for this language"
627
  msgstr "för detta språk"
628
 
629
+ #: contact_form.php:1797
630
  #, fuzzy
631
  msgid "Use the changed names of the contact form fields in the email"
632
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
633
 
634
+ #: contact_form.php:1803
635
  msgid "Action after email is sent"
636
  msgstr "Åtgärd efter meddelande skickats"
637
 
638
+ #: contact_form.php:1805
639
  msgid "Display text"
640
  msgstr "Visa text"
641
 
642
+ #: contact_form.php:1819 contact_form.php:1833
643
  msgid "Text"
644
  msgstr "Text"
645
 
646
+ #: contact_form.php:1844
647
  msgid "Redirect to the page"
648
  msgstr "Omdirigera till sida"
649
 
650
+ #: contact_form.php:1845
651
  msgid "Url"
652
  msgstr "Url"
653
 
654
+ #: contact_form.php:1856
655
  msgid "Add field 'Reply-To' to the email header"
656
  msgstr ""
657
 
658
+ #: contact_form.php:1858
659
  msgid "Field 'Reply-To' will be initialized by user email"
660
  msgstr ""
661
 
662
+ #: contact_form.php:1862
663
  msgid "Auto Response"
664
  msgstr ""
665
 
666
+ #: contact_form.php:1866
667
  #, php-format
668
  msgid ""
669
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
671
  "name."
672
  msgstr ""
673
 
674
+ #: contact_form.php:1888 contact_form.php:2419
675
  msgid "Save Changes"
676
  msgstr "Spara ändringar"
677
 
678
+ #: contact_form.php:1901
679
  #, php-format
680
  msgid ""
681
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
682
  msgstr ""
683
 
684
+ #: contact_form.php:1901 contact_form.php:1910
685
  msgid "Form layout"
686
  msgstr ""
687
 
688
+ #: contact_form.php:1901 contact_form.php:1922
689
  #, fuzzy
690
  msgid "Submit position"
691
  msgstr "Skicka-knapp"
692
 
693
+ #: contact_form.php:1914
694
  msgid "One column"
695
  msgstr ""
696
 
697
+ #: contact_form.php:1917
698
  msgid "Two columns"
699
  msgstr ""
700
 
701
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
702
+ #: contact_form.php:1998
703
  msgid "Left"
704
  msgstr ""
705
 
706
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
707
+ #: contact_form.php:2004
708
  msgid "Right"
709
  msgstr ""
710
 
711
+ #: contact_form.php:1934
712
+ msgid "Width"
713
+ msgstr ""
714
+
715
+ #: contact_form.php:1941
716
+ msgid "Custom"
717
+ msgstr ""
718
+
719
+ #: contact_form.php:1948
720
+ msgid "px"
721
+ msgstr ""
722
+
723
+ #: contact_form.php:1961
724
  msgid "Form align"
725
  msgstr ""
726
 
727
+ #: contact_form.php:1968 contact_form.php:2001
728
  msgid "Center"
729
  msgstr ""
730
 
731
+ #: contact_form.php:1976
732
  #, fuzzy
733
  msgid "Labels position"
734
  msgstr "Skicka-knapp"
735
 
736
+ #: contact_form.php:1980
737
  msgid "Top"
738
  msgstr ""
739
 
740
+ #: contact_form.php:1989
741
  msgid "Bottom"
742
  msgstr ""
743
 
744
+ #: contact_form.php:1994
745
  msgid "Labels align"
746
  msgstr ""
747
 
748
+ #: contact_form.php:2009
749
  msgid "Errors output"
750
  msgstr "Felutmatning"
751
 
752
+ #: contact_form.php:2012
753
  msgid "Display error messages"
754
  msgstr "Visa felmeddelanden"
755
 
756
+ #: contact_form.php:2013
757
  msgid "Color of the input field errors."
758
  msgstr "Färg på inmatningfältsfel."
759
 
760
+ #: contact_form.php:2014
761
  msgid "Display error messages & color of the input field errors"
762
  msgstr "Visa felmeddelanden & färg på inmatningfältsfel"
763
 
764
+ #: contact_form.php:2019
765
  msgid "Add placeholder to the input blocks"
766
  msgstr "Lägg till platshållare på inmatningsblocken"
767
 
768
+ #: contact_form.php:2025
769
  msgid "Add tooltips"
770
  msgstr "Visa verktygstips"
771
 
772
+ #: contact_form.php:2039
773
  msgid "Email address"
774
  msgstr "E-postadress"
775
 
776
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
777
  msgid "Phone Number"
778
  msgstr "Telefonnummer"
779
 
780
+ #: contact_form.php:2070
781
  msgid "Style options"
782
  msgstr "Stilalternativ"
783
 
784
+ #: contact_form.php:2074
785
  msgid "Text color"
786
  msgstr "Textfärg"
787
 
788
+ #: contact_form.php:2079
789
  msgid "Label text color"
790
  msgstr "Etikett-textfärg"
791
 
792
+ #: contact_form.php:2084
793
  msgid "Placeholder color"
794
  msgstr "Platshållarfärg"
795
 
796
+ #: contact_form.php:2089
797
  msgid "Errors color"
798
  msgstr "Felfärg"
799
 
800
+ #: contact_form.php:2094
801
  msgid "Error text color"
802
  msgstr "Feltextfärg"
803
 
804
+ #: contact_form.php:2099
805
  msgid "Background color of the input field errors"
806
  msgstr "Bakgrundsfärg på inmatningfältsfel"
807
 
808
+ #: contact_form.php:2104
809
  msgid "Border color of the input field errors"
810
  msgstr "Ramfärg på inmatningfältsfel"
811
 
812
+ #: contact_form.php:2109
813
  msgid "Placeholder color of the input field errors"
814
  msgstr "Platshållarfärg för inmatningfältsfel"
815
 
816
+ #: contact_form.php:2114
817
  msgid "Input fields"
818
  msgstr "Inmatningsfält"
819
 
820
+ #: contact_form.php:2119
821
  msgid "Input fields background color"
822
  msgstr "Inmatningfältsbakgrundsfärg"
823
 
824
+ #: contact_form.php:2124
825
  msgid "Text fields color"
826
  msgstr "Textfältfärg"
827
 
828
+ #: contact_form.php:2128
829
  msgid "Border width in px, numbers only"
830
  msgstr "Rambredd i px, endast siffror"
831
 
832
+ #: contact_form.php:2133 contact_form.php:2157
833
  msgid "Border color"
834
  msgstr "Ramfärg"
835
 
836
+ #: contact_form.php:2138
837
  msgid "Submit button"
838
  msgstr "Skicka-knapp"
839
 
840
+ #: contact_form.php:2142
841
  msgid "Width in px, numbers only"
842
  msgstr "Bredd i px, endast siffror"
843
 
844
+ #: contact_form.php:2147
845
  msgid "Button color"
846
  msgstr "Knappfärg"
847
 
848
+ #: contact_form.php:2152
849
  msgid "Button text color"
850
  msgstr "Knapptextfärg"
851
 
852
+ #: contact_form.php:2181
853
  #, fuzzy
854
  msgid "Contact Form | Preview"
855
  msgstr "Kontaktformulär Pro | Förhandsgranskning"
856
 
857
+ #: contact_form.php:2182
858
  msgid "Drag the necessary field to sort fields."
859
  msgstr ""
860
 
861
+ #: contact_form.php:2408
862
  #, fuzzy
863
  msgid ""
864
  "If you would like to add the Contact Form to your website, just copy and "
867
  "Om du vill lägga till ett kontaktformulär på din webbplats, kopiera följande "
868
  "kortkod och klistra in den på rätt inlägg, sida eller widget:"
869
 
870
+ #: contact_form.php:2536
871
  msgid "Sorry, email message could not be delivered."
872
  msgstr "Tyvärr kunde ditt meddelande inte levereras."
873
 
874
+ #: contact_form.php:3137 contact_form.php:3139
875
  msgid "Sent from (ip address)"
876
  msgstr "Skickat från (ip-adress)"
877
 
878
+ #: contact_form.php:3167
879
  msgid "Contact from"
880
  msgstr "Kontaktformulär"
881
 
882
+ #: contact_form.php:3172 contact_form.php:3221
883
  msgid "Site"
884
  msgstr "Sajt"
885
 
886
+ #: contact_form.php:3351
887
  msgid ""
888
  "If you can see this MIME, it means that the MIME type is not supported by "
889
  "your email client!"
890
  msgstr ""
891
  "Om du kan se detta MIME, så accepterar inte din e-postklient denna MIME-typ!"
892
 
893
+ #: contact_form.php:3434
894
  msgid "FAQ"
895
  msgstr "FAQ"
896
 
897
+ #: contact_form.php:3435
898
  msgid "Support"
899
  msgstr "Support"
900
 
901
+ #: contact_form.php:3484
902
  msgid "Are you sure that you want to delete this language data?"
903
  msgstr "Är du säker på att du vill ta bort språkdatan?"
904
 
905
+ #: contact_form.php:3505
906
  #, fuzzy
907
  msgid "Add multiple forms"
908
  msgstr "Visa verktygstips"
909
 
910
+ #: contact_form.php:3505
911
  msgid ""
912
  "Install Contact Form Multi plugin to create unlimited number of contact "
913
  "forms."
914
  msgstr ""
915
 
916
+ #: contact_form.php:3510
917
  #, fuzzy
918
  msgid "Learn more"
919
  msgstr "Läs mer"
920
 
921
+ #: contact_form.php:3751
922
  msgid "Close notice"
923
  msgstr ""
924
 
925
+ #: contact_form.php:3756
926
  msgid "allows to store your messages to the database."
927
  msgstr ""
928
 
929
+ #: contact_form.php:3757
930
  msgid "Manage messages that have been sent from your website."
931
  msgstr ""
932
 
933
+ #: contact_form.php:3760
934
  msgid "Learn More"
935
  msgstr ""
936
 
937
+ #: contact_form.php:3820
938
  #, fuzzy
939
  msgid "Contact form"
940
  msgstr "Kontaktformulär"
941
 
942
+ #: contact_form.php:3833 contact_form.php:3843
943
  #, fuzzy
944
  msgid "Language"
945
  msgstr "Lägg till ett språk"
946
 
 
 
 
 
 
 
 
 
947
  #~ msgid "Name:"
948
  #~ msgstr "Namn:"
949
 
languages/contact-form-plugin-tr.mo CHANGED
Binary file
languages/contact-form-plugin-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: 2017-02-27 16:23+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:24+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@canatasever.com>\n"
9
  "Language: ca_ES\n"
@@ -16,54 +16,54 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:42 contact_form.php:1066
20
  msgid "Contact Form Settings"
21
  msgstr "İletişim Formu Ayarları"
22
 
23
- #: contact_form.php:42
24
  msgid "Contact Form"
25
  msgstr "İletişim Formu"
26
 
27
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
28
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
29
- #: contact_form.php:3138 contact_form.php:3184
30
  msgid "Name"
31
  msgstr "İsim"
32
 
33
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
34
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
35
- #: contact_form.php:3190
36
  msgid "Address"
37
  msgstr "Adres:"
38
 
39
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
40
- #: contact_form.php:1767
41
  msgid "Email Address"
42
  msgstr "E-posta Adresi"
43
 
44
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
45
- #: contact_form.php:1768
46
  msgid "Phone number"
47
  msgstr "Telefon numarası"
48
 
49
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
50
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
51
- #: contact_form.php:3199
52
  msgid "Subject"
53
  msgstr "Başlık"
54
 
55
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
56
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
57
- #: contact_form.php:3203
58
  msgid "Message"
59
  msgstr "Mesaj"
60
 
61
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
62
- #: contact_form.php:2040
63
  msgid "Attachment"
64
  msgstr "Dosya Yükleme"
65
 
66
- #: contact_form.php:302
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -72,89 +72,89 @@ msgstr ""
72
  "BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, "
73
  "PPT."
74
 
75
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
76
  msgid "Send me a copy"
77
  msgstr "Bana bir kopyasını gönder"
78
 
79
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
80
  msgid "Submit"
81
  msgstr "Gönder"
82
 
83
- #: contact_form.php:305
84
  msgid "Your name is required."
85
  msgstr "İsminizi yazmanız gerekiyor."
86
 
87
- #: contact_form.php:306
88
  msgid "Address is required."
89
  msgstr "Adresinizi yazmanız gerekiyor."
90
 
91
- #: contact_form.php:307
92
  msgid "A valid email address is required."
93
  msgstr "Geçerli bir e-posta adresi yazmanız gerekiyor."
94
 
95
- #: contact_form.php:308
96
  msgid "Phone number is required."
97
  msgstr "Telefon numaranızı yazmanız gerekiyor."
98
 
99
- #: contact_form.php:309
100
  msgid "Subject is required."
101
  msgstr "Başlık kısmını doldurmanız gerekiyor."
102
 
103
- #: contact_form.php:310
104
  msgid "Message text is required."
105
  msgstr "Mesaj kısmını doldurmanız gerekiyor."
106
 
107
- #: contact_form.php:311
108
  msgid "File format is not valid."
109
  msgstr "Dosya uzantısı uygun değil."
110
 
111
- #: contact_form.php:312
112
  msgid "File upload error."
113
  msgstr "Dosya yükleme hatası."
114
 
115
- #: contact_form.php:313
116
  msgid "The file could not be uploaded."
117
  msgstr "Dosya yüklenemedi."
118
 
119
- #: contact_form.php:314
120
  msgid "This file is too large."
121
  msgstr "Dosyanın boyutu çok büyük."
122
 
123
- #: contact_form.php:315
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Lütfen CAPTCHA kısmını doldurun."
126
 
127
- #: contact_form.php:316
128
  msgid "Please make corrections below and try again."
129
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve yeniden deneyin."
130
 
131
- #: contact_form.php:318
132
  msgid "Thank you for contacting us."
133
  msgstr "İletişime geçtiğiniz için teşekkürler."
134
 
135
- #: contact_form.php:761 contact_form.php:1023
136
  msgid "Settings saved."
137
  msgstr "Ayarlar kaydedildi."
138
 
139
- #: contact_form.php:968
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
- #: contact_form.php:978
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
149
  msgstr ""
150
  "Eğer 'Sayfaya Yönlendir' seçeneği seçilmişse, URL alanı şu formatta olmalı:"
151
 
152
- #: contact_form.php:985
153
  #, fuzzy
154
  msgid "Such user does not exist."
155
  msgstr "Böyle bir kullanıcı adı bulunamadı. Ayarlar kaydedilmedi."
156
 
157
- #: contact_form.php:995
158
  #, fuzzy
159
  msgid ""
160
  "Please enter a valid email address in the 'Use this email address' field."
@@ -162,63 +162,63 @@ msgstr ""
162
  "Lütfen 'GÖNDERİCİ' alanına geçerli bir e-posta adresi girin. Ayarlar "
163
  "kaydedilmedi."
164
 
165
- #: contact_form.php:1003
166
  #, fuzzy
167
  msgid "Please enter a valid email address in the 'FROM' field."
168
  msgstr ""
169
  "Lütfen 'GÖNDERİCİ' alanına geçerli bir e-posta adresi girin. Ayarlar "
170
  "kaydedilmedi."
171
 
172
- #: contact_form.php:1025
173
  #, fuzzy
174
  msgid "Settings are not saved."
175
  msgstr "Ayarlar kaydedildi."
176
 
177
- #: contact_form.php:1063
178
  msgid "All plugin settings were restored."
179
  msgstr ""
180
 
181
- #: contact_form.php:1069
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr ""
184
 
185
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
186
  msgid "Settings"
187
  msgstr "Ayarlar"
188
 
189
- #: contact_form.php:1073
190
  #, fuzzy
191
  msgid "Additional settings"
192
  msgstr "Ek seçenekler"
193
 
194
- #: contact_form.php:1074
195
  msgid "Appearance"
196
  msgstr ""
197
 
198
- #: contact_form.php:1075
199
  msgid "Custom code"
200
  msgstr ""
201
 
202
- #: contact_form.php:1076
203
  msgid "Go PRO"
204
  msgstr ""
205
 
206
- #: contact_form.php:1087
207
  #, fuzzy
208
  msgid "Notice"
209
  msgstr "Bilgi Notu:"
210
 
211
- #: contact_form.php:1091
212
  msgid "NEW_FORM"
213
  msgstr ""
214
 
215
- #: contact_form.php:1092
216
  msgid ""
217
  "If you want to create multiple contact forms, please install the Contact "
218
  "Form Multi plugin."
219
  msgstr ""
220
 
221
- #: contact_form.php:1101
222
  #, fuzzy, php-format
223
  msgid ""
224
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -227,7 +227,7 @@ msgstr ""
227
  "Eğer sitenize iletişim formu eklemek istiyorsanız, şu kısa kodu yazınıza, "
228
  "sayfanıza ya da bileşen alanınıza eklemeniz yeterli."
229
 
230
- #: contact_form.php:1107
231
  #, php-format
232
  msgid ""
233
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -236,7 +236,7 @@ msgid ""
236
  "language."
237
  msgstr ""
238
 
239
- #: contact_form.php:1116
240
  msgid ""
241
  "If you leave the fields empty, the messages will be sent to the email "
242
  "address specified during registration."
@@ -244,17 +244,17 @@ msgstr ""
244
  "Eğer aşağıdaki alanları boş bırakırsanız, kullanıcının mesajı kayıt "
245
  "sırasında girilen e-posta adresine gönderilecek."
246
 
247
- #: contact_form.php:1119
248
  #, fuzzy
249
  msgid "The user's email address"
250
  msgstr "Kullanıcının e-posta adresine:"
251
 
252
- #: contact_form.php:1123
253
  #, fuzzy
254
  msgid "Select a username"
255
  msgstr "Kullanıcı oluştur"
256
 
257
- #: contact_form.php:1136
258
  #, fuzzy
259
  msgid ""
260
  "Select a username of the person who should get the messages from the contact "
@@ -263,263 +263,263 @@ msgstr ""
263
  "İletişim Formu ile gönderilen mesajı almasını istediğiniz kullanıcının adını "
264
  "girin."
265
 
266
- #: contact_form.php:1140
267
  #, fuzzy
268
  msgid "Use this email address"
269
  msgstr "Mesaj bu e-posta adresine gönderilsin:"
270
 
271
- #: contact_form.php:1144
272
  #, fuzzy
273
  msgid "Enter the email address for receiving messages"
274
  msgstr "Mesajın gönderilmesini istediğiniz e-posta adresini girin."
275
 
276
- #: contact_form.php:1151 contact_form.php:1647 contact_form.php:1854
277
- #: contact_form.php:1939 contact_form.php:3471
278
  msgid "Close"
279
  msgstr ""
280
 
281
- #: contact_form.php:1155
282
  #, fuzzy
283
  msgid "Add department selectbox to the contact form"
284
  msgstr "İletişim Formu'na departman seçenekleri ekleyin"
285
 
286
- #: contact_form.php:1163 contact_form.php:1656 contact_form.php:1873
287
- #: contact_form.php:2145
288
  msgid "If you upgrade to Pro version all your settings will be saved."
289
  msgstr "Ücretli sürümü satın alırsanız tüm değişiklikler kaydedilecek."
290
 
291
- #: contact_form.php:1170 contact_form.php:1492 contact_form.php:1661
292
- #: contact_form.php:1880 contact_form.php:2152
293
  msgid "Upgrade to Pro"
294
  msgstr ""
295
 
296
- #: contact_form.php:1178
297
  msgid "Save emails to the database"
298
  msgstr "E-postaları veritabanına kaydet"
299
 
300
- #: contact_form.php:1190 contact_form.php:1204 contact_form.php:1211
301
  msgid "Using"
302
  msgstr ""
303
 
304
- #: contact_form.php:1196 contact_form.php:1548 contact_form.php:1590
305
- #: contact_form.php:1625
306
  msgid "Please activate the appropriate option on"
307
  msgstr ""
308
 
309
- #: contact_form.php:1199 contact_form.php:1551 contact_form.php:1593
310
- #: contact_form.php:1628
311
  #, fuzzy
312
  msgid "settings page"
313
  msgstr "Ekstra ayarlar"
314
 
315
- #: contact_form.php:1205 contact_form.php:1558 contact_form.php:1601
316
- #: contact_form.php:1635
317
  #, fuzzy
318
  msgid "Activate"
319
  msgstr "CAPTCHA'yı etkinleştir"
320
 
321
- #: contact_form.php:1212 contact_form.php:1567 contact_form.php:1607
322
- #: contact_form.php:1640
323
  msgid "Download"
324
  msgstr "Descarregar"
325
 
326
- #: contact_form.php:1224
327
  msgid "Sending method"
328
  msgstr ""
329
 
330
- #: contact_form.php:1229
331
  msgid "Wp-mail"
332
  msgstr "Wp-Mail"
333
 
334
- #: contact_form.php:1231
335
  #, fuzzy
336
  msgid "You can use the Wordpress wp_mail function for mailing"
337
  msgstr "E-postanın gönderimi için wp_mail fonksiyonunu kullanabilirsiniz."
338
 
339
- #: contact_form.php:1234
340
  msgid "Mail"
341
  msgstr "Mail"
342
 
343
- #: contact_form.php:1236
344
  #, fuzzy
345
  msgid "You can use the PHP mail function for mailing"
346
  msgstr "E-postanın gönderimi için wp_mail fonksiyonunu kullanabilirsiniz."
347
 
348
- #: contact_form.php:1241
349
  msgid "'FROM' field"
350
  msgstr ""
351
 
352
- #: contact_form.php:1257
353
  msgid "User name"
354
  msgstr "Kullanıcı adı"
355
 
356
- #: contact_form.php:1259
357
  msgid ""
358
  "The name of the user who fills the form will be used in the field 'From'."
359
  msgstr "'Gönderici' alanında formu dolduran ziyaretçinin adı kullanılacak."
360
 
361
- #: contact_form.php:1270 contact_form.php:3151 contact_form.php:3195
362
  msgid "Email"
363
  msgstr "E-Posta Adresi"
364
 
365
- #: contact_form.php:1281
366
  msgid "User email"
367
  msgstr "Kullanıcı e-postası"
368
 
369
- #: contact_form.php:1283
370
  msgid ""
371
  "The email address of the user who fills the form will be used in the field "
372
  "'From'."
373
  msgstr ""
374
  "'Gönderici' alanında formu dolduran kullanıcının e-posta adresi gösterilecek."
375
 
376
- #: contact_form.php:1292
377
  msgid ""
378
  "If this option is changed, email messages may be moved to the spam folder or "
379
  "email delivery failures may occur."
380
  msgstr ""
381
 
382
- #: contact_form.php:1301
383
  msgid "Required symbol"
384
  msgstr "Zorunlu işareti"
385
 
386
- #: contact_form.php:1311
387
  msgid "Fields"
388
  msgstr "Alanlar"
389
 
390
- #: contact_form.php:1312 contact_form.php:1339 contact_form.php:1366
391
- #: contact_form.php:1386 contact_form.php:1425 contact_form.php:1507
392
  msgid "Used"
393
  msgstr "Kullanılsın mı?"
394
 
395
- #: contact_form.php:1313 contact_form.php:1328 contact_form.php:1343
396
- #: contact_form.php:1370 contact_form.php:1390 contact_form.php:1403
397
- #: contact_form.php:1429 contact_form.php:1442 contact_form.php:1466
398
  msgid "Required"
399
  msgstr "Zorunlu"
400
 
401
- #: contact_form.php:1315 contact_form.php:1348 contact_form.php:1408
402
- #: contact_form.php:1447 contact_form.php:1471
403
  msgid "Visible"
404
  msgstr "Görünür"
405
 
406
- #: contact_form.php:1316 contact_form.php:1352 contact_form.php:1412
407
- #: contact_form.php:1451 contact_form.php:1475
408
  msgid "Disabled for editing"
409
  msgstr "Düzenlemeye kapatılmış"
410
 
411
- #: contact_form.php:1317 contact_form.php:1376 contact_form.php:1455
412
- #: contact_form.php:1479
413
  msgid "Field's default value"
414
  msgstr "Alanın varsayılan değeri"
415
 
416
- #: contact_form.php:1324
417
  msgid "Department selectbox"
418
  msgstr ""
419
 
420
- #: contact_form.php:1356
421
  msgid "Use User's name as a default value if the user is logged in."
422
  msgstr ""
423
 
424
- #: contact_form.php:1357 contact_form.php:1417
425
  msgid ""
426
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
427
  "in users."
428
  msgstr ""
429
 
430
- #: contact_form.php:1363
431
  msgid "Location selectbox"
432
  msgstr ""
433
 
434
- #: contact_form.php:1416
435
  msgid "Use User's email as a default value if the user is logged in."
436
  msgstr ""
437
 
438
- #: contact_form.php:1500
439
  msgid "Attachment block"
440
  msgstr "Dosya Yükleme"
441
 
442
- #: contact_form.php:1502
443
  msgid "Users can attach the following file formats"
444
  msgstr "Kullanıcılar şu uzantılardaki dosyaları yükleyebilirler"
445
 
446
- #: contact_form.php:1520
447
  msgid "Add to the form"
448
  msgstr "Forma ekle"
449
 
450
- #: contact_form.php:1525
451
  msgid "Tips below the Attachment"
452
  msgstr "Dosya yükleme alanı altında açıklama"
453
 
454
- #: contact_form.php:1532
455
  msgid "'Send me a copy' block"
456
  msgstr "'Mesajın bir kopyasını e-posta adresime gönder' seçeneği"
457
 
458
- #: contact_form.php:1560
459
  #, fuzzy
460
  msgid "Activate for network"
461
  msgstr "Plugin activat"
462
 
463
- #: contact_form.php:1651
464
  msgid "Agreement checkbox"
465
  msgstr "Onay kutusu"
466
 
467
- #: contact_form.php:1651
468
  msgid "Required checkbox for submitting the form"
469
  msgstr "Formu göndermek için işaretlenmesi gereken onay kutusu"
470
 
471
- #: contact_form.php:1652
472
  msgid "Optional checkbox"
473
  msgstr "İsteğe bağlı onay kutusu"
474
 
475
- #: contact_form.php:1652
476
  msgid "Optional checkbox, the results of which will be displayed in email"
477
  msgstr "E-posta'da gösterilecek, isteğe bağlı onay kutusu"
478
 
479
- #: contact_form.php:1670
480
  msgid "Delete an attachment file from the server after the email is sent"
481
  msgstr "E-posta gönderildikten sonra eklenen dosyayı sunucudan sil"
482
 
483
- #: contact_form.php:1676
484
  msgid "Email in HTML format sending"
485
  msgstr "E-postayı HTML formatında gönder"
486
 
487
- #: contact_form.php:1680
488
  msgid "Display additional info in the email"
489
  msgstr "E-postanın içerisinde ek bilgiler göster"
490
 
491
- #: contact_form.php:1686
492
  #, fuzzy
493
  msgid "Sent from (IP address)"
494
  msgstr "Gönderilen (IP Adresi)"
495
 
496
- #: contact_form.php:1686
497
  msgid "Example: Sent from (IP address):\t127.0.0.1"
498
  msgstr "Örnek: Şu IP adresinden gönderildi:\t127.0.0.1"
499
 
500
- #: contact_form.php:1687 contact_form.php:3100 contact_form.php:3102
501
  msgid "Date/Time"
502
  msgstr "Tarih/Zaman"
503
 
504
- #: contact_form.php:1687
505
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
506
  msgstr "Örnek: Tarih/Saat:\t19 Ağustos, 2013 - 8:50 ÖS"
507
 
508
- #: contact_form.php:1688 contact_form.php:3106 contact_form.php:3108
509
  msgid "Sent from (referer)"
510
  msgstr "Gönderilen (referer)"
511
 
512
- #: contact_form.php:1688
513
  #, fuzzy
514
  msgid ""
515
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
516
  msgstr "Örnek: Gönderici:\thttp://bestwebsoft.com/contacts/contact-us/"
517
 
518
- #: contact_form.php:1689 contact_form.php:3112 contact_form.php:3114
519
  msgid "Using (user agent)"
520
  msgstr "Şununla: "
521
 
522
- #: contact_form.php:1689
523
  msgid ""
524
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
525
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -527,139 +527,139 @@ msgstr ""
527
  "Örnek: Şunu kullanarak:\tMozilla/5.0 (Windows NT 6.2; WOW64) "
528
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
529
 
530
- #: contact_form.php:1694
531
  msgid "Language settings for the field names in the form"
532
  msgstr "Formdaki alan adları için dil ayarları 8aşağıdaki iki seçenek için)"
533
 
534
- #: contact_form.php:1703
535
  msgid "Add a language"
536
  msgstr "Bir dil ekle"
537
 
538
- #: contact_form.php:1707
539
  msgid "Change the names of the contact form fields and error messages"
540
  msgstr ""
541
  "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata "
542
  "mesajlarını değiştir"
543
 
544
- #: contact_form.php:1712 contact_form.php:1808 contact_form.php:2059
545
- #: contact_form.php:2064 contact_form.php:2074 contact_form.php:2079
546
- #: contact_form.php:2084 contact_form.php:2089 contact_form.php:2099
547
- #: contact_form.php:2104 contact_form.php:2113 contact_form.php:2127
548
- #: contact_form.php:2132 contact_form.php:2137
549
  msgid "Default"
550
  msgstr "Varsayılan"
551
 
552
- #: contact_form.php:1725 contact_form.php:1763
553
  msgid "click to expand/hide the list"
554
  msgstr ""
555
 
556
- #: contact_form.php:1734 contact_form.php:1772
557
  msgid "Tips below the Attachment block"
558
  msgstr "Dosya yükleme alanı altında gösterilecek açıklamalar"
559
 
560
- #: contact_form.php:1737 contact_form.php:1775
561
  msgid "Error message for the Name field"
562
  msgstr "'İsim' alanı için hata mesajı"
563
 
564
- #: contact_form.php:1738 contact_form.php:1776
565
  msgid "Error message for the Address field"
566
  msgstr "'Adres' alanı için hata mesajı"
567
 
568
- #: contact_form.php:1739 contact_form.php:1777
569
  msgid "Error message for the Email field"
570
  msgstr "'E-posta adresş' alanı için hata mesajı"
571
 
572
- #: contact_form.php:1740 contact_form.php:1778
573
  msgid "Error message for the Phone field"
574
  msgstr "'Telefon numarası' alanı için hata mesajı"
575
 
576
- #: contact_form.php:1741 contact_form.php:1779
577
  msgid "Error message for the Subject field"
578
  msgstr "'Başlık' alanı için hata mesajı"
579
 
580
- #: contact_form.php:1742 contact_form.php:1780
581
  msgid "Error message for the Message field"
582
  msgstr "'Mesaj' alanı için hata mesajı"
583
 
584
- #: contact_form.php:1743 contact_form.php:1781
585
  msgid "Error message about the file type for the Attachment field"
586
  msgstr "Yüklenen dosyanın uzantısıyla ilgili hata mesajı"
587
 
588
- #: contact_form.php:1744 contact_form.php:1782
589
  msgid ""
590
  "Error message while uploading a file for the Attachment field to the server"
591
  msgstr "Dosya yüklenirken oluşan hata için hata mesajı"
592
 
593
- #: contact_form.php:1745 contact_form.php:1783
594
  msgid "Error message while moving the file for the Attachment field"
595
  msgstr "Yüklenecek dosya seçilirken oluşan hata için hata mesajı"
596
 
597
- #: contact_form.php:1746 contact_form.php:1784
598
  msgid "Error message when file size limit for the Attachment field is exceeded"
599
  msgstr "En fazla dosya yükleme boyutu sınırı açıldığında oluşan hata mesajı"
600
 
601
- #: contact_form.php:1747 contact_form.php:1785
602
  msgid "Error message for the Captcha field"
603
  msgstr "CAPTCHA alanı için hata mesajı"
604
 
605
- #: contact_form.php:1748 contact_form.php:1786
606
  msgid "Error message for the whole form"
607
  msgstr "Formun geneli için hata mesajı"
608
 
609
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
610
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
611
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
612
- #: contact_form.php:3540
613
  msgid "Use shortcode"
614
  msgstr "Kısa kodu kullan"
615
 
616
- #: contact_form.php:1751 contact_form.php:1753 contact_form.php:1789
617
- #: contact_form.php:1791 contact_form.php:1823 contact_form.php:1825
618
- #: contact_form.php:1837 contact_form.php:1839 contact_form.php:3538
619
- #: contact_form.php:3540
620
  msgid "for this language"
621
  msgstr "bu dil için"
622
 
623
- #: contact_form.php:1799
624
  #, fuzzy
625
  msgid "Use the changed names of the contact form fields in the email"
626
  msgstr ""
627
  "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata "
628
  "mesajlarını değiştir"
629
 
630
- #: contact_form.php:1805
631
  msgid "Action after email is sent"
632
  msgstr "E-posta gönderildikten sonra ne yapılsın?"
633
 
634
- #: contact_form.php:1807
635
  msgid "Display text"
636
  msgstr "Metin göster"
637
 
638
- #: contact_form.php:1821 contact_form.php:1835
639
  msgid "Text"
640
  msgstr "Metin"
641
 
642
- #: contact_form.php:1846
643
  msgid "Redirect to the page"
644
  msgstr "Sayfaya yönlendir"
645
 
646
- #: contact_form.php:1847
647
  msgid "Url"
648
  msgstr "URL"
649
 
650
- #: contact_form.php:1858
651
  msgid "Add field 'Reply-To' to the email header"
652
  msgstr ""
653
 
654
- #: contact_form.php:1860
655
  msgid "Field 'Reply-To' will be initialized by user email"
656
  msgstr ""
657
 
658
- #: contact_form.php:1864
659
  msgid "Auto Response"
660
  msgstr ""
661
 
662
- #: contact_form.php:1868
663
  #, php-format
664
  msgid ""
665
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -667,183 +667,195 @@ msgid ""
667
  "name."
668
  msgstr ""
669
 
670
- #: contact_form.php:1890 contact_form.php:2389
671
  msgid "Save Changes"
672
  msgstr "Değişiklikleri Kaydet"
673
 
674
- #: contact_form.php:1903
675
  #, php-format
676
  msgid ""
677
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
678
  msgstr ""
679
 
680
- #: contact_form.php:1903 contact_form.php:1912
681
  msgid "Form layout"
682
  msgstr ""
683
 
684
- #: contact_form.php:1903 contact_form.php:1924
685
  #, fuzzy
686
  msgid "Submit position"
687
  msgstr "Gönderme butonu"
688
 
689
- #: contact_form.php:1916
690
  msgid "One column"
691
  msgstr ""
692
 
693
- #: contact_form.php:1919
694
  msgid "Two columns"
695
  msgstr ""
696
 
697
- #: contact_form.php:1928 contact_form.php:1947 contact_form.php:1965
698
- #: contact_form.php:1980
699
  msgid "Left"
700
  msgstr ""
701
 
702
- #: contact_form.php:1931 contact_form.php:1953 contact_form.php:1968
703
- #: contact_form.php:1986
704
  msgid "Right"
705
  msgstr ""
706
 
707
- #: contact_form.php:1943
 
 
 
 
 
 
 
 
 
 
 
 
708
  msgid "Form align"
709
  msgstr ""
710
 
711
- #: contact_form.php:1950 contact_form.php:1983
712
  msgid "Center"
713
  msgstr ""
714
 
715
- #: contact_form.php:1958
716
  #, fuzzy
717
  msgid "Labels position"
718
  msgstr "Gönderme butonu"
719
 
720
- #: contact_form.php:1962
721
  msgid "Top"
722
  msgstr ""
723
 
724
- #: contact_form.php:1971
725
  msgid "Bottom"
726
  msgstr ""
727
 
728
- #: contact_form.php:1976
729
  msgid "Labels align"
730
  msgstr ""
731
 
732
- #: contact_form.php:1991
733
  msgid "Errors output"
734
  msgstr "Hata çıktısı"
735
 
736
- #: contact_form.php:1994
737
  msgid "Display error messages"
738
  msgstr "Hata mesajlarını göster"
739
 
740
- #: contact_form.php:1995
741
  msgid "Color of the input field errors."
742
  msgstr "Giriş alanlarının hata rengi"
743
 
744
- #: contact_form.php:1996
745
  msgid "Display error messages & color of the input field errors"
746
  msgstr "Hata mesajlarını ve giriş alanı hata rengini göster"
747
 
748
- #: contact_form.php:2001
749
  msgid "Add placeholder to the input blocks"
750
  msgstr "Giriş alanlarına bilgilendirme notu ekle"
751
 
752
- #: contact_form.php:2007
753
  msgid "Add tooltips"
754
  msgstr "Şunları ekle:"
755
 
756
- #: contact_form.php:2021
757
  msgid "Email address"
758
  msgstr "E-posta adresi"
759
 
760
- #: contact_form.php:2026 contact_form.php:3167 contact_form.php:3208
761
  msgid "Phone Number"
762
  msgstr "Telefon Numarası"
763
 
764
- #: contact_form.php:2052
765
  msgid "Style options"
766
  msgstr "Tasarım ayarları"
767
 
768
- #: contact_form.php:2056
769
  msgid "Text color"
770
  msgstr "Metin rengi"
771
 
772
- #: contact_form.php:2061
773
  msgid "Label text color"
774
  msgstr "Etiket metninin rengi"
775
 
776
- #: contact_form.php:2066
777
  msgid "Placeholder color"
778
  msgstr "Bilgilendirme notu rengi"
779
 
780
- #: contact_form.php:2071
781
  msgid "Errors color"
782
  msgstr "Hataların renkleri"
783
 
784
- #: contact_form.php:2076
785
  msgid "Error text color"
786
  msgstr "Hata metni rengi"
787
 
788
- #: contact_form.php:2081
789
  msgid "Background color of the input field errors"
790
  msgstr "giriş alanı hataları için arka plan rengi"
791
 
792
- #: contact_form.php:2086
793
  msgid "Border color of the input field errors"
794
  msgstr "Giriş alanı hataları için border rengi"
795
 
796
- #: contact_form.php:2091
797
  msgid "Placeholder color of the input field errors"
798
  msgstr "Giriş alanı hataları için bilgilendirme notu rengi"
799
 
800
- #: contact_form.php:2096
801
  msgid "Input fields"
802
  msgstr "Giriş alanları"
803
 
804
- #: contact_form.php:2101
805
  msgid "Input fields background color"
806
  msgstr "Giriş alanları arka plan rengi"
807
 
808
- #: contact_form.php:2106
809
  msgid "Text fields color"
810
  msgstr "Metin alanlarının rengi"
811
 
812
- #: contact_form.php:2110
813
  msgid "Border width in px, numbers only"
814
  msgstr "Bırder genişliği, piksel cinsinden, sadece sayı"
815
 
816
- #: contact_form.php:2115 contact_form.php:2139
817
  msgid "Border color"
818
  msgstr "Border rengi"
819
 
820
- #: contact_form.php:2120
821
  msgid "Submit button"
822
  msgstr "Gönderme butonu"
823
 
824
  # #: contact_form.php:928
825
- #: contact_form.php:2124
826
  msgid "Width in px, numbers only"
827
  msgstr "Piksel cinsinden genişlik, sadece sayı"
828
 
829
- #: contact_form.php:2129
830
  msgid "Button color"
831
  msgstr "Buton rengi"
832
 
833
- #: contact_form.php:2134
834
  msgid "Button text color"
835
  msgstr "Buton yazı rengi"
836
 
837
- #: contact_form.php:2163
838
  #, fuzzy
839
  msgid "Contact Form | Preview"
840
  msgstr "İletişim Formu PRO | Ön İzleme"
841
 
842
- #: contact_form.php:2164
843
  msgid "Drag the necessary field to sort fields."
844
  msgstr ""
845
 
846
- #: contact_form.php:2376
847
  #, fuzzy
848
  msgid ""
849
  "If you would like to add the Contact Form to your website, just copy and "
@@ -852,23 +864,23 @@ msgstr ""
852
  "Eğer sitenize iletişim formu eklemek istiyorsanız, şu kısa kodu yazınıza, "
853
  "sayfanıza ya da bileşen alanınıza eklemeniz yeterli."
854
 
855
- #: contact_form.php:2504
856
  msgid "Sorry, email message could not be delivered."
857
  msgstr "Üzgünüz, e-posta mesajınız gönderilemedi."
858
 
859
- #: contact_form.php:3094 contact_form.php:3096
860
  msgid "Sent from (ip address)"
861
  msgstr "Gönderilen (IP Adresi)"
862
 
863
- #: contact_form.php:3124
864
  msgid "Contact from"
865
  msgstr "İletişim Formu"
866
 
867
- #: contact_form.php:3129 contact_form.php:3178
868
  msgid "Site"
869
  msgstr "Website"
870
 
871
- #: contact_form.php:3308
872
  msgid ""
873
  "If you can see this MIME, it means that the MIME type is not supported by "
874
  "your email client!"
@@ -876,69 +888,61 @@ msgstr ""
876
  "Eğer bu MIME'ı görüyorsanız, bu e-posta sunucunuzun MIME'ı desteklemediği "
877
  "anlamına gelir!"
878
 
879
- #: contact_form.php:3391
880
  msgid "FAQ"
881
  msgstr "SSS"
882
 
883
- #: contact_form.php:3392
884
  msgid "Support"
885
  msgstr "Destek"
886
 
887
- #: contact_form.php:3441
888
  msgid "Are you sure that you want to delete this language data?"
889
  msgstr "Bu dile ait verileri silmek istediğinize emin misiniz?"
890
 
891
- #: contact_form.php:3462
892
  #, fuzzy
893
  msgid "Add multiple forms"
894
  msgstr "Forma ekle"
895
 
896
- #: contact_form.php:3462
897
  msgid ""
898
  "Install Contact Form Multi plugin to create unlimited number of contact "
899
  "forms."
900
  msgstr ""
901
 
902
- #: contact_form.php:3467
903
  #, fuzzy
904
  msgid "Learn more"
905
  msgstr "Llegir més"
906
 
907
- #: contact_form.php:3693
908
  msgid "Close notice"
909
  msgstr ""
910
 
911
- #: contact_form.php:3698
912
  #, fuzzy
913
  msgid "allows to store your messages to the database."
914
  msgstr "E-postaları veritabanına kaydet"
915
 
916
- #: contact_form.php:3699
917
  msgid "Manage messages that have been sent from your website."
918
  msgstr ""
919
 
920
- #: contact_form.php:3702
921
  msgid "Learn More"
922
  msgstr ""
923
 
924
- #: contact_form.php:3762
925
  #, fuzzy
926
  msgid "Contact form"
927
  msgstr "İletişim Formu"
928
 
929
- #: contact_form.php:3775 contact_form.php:3785
930
  #, fuzzy
931
  msgid "Language"
932
  msgstr "Bir dil ekle"
933
 
934
- #: includes/deprecated.php:168
935
- #, php-format
936
- msgid ""
937
- "Deprecated shortcode %1s from the %2s plugin is used on your site. Please "
938
- "replace it with %3s. If you close this message it'll appear again after "
939
- "deprecated shortcode reuse."
940
- msgstr ""
941
-
942
  #~ msgid "Name:"
943
  #~ msgstr "İsim:"
944
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:16+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:16+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@canatasever.com>\n"
9
  "Language: ca_ES\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:37 contact_form.php:1064
20
  msgid "Contact Form Settings"
21
  msgstr "İletişim Formu Ayarları"
22
 
23
+ #: contact_form.php:37
24
  msgid "Contact Form"
25
  msgstr "İletişim Formu"
26
 
27
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
28
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
29
+ #: contact_form.php:3181 contact_form.php:3227
30
  msgid "Name"
31
  msgstr "İsim"
32
 
33
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
34
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
35
+ #: contact_form.php:3233
36
  msgid "Address"
37
  msgstr "Adres:"
38
 
39
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
40
+ #: contact_form.php:1765
41
  msgid "Email Address"
42
  msgstr "E-posta Adresi"
43
 
44
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
45
+ #: contact_form.php:1766
46
  msgid "Phone number"
47
  msgstr "Telefon numarası"
48
 
49
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
50
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
51
+ #: contact_form.php:3242
52
  msgid "Subject"
53
  msgstr "Başlık"
54
 
55
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
56
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
57
+ #: contact_form.php:3246
58
  msgid "Message"
59
  msgstr "Mesaj"
60
 
61
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
62
+ #: contact_form.php:2058
63
  msgid "Attachment"
64
  msgstr "Dosya Yükleme"
65
 
66
+ #: contact_form.php:287
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
72
  "BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, "
73
  "PPT."
74
 
75
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
76
  msgid "Send me a copy"
77
  msgstr "Bana bir kopyasını gönder"
78
 
79
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
80
  msgid "Submit"
81
  msgstr "Gönder"
82
 
83
+ #: contact_form.php:290
84
  msgid "Your name is required."
85
  msgstr "İsminizi yazmanız gerekiyor."
86
 
87
+ #: contact_form.php:291
88
  msgid "Address is required."
89
  msgstr "Adresinizi yazmanız gerekiyor."
90
 
91
+ #: contact_form.php:292
92
  msgid "A valid email address is required."
93
  msgstr "Geçerli bir e-posta adresi yazmanız gerekiyor."
94
 
95
+ #: contact_form.php:293
96
  msgid "Phone number is required."
97
  msgstr "Telefon numaranızı yazmanız gerekiyor."
98
 
99
+ #: contact_form.php:294
100
  msgid "Subject is required."
101
  msgstr "Başlık kısmını doldurmanız gerekiyor."
102
 
103
+ #: contact_form.php:295
104
  msgid "Message text is required."
105
  msgstr "Mesaj kısmını doldurmanız gerekiyor."
106
 
107
+ #: contact_form.php:296
108
  msgid "File format is not valid."
109
  msgstr "Dosya uzantısı uygun değil."
110
 
111
+ #: contact_form.php:297
112
  msgid "File upload error."
113
  msgstr "Dosya yükleme hatası."
114
 
115
+ #: contact_form.php:298
116
  msgid "The file could not be uploaded."
117
  msgstr "Dosya yüklenemedi."
118
 
119
+ #: contact_form.php:299
120
  msgid "This file is too large."
121
  msgstr "Dosyanın boyutu çok büyük."
122
 
123
+ #: contact_form.php:300
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Lütfen CAPTCHA kısmını doldurun."
126
 
127
+ #: contact_form.php:301
128
  msgid "Please make corrections below and try again."
129
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve yeniden deneyin."
130
 
131
+ #: contact_form.php:303
132
  msgid "Thank you for contacting us."
133
  msgstr "İletişime geçtiğiniz için teşekkürler."
134
 
135
+ #: contact_form.php:759 contact_form.php:1021
136
  msgid "Settings saved."
137
  msgstr "Ayarlar kaydedildi."
138
 
139
+ #: contact_form.php:966
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
+ #: contact_form.php:976
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
149
  msgstr ""
150
  "Eğer 'Sayfaya Yönlendir' seçeneği seçilmişse, URL alanı şu formatta olmalı:"
151
 
152
+ #: contact_form.php:983
153
  #, fuzzy
154
  msgid "Such user does not exist."
155
  msgstr "Böyle bir kullanıcı adı bulunamadı. Ayarlar kaydedilmedi."
156
 
157
+ #: contact_form.php:993
158
  #, fuzzy
159
  msgid ""
160
  "Please enter a valid email address in the 'Use this email address' field."
162
  "Lütfen 'GÖNDERİCİ' alanına geçerli bir e-posta adresi girin. Ayarlar "
163
  "kaydedilmedi."
164
 
165
+ #: contact_form.php:1001
166
  #, fuzzy
167
  msgid "Please enter a valid email address in the 'FROM' field."
168
  msgstr ""
169
  "Lütfen 'GÖNDERİCİ' alanına geçerli bir e-posta adresi girin. Ayarlar "
170
  "kaydedilmedi."
171
 
172
+ #: contact_form.php:1023
173
  #, fuzzy
174
  msgid "Settings are not saved."
175
  msgstr "Ayarlar kaydedildi."
176
 
177
+ #: contact_form.php:1061
178
  msgid "All plugin settings were restored."
179
  msgstr ""
180
 
181
+ #: contact_form.php:1067
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr ""
184
 
185
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
186
  msgid "Settings"
187
  msgstr "Ayarlar"
188
 
189
+ #: contact_form.php:1071
190
  #, fuzzy
191
  msgid "Additional settings"
192
  msgstr "Ek seçenekler"
193
 
194
+ #: contact_form.php:1072
195
  msgid "Appearance"
196
  msgstr ""
197
 
198
+ #: contact_form.php:1073
199
  msgid "Custom code"
200
  msgstr ""
201
 
202
+ #: contact_form.php:1074
203
  msgid "Go PRO"
204
  msgstr ""
205
 
206
+ #: contact_form.php:1085
207
  #, fuzzy
208
  msgid "Notice"
209
  msgstr "Bilgi Notu:"
210
 
211
+ #: contact_form.php:1089
212
  msgid "NEW_FORM"
213
  msgstr ""
214
 
215
+ #: contact_form.php:1090
216
  msgid ""
217
  "If you want to create multiple contact forms, please install the Contact "
218
  "Form Multi plugin."
219
  msgstr ""
220
 
221
+ #: contact_form.php:1099
222
  #, fuzzy, php-format
223
  msgid ""
224
  "If you would like to add a Contact Form to your page or post, please use %s "
227
  "Eğer sitenize iletişim formu eklemek istiyorsanız, şu kısa kodu yazınıza, "
228
  "sayfanıza ya da bileşen alanınıza eklemeniz yeterli."
229
 
230
+ #: contact_form.php:1105
231
  #, php-format
232
  msgid ""
233
  "You can add the Contact Form to your page or post by clicking on %s button "
236
  "language."
237
  msgstr ""
238
 
239
+ #: contact_form.php:1114
240
  msgid ""
241
  "If you leave the fields empty, the messages will be sent to the email "
242
  "address specified during registration."
244
  "Eğer aşağıdaki alanları boş bırakırsanız, kullanıcının mesajı kayıt "
245
  "sırasında girilen e-posta adresine gönderilecek."
246
 
247
+ #: contact_form.php:1117
248
  #, fuzzy
249
  msgid "The user's email address"
250
  msgstr "Kullanıcının e-posta adresine:"
251
 
252
+ #: contact_form.php:1121
253
  #, fuzzy
254
  msgid "Select a username"
255
  msgstr "Kullanıcı oluştur"
256
 
257
+ #: contact_form.php:1134
258
  #, fuzzy
259
  msgid ""
260
  "Select a username of the person who should get the messages from the contact "
263
  "İletişim Formu ile gönderilen mesajı almasını istediğiniz kullanıcının adını "
264
  "girin."
265
 
266
+ #: contact_form.php:1138
267
  #, fuzzy
268
  msgid "Use this email address"
269
  msgstr "Mesaj bu e-posta adresine gönderilsin:"
270
 
271
+ #: contact_form.php:1142
272
  #, fuzzy
273
  msgid "Enter the email address for receiving messages"
274
  msgstr "Mesajın gönderilmesini istediğiniz e-posta adresini girin."
275
 
276
+ #: contact_form.php:1149 contact_form.php:1645 contact_form.php:1852
277
+ #: contact_form.php:1957 contact_form.php:3514
278
  msgid "Close"
279
  msgstr ""
280
 
281
+ #: contact_form.php:1153
282
  #, fuzzy
283
  msgid "Add department selectbox to the contact form"
284
  msgstr "İletişim Formu'na departman seçenekleri ekleyin"
285
 
286
+ #: contact_form.php:1161 contact_form.php:1654 contact_form.php:1871
287
+ #: contact_form.php:2163
288
  msgid "If you upgrade to Pro version all your settings will be saved."
289
  msgstr "Ücretli sürümü satın alırsanız tüm değişiklikler kaydedilecek."
290
 
291
+ #: contact_form.php:1168 contact_form.php:1490 contact_form.php:1659
292
+ #: contact_form.php:1878 contact_form.php:2170
293
  msgid "Upgrade to Pro"
294
  msgstr ""
295
 
296
+ #: contact_form.php:1176
297
  msgid "Save emails to the database"
298
  msgstr "E-postaları veritabanına kaydet"
299
 
300
+ #: contact_form.php:1188 contact_form.php:1202 contact_form.php:1209
301
  msgid "Using"
302
  msgstr ""
303
 
304
+ #: contact_form.php:1194 contact_form.php:1546 contact_form.php:1588
305
+ #: contact_form.php:1623
306
  msgid "Please activate the appropriate option on"
307
  msgstr ""
308
 
309
+ #: contact_form.php:1197 contact_form.php:1549 contact_form.php:1591
310
+ #: contact_form.php:1626
311
  #, fuzzy
312
  msgid "settings page"
313
  msgstr "Ekstra ayarlar"
314
 
315
+ #: contact_form.php:1203 contact_form.php:1556 contact_form.php:1599
316
+ #: contact_form.php:1633
317
  #, fuzzy
318
  msgid "Activate"
319
  msgstr "CAPTCHA'yı etkinleştir"
320
 
321
+ #: contact_form.php:1210 contact_form.php:1565 contact_form.php:1605
322
+ #: contact_form.php:1638
323
  msgid "Download"
324
  msgstr "Descarregar"
325
 
326
+ #: contact_form.php:1222
327
  msgid "Sending method"
328
  msgstr ""
329
 
330
+ #: contact_form.php:1227
331
  msgid "Wp-mail"
332
  msgstr "Wp-Mail"
333
 
334
+ #: contact_form.php:1229
335
  #, fuzzy
336
  msgid "You can use the Wordpress wp_mail function for mailing"
337
  msgstr "E-postanın gönderimi için wp_mail fonksiyonunu kullanabilirsiniz."
338
 
339
+ #: contact_form.php:1232
340
  msgid "Mail"
341
  msgstr "Mail"
342
 
343
+ #: contact_form.php:1234
344
  #, fuzzy
345
  msgid "You can use the PHP mail function for mailing"
346
  msgstr "E-postanın gönderimi için wp_mail fonksiyonunu kullanabilirsiniz."
347
 
348
+ #: contact_form.php:1239
349
  msgid "'FROM' field"
350
  msgstr ""
351
 
352
+ #: contact_form.php:1255
353
  msgid "User name"
354
  msgstr "Kullanıcı adı"
355
 
356
+ #: contact_form.php:1257
357
  msgid ""
358
  "The name of the user who fills the form will be used in the field 'From'."
359
  msgstr "'Gönderici' alanında formu dolduran ziyaretçinin adı kullanılacak."
360
 
361
+ #: contact_form.php:1268 contact_form.php:3194 contact_form.php:3238
362
  msgid "Email"
363
  msgstr "E-Posta Adresi"
364
 
365
+ #: contact_form.php:1279
366
  msgid "User email"
367
  msgstr "Kullanıcı e-postası"
368
 
369
+ #: contact_form.php:1281
370
  msgid ""
371
  "The email address of the user who fills the form will be used in the field "
372
  "'From'."
373
  msgstr ""
374
  "'Gönderici' alanında formu dolduran kullanıcının e-posta adresi gösterilecek."
375
 
376
+ #: contact_form.php:1290
377
  msgid ""
378
  "If this option is changed, email messages may be moved to the spam folder or "
379
  "email delivery failures may occur."
380
  msgstr ""
381
 
382
+ #: contact_form.php:1299
383
  msgid "Required symbol"
384
  msgstr "Zorunlu işareti"
385
 
386
+ #: contact_form.php:1309
387
  msgid "Fields"
388
  msgstr "Alanlar"
389
 
390
+ #: contact_form.php:1310 contact_form.php:1337 contact_form.php:1364
391
+ #: contact_form.php:1384 contact_form.php:1423 contact_form.php:1505
392
  msgid "Used"
393
  msgstr "Kullanılsın mı?"
394
 
395
+ #: contact_form.php:1311 contact_form.php:1326 contact_form.php:1341
396
+ #: contact_form.php:1368 contact_form.php:1388 contact_form.php:1401
397
+ #: contact_form.php:1427 contact_form.php:1440 contact_form.php:1464
398
  msgid "Required"
399
  msgstr "Zorunlu"
400
 
401
+ #: contact_form.php:1313 contact_form.php:1346 contact_form.php:1406
402
+ #: contact_form.php:1445 contact_form.php:1469
403
  msgid "Visible"
404
  msgstr "Görünür"
405
 
406
+ #: contact_form.php:1314 contact_form.php:1350 contact_form.php:1410
407
+ #: contact_form.php:1449 contact_form.php:1473
408
  msgid "Disabled for editing"
409
  msgstr "Düzenlemeye kapatılmış"
410
 
411
+ #: contact_form.php:1315 contact_form.php:1374 contact_form.php:1453
412
+ #: contact_form.php:1477
413
  msgid "Field's default value"
414
  msgstr "Alanın varsayılan değeri"
415
 
416
+ #: contact_form.php:1322
417
  msgid "Department selectbox"
418
  msgstr ""
419
 
420
+ #: contact_form.php:1354
421
  msgid "Use User's name as a default value if the user is logged in."
422
  msgstr ""
423
 
424
+ #: contact_form.php:1355 contact_form.php:1415
425
  msgid ""
426
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
427
  "in users."
428
  msgstr ""
429
 
430
+ #: contact_form.php:1361
431
  msgid "Location selectbox"
432
  msgstr ""
433
 
434
+ #: contact_form.php:1414
435
  msgid "Use User's email as a default value if the user is logged in."
436
  msgstr ""
437
 
438
+ #: contact_form.php:1498
439
  msgid "Attachment block"
440
  msgstr "Dosya Yükleme"
441
 
442
+ #: contact_form.php:1500
443
  msgid "Users can attach the following file formats"
444
  msgstr "Kullanıcılar şu uzantılardaki dosyaları yükleyebilirler"
445
 
446
+ #: contact_form.php:1518
447
  msgid "Add to the form"
448
  msgstr "Forma ekle"
449
 
450
+ #: contact_form.php:1523
451
  msgid "Tips below the Attachment"
452
  msgstr "Dosya yükleme alanı altında açıklama"
453
 
454
+ #: contact_form.php:1530
455
  msgid "'Send me a copy' block"
456
  msgstr "'Mesajın bir kopyasını e-posta adresime gönder' seçeneği"
457
 
458
+ #: contact_form.php:1558
459
  #, fuzzy
460
  msgid "Activate for network"
461
  msgstr "Plugin activat"
462
 
463
+ #: contact_form.php:1649
464
  msgid "Agreement checkbox"
465
  msgstr "Onay kutusu"
466
 
467
+ #: contact_form.php:1649
468
  msgid "Required checkbox for submitting the form"
469
  msgstr "Formu göndermek için işaretlenmesi gereken onay kutusu"
470
 
471
+ #: contact_form.php:1650
472
  msgid "Optional checkbox"
473
  msgstr "İsteğe bağlı onay kutusu"
474
 
475
+ #: contact_form.php:1650
476
  msgid "Optional checkbox, the results of which will be displayed in email"
477
  msgstr "E-posta'da gösterilecek, isteğe bağlı onay kutusu"
478
 
479
+ #: contact_form.php:1668
480
  msgid "Delete an attachment file from the server after the email is sent"
481
  msgstr "E-posta gönderildikten sonra eklenen dosyayı sunucudan sil"
482
 
483
+ #: contact_form.php:1674
484
  msgid "Email in HTML format sending"
485
  msgstr "E-postayı HTML formatında gönder"
486
 
487
+ #: contact_form.php:1678
488
  msgid "Display additional info in the email"
489
  msgstr "E-postanın içerisinde ek bilgiler göster"
490
 
491
+ #: contact_form.php:1684
492
  #, fuzzy
493
  msgid "Sent from (IP address)"
494
  msgstr "Gönderilen (IP Adresi)"
495
 
496
+ #: contact_form.php:1684
497
  msgid "Example: Sent from (IP address):\t127.0.0.1"
498
  msgstr "Örnek: Şu IP adresinden gönderildi:\t127.0.0.1"
499
 
500
+ #: contact_form.php:1685 contact_form.php:3143 contact_form.php:3145
501
  msgid "Date/Time"
502
  msgstr "Tarih/Zaman"
503
 
504
+ #: contact_form.php:1685
505
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
506
  msgstr "Örnek: Tarih/Saat:\t19 Ağustos, 2013 - 8:50 ÖS"
507
 
508
+ #: contact_form.php:1686 contact_form.php:3149 contact_form.php:3151
509
  msgid "Sent from (referer)"
510
  msgstr "Gönderilen (referer)"
511
 
512
+ #: contact_form.php:1686
513
  #, fuzzy
514
  msgid ""
515
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
516
  msgstr "Örnek: Gönderici:\thttp://bestwebsoft.com/contacts/contact-us/"
517
 
518
+ #: contact_form.php:1687 contact_form.php:3155 contact_form.php:3157
519
  msgid "Using (user agent)"
520
  msgstr "Şununla: "
521
 
522
+ #: contact_form.php:1687
523
  msgid ""
524
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
525
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
527
  "Örnek: Şunu kullanarak:\tMozilla/5.0 (Windows NT 6.2; WOW64) "
528
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
529
 
530
+ #: contact_form.php:1692
531
  msgid "Language settings for the field names in the form"
532
  msgstr "Formdaki alan adları için dil ayarları 8aşağıdaki iki seçenek için)"
533
 
534
+ #: contact_form.php:1701
535
  msgid "Add a language"
536
  msgstr "Bir dil ekle"
537
 
538
+ #: contact_form.php:1705
539
  msgid "Change the names of the contact form fields and error messages"
540
  msgstr ""
541
  "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata "
542
  "mesajlarını değiştir"
543
 
544
+ #: contact_form.php:1710 contact_form.php:1806 contact_form.php:1938
545
+ #: contact_form.php:2077 contact_form.php:2082 contact_form.php:2092
546
+ #: contact_form.php:2097 contact_form.php:2102 contact_form.php:2107
547
+ #: contact_form.php:2117 contact_form.php:2122 contact_form.php:2131
548
+ #: contact_form.php:2145 contact_form.php:2150 contact_form.php:2155
549
  msgid "Default"
550
  msgstr "Varsayılan"
551
 
552
+ #: contact_form.php:1723 contact_form.php:1761
553
  msgid "click to expand/hide the list"
554
  msgstr ""
555
 
556
+ #: contact_form.php:1732 contact_form.php:1770
557
  msgid "Tips below the Attachment block"
558
  msgstr "Dosya yükleme alanı altında gösterilecek açıklamalar"
559
 
560
+ #: contact_form.php:1735 contact_form.php:1773
561
  msgid "Error message for the Name field"
562
  msgstr "'İsim' alanı için hata mesajı"
563
 
564
+ #: contact_form.php:1736 contact_form.php:1774
565
  msgid "Error message for the Address field"
566
  msgstr "'Adres' alanı için hata mesajı"
567
 
568
+ #: contact_form.php:1737 contact_form.php:1775
569
  msgid "Error message for the Email field"
570
  msgstr "'E-posta adresş' alanı için hata mesajı"
571
 
572
+ #: contact_form.php:1738 contact_form.php:1776
573
  msgid "Error message for the Phone field"
574
  msgstr "'Telefon numarası' alanı için hata mesajı"
575
 
576
+ #: contact_form.php:1739 contact_form.php:1777
577
  msgid "Error message for the Subject field"
578
  msgstr "'Başlık' alanı için hata mesajı"
579
 
580
+ #: contact_form.php:1740 contact_form.php:1778
581
  msgid "Error message for the Message field"
582
  msgstr "'Mesaj' alanı için hata mesajı"
583
 
584
+ #: contact_form.php:1741 contact_form.php:1779
585
  msgid "Error message about the file type for the Attachment field"
586
  msgstr "Yüklenen dosyanın uzantısıyla ilgili hata mesajı"
587
 
588
+ #: contact_form.php:1742 contact_form.php:1780
589
  msgid ""
590
  "Error message while uploading a file for the Attachment field to the server"
591
  msgstr "Dosya yüklenirken oluşan hata için hata mesajı"
592
 
593
+ #: contact_form.php:1743 contact_form.php:1781
594
  msgid "Error message while moving the file for the Attachment field"
595
  msgstr "Yüklenecek dosya seçilirken oluşan hata için hata mesajı"
596
 
597
+ #: contact_form.php:1744 contact_form.php:1782
598
  msgid "Error message when file size limit for the Attachment field is exceeded"
599
  msgstr "En fazla dosya yükleme boyutu sınırı açıldığında oluşan hata mesajı"
600
 
601
+ #: contact_form.php:1745 contact_form.php:1783
602
  msgid "Error message for the Captcha field"
603
  msgstr "CAPTCHA alanı için hata mesajı"
604
 
605
+ #: contact_form.php:1746 contact_form.php:1784
606
  msgid "Error message for the whole form"
607
  msgstr "Formun geneli için hata mesajı"
608
 
609
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
610
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
611
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
612
+ #: contact_form.php:3604
613
  msgid "Use shortcode"
614
  msgstr "Kısa kodu kullan"
615
 
616
+ #: contact_form.php:1749 contact_form.php:1751 contact_form.php:1787
617
+ #: contact_form.php:1789 contact_form.php:1821 contact_form.php:1823
618
+ #: contact_form.php:1835 contact_form.php:1837 contact_form.php:3602
619
+ #: contact_form.php:3604
620
  msgid "for this language"
621
  msgstr "bu dil için"
622
 
623
+ #: contact_form.php:1797
624
  #, fuzzy
625
  msgid "Use the changed names of the contact form fields in the email"
626
  msgstr ""
627
  "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata "
628
  "mesajlarını değiştir"
629
 
630
+ #: contact_form.php:1803
631
  msgid "Action after email is sent"
632
  msgstr "E-posta gönderildikten sonra ne yapılsın?"
633
 
634
+ #: contact_form.php:1805
635
  msgid "Display text"
636
  msgstr "Metin göster"
637
 
638
+ #: contact_form.php:1819 contact_form.php:1833
639
  msgid "Text"
640
  msgstr "Metin"
641
 
642
+ #: contact_form.php:1844
643
  msgid "Redirect to the page"
644
  msgstr "Sayfaya yönlendir"
645
 
646
+ #: contact_form.php:1845
647
  msgid "Url"
648
  msgstr "URL"
649
 
650
+ #: contact_form.php:1856
651
  msgid "Add field 'Reply-To' to the email header"
652
  msgstr ""
653
 
654
+ #: contact_form.php:1858
655
  msgid "Field 'Reply-To' will be initialized by user email"
656
  msgstr ""
657
 
658
+ #: contact_form.php:1862
659
  msgid "Auto Response"
660
  msgstr ""
661
 
662
+ #: contact_form.php:1866
663
  #, php-format
664
  msgid ""
665
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
667
  "name."
668
  msgstr ""
669
 
670
+ #: contact_form.php:1888 contact_form.php:2419
671
  msgid "Save Changes"
672
  msgstr "Değişiklikleri Kaydet"
673
 
674
+ #: contact_form.php:1901
675
  #, php-format
676
  msgid ""
677
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
678
  msgstr ""
679
 
680
+ #: contact_form.php:1901 contact_form.php:1910
681
  msgid "Form layout"
682
  msgstr ""
683
 
684
+ #: contact_form.php:1901 contact_form.php:1922
685
  #, fuzzy
686
  msgid "Submit position"
687
  msgstr "Gönderme butonu"
688
 
689
+ #: contact_form.php:1914
690
  msgid "One column"
691
  msgstr ""
692
 
693
+ #: contact_form.php:1917
694
  msgid "Two columns"
695
  msgstr ""
696
 
697
+ #: contact_form.php:1926 contact_form.php:1965 contact_form.php:1983
698
+ #: contact_form.php:1998
699
  msgid "Left"
700
  msgstr ""
701
 
702
+ #: contact_form.php:1929 contact_form.php:1971 contact_form.php:1986
703
+ #: contact_form.php:2004
704
  msgid "Right"
705
  msgstr ""
706
 
707
+ #: contact_form.php:1934
708
+ msgid "Width"
709
+ msgstr ""
710
+
711
+ #: contact_form.php:1941
712
+ msgid "Custom"
713
+ msgstr ""
714
+
715
+ #: contact_form.php:1948
716
+ msgid "px"
717
+ msgstr ""
718
+
719
+ #: contact_form.php:1961
720
  msgid "Form align"
721
  msgstr ""
722
 
723
+ #: contact_form.php:1968 contact_form.php:2001
724
  msgid "Center"
725
  msgstr ""
726
 
727
+ #: contact_form.php:1976
728
  #, fuzzy
729
  msgid "Labels position"
730
  msgstr "Gönderme butonu"
731
 
732
+ #: contact_form.php:1980
733
  msgid "Top"
734
  msgstr ""
735
 
736
+ #: contact_form.php:1989
737
  msgid "Bottom"
738
  msgstr ""
739
 
740
+ #: contact_form.php:1994
741
  msgid "Labels align"
742
  msgstr ""
743
 
744
+ #: contact_form.php:2009
745
  msgid "Errors output"
746
  msgstr "Hata çıktısı"
747
 
748
+ #: contact_form.php:2012
749
  msgid "Display error messages"
750
  msgstr "Hata mesajlarını göster"
751
 
752
+ #: contact_form.php:2013
753
  msgid "Color of the input field errors."
754
  msgstr "Giriş alanlarının hata rengi"
755
 
756
+ #: contact_form.php:2014
757
  msgid "Display error messages & color of the input field errors"
758
  msgstr "Hata mesajlarını ve giriş alanı hata rengini göster"
759
 
760
+ #: contact_form.php:2019
761
  msgid "Add placeholder to the input blocks"
762
  msgstr "Giriş alanlarına bilgilendirme notu ekle"
763
 
764
+ #: contact_form.php:2025
765
  msgid "Add tooltips"
766
  msgstr "Şunları ekle:"
767
 
768
+ #: contact_form.php:2039
769
  msgid "Email address"
770
  msgstr "E-posta adresi"
771
 
772
+ #: contact_form.php:2044 contact_form.php:3210 contact_form.php:3251
773
  msgid "Phone Number"
774
  msgstr "Telefon Numarası"
775
 
776
+ #: contact_form.php:2070
777
  msgid "Style options"
778
  msgstr "Tasarım ayarları"
779
 
780
+ #: contact_form.php:2074
781
  msgid "Text color"
782
  msgstr "Metin rengi"
783
 
784
+ #: contact_form.php:2079
785
  msgid "Label text color"
786
  msgstr "Etiket metninin rengi"
787
 
788
+ #: contact_form.php:2084
789
  msgid "Placeholder color"
790
  msgstr "Bilgilendirme notu rengi"
791
 
792
+ #: contact_form.php:2089
793
  msgid "Errors color"
794
  msgstr "Hataların renkleri"
795
 
796
+ #: contact_form.php:2094
797
  msgid "Error text color"
798
  msgstr "Hata metni rengi"
799
 
800
+ #: contact_form.php:2099
801
  msgid "Background color of the input field errors"
802
  msgstr "giriş alanı hataları için arka plan rengi"
803
 
804
+ #: contact_form.php:2104
805
  msgid "Border color of the input field errors"
806
  msgstr "Giriş alanı hataları için border rengi"
807
 
808
+ #: contact_form.php:2109
809
  msgid "Placeholder color of the input field errors"
810
  msgstr "Giriş alanı hataları için bilgilendirme notu rengi"
811
 
812
+ #: contact_form.php:2114
813
  msgid "Input fields"
814
  msgstr "Giriş alanları"
815
 
816
+ #: contact_form.php:2119
817
  msgid "Input fields background color"
818
  msgstr "Giriş alanları arka plan rengi"
819
 
820
+ #: contact_form.php:2124
821
  msgid "Text fields color"
822
  msgstr "Metin alanlarının rengi"
823
 
824
+ #: contact_form.php:2128
825
  msgid "Border width in px, numbers only"
826
  msgstr "Bırder genişliği, piksel cinsinden, sadece sayı"
827
 
828
+ #: contact_form.php:2133 contact_form.php:2157
829
  msgid "Border color"
830
  msgstr "Border rengi"
831
 
832
+ #: contact_form.php:2138
833
  msgid "Submit button"
834
  msgstr "Gönderme butonu"
835
 
836
  # #: contact_form.php:928
837
+ #: contact_form.php:2142
838
  msgid "Width in px, numbers only"
839
  msgstr "Piksel cinsinden genişlik, sadece sayı"
840
 
841
+ #: contact_form.php:2147
842
  msgid "Button color"
843
  msgstr "Buton rengi"
844
 
845
+ #: contact_form.php:2152
846
  msgid "Button text color"
847
  msgstr "Buton yazı rengi"
848
 
849
+ #: contact_form.php:2181
850
  #, fuzzy
851
  msgid "Contact Form | Preview"
852
  msgstr "İletişim Formu PRO | Ön İzleme"
853
 
854
+ #: contact_form.php:2182
855
  msgid "Drag the necessary field to sort fields."
856
  msgstr ""
857
 
858
+ #: contact_form.php:2408
859
  #, fuzzy
860
  msgid ""
861
  "If you would like to add the Contact Form to your website, just copy and "
864
  "Eğer sitenize iletişim formu eklemek istiyorsanız, şu kısa kodu yazınıza, "
865
  "sayfanıza ya da bileşen alanınıza eklemeniz yeterli."
866
 
867
+ #: contact_form.php:2536
868
  msgid "Sorry, email message could not be delivered."
869
  msgstr "Üzgünüz, e-posta mesajınız gönderilemedi."
870
 
871
+ #: contact_form.php:3137 contact_form.php:3139
872
  msgid "Sent from (ip address)"
873
  msgstr "Gönderilen (IP Adresi)"
874
 
875
+ #: contact_form.php:3167
876
  msgid "Contact from"
877
  msgstr "İletişim Formu"
878
 
879
+ #: contact_form.php:3172 contact_form.php:3221
880
  msgid "Site"
881
  msgstr "Website"
882
 
883
+ #: contact_form.php:3351
884
  msgid ""
885
  "If you can see this MIME, it means that the MIME type is not supported by "
886
  "your email client!"
888
  "Eğer bu MIME'ı görüyorsanız, bu e-posta sunucunuzun MIME'ı desteklemediği "
889
  "anlamına gelir!"
890
 
891
+ #: contact_form.php:3434
892
  msgid "FAQ"
893
  msgstr "SSS"
894
 
895
+ #: contact_form.php:3435
896
  msgid "Support"
897
  msgstr "Destek"
898
 
899
+ #: contact_form.php:3484
900
  msgid "Are you sure that you want to delete this language data?"
901
  msgstr "Bu dile ait verileri silmek istediğinize emin misiniz?"
902
 
903
+ #: contact_form.php:3505
904
  #, fuzzy
905
  msgid "Add multiple forms"
906
  msgstr "Forma ekle"
907
 
908
+ #: contact_form.php:3505
909
  msgid ""
910
  "Install Contact Form Multi plugin to create unlimited number of contact "
911
  "forms."
912
  msgstr ""
913
 
914
+ #: contact_form.php:3510
915
  #, fuzzy
916
  msgid "Learn more"
917
  msgstr "Llegir més"
918
 
919
+ #: contact_form.php:3751
920
  msgid "Close notice"
921
  msgstr ""
922
 
923
+ #: contact_form.php:3756
924
  #, fuzzy
925
  msgid "allows to store your messages to the database."
926
  msgstr "E-postaları veritabanına kaydet"
927
 
928
+ #: contact_form.php:3757
929
  msgid "Manage messages that have been sent from your website."
930
  msgstr ""
931
 
932
+ #: contact_form.php:3760
933
  msgid "Learn More"
934
  msgstr ""
935
 
936
+ #: contact_form.php:3820
937
  #, fuzzy
938
  msgid "Contact form"
939
  msgstr "İletişim Formu"
940
 
941
+ #: contact_form.php:3833 contact_form.php:3843
942
  #, fuzzy
943
  msgid "Language"
944
  msgstr "Bir dil ekle"
945
 
 
 
 
 
 
 
 
 
946
  #~ msgid "Name:"
947
  #~ msgstr "İsim:"
948
 
languages/contact-form-plugin-uk.mo CHANGED
Binary file
languages/contact-form-plugin-uk.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: 2017-02-27 16:24+0300\n"
6
- "PO-Revision-Date: 2017-03-02 12:58+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: The BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: uk\n"
@@ -18,63 +18,63 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  # @ contact_form
21
- #: contact_form.php:42 contact_form.php:1066
22
  msgid "Contact Form Settings"
23
  msgstr "Налаштування Contact Form"
24
 
25
  # @ contact_form
26
- #: contact_form.php:42
27
  msgid "Contact Form"
28
  msgstr "Contact Form"
29
 
30
  # @ contact_form
31
- #: contact_form.php:295 contact_form.php:1246 contact_form.php:1336
32
- #: contact_form.php:1727 contact_form.php:1765 contact_form.php:2011
33
- #: contact_form.php:3138 contact_form.php:3184
34
  msgid "Name"
35
  msgstr "Ім'я"
36
 
37
  # @ contact_form
38
- #: contact_form.php:296 contact_form.php:1383 contact_form.php:1728
39
- #: contact_form.php:1766 contact_form.php:2016 contact_form.php:3145
40
- #: contact_form.php:3190
41
  msgid "Address"
42
  msgstr "Адреса"
43
 
44
  # @ contact_form
45
- #: contact_form.php:297 contact_form.php:1399 contact_form.php:1729
46
- #: contact_form.php:1767
47
  msgid "Email Address"
48
  msgstr "Email"
49
 
50
  # @ contact_form
51
- #: contact_form.php:298 contact_form.php:1422 contact_form.php:1730
52
- #: contact_form.php:1768
53
  msgid "Phone number"
54
  msgstr "Номер телефону"
55
 
56
  # @ contact_form
57
- #: contact_form.php:299 contact_form.php:1438 contact_form.php:1731
58
- #: contact_form.php:1769 contact_form.php:2031 contact_form.php:3156
59
- #: contact_form.php:3199
60
  msgid "Subject"
61
  msgstr "Тема"
62
 
63
  # @ contact_form
64
- #: contact_form.php:300 contact_form.php:1462 contact_form.php:1732
65
- #: contact_form.php:1770 contact_form.php:2035 contact_form.php:3161
66
- #: contact_form.php:3203
67
  msgid "Message"
68
  msgstr "Повідомлення"
69
 
70
  # @ contact_form
71
- #: contact_form.php:301 contact_form.php:1733 contact_form.php:1771
72
- #: contact_form.php:2040
73
  msgid "Attachment"
74
  msgstr "Вкладений файл"
75
 
76
  # @ contact_form
77
- #: contact_form.php:302
78
  msgid ""
79
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
80
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -84,86 +84,86 @@ msgstr ""
84
  "PPT."
85
 
86
  # @ contact_form
87
- #: contact_form.php:303 contact_form.php:1735 contact_form.php:1773
88
  msgid "Send me a copy"
89
  msgstr "Надіслати мені копію"
90
 
91
  # @ contact_form
92
- #: contact_form.php:304 contact_form.php:1736 contact_form.php:1774
93
  msgid "Submit"
94
  msgstr "Підтвердити"
95
 
96
  # @ contact_form
97
- #: contact_form.php:305
98
  msgid "Your name is required."
99
  msgstr "Необхідно вказати своє ім'я."
100
 
101
  # @ contact_form
102
- #: contact_form.php:306
103
  msgid "Address is required."
104
  msgstr "Необхідно вказати свою адресу"
105
 
106
  # @ contact_form
107
- #: contact_form.php:307
108
  msgid "A valid email address is required."
109
  msgstr "Необхідно вказати коректну email-адресу."
110
 
111
  # @ contact_form
112
- #: contact_form.php:308
113
  msgid "Phone number is required."
114
  msgstr "Необхідно вказати номер телефону."
115
 
116
  # @ contact_form
117
- #: contact_form.php:309
118
  msgid "Subject is required."
119
  msgstr "Необхідно вказати тему."
120
 
121
  # @ contact_form
122
- #: contact_form.php:310
123
  msgid "Message text is required."
124
  msgstr "Повідомлення не може бути порожнім."
125
 
126
  # @ contact_form
127
- #: contact_form.php:311
128
  msgid "File format is not valid."
129
  msgstr "Некоректний формат файлу."
130
 
131
  # @ contact_form
132
- #: contact_form.php:312
133
  msgid "File upload error."
134
  msgstr "Помилка завантаження файлу."
135
 
136
  # @ contact_form
137
- #: contact_form.php:313
138
  msgid "The file could not be uploaded."
139
  msgstr "Неможна завантажити файл."
140
 
141
  # @ contact_form
142
- #: contact_form.php:314
143
  msgid "This file is too large."
144
  msgstr "Файл занадто великий."
145
 
146
  # @ contact_form
147
- #: contact_form.php:315
148
  msgid "Please fill out the CAPTCHA."
149
  msgstr "Будь ласка, введіть CAPTCHA."
150
 
151
  # @ contact_form
152
- #: contact_form.php:316
153
  msgid "Please make corrections below and try again."
154
  msgstr "Будь ласка, внесіть поправки у виділені поля і спробуйте знову."
155
 
156
  # @ contact_form
157
- #: contact_form.php:318
158
  msgid "Thank you for contacting us."
159
  msgstr "Дякуємо, що зв'язалися з нами."
160
 
161
  # @ contact_form
162
- #: contact_form.php:761 contact_form.php:1023
163
  msgid "Settings saved."
164
  msgstr "Налаштування збережено."
165
 
166
- #: contact_form.php:968
167
  msgid ""
168
  "Email 'FROM' field option was changed, which may cause email messages being "
169
  "moved to the spam folder or email delivery failures."
@@ -172,7 +172,7 @@ msgstr ""
172
  "повідомлення не будуть доставлені або потраплять до папки Спам."
173
 
174
  # @ contact_form
175
- #: contact_form.php:978
176
  msgid ""
177
  "If the 'Redirect to page' option is selected then the URL field should be in "
178
  "the following format"
@@ -181,69 +181,69 @@ msgstr ""
181
  "бути заповнене в наступному форматі"
182
 
183
  # @ contact_form
184
- #: contact_form.php:985
185
  msgid "Such user does not exist."
186
  msgstr "Такого користувача не існує."
187
 
188
  # @ contact_form
189
- #: contact_form.php:995
190
  msgid ""
191
  "Please enter a valid email address in the 'Use this email address' field."
192
  msgstr ""
193
  "Будь ласка, введіть коректну email-адресу у поле 'Використовувати цей email'."
194
 
195
  # @ contact_form
196
- #: contact_form.php:1003
197
  msgid "Please enter a valid email address in the 'FROM' field."
198
  msgstr "Будь ласка, введіть коректну email-адресу у полі \"Від\"."
199
 
200
  # @ contact_form
201
- #: contact_form.php:1025
202
  msgid "Settings are not saved."
203
  msgstr "Налаштування не збережено."
204
 
205
- #: contact_form.php:1063
206
  msgid "All plugin settings were restored."
207
  msgstr "Всі налаштування плагіну було скинуто до стандартних."
208
 
209
- #: contact_form.php:1069
210
  msgid "How to Use Step-by-step Instruction"
211
  msgstr "Покрокова інструкція з використання плагіна"
212
 
213
  # @ contact_form
214
- #: contact_form.php:1072 contact_form.php:3376 contact_form.php:3390
215
  msgid "Settings"
216
  msgstr "Налаштування"
217
 
218
  # @ contact_form
219
- #: contact_form.php:1073
220
  msgid "Additional settings"
221
  msgstr "Додаткові налаштування"
222
 
223
- #: contact_form.php:1074
224
  msgid "Appearance"
225
  msgstr "Відображення"
226
 
227
- #: contact_form.php:1075
228
  msgid "Custom code"
229
  msgstr "Користувацький код"
230
 
231
  # @ contact_form
232
- #: contact_form.php:1076
233
  msgid "Go PRO"
234
  msgstr "Перейти на Pro версію"
235
 
236
  # @ contact_form
237
- #: contact_form.php:1087
238
  msgid "Notice"
239
  msgstr "Зауважте"
240
 
241
- #: contact_form.php:1091
242
  msgid "NEW_FORM"
243
  msgstr "НОВА_ФОРМА"
244
 
245
  # @ contact_form
246
- #: contact_form.php:1092
247
  msgid ""
248
  "If you want to create multiple contact forms, please install the Contact "
249
  "Form Multi plugin."
@@ -252,7 +252,7 @@ msgstr ""
252
  "встановіть плагін Contact Form Multi."
253
 
254
  # @ contact_form
255
- #: contact_form.php:1101
256
  #, php-format
257
  msgid ""
258
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -261,7 +261,7 @@ msgstr ""
261
  "Якщо ви хочете додати контактну форму на вашу сторінку або до запису, то "
262
  "використовуйте кнопку %s"
263
 
264
- #: contact_form.php:1107
265
  #, php-format
266
  msgid ""
267
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -275,7 +275,7 @@ msgstr ""
275
  "мову контактної форми."
276
 
277
  # @ contact_form
278
- #: contact_form.php:1116
279
  msgid ""
280
  "If you leave the fields empty, the messages will be sent to the email "
281
  "address specified during registration."
@@ -284,17 +284,17 @@ msgstr ""
284
  "адресу, вказану під час реєстрації."
285
 
286
  # @ contact_form
287
- #: contact_form.php:1119
288
  msgid "The user's email address"
289
  msgstr "Email-адреса користувача"
290
 
291
  # @ contact_form
292
- #: contact_form.php:1123
293
  msgid "Select a username"
294
  msgstr "Виберіть ім'я користувача"
295
 
296
  # @ contact_form
297
- #: contact_form.ph
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-23 15:16+0300\n"
6
+ "PO-Revision-Date: 2017-05-23 15:18+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: The BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: uk\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  # @ contact_form
21
+ #: contact_form.php:37 contact_form.php:1064
22
  msgid "Contact Form Settings"
23
  msgstr "Налаштування Contact Form"
24
 
25
  # @ contact_form
26
+ #: contact_form.php:37
27
  msgid "Contact Form"
28
  msgstr "Contact Form"
29
 
30
  # @ contact_form
31
+ #: contact_form.php:280 contact_form.php:1244 contact_form.php:1334
32
+ #: contact_form.php:1725 contact_form.php:1763 contact_form.php:2029
33
+ #: contact_form.php:3181 contact_form.php:3227
34
  msgid "Name"
35
  msgstr "Ім'я"
36
 
37
  # @ contact_form
38
+ #: contact_form.php:281 contact_form.php:1381 contact_form.php:1726
39
+ #: contact_form.php:1764 contact_form.php:2034 contact_form.php:3188
40
+ #: contact_form.php:3233
41
  msgid "Address"
42
  msgstr "Адреса"
43
 
44
  # @ contact_form
45
+ #: contact_form.php:282 contact_form.php:1397 contact_form.php:1727
46
+ #: contact_form.php:1765
47
  msgid "Email Address"
48
  msgstr "Email"
49
 
50
  # @ contact_form
51
+ #: contact_form.php:283 contact_form.php:1420 contact_form.php:1728
52
+ #: contact_form.php:1766
53
  msgid "Phone number"
54
  msgstr "Номер телефону"
55
 
56
  # @ contact_form
57
+ #: contact_form.php:284 contact_form.php:1436 contact_form.php:1729
58
+ #: contact_form.php:1767 contact_form.php:2049 contact_form.php:3199
59
+ #: contact_form.php:3242
60
  msgid "Subject"
61
  msgstr "Тема"
62
 
63
  # @ contact_form
64
+ #: contact_form.php:285 contact_form.php:1460 contact_form.php:1730
65
+ #: contact_form.php:1768 contact_form.php:2053 contact_form.php:3204
66
+ #: contact_form.php:3246
67
  msgid "Message"
68
  msgstr "Повідомлення"
69
 
70
  # @ contact_form
71
+ #: contact_form.php:286 contact_form.php:1731 contact_form.php:1769
72
+ #: contact_form.php:2058
73
  msgid "Attachment"
74
  msgstr "Вкладений файл"
75
 
76
  # @ contact_form
77
+ #: contact_form.php:287
78
  msgid ""
79
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
80
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
84
  "PPT."
85
 
86
  # @ contact_form
87
+ #: contact_form.php:288 contact_form.php:1733 contact_form.php:1771
88
  msgid "Send me a copy"
89
  msgstr "Надіслати мені копію"
90
 
91
  # @ contact_form
92
+ #: contact_form.php:289 contact_form.php:1734 contact_form.php:1772
93
  msgid "Submit"
94
  msgstr "Підтвердити"
95
 
96
  # @ contact_form
97
+ #: contact_form.php:290
98
  msgid "Your name is required."
99
  msgstr "Необхідно вказати своє ім'я."
100
 
101
  # @ contact_form
102
+ #: contact_form.php:291
103
  msgid "Address is required."
104
  msgstr "Необхідно вказати свою адресу"
105
 
106
  # @ contact_form
107
+ #: contact_form.php:292
108
  msgid "A valid email address is required."
109
  msgstr "Необхідно вказати коректну email-адресу."
110
 
111
  # @ contact_form
112
+ #: contact_form.php:293
113
  msgid "Phone number is required."
114
  msgstr "Необхідно вказати номер телефону."
115
 
116
  # @ contact_form
117
+ #: contact_form.php:294
118
  msgid "Subject is required."
119
  msgstr "Необхідно вказати тему."
120
 
121
  # @ contact_form
122
+ #: contact_form.php:295
123
  msgid "Message text is required."
124
  msgstr "Повідомлення не може бути порожнім."
125
 
126
  # @ contact_form
127
+ #: contact_form.php:296
128
  msgid "File format is not valid."
129
  msgstr "Некоректний формат файлу."
130
 
131
  # @ contact_form
132
+ #: contact_form.php:297
133
  msgid "File upload error."
134
  msgstr "Помилка завантаження файлу."
135
 
136
  # @ contact_form
137
+ #: contact_form.php:298
138
  msgid "The file could not be uploaded."
139
  msgstr "Неможна завантажити файл."
140
 
141
  # @ contact_form
142
+ #: contact_form.php:299
143
  msgid "This file is too large."
144
  msgstr "Файл занадто великий."
145
 
146
  # @ contact_form
147
+ #: contact_form.php:300
148
  msgid "Please fill out the CAPTCHA."
149
  msgstr "Будь ласка, введіть CAPTCHA."
150
 
151
  # @ contact_form
152
+ #: contact_form.php:301
153
  msgid "Please make corrections below and try again."
154
  msgstr "Будь ласка, внесіть поправки у виділені поля і спробуйте знову."
155
 
156
  # @ contact_form
157
+ #: contact_form.php:303
158
  msgid "Thank you for contacting us."
159
  msgstr "Дякуємо, що зв'язалися з нами."
160
 
161
  # @ contact_form
162
+ #: contact_form.php:759 contact_form.php:1021
163
  msgid "Settings saved."
164
  msgstr "Налаштування збережено."
165
 
166
+ #: contact_form.php:966
167
  msgid ""
168
  "Email 'FROM' field option was changed, which may cause email messages being "
169
  "moved to the spam folder or email delivery failures."
172
  "повідомлення не будуть доставлені або потраплять до папки Спам."
173
 
174
  # @ contact_form
175
+ #: contact_form.php:976
176
  msgid ""
177
  "If the 'Redirect to page' option is selected then the URL field should be in "
178
  "the following format"
181
  "бути заповнене в наступному форматі"
182
 
183
  # @ contact_form
184
+ #: contact_form.php:983
185
  msgid "Such user does not exist."
186
  msgstr "Такого користувача не існує."
187
 
188
  # @ contact_form
189
+ #: contact_form.php:993
190
  msgid ""
191
  "Please enter a valid email address in the 'Use this email address' field."
192
  msgstr ""
193
  "Будь ласка, введіть коректну email-адресу у поле 'Використовувати цей email'."
194
 
195
  # @ contact_form
196
+ #: contact_form.php:1001
197
  msgid "Please enter a valid email address in the 'FROM' field."
198
  msgstr "Будь ласка, введіть коректну email-адресу у полі \"Від\"."
199
 
200
  # @ contact_form
201
+ #: contact_form.php:1023
202
  msgid "Settings are not saved."
203
  msgstr "Налаштування не збережено."
204
 
205
+ #: contact_form.php:1061
206
  msgid "All plugin settings were restored."
207
  msgstr "Всі налаштування плагіну було скинуто до стандартних."
208
 
209
+ #: contact_form.php:1067
210
  msgid "How to Use Step-by-step Instruction"
211
  msgstr "Покрокова інструкція з використання плагіна"
212
 
213
  # @ contact_form
214
+ #: contact_form.php:1070 contact_form.php:3419 contact_form.php:3433
215
  msgid "Settings"
216
  msgstr "Налаштування"
217
 
218
  # @ contact_form
219
+ #: contact_form.php:1071
220
  msgid "Additional settings"
221
  msgstr "Додаткові налаштування"
222
 
223
+ #: contact_form.php:1072
224
  msgid "Appearance"
225
  msgstr "Відображення"
226
 
227
+ #: contact_form.php:1073
228
  msgid "Custom code"
229
  msgstr "Користувацький код"
230
 
231
  # @ contact_form
232
+ #: contact_form.php:1074
233
  msgid "Go PRO"
234
  msgstr "Перейти на Pro версію"
235
 
236
  # @ contact_form
237
+ #: contact_form.php:1085
238
  msgid "Notice"
239
  msgstr "Зауважте"
240
 
241
+ #: contact_form.php:1089
242
  msgid "NEW_FORM"
243
  msgstr "НОВА_ФОРМА"
244
 
245
  # @ contact_form
246
+ #: contact_form.php:1090
247
  msgid ""
248
  "If you want to create multiple contact forms, please install the Contact "
249
  "Form Multi plugin."
252
  "встановіть плагін Contact Form Multi."
253
 
254
  # @ contact_form
255
+ #: contact_form.php:1099
256
  #, php-format
257
  msgid ""
258
  "If you would like to add a Contact Form to your page or post, please use %s "
261
  "Якщо ви хочете додати контактну форму на вашу сторінку або до запису, то "
262
  "використовуйте кнопку %s"
263
 
264
+ #: contact_form.php:1105
265
  #, php-format
266
  msgid ""
267
  "You can add the Contact Form to your page or post by clicking on %s button "
275
  "мову контактної форми."
276
 
277
  # @ contact_form
278
+ #: contact_form.php:1114
279
  msgid ""
280
  "If you leave the fields empty, the messages will be sent to the email "
281
  "address specified during registration."
284
  "адресу, вказану під час реєстрації."
285
 
286
  # @ contact_form
287
+ #: contact_form.php:1117
288
  msgid "The user's email address"
289
  msgstr "Email-адреса користувача"
290
 
291
  # @ contact_form
292
+ #: contact_form.php:1121
293
  msgid "Select a username"
294
  msgstr "Виберіть ім'я користувача"
295
 
296
  # @ contact_form