Contact Form by BestWebSoft - Version 3.76

Version Description

  • 14.04.2014 =
  • Update : We updated all functionality for wordpress 3.8.2.
Download this release

Release Info

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

Code changes from version 3.75 to 3.76

Files changed (66) hide show
  1. bws_menu/bws_menu.php +5 -5
  2. bws_menu/css/general_style.css +112 -10
  3. bws_menu/css/general_style_wp_before_3.8.css +126 -22
  4. bws_menu/images/pattern.png +0 -0
  5. bws_menu/images/pattern_bg.png +0 -0
  6. contact_form.php +296 -258
  7. css/style.css +1 -14
  8. css/style_wp_before_3.8.css +0 -13
  9. images/banner.png +0 -0
  10. images/banner_for_ctfrmtdb.png +0 -0
  11. images/close_banner.png +0 -0
  12. images/gray-grad.png +0 -0
  13. images/pro_screen_1.png +0 -0
  14. images/px.png +0 -0
  15. images/tooltip_attachment_tips.png +0 -0
  16. images/tooltip_sendme_block.png +0 -0
  17. js/script.js +0 -0
  18. languages/contact_form-af_ZA.mo +0 -0
  19. languages/contact_form-af_ZA.po +334 -310
  20. languages/contact_form-be_BY.mo +0 -0
  21. languages/contact_form-be_BY.po +361 -329
  22. languages/contact_form-ca.mo +0 -0
  23. languages/contact_form-ca.po +368 -329
  24. languages/contact_form-de_DE.mo +0 -0
  25. languages/contact_form-de_DE.po +369 -329
  26. languages/contact_form-et.mo +0 -0
  27. languages/contact_form-et.po +368 -329
  28. languages/contact_form-fi.mo +0 -0
  29. languages/contact_form-fi.po +361 -329
  30. languages/contact_form-fr_FR.mo +0 -0
  31. languages/contact_form-fr_FR.po +369 -335
  32. languages/contact_form-hu_HU.mo +0 -0
  33. languages/contact_form-hu_HU.po +361 -329
  34. languages/contact_form-it_IT.mo +0 -0
  35. languages/contact_form-it_IT.po +361 -329
  36. languages/contact_form-ja.mo +0 -0
  37. languages/contact_form-ja.po +368 -329
  38. languages/contact_form-nl_NL.mo +0 -0
  39. languages/contact_form-nl_NL.po +361 -329
  40. languages/contact_form-pt_BR.mo +0 -0
  41. languages/contact_form-pt_BR.po +358 -331
  42. languages/contact_form-pt_PT.mo +0 -0
  43. languages/contact_form-pt_PT.po +361 -329
  44. languages/contact_form-ru_RU.mo +0 -0
  45. languages/contact_form-ru_RU.po +368 -329
  46. languages/contact_form-sk_SK.mo +0 -0
  47. languages/contact_form-sk_SK.po +360 -328
  48. languages/contact_form-sr_RS.mo +0 -0
  49. languages/contact_form-sr_RS.po +361 -329
  50. languages/contact_form-sv_SE.mo +0 -0
  51. languages/contact_form-sv_SE.po +368 -329
  52. languages/contact_form-tr.mo +0 -0
  53. languages/contact_form-tr.po +367 -329
  54. languages/contact_form-uk.mo +0 -0
  55. languages/contact_form-uk.po +368 -329
  56. languages/contact_form-vi.mo +0 -0
  57. languages/contact_form-vi.po +368 -329
  58. languages/contact_form-zh_CN.mo +0 -0
  59. languages/contact_form-zh_CN.po +366 -329
  60. readme.txt +8 -2
  61. screenshot-1.png +0 -0
  62. screenshot-2.png +0 -0
  63. screenshot-3.png +0 -0
  64. screenshot-4.png +0 -0
  65. screenshot-5.png +0 -0
  66. screenshot-6.png +0 -0
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.2.4
5
  */
6
 
7
  if ( ! function_exists( 'bws_add_menu_render' ) ) {
@@ -836,7 +836,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
836
  <?php } ?>
837
  </div>
838
  <?php }
839
- }
840
 
841
  if ( ! function_exists ( 'bws_plugin_init' ) ) {
842
  function bws_plugin_init() {
@@ -849,9 +849,9 @@ if ( ! function_exists ( 'bws_admin_head' ) ) {
849
  function bws_admin_head() {
850
  global $wp_version;
851
  if ( $wp_version < 3.8 )
852
- wp_enqueue_style( 'pdfprnt-stylesheet', plugins_url( 'css/general_style_wp_before_3.8.css', __FILE__ ) );
853
  else
854
- wp_enqueue_style( 'pdfprnt-stylesheet', plugins_url( 'css/general_style.css', __FILE__ ) );
855
 
856
  if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
857
  wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
@@ -864,6 +864,6 @@ if ( ! function_exists ( 'bws_admin_head' ) ) {
864
  }
865
  }
866
 
867
- add_action( 'init', 'bws_plugin_init' );
868
  add_action( 'admin_enqueue_scripts', 'bws_admin_head' );
869
  ?>
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.2.6
5
  */
6
 
7
  if ( ! function_exists( 'bws_add_menu_render' ) ) {
836
  <?php } ?>
837
  </div>
838
  <?php }
839
+ }
840
 
841
  if ( ! function_exists ( 'bws_plugin_init' ) ) {
842
  function bws_plugin_init() {
849
  function bws_admin_head() {
850
  global $wp_version;
851
  if ( $wp_version < 3.8 )
852
+ wp_enqueue_style( 'bws-admin-stylesheet', plugins_url( 'css/general_style_wp_before_3.8.css', __FILE__ ) );
853
  else
854
+ wp_enqueue_style( 'bws-admin-stylesheet', plugins_url( 'css/general_style.css', __FILE__ ) );
855
 
856
  if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
857
  wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
864
  }
865
  }
866
 
867
+ add_action( 'admin_init', 'bws_plugin_init' );
868
  add_action( 'admin_enqueue_scripts', 'bws_admin_head' );
869
  ?>
bws_menu/css/general_style.css CHANGED
@@ -49,30 +49,132 @@
49
  /*
50
  * styles for pro_version settings and tooltip
51
  */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  table.bws_pro_version {
53
  background: #E0E0E0;
54
  border: 1px solid #AAA;
55
  margin-bottom: 5px;
56
- width: auto !important;
57
- float: left;
 
 
58
  }
59
  table.bws_pro_version th,
60
  table.bws_pro_version td {
61
- color: #555;
62
  padding-left: 10px;
63
  }
64
- td.bws_pro_version {
65
- background: #E0E0E0;
66
- border: 1px solid #AAA;
67
- }
68
  .bws_pro_version_tooltip {
69
  background: #FFF;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  border: 1px solid #AAA;
 
 
 
71
  }
72
- .form-table.bws_pro_version .bws_pro_version_tooltip th {
73
- font-weight: normal;
74
- padding-bottom: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  }
 
76
  /*
77
  * styles for banner
78
  */
49
  /*
50
  * styles for pro_version settings and tooltip
51
  */
52
+ td.bws_pro_version,
53
+ tr.bws_pro_version,
54
+ .nav-tab.bws_plugin_menu_pro_version,
55
+ .nav-tab.bws_plugin_menu_pro_version:hover {
56
+ background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
57
+ border: 1px solid #AAA;
58
+ }
59
+ td.bws_pro_version_tooltip {
60
+ border: 1px solid #AAA;
61
+ position: inherit;
62
+ }
63
+ .bws_pro_version_bloc {
64
+ position: relative;
65
+ margin: 5px 0;
66
+ border: 1px solid #AAAAAA;
67
+ max-width: 800px;
68
+ }
69
+ .bws_table_bg {
70
+ background: #f8e268 url("../images/pattern.png");
71
+ opacity: 0.11;
72
+ filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/
73
+ -moz-opacity: 0.11; /* Mozilla 1.6 и ниже */
74
+ width: 100%;
75
+ height: 100%;
76
+ position: absolute;
77
+ z-index: 1;
78
+ }
79
+ .bws_pro_version_table_bloc table.bws_pro_version {
80
+ background: transparent;
81
+ margin: 0;
82
+ border: none;
83
+ width: 100%;
84
+ }
85
  table.bws_pro_version {
86
  background: #E0E0E0;
87
  border: 1px solid #AAA;
88
  margin-bottom: 5px;
89
+ width: auto;
90
+ }
91
+ table.bws_pro_version tbody {
92
+ display: block;
93
  }
94
  table.bws_pro_version th,
95
  table.bws_pro_version td {
 
96
  padding-left: 10px;
97
  }
 
 
 
 
98
  .bws_pro_version_tooltip {
99
  background: #FFF;
100
+ border-top: 1px solid #AAA;
101
+ position: relative;
102
+ z-index: 2;
103
+ padding: 10px;
104
+ font-size: 14px;
105
+ }
106
+ .bws_pro_version_tooltip .bws_button {
107
+ background: #dd5738;
108
+ border: none;
109
+ text-decoration: none;
110
+ color: #fff;
111
+ padding: 5px 17px;
112
+ border-radius: 2px;
113
+ margin: 5px 10px;
114
+ float: right;
115
+ }
116
+ .bws_pro_version_tooltip .bws_info {
117
+ float: left;
118
+ padding-top: 10px;
119
+ }
120
+ div.bws_pro_version {
121
+ padding: 5px 10px;
122
+ }
123
+ a.bws_plugin_pro_version {
124
+ display: block;
125
+ background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
126
  border: 1px solid #AAA;
127
+ padding: 5px;
128
+ text-decoration: none;
129
+ color: #666;
130
  }
131
+ .bws_pro_version_single_link,
132
+ .bws_pro_version_single_link:hover {
133
+ text-decoration: none;
134
+ color: #666;
135
+ }
136
+ /* style for mini-block (ex. google map) */
137
+ .bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version {
138
+ width: auto;
139
+ }
140
+ .bws_pro_version_bloc_mini .bws_pro_version_tooltip {
141
+ padding: 10px 61px;
142
+ text-align: center;
143
+ width: 200px;
144
+ }
145
+ .bws_pro_version_bloc_mini .bws_pro_version_tooltip a {
146
+ display: inline-block;
147
+ line-height: 1.5;
148
+ }
149
+ .bws_pro_version_bloc_mini .bws_pro_version_tooltip .bws_button {
150
+ margin: 10px 10px 5px;
151
+ padding: 5px 50px;
152
+ float: none;
153
+ }
154
+ /* #### Mobile Phones Portrait or Landscape #### */
155
+ @media screen and (max-device-width: 640px) {
156
+ .bws_pro_version_tooltip {
157
+ padding: 10px;
158
+ text-align: center;
159
+ }
160
+ .bws_pro_version_tooltip .bws_info {
161
+ float: none;
162
+ text-align: center;
163
+ }
164
+ .bws_pro_version_tooltip a {
165
+ display: inline-block;
166
+ line-height: 1.5;
167
+ }
168
+ .bws_pro_version_tooltip .bws_info a {
169
+ display: block;
170
+ }
171
+ .bws_pro_version_tooltip .bws_button {
172
+ margin: 10px 10px 5px;
173
+ padding: 5px 50px;
174
+ float: none;
175
+ }
176
  }
177
+
178
  /*
179
  * styles for banner
180
  */
bws_menu/css/general_style_wp_before_3.8.css CHANGED
@@ -1,34 +1,34 @@
1
  #adminmenu #toplevel_page_bws_plugins div.wp-menu-image {
2
- background: url("../images/icon_16.png") no-repeat scroll center center transparent;
3
  }
4
  #wpadminbar li#wp-admin-bar-pdfprnt-bar-menu a:hover span.admin-bar-menu-bws-icon {
5
- background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
6
  }
7
  #adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,
8
  #adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image {
9
- background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
10
  }
11
  .wrap #icon-options-general.icon32-bws {
12
- background: url("../images/icon_36.png") no-repeat scroll left top transparent;
13
  }
14
  #toplevel_page_bws_plugins .wp-submenu .wp-first-item {
15
- display: none;
16
  }
17
  /*
18
  * styles for rate-support div on the settings page
19
  */
20
  .bws-plugin-reviews {
21
- background: none repeat scroll 0 0 #BEE1F1;
22
- border: 1px solid #70A8C2;
23
- border-radius: 3px;
24
- max-width: 700px;
25
  }
26
  .bws-plugin-reviews-rate {
27
- padding: 10px;
28
- border-bottom: 1px dashed #70A8C2;
29
  }
30
  .bws-plugin-reviews-support {
31
- padding: 10px;
32
  }
33
  /*
34
  * styles for Go PRO tab
@@ -48,29 +48,133 @@
48
  /*
49
  * styles for pro_version settings and tooltip
50
  */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  table.bws_pro_version {
52
  background: #E0E0E0;
53
  border: 1px solid #AAA;
54
  margin-bottom: 5px;
55
- width: auto !important;
56
- float: left;
 
 
57
  }
58
  table.bws_pro_version th,
59
  table.bws_pro_version td {
60
- color: #555;
61
  padding-left: 10px;
62
  }
63
- td.bws_pro_version {
64
- background: #E0E0E0;
65
- border: 1px solid #AAA;
66
- }
67
  .bws_pro_version_tooltip {
68
  background: #FFF;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  border: 1px solid #AAA;
 
 
 
 
 
 
 
 
 
 
 
 
70
  }
71
- .form-table.bws_pro_version .bws_pro_version_tooltip th {
72
- font-weight: normal;
73
- padding-bottom: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  }
75
  /*
76
  * styles for banner
1
  #adminmenu #toplevel_page_bws_plugins div.wp-menu-image {
2
+ background: url("../images/icon_16.png") no-repeat scroll center center transparent;
3
  }
4
  #wpadminbar li#wp-admin-bar-pdfprnt-bar-menu a:hover span.admin-bar-menu-bws-icon {
5
+ background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
6
  }
7
  #adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,
8
  #adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image {
9
+ background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
10
  }
11
  .wrap #icon-options-general.icon32-bws {
12
+ background: url("../images/icon_36.png") no-repeat scroll left top transparent;
13
  }
14
  #toplevel_page_bws_plugins .wp-submenu .wp-first-item {
15
+ display: none;
16
  }
17
  /*
18
  * styles for rate-support div on the settings page
19
  */
20
  .bws-plugin-reviews {
21
+ background: none repeat scroll 0 0 #BEE1F1;
22
+ border: 1px solid #70A8C2;
23
+ border-radius: 3px;
24
+ max-width: 700px;
25
  }
26
  .bws-plugin-reviews-rate {
27
+ padding: 10px;
28
+ border-bottom: 1px dashed #70A8C2;
29
  }
30
  .bws-plugin-reviews-support {
31
+ padding: 10px;
32
  }
33
  /*
34
  * styles for Go PRO tab
48
  /*
49
  * styles for pro_version settings and tooltip
50
  */
51
+ td.bws_pro_version,
52
+ tr.bws_pro_version,
53
+ .nav-tab.bws_plugin_menu_pro_version,
54
+ .nav-tab.bws_plugin_menu_pro_version:hover {
55
+ background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
56
+ border: 1px solid #AAA;
57
+ }
58
+ .nav-tab.bws_plugin_menu_pro_version:hover {
59
+ color: #AAAAAA;
60
+ }
61
+ td.bws_pro_version_tooltip {
62
+ border: 1px solid #AAA;
63
+ position: inherit;
64
+ }
65
+ .bws_pro_version_bloc {
66
+ position: relative;
67
+ margin: 5px 0;
68
+ border: 1px solid #AAAAAA;
69
+ max-width: 800px;
70
+ }
71
+ .bws_table_bg {
72
+ background: #f8e268 url("../images/pattern.png");
73
+ opacity: 0.11;
74
+ filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/
75
+ -moz-opacity: 0.11; /* Mozilla 1.6 и ниже */
76
+ width: 100%;
77
+ height: 100%;
78
+ position: absolute;
79
+ z-index: 1;
80
+ }
81
+ .bws_pro_version_table_bloc table.bws_pro_version {
82
+ background: transparent;
83
+ margin: 0;
84
+ border: none;
85
+ width: 100%;
86
+ }
87
  table.bws_pro_version {
88
  background: #E0E0E0;
89
  border: 1px solid #AAA;
90
  margin-bottom: 5px;
91
+ width: auto;
92
+ }
93
+ table.bws_pro_version tbody {
94
+ display: block;
95
  }
96
  table.bws_pro_version th,
97
  table.bws_pro_version td {
 
98
  padding-left: 10px;
99
  }
 
 
 
 
100
  .bws_pro_version_tooltip {
101
  background: #FFF;
102
+ border-top: 1px solid #AAA;
103
+ position: relative;
104
+ z-index: 2;
105
+ padding: 10px;
106
+ font-size: 14px;
107
+ }
108
+ .bws_pro_version_tooltip .bws_button {
109
+ background: #dd5738;
110
+ border: none;
111
+ text-decoration: none;
112
+ color: #fff;
113
+ padding: 5px 17px;
114
+ border-radius: 2px;
115
+ margin: 5px 10px;
116
+ float: right;
117
+ }
118
+ .bws_pro_version_tooltip .bws_info {
119
+ float: left;
120
+ padding-top: 10px;
121
+ }
122
+ div.bws_pro_version {
123
+ padding: 5px 10px;
124
+ }
125
+ a.bws_plugin_pro_version {
126
+ display: block;
127
+ background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
128
  border: 1px solid #AAA;
129
+ padding: 5px;
130
+ text-decoration: none;
131
+ color: #666;
132
+ }
133
+ .bws_pro_version_single_link,
134
+ .bws_pro_version_single_link:hover {
135
+ text-decoration: none;
136
+ color: #666;
137
+ }
138
+ /* style for mini-block (ex. google map) */
139
+ .bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version {
140
+ width: auto;
141
  }
142
+ .bws_pro_version_bloc_mini .bws_pro_version_tooltip {
143
+ padding: 10px 61px;
144
+ text-align: center;
145
+ width: 200px;
146
+ }
147
+ .bws_pro_version_bloc_mini .bws_pro_version_tooltip a {
148
+ display: inline-block;
149
+ line-height: 1.5;
150
+ }
151
+ .bws_pro_version_bloc_mini .bws_pro_version_tooltip .bws_button {
152
+ margin: 10px 10px 5px;
153
+ padding: 5px 50px;
154
+ float: none;
155
+ }
156
+ /* #### Mobile Phones Portrait or Landscape #### */
157
+ @media screen and (max-device-width: 640px) {
158
+ .bws_pro_version_tooltip {
159
+ padding: 10px;
160
+ text-align: center;
161
+ }
162
+ .bws_pro_version_tooltip .bws_info {
163
+ float: none;
164
+ text-align: center;
165
+ }
166
+ .bws_pro_version_tooltip a {
167
+ display: inline-block;
168
+ line-height: 1.5;
169
+ }
170
+ .bws_pro_version_tooltip .bws_info a {
171
+ display: block;
172
+ }
173
+ .bws_pro_version_tooltip .bws_button {
174
+ margin: 10px 10px 5px;
175
+ padding: 5px 50px;
176
+ float: none;
177
+ }
178
  }
179
  /*
180
  * styles for banner
bws_menu/images/pattern.png ADDED
Binary file
bws_menu/images/pattern_bg.png ADDED
Binary file
contact_form.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
- Version: 3.75
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -29,7 +29,7 @@ License: GPLv2 or later
29
  if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
30
  function cntctfrm_admin_menu() {
31
  global $bstwbsftwppdtplgns_options, $wpmu, $bstwbsftwppdtplgns_added_menu;
32
- $bws_menu_version = '1.2.4';
33
  $base = plugin_basename(__FILE__);
34
 
35
  if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
@@ -779,8 +779,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
779
  $error = __( "Please, enter Your license key", 'contact_form' );
780
  }
781
  }
782
- }
783
- ?>
784
  <div class="wrap">
785
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
786
  <h2><?php _e( "Contact Form Settings", 'contact_form' ); ?></h2>
@@ -792,7 +791,13 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
792
  <div class="updated fade" <?php if ( ! isset( $_POST['cntctfrm_form_submit'] ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
793
  <div id="cntctfrm_settings_notice" class="updated fade" style="display:none"><p><strong><?php _e( "Notice:", 'contact_form' ); ?></strong> <?php _e( "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button.", 'contact_form' ); ?></p></div>
794
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
795
- <?php if ( ! isset( $_GET['action'] ) ) { ?>
 
 
 
 
 
 
796
  <form id="cntctfrm_settings_form" method="post" action="admin.php?page=contact_form.php">
797
  <span style="margin-bottom:15px;">
798
  <?php if ( ! isset( $contact_form_multi_active ) ) { ?>
@@ -809,8 +814,8 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
809
  </span>
810
  <table class="form-table" style="width:auto;">
811
  <tr valign="top">
812
- <th scope="row" style="width:200px;"><?php _e( "The user's email address:", 'contact_form' ); ?> </th>
813
- <td colspan="2" style="width:750px;">
814
  <input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php if ( $cntctfrm_options['cntctfrm_select_email'] == 'user' ) echo "checked=\"checked\" "; ?>/>
815
  <select name="cntctfrm_user_email">
816
  <option disabled><?php _e( "Create a username", 'contact_form' ); ?></option>
@@ -824,36 +829,45 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
824
  </td>
825
  </tr>
826
  <tr valign="top">
827
- <th scope="row" style="width:200px;"><?php _e( "Use this email address:", 'contact_form' ); ?> </th>
828
  <td colspan="2">
829
  <input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php if ( 'custom' == $cntctfrm_options['cntctfrm_select_email'] ) echo "checked=\"checked\" "; ?>/> <input type="text" name="cntctfrm_custom_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_email']; ?>" onfocus="document.getElementById('cntctfrm_select_email_custom').checked = true;" />
830
  <span class="cntctfrm_info"><?php _e( "Enter the email address you want the messages forwarded to.", 'contact_form' ); ?></span>
831
  </td>
832
  </tr>
833
  </table>
834
- <table class="form-table bws_pro_version" style="width:auto;">
835
- <tr valign="top">
836
- <th scope="row" style="width:200px;"><?php _e( "Add department selectbox to the contact form:", 'contact_form' ); ?></th>
837
- <td colspan="2">
838
- <input type="radio" id="cntctfrmpr_select_email_department" name="cntctfrmpr_select_email" value="departments" disabled="disabled" />
839
- <div class="cntctfrmpr_department_table"><img src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="" /></div>
840
- </td>
841
- </tr>
842
- <tr valign="top">
843
- <th scope="row" colspan="2">
844
- * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'contact_form' ); ?>
845
- </th>
846
- </tr>
847
- <tr valign="top" class="bws_pro_version_tooltip">
848
- <th scope="row" colspan="2">
849
- <?php _e( 'This functionality is available in the Pro version of the plugin. For more details, please follow the link', 'contact_form' ); ?>
850
- <a title="Contact Form Pro" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"> <?php _e( 'Contact Form Pro', 'contact_form' ); ?></a>
851
- </th>
852
- </tr>
853
- </table>
 
 
 
 
 
 
 
 
 
854
  <table class="form-table" style="width:auto;">
855
  <tr valign="top">
856
- <th scope="row" style="width:200px;"><?php _e( "Save emails to the database", 'contact_form' ); ?> </th>
857
  <td colspan="2">
858
  <?php if ( array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) || array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) {
859
  if ( 0 < count( preg_grep( '/contact-form-to-db\/contact_form_to_db.php/', $active_plugins ) ) || 0 < count( preg_grep( '/contact-form-to-db-pro\/contact_form_to_db_pro.php/', $active_plugins ) ) ||
@@ -871,14 +885,14 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
871
  </td>
872
  </tr>
873
  <tr valign="top">
874
- <th scope="row" style="width:200px;"><label><input type="checkbox" id="cntctfrm_additions_options" name="cntctfrm_additions_options" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "checked=\"checked\" "; ?> /> <?php _e( "Additional options", 'contact_form' ); ?></label></th>
875
  <td colspan="2">
876
  <input id="cntctfrm_show_additional_settings" type="button" class="button-small button" value="<?php _e( "Show", 'contact_form' ); ?>" style="display: none;">
877
  <input id="cntctfrm_hide_additional_settings" type="button" class="button-small button" value="<?php _e( "Hide", 'contact_form' ); ?>" style="display: none;">
878
  </td>
879
  </tr>
880
  <tr class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
881
- <th scope="row" style="width:200px;"><?php _e( 'What to use?', 'contact_form' ); ?></th>
882
  <td colspan="2">
883
  <label><input type='radio' name='cntctfrm_mail_method' value='wp-mail' <?php if ( 'wp-mail' == $cntctfrm_options['cntctfrm_mail_method'] ) echo "checked=\"checked\" "; ?>/>
884
  <?php _e( 'Wp-mail', 'contact_form' ); ?></label> <span class="cntctfrm_info">(<?php _e( 'You can use the wp_mail function for mailing', 'contact_form' ); ?>)</span><br />
@@ -887,7 +901,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
887
  </td>
888
  </tr>
889
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
890
- <th scope="row" style="width:200px;"><?php _e( "The text in the 'From' field", 'contact_form' ); ?></th>
891
  <td colspan="2">
892
  <label><input type="radio" id="cntctfrm_select_from_field" name="cntctfrm_select_from_field" value="user_name" <?php if ( 'user_name' == $cntctfrm_options['cntctfrm_select_from_field'] ) echo "checked=\"checked\" "; ?>/> <?php _e( "User name", 'contact_form' ); ?></label>
893
  <span class="cntctfrm_info">(<?php _e( "The name of the user who fills the form will be used in the field 'From'.", 'contact_form' ); ?>)</span><br/>
@@ -897,7 +911,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
897
  </td>
898
  </tr>
899
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
900
- <th scope="row" style="width:200px;"><?php _e( "The email address in the 'From' field", 'contact_form' ); ?></th>
901
  <td colspan="2">
902
  <label><input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php if ( 'user' == $cntctfrm_options['cntctfrm_from_email'] ) echo "checked=\"checked\" "; ?>/> <?php _e( "User email", 'contact_form' ); ?> </label>
903
  <span class="cntctfrm_info">(<?php _e( "The email address of the user who fills the form will be used in the field 'From'.", 'contact_form' ); ?>)</span><br />
@@ -907,7 +921,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
907
  </td>
908
  </tr>
909
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
910
- <th scope="row" style="width:200px;"><?php _e( "Required symbol", 'contact_form' ); ?></th>
911
  <td colspan="2">
912
  <input type="text" id="cntctfrm_required_symbol" name="cntctfrm_required_symbol" value="<?php echo $cntctfrm_options['cntctfrm_required_symbol']; ?>"/>
913
  </td>
@@ -979,8 +993,14 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
979
  <td></td>
980
  <td></td>
981
  <td colspan="3" class="bws_pro_version_tooltip">
982
- <?php _e( 'This functionality is available in the Pro version of the plugin. For more details, please follow the link', 'contact_form' ); ?>
983
- <a title="Contact Form Pro" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"> <?php _e( 'Contact Form Pro', 'contact_form' ); ?></a>
 
 
 
 
 
 
984
  </td>
985
  </tr>
986
  <tr valign="top">
@@ -998,10 +1018,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
998
  </tr>
999
  </tbody>
1000
  </table>
1001
- <br />
1002
  <table class="form-table" style="width:auto;">
1003
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1004
- <th scope="row" style="width:200px;"><?php _e( "Add to the form", 'contact_form' ); ?></th>
1005
  <td style="width:750px;" colspan="3">
1006
  <div style="clear: both;">
1007
  <label style="float: left">
@@ -1039,7 +1058,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1039
  </td>
1040
  </tr>
1041
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1042
- <th scope="row" style="width:200px;"></th>
1043
  <td colspan="3" class="bws_pro_version">
1044
  <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrmpr_display_privacy_check"> <?php _e( 'Agreement checkbox', 'contact_form' ); ?></label> <span style="color: #888888;font-size: 10px;">(<?php _e( 'Required checkbox for submitting the form', 'contact_form' ); ?>)</span><br />
1045
  <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrmpr_display_optional_check"> <?php _e( 'Optional checkbox', 'contact_form' ); ?></label> <span style="color: #888888;font-size: 10px;">(<?php _e( 'Optional checkbox, the results of which will be displayed in email', 'contact_form' ); ?>)</span><br />
@@ -1048,22 +1067,28 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1048
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1049
  <th></th>
1050
  <td colspan="3" class="bws_pro_version_tooltip">
1051
- <?php _e( 'This functionality is available in the Pro version of the plugin. For more details, please follow the link', 'contact_form' ); ?>
1052
- <a title="Contact Form Pro" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"> <?php _e( 'Contact Form Pro', 'contact_form' ); ?></a>
 
 
 
 
 
 
1053
  </td>
1054
  </tr>
1055
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1056
- <th scope="row" style="width:200px;"><?php _e( "Delete an attachment file from the server after the email is sent", 'contact_form' ); ?> </th>
1057
  <td colspan="3">
1058
  <input type="checkbox" id="cntctfrm_delete_attached_file" name="cntctfrm_delete_attached_file" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_delete_attached_file'] ) echo "checked=\"checked\" "; ?>/>
1059
  </td>
1060
  </tr>
1061
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1062
- <th scope="row" style="width:200px;"><?php _e( "Email in HTML format sending", 'contact_form' ); ?></th>
1063
  <td colspan="2"><input type="checkbox" name="cntctfrm_html_email" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_html_email'] ) echo "checked=\"checked\" "; ?>/></td>
1064
  </tr>
1065
  <tr valign="top" class="cntctfrm_additions_block <?php if ( $cntctfrm_options['cntctfrm_additions_options'] == '0' ) echo "cntctfrm_hidden"; ?>">
1066
- <th scope="row" style="width:200px;"><?php _e( "Display additional info in the email", 'contact_form' ); ?></th>
1067
  <td style="width:15px;">
1068
  <input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_add_info'] ) echo "checked=\"checked\" "; ?>/>
1069
  </td>
@@ -1075,7 +1100,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1075
  </td>
1076
  </tr>
1077
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1078
- <th scope="row" style="width:200px;"><?php _e( "Language settings for the field names in the form", 'contact_form' ); ?></th>
1079
  <td colspan="2">
1080
  <select name="cntctfrm_languages" id="cntctfrm_languages" style="width:300px;">
1081
  <?php foreach ( $lang_codes as $key => $val ) {
@@ -1088,7 +1113,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1088
  </td>
1089
  </tr>
1090
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1091
- <th scope="row" style="width:200px;"><?php _e( "Change the names of the contact form fields and error messages", 'contact_form' ); ?></th>
1092
  <td style="width:15px;">
1093
  <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" value="1" <?php if ( $cntctfrm_options['cntctfrm_change_label'] == '1' ) echo "checked=\"checked\" "; ?>/>
1094
  </td>
@@ -1171,7 +1196,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1171
  </td>
1172
  </tr>
1173
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1174
- <th scope="row" style="width:200px;"><?php _e( "Action after email is sent", 'contact_form' ); ?></th>
1175
  <td colspan="2" class="cntctfrm_action_after_send_block">
1176
  <label><input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_action_after_send'] ) echo "checked=\"checked\" "; ?>/> <?php _e( "Display text", 'contact_form' ); ?></label><br />
1177
  <div class="cntctfrm_label_language_tab cntctfrm_active" id="cntctfrm_text_en"><?php _e( 'English', 'contact_form' ); ?></div>
@@ -1208,7 +1233,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1208
  </td>
1209
  </tr>
1210
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1211
- <th scope="row" style="width:200px;"><?php _e( 'The $_SERVER variable that is used to build a URL of the form', 'contact_form' ); ?></th>
1212
  <td colspan="2">
1213
  <label><input type="radio" name="cntctfrm_site_name_parameter" value="HTTP_HOST" <?php if ( 'SERVER_NAME' == $cntctfrm_options['cntctfrm_site_name_parameter'] ) echo "checked=\"checked\" "; ?>/> SERVER_NAME</label><br />
1214
  <label><input type="radio" name="cntctfrm_site_name_parameter" value="HTTP_HOST" <?php if ( 'HTTP_HOST' == $cntctfrm_options['cntctfrm_site_name_parameter'] ) echo "checked=\"checked\" "; ?>/> HTTP_HOST</label><br />
@@ -1234,163 +1259,172 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1234
  </form>
1235
  <?php } elseif ( 'extra' == $_GET['action'] ) { ?>
1236
  <div id="cntctfrmpr_left_table">
1237
- <table class="form-table bws_pro_version" style="width:auto;" >
1238
- <tr class="bws_pro_version_tooltip">
1239
- <th scope="row" colspan="2">
1240
- <?php _e( 'This functionality is available in the Pro version of the plugin. For more details, please follow the link', 'contact_form' ); ?>
1241
- <a title="Contact Form Pro" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"> <?php _e( 'Contact Form Pro', 'contact_form' ); ?></a>
1242
- </th>
1243
- </tr>
1244
- <tr valign="top">
1245
- <th scope="row" style="width:200px;"><?php _e( "Errors output", 'contact_form' ); ?></th>
1246
- <td colspan="2">
1247
- <select name="cntctfrmpr_error_displaying">
1248
- <option value="labels"><?php _e( "Display error messages", 'contact_form' ); ?></option>
1249
- <option value="input_colors"><?php _e( "Color of the input field errors.", 'contact_form' ); ?></option>
1250
- <option value="both" selected="selected"><?php _e( "Display error messages & color of the input field errors", 'contact_form' ); ?></option>
1251
- </select>
1252
- </td>
1253
- </tr>
1254
- <tr valign="top">
1255
- <th scope="row" style="width:200px;"><?php _e( "Add placeholder to the input blocks", 'contact_form' ); ?></th>
1256
- <td colspan="2">
1257
- <input disabled='disabled' type="checkbox" name="cntctfrmpr_placeholder" value="1" checked="checked"/>
1258
- </td>
1259
- </tr>
1260
- <tr valign="top">
1261
- <th scope="row" style="width:200px;"><?php _e( "Add tooltips", 'contact_form' ); ?></th>
1262
- <td colspan="2">
1263
- <div>
1264
- <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_name" value="1" checked="checked"/>
1265
- <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_name"><?php _e( "Name", 'contact_form' ); ?></label>
1266
- </div>
1267
- <?php if ( '1' == $cntctfrm_options['cntctfrm_display_address_field'] ) { ?>
1268
- <div>
1269
- <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_address" value="1" checked="checked"/>
1270
- <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_address"><?php _e( "Address", 'contact_form' ); ?></label>
1271
- </div>
1272
- <?php } ?>
1273
- <div>
1274
- <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_email" value="1" checked="checked"/>
1275
- <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_email"><?php _e( "Email address", 'contact_form' ); ?></label>
1276
- </div>
1277
- <?php if ( '1' == $cntctfrm_options['cntctfrm_display_phone_field'] ) { ?>
1278
- <div>
1279
- <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_phone" value="1" checked="checked"/>
1280
- <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_phone"><?php _e( "Phone Number", 'contact_form' ); ?></label>
1281
- </div>
1282
- <?php } ?>
1283
- <div>
1284
- <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_subject" value="1" checked="checked"/>
1285
- <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_subject"><?php _e( "Subject", 'contact_form' ); ?></label>
1286
- </div>
1287
- <div>
1288
- <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_message" value="1" checked="checked"/>
1289
- <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_message"><?php _e( "Message", 'contact_form' ); ?></label>
1290
- </div>
1291
- <?php if ( '1' == $cntctfrm_options['cntctfrm_attachment_explanations'] ) { ?>
1292
- <div>
1293
- <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_attachment" value="1" checked="checked"/>
1294
- <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_attachment"><?php _e( "Attachment", 'contact_form' ); ?></label>
1295
- </div>
1296
- <?php } ?>
1297
- <div>
1298
- <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_captcha" value="1" />
1299
- <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_captcha"><?php _e( "Captcha", 'contact_form' ); ?> </label><span style="color: #888888;font-size: 10px;"><?php _e( '(powered by bestwebsoft.com)', 'contact_form' ); ?></span>
1300
- </div>
1301
- </td>
1302
- </tr>
1303
- <tr valign="top">
1304
- <th colspan="3" scope="row" style="width:200px;"><input disabled='disabled' type="checkbox" id="cntctfrmpr_style_options" name="cntctfrmpr_style_options" value="1" checked="checked" /> <?php _e( "Style options", 'contact_form' ); ?></th>
1305
- </tr>
1306
- <tr valign="top" class="cntctfrmpr_style_block <?php if ( '0' == $cntctfrm_options['style_options'] ) echo "cntctfrmpr_hidden"; ?>">
1307
- <th scope="row" style="width:200px;"><?php _e( "Text color", 'contact_form' ); ?></th>
1308
- <td colspan="2">
1309
- <div>
1310
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1311
- <input disabled='disabled' type="text" name="cntctfrmpr_label_color" value="" class="cntctfrmpr_colorPicker" />
1312
- <?php _e( 'Label text color', 'contact_form' ); ?>
1313
- </div>
1314
- <div>
1315
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1316
- <input disabled='disabled' type="text" name="cntctfrmpr_input_placeholder_color" value="" class="cntctfrmpr_colorPicker" />
1317
- <?php _e( "Placeholder color", 'contact_form' ); ?>
1318
- </div>
1319
- </td>
1320
- </tr>
1321
- <tr valign="top" class="cntctfrmpr_style_block">
1322
- <th scope="row" style="width:200px;"><?php _e( "Errors color", 'contact_form' ); ?></th>
1323
- <td colspan="2">
1324
- <div>
1325
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1326
- <input disabled='disabled' type="text" name="cntctfrmpr_error_color" value="" class="cntctfrmpr_colorPicker" />
1327
- <?php _e( 'Error text color', 'contact_form' ); ?>
1328
- </div>
1329
- <div>
1330
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1331
- <input disabled='disabled' type="text" name="cntctfrmpr_error_input_color" value="" class="cntctfrmpr_colorPicker" />
1332
- <?php _e( 'Background color of the input field errors', 'contact_form' ); ?>
1333
- </div>
1334
- <div>
1335
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1336
- <input disabled='disabled' type="text" name="cntctfrmpr_error_input_border_color" value="" class="cntctfrmpr_colorPicker" />
1337
- <?php _e( 'Border color of the input field errors', 'contact_form' ); ?>
1338
- </div>
1339
- <div>
1340
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" id="" value="<?php _e('Default', 'contact_form'); ?>" />
1341
- <input disabled='disabled' type="text" name="cntctfrmpr_input_placeholder_error_color" value="" class="cntctfrmpr_colorPicker " />
1342
- <?php _e( "Placeholder color of the input field errors", 'contact_form' ); ?>
1343
- </div>
1344
- </td>
1345
- </tr>
1346
- <tr valign="top" class="cntctfrmpr_style_block">
1347
- <th scope="row" style="width:200px;"><?php _e( "Input fields", 'contact_form' ); ?></th>
1348
- <td colspan="2">
1349
- <div>
1350
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" id="" value="<?php _e('Default', 'contact_form'); ?>" />
1351
- <input disabled='disabled' type="text" name="cntctfrmpr_input_background" value="" class="cntctfrmpr_colorPicker" />
1352
- <?php _e( "Input fields background color", 'contact_form' ); ?>
1353
- </div>
1354
- <div>
1355
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1356
- <input disabled='disabled' type="text" name="cntctfrmpr_input_color" value="" class="cntctfrmpr_colorPicker" />
1357
- <?php _e( "Text fields color", 'contact_form' ); ?>
1358
- </div>
1359
- <input disabled='disabled' style="margin-left: 66px;" size="8" type="text" value="" name="cntctfrmpr_border_input_width" /> <?php _e( 'Border width in px, numbers only', 'contact_form' ); ?><br />
1360
- <div>
1361
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1362
- <input disabled='disabled' type="text" name="cntctfrmpr_border_input_color" value="" class="cntctfrmpr_colorPicker" />
1363
- <?php _e( 'Border color', 'contact_form' ); ?>
1364
- </div>
1365
- </td>
1366
- </tr>
1367
- <tr valign="top" class="cntctfrmpr_style_block">
1368
- <th scope="row" style="width:200px;"><?php _e( "Submit button", 'contact_form' ); ?></th>
1369
- <td colspan="2">
1370
- <input disabled='disabled' style="margin-left: 66px;" size="8" type="text" value="" name="cntctfrmpr_button_width" /> <?php _e( 'Width in px, numbers only', 'contact_form' ); ?><br />
1371
- <div>
1372
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1373
- <input disabled='disabled' type="text" name="cntctfrmpr_button_backgroud" value="" class="cntctfrmpr_colorPicker" />
1374
- <?php _e( 'Button color', 'contact_form' ); ?>
1375
- </div>
1376
- <div>
1377
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1378
- <input disabled='disabled' type="text" name="cntctfrmpr_button_color" value="" class="cntctfrmpr_colorPicker" />
1379
- <?php _e( "Button text color", 'contact_form' ); ?>
1380
- </div>
1381
- <div>
1382
- <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1383
- <input disabled='disabled' type="text" name="cntctfrmpr_border_button_color" value="" class="cntctfrmpr_colorPicker" />
1384
- <?php _e( 'Border color', 'contact_form' ); ?>
1385
- </div>
1386
- </td>
1387
- </tr>
1388
- <tr valign="top">
1389
- <th scope="row" colspan="2">
1390
- * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'contact_form' ); ?>
1391
- </th>
1392
- </tr>
1393
- </table>
 
 
 
 
 
 
 
 
 
1394
  <input type="hidden" name="cntctfrmpr_form_submit" value="submit" />
1395
  <p class="submit">
1396
  <input disabled='disabled' type="button" class="button-primary" value="<?php _e('Save Changes') ?>" />
@@ -1884,7 +1918,8 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
1884
  unset( $error_message['error_attachment'] );
1885
  } else {
1886
  $letter_upload_max_size = substr( ini_get('upload_max_filesize'), -1);
1887
- $upload_max_size = substr( ini_get('upload_max_filesize'), 0, -1); $upload_max_size= '1';
 
1888
  switch( strtoupper( $letter_upload_max_size ) ) {
1889
  case 'P':
1890
  $upload_max_size *= 1024;
@@ -2183,7 +2218,8 @@ if ( ! function_exists ( 'cntctfrm_plugin_action_links' ) ) {
2183
  }
2184
  return $links;
2185
  }
2186
- } /* End function cntctfrm_plugin_action_links */
 
2187
 
2188
  if ( ! function_exists ( 'cntctfrm_register_plugin_links' ) ) {
2189
  function cntctfrm_register_plugin_links( $links, $file ) {
@@ -2214,7 +2250,8 @@ if ( ! function_exists ( 'cntctfrm_clean_input' ) ) {
2214
  return $string;
2215
  }
2216
  }
2217
- } /* End function ctf_clean_input */
 
2218
 
2219
  /* Functions for protecting and validating form vars */
2220
  if ( ! function_exists ( 'cntctfrm_sanitize_string' ) ) {
@@ -2372,7 +2409,8 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
2372
  global $cntctfrm_plugin_info;
2373
  $banner_array = array(
2374
  array( 'pdtr_hide_banner_on_plugin_page', 'updater/updater.php', '1.12' ),
2375
- array( 'cntctfrmtdb_hide_banner_on_plugin_page', 'contact-form-to-db/contact_form_to_db.php', '1.2' ),
 
2376
  array( 'fcbkbttn_hide_banner_on_plugin_page', 'facebook-button-plugin/facebook-button-plugin.php', '2.29' ),
2377
  array( 'twttr_hide_banner_on_plugin_page', 'twitter-plugin/twitter.php', '2.34' ),
2378
  array( 'pdfprnt_hide_banner_on_plugin_page', 'pdf-print/pdf-print.php', '1.7.1' ),
@@ -2401,65 +2439,65 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
2401
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
2402
  echo '<script type="text/javascript" src="' . plugins_url( 'js/c_o_o_k_i_e.js', __FILE__ ) . '"></script>';
2403
  $bstwbsftwppdtplgns_cookie_add = true;
2404
- }
2405
- echo '<script type="text/javascript">
2406
- (function($) {
2407
- $(document).ready( function() {
2408
- var hide_message = $.cookie( "cntctfrm_hide_banner_on_plugin_page" );
2409
- var hide_message_for_ctfrmtdb = $.cookie( "cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page" );
2410
- if ( hide_message == "true" ) {
2411
- $( ".cntctfrm_message" ).css( "display", "none" );
2412
- if ( hide_message_for_ctfrmtdb == "true" ) {
2413
- $( ".cntctfrm_message_for_ctfrmtdb" ).css( "display", "none" );
2414
- } else {
2415
- $( ".cntctfrm_message_for_ctfrmtdb" ).css( "display", "block" );
2416
- }
2417
  } else {
2418
- $( ".cntctfrm_message" ).css( "display", "block" );
2419
  }
2420
- $( ".cntctfrm_close_icon" ).click( function() {
2421
- $( ".cntctfrm_message" ).css( "display", "none" );
2422
- $.cookie( "cntctfrm_hide_banner_on_plugin_page", "true", { expires: 32 } );
2423
- });
2424
- $( ".cntctfrm_for_ctfrmtdb_close_icon" ).click( function() {
2425
- $( ".cntctfrm_message_for_ctfrmtdb" ).css( "display", "none" );
2426
- $.cookie( "cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page", "true", { expires: 32 } );
2427
- });
 
 
2428
  });
2429
- })(jQuery);
2430
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2431
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
2432
- <div class="cntctfrm_message bws_banner_on_plugin_page" style="display: none;">
2433
- <img class="cntctfrm_close_icon close_icon" title="" src="' . plugins_url( 'images/close_banner.png', __FILE__ ) . '" alt=""/>
2434
  <div class="button_div">
2435
- <a class="button" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=f575dc39cba54a9de88df346eed52101&pn=77&v=' . $cntctfrm_plugin_info["Version"] . '&wp_v=' . $wp_version . '">Learn More</a>
2436
  </div>
2437
  <div class="text">
2438
- ' . __( "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version", 'contact_form' ) . '!<br />
2439
- <span>' . __( "Extend standard plugin functionality with new great options.", 'contact_form' ) . '</span>
2440
- </div>
2441
  <div class="icon">
2442
- <img class="icon" title="" src="' . plugins_url( 'images/banner.png', __FILE__ ) . '" alt=""/>
2443
  </div>
2444
  </div>
2445
- </div>';
2446
- if ( ! array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) && ! array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) {
2447
- echo '<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
2448
- <div class="cntctfrm_message_for_ctfrmtdb bws_banner_on_plugin_page" style="display: none;">
2449
- <img class="cntctfrm_for_ctfrmtdb_close_icon close_icon" title="" src="' . plugins_url( 'images/close_banner.png', __FILE__ ) . '" alt=""/>
2450
- <div class="button_div">
2451
- <a class="button" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-to-db-pro/?k=6ebf0743736411607343ad391dc3b436&pn=77&v=' . $cntctfrm_plugin_info["Version"] . '&wp_v=' . $wp_version . '">Learn More</a>
2452
- </div>
2453
- <div class="text">
2454
- ' . __( "<strong>Contact Form to DB</strong> allows to store your messages to the database.", 'contact_form' ) . '<br />
2455
- <span>' . __( "Manage messages that have been sent from your website.", 'contact_form' ) . '</span>
2456
- </div>
2457
- <div class="icon">
2458
- <img title="" src="' . plugins_url( 'images/banner_for_ctfrmtdb.png', __FILE__ ) . '" alt=""/>
2459
- </div>
2460
- </div>
2461
- </div>';
2462
- }
2463
  break;
2464
  }
2465
  if ( isset( $all_plugins[ $value[1] ] ) && $all_plugins[ $value[1] ]["Version"] >= $value[2] && ( 0 < count( preg_grep( '/' . str_replace( '/', '\/', $value[1] ) . '/', $active_plugins ) ) || is_plugin_active_for_network( $value[1] ) ) && ! isset( $_COOKIE[ $value[0] ] ) ) {
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.76
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
29
  if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
30
  function cntctfrm_admin_menu() {
31
  global $bstwbsftwppdtplgns_options, $wpmu, $bstwbsftwppdtplgns_added_menu;
32
+ $bws_menu_version = '1.2.6';
33
  $base = plugin_basename(__FILE__);
34
 
35
  if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
779
  $error = __( "Please, enter Your license key", 'contact_form' );
780
  }
781
  }
782
+ } ?>
 
783
  <div class="wrap">
784
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
785
  <h2><?php _e( "Contact Form Settings", 'contact_form' ); ?></h2>
791
  <div class="updated fade" <?php if ( ! isset( $_POST['cntctfrm_form_submit'] ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
792
  <div id="cntctfrm_settings_notice" class="updated fade" style="display:none"><p><strong><?php _e( "Notice:", 'contact_form' ); ?></strong> <?php _e( "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button.", 'contact_form' ); ?></p></div>
793
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
794
+ <?php if ( ! isset( $_GET['action'] ) ) {
795
+ if ( ! isset( $contact_form_multi_active ) ) { ?>
796
+ <h2 class="nav-tab-wrapper">
797
+ <li class="nav-tab nav-tab-active">NEW_FORM</li>
798
+ <a class="nav-tab" target="_new" href="http://bestwebsoft.com/plugin/contact-form-multi/" title="<?php _e( "If you want to create multiple contact forms, please install the Contact Form Multi plugin.", 'contact_form' ); ?>">+</a>
799
+ </h2>
800
+ <?php } ?>
801
  <form id="cntctfrm_settings_form" method="post" action="admin.php?page=contact_form.php">
802
  <span style="margin-bottom:15px;">
803
  <?php if ( ! isset( $contact_form_multi_active ) ) { ?>
814
  </span>
815
  <table class="form-table" style="width:auto;">
816
  <tr valign="top">
817
+ <th scope="row"><?php _e( "The user's email address:", 'contact_form' ); ?> </th>
818
+ <td colspan="2">
819
  <input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php if ( $cntctfrm_options['cntctfrm_select_email'] == 'user' ) echo "checked=\"checked\" "; ?>/>
820
  <select name="cntctfrm_user_email">
821
  <option disabled><?php _e( "Create a username", 'contact_form' ); ?></option>
829
  </td>
830
  </tr>
831
  <tr valign="top">
832
+ <th scope="row"><?php _e( "Use this email address:", 'contact_form' ); ?> </th>
833
  <td colspan="2">
834
  <input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php if ( 'custom' == $cntctfrm_options['cntctfrm_select_email'] ) echo "checked=\"checked\" "; ?>/> <input type="text" name="cntctfrm_custom_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_email']; ?>" onfocus="document.getElementById('cntctfrm_select_email_custom').checked = true;" />
835
  <span class="cntctfrm_info"><?php _e( "Enter the email address you want the messages forwarded to.", 'contact_form' ); ?></span>
836
  </td>
837
  </tr>
838
  </table>
839
+ <div class="bws_pro_version_bloc">
840
+ <div class="bws_pro_version_table_bloc">
841
+ <div class="bws_table_bg"></div>
842
+ <table class="form-table bws_pro_version">
843
+ <tr valign="top">
844
+ <th scope="row"><?php _e( "Add department selectbox to the contact form:", 'contact_form' ); ?></th>
845
+ <td colspan="2">
846
+ <input type="radio" id="cntctfrmpr_select_email_department" name="cntctfrmpr_select_email" value="departments" disabled="disabled" />
847
+ <div class="cntctfrmpr_department_table"><img src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="" /></div>
848
+ </td>
849
+ </tr>
850
+ <tr valign="top">
851
+ <th scope="row" colspan="2">
852
+ * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'contact_form' ); ?>
853
+ </th>
854
+ </tr>
855
+ </table>
856
+ </div>
857
+ <div class="bws_pro_version_tooltip">
858
+ <div class="bws_info">
859
+ <?php _e( 'Unlock premium options by upgrading to a PRO version.', 'contact_form' ); ?>
860
+ <a href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro"><?php _e( 'Learn More', 'contact_form' ); ?></a>
861
+ </div>
862
+ <a class="bws_button" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>#purchase" target="_blank" title="Contact Form Pro">
863
+ <?php _e( 'Go', 'contact_form' ); ?> <strong>PRO</strong>
864
+ </a>
865
+ <div class="clear"></div>
866
+ </div>
867
+ </div>
868
  <table class="form-table" style="width:auto;">
869
  <tr valign="top">
870
+ <th scope="row"><?php _e( "Save emails to the database", 'contact_form' ); ?> </th>
871
  <td colspan="2">
872
  <?php if ( array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) || array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) {
873
  if ( 0 < count( preg_grep( '/contact-form-to-db\/contact_form_to_db.php/', $active_plugins ) ) || 0 < count( preg_grep( '/contact-form-to-db-pro\/contact_form_to_db_pro.php/', $active_plugins ) ) ||
885
  </td>
886
  </tr>
887
  <tr valign="top">
888
+ <th scope="row"><label><input type="checkbox" id="cntctfrm_additions_options" name="cntctfrm_additions_options" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "checked=\"checked\" "; ?> /> <?php _e( "Additional options", 'contact_form' ); ?></label></th>
889
  <td colspan="2">
890
  <input id="cntctfrm_show_additional_settings" type="button" class="button-small button" value="<?php _e( "Show", 'contact_form' ); ?>" style="display: none;">
891
  <input id="cntctfrm_hide_additional_settings" type="button" class="button-small button" value="<?php _e( "Hide", 'contact_form' ); ?>" style="display: none;">
892
  </td>
893
  </tr>
894
  <tr class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
895
+ <th scope="row"><?php _e( 'What to use?', 'contact_form' ); ?></th>
896
  <td colspan="2">
897
  <label><input type='radio' name='cntctfrm_mail_method' value='wp-mail' <?php if ( 'wp-mail' == $cntctfrm_options['cntctfrm_mail_method'] ) echo "checked=\"checked\" "; ?>/>
898
  <?php _e( 'Wp-mail', 'contact_form' ); ?></label> <span class="cntctfrm_info">(<?php _e( 'You can use the wp_mail function for mailing', 'contact_form' ); ?>)</span><br />
901
  </td>
902
  </tr>
903
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
904
+ <th scope="row"><?php _e( "The text in the 'From' field", 'contact_form' ); ?></th>
905
  <td colspan="2">
906
  <label><input type="radio" id="cntctfrm_select_from_field" name="cntctfrm_select_from_field" value="user_name" <?php if ( 'user_name' == $cntctfrm_options['cntctfrm_select_from_field'] ) echo "checked=\"checked\" "; ?>/> <?php _e( "User name", 'contact_form' ); ?></label>
907
  <span class="cntctfrm_info">(<?php _e( "The name of the user who fills the form will be used in the field 'From'.", 'contact_form' ); ?>)</span><br/>
911
  </td>
912
  </tr>
913
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
914
+ <th scope="row"><?php _e( "The email address in the 'From' field", 'contact_form' ); ?></th>
915
  <td colspan="2">
916
  <label><input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php if ( 'user' == $cntctfrm_options['cntctfrm_from_email'] ) echo "checked=\"checked\" "; ?>/> <?php _e( "User email", 'contact_form' ); ?> </label>
917
  <span class="cntctfrm_info">(<?php _e( "The email address of the user who fills the form will be used in the field 'From'.", 'contact_form' ); ?>)</span><br />
921
  </td>
922
  </tr>
923
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
924
+ <th scope="row"><?php _e( "Required symbol", 'contact_form' ); ?></th>
925
  <td colspan="2">
926
  <input type="text" id="cntctfrm_required_symbol" name="cntctfrm_required_symbol" value="<?php echo $cntctfrm_options['cntctfrm_required_symbol']; ?>"/>
927
  </td>
993
  <td></td>
994
  <td></td>
995
  <td colspan="3" class="bws_pro_version_tooltip">
996
+ <div class="bws_info">
997
+ <?php _e( 'Unlock premium options by upgrading to a PRO version.', 'contact_form' ); ?>
998
+ <a href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro"><?php _e( 'Learn More', 'contact_form' ); ?></a>
999
+ </div>
1000
+ <a class="bws_button" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>#purchase" target="_blank" title="Contact Form Pro">
1001
+ <?php _e( 'Go', 'contact_form' ); ?> <strong>PRO</strong>
1002
+ </a>
1003
+ <div class="clear"></div>
1004
  </td>
1005
  </tr>
1006
  <tr valign="top">
1018
  </tr>
1019
  </tbody>
1020
  </table>
 
1021
  <table class="form-table" style="width:auto;">
1022
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1023
+ <th scope="row"><?php _e( "Add to the form", 'contact_form' ); ?></th>
1024
  <td style="width:750px;" colspan="3">
1025
  <div style="clear: both;">
1026
  <label style="float: left">
1058
  </td>
1059
  </tr>
1060
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1061
+ <th scope="row"></th>
1062
  <td colspan="3" class="bws_pro_version">
1063
  <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrmpr_display_privacy_check"> <?php _e( 'Agreement checkbox', 'contact_form' ); ?></label> <span style="color: #888888;font-size: 10px;">(<?php _e( 'Required checkbox for submitting the form', 'contact_form' ); ?>)</span><br />
1064
  <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrmpr_display_optional_check"> <?php _e( 'Optional checkbox', 'contact_form' ); ?></label> <span style="color: #888888;font-size: 10px;">(<?php _e( 'Optional checkbox, the results of which will be displayed in email', 'contact_form' ); ?>)</span><br />
1067
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1068
  <th></th>
1069
  <td colspan="3" class="bws_pro_version_tooltip">
1070
+ <div class="bws_info">
1071
+ <?php _e( 'Unlock premium options by upgrading to a PRO version.', 'contact_form' ); ?>
1072
+ <a href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro"><?php _e( 'Learn More', 'contact_form' ); ?></a>
1073
+ </div>
1074
+ <a class="bws_button" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>#purchase" target="_blank" title="Contact Form Pro">
1075
+ <?php _e( 'Go', 'contact_form' ); ?> <strong>PRO</strong>
1076
+ </a>
1077
+ <div class="clear"></div>
1078
  </td>
1079
  </tr>
1080
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1081
+ <th scope="row"><?php _e( "Delete an attachment file from the server after the email is sent", 'contact_form' ); ?> </th>
1082
  <td colspan="3">
1083
  <input type="checkbox" id="cntctfrm_delete_attached_file" name="cntctfrm_delete_attached_file" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_delete_attached_file'] ) echo "checked=\"checked\" "; ?>/>
1084
  </td>
1085
  </tr>
1086
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1087
+ <th scope="row"><?php _e( "Email in HTML format sending", 'contact_form' ); ?></th>
1088
  <td colspan="2"><input type="checkbox" name="cntctfrm_html_email" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_html_email'] ) echo "checked=\"checked\" "; ?>/></td>
1089
  </tr>
1090
  <tr valign="top" class="cntctfrm_additions_block <?php if ( $cntctfrm_options['cntctfrm_additions_options'] == '0' ) echo "cntctfrm_hidden"; ?>">
1091
+ <th scope="row"><?php _e( "Display additional info in the email", 'contact_form' ); ?></th>
1092
  <td style="width:15px;">
1093
  <input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_add_info'] ) echo "checked=\"checked\" "; ?>/>
1094
  </td>
1100
  </td>
1101
  </tr>
1102
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1103
+ <th scope="row"><?php _e( "Language settings for the field names in the form", 'contact_form' ); ?></th>
1104
  <td colspan="2">
1105
  <select name="cntctfrm_languages" id="cntctfrm_languages" style="width:300px;">
1106
  <?php foreach ( $lang_codes as $key => $val ) {
1113
  </td>
1114
  </tr>
1115
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1116
+ <th scope="row"><?php _e( "Change the names of the contact form fields and error messages", 'contact_form' ); ?></th>
1117
  <td style="width:15px;">
1118
  <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" value="1" <?php if ( $cntctfrm_options['cntctfrm_change_label'] == '1' ) echo "checked=\"checked\" "; ?>/>
1119
  </td>
1196
  </td>
1197
  </tr>
1198
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1199
+ <th scope="row"><?php _e( "Action after email is sent", 'contact_form' ); ?></th>
1200
  <td colspan="2" class="cntctfrm_action_after_send_block">
1201
  <label><input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_action_after_send'] ) echo "checked=\"checked\" "; ?>/> <?php _e( "Display text", 'contact_form' ); ?></label><br />
1202
  <div class="cntctfrm_label_language_tab cntctfrm_active" id="cntctfrm_text_en"><?php _e( 'English', 'contact_form' ); ?></div>
1233
  </td>
1234
  </tr>
1235
  <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1236
+ <th scope="row"><?php _e( 'The $_SERVER variable that is used to build a URL of the form', 'contact_form' ); ?></th>
1237
  <td colspan="2">
1238
  <label><input type="radio" name="cntctfrm_site_name_parameter" value="HTTP_HOST" <?php if ( 'SERVER_NAME' == $cntctfrm_options['cntctfrm_site_name_parameter'] ) echo "checked=\"checked\" "; ?>/> SERVER_NAME</label><br />
1239
  <label><input type="radio" name="cntctfrm_site_name_parameter" value="HTTP_HOST" <?php if ( 'HTTP_HOST' == $cntctfrm_options['cntctfrm_site_name_parameter'] ) echo "checked=\"checked\" "; ?>/> HTTP_HOST</label><br />
1259
  </form>
1260
  <?php } elseif ( 'extra' == $_GET['action'] ) { ?>
1261
  <div id="cntctfrmpr_left_table">
1262
+ <div class="bws_pro_version_bloc">
1263
+ <div class="bws_pro_version_table_bloc">
1264
+ <div class="bws_table_bg"></div>
1265
+ <table class="form-table bws_pro_version">
1266
+ <tr valign="top">
1267
+ <th scope="row"><?php _e( "Errors output", 'contact_form' ); ?></th>
1268
+ <td colspan="2">
1269
+ <select name="cntctfrmpr_error_displaying">
1270
+ <option value="labels"><?php _e( "Display error messages", 'contact_form' ); ?></option>
1271
+ <option value="input_colors"><?php _e( "Color of the input field errors.", 'contact_form' ); ?></option>
1272
+ <option value="both" selected="selected"><?php _e( "Display error messages & color of the input field errors", 'contact_form' ); ?></option>
1273
+ </select>
1274
+ </td>
1275
+ </tr>
1276
+ <tr valign="top">
1277
+ <th scope="row"><?php _e( "Add placeholder to the input blocks", 'contact_form' ); ?></th>
1278
+ <td colspan="2">
1279
+ <input disabled='disabled' type="checkbox" name="cntctfrmpr_placeholder" value="1" checked="checked"/>
1280
+ </td>
1281
+ </tr>
1282
+ <tr valign="top">
1283
+ <th scope="row"><?php _e( "Add tooltips", 'contact_form' ); ?></th>
1284
+ <td colspan="2">
1285
+ <div>
1286
+ <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_name" value="1" checked="checked"/>
1287
+ <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_name"><?php _e( "Name", 'contact_form' ); ?></label>
1288
+ </div>
1289
+ <?php if ( '1' == $cntctfrm_options['cntctfrm_display_address_field'] ) { ?>
1290
+ <div>
1291
+ <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_address" value="1" checked="checked"/>
1292
+ <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_address"><?php _e( "Address", 'contact_form' ); ?></label>
1293
+ </div>
1294
+ <?php } ?>
1295
+ <div>
1296
+ <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_email" value="1" checked="checked"/>
1297
+ <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_email"><?php _e( "Email address", 'contact_form' ); ?></label>
1298
+ </div>
1299
+ <?php if ( '1' == $cntctfrm_options['cntctfrm_display_phone_field'] ) { ?>
1300
+ <div>
1301
+ <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_phone" value="1" checked="checked"/>
1302
+ <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_phone"><?php _e( "Phone Number", 'contact_form' ); ?></label>
1303
+ </div>
1304
+ <?php } ?>
1305
+ <div>
1306
+ <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_subject" value="1" checked="checked"/>
1307
+ <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_subject"><?php _e( "Subject", 'contact_form' ); ?></label>
1308
+ </div>
1309
+ <div>
1310
+ <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_message" value="1" checked="checked"/>
1311
+ <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_message"><?php _e( "Message", 'contact_form' ); ?></label>
1312
+ </div>
1313
+ <?php if ( '1' == $cntctfrm_options['cntctfrm_attachment_explanations'] ) { ?>
1314
+ <div>
1315
+ <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_attachment" value="1" checked="checked"/>
1316
+ <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_attachment"><?php _e( "Attachment", 'contact_form' ); ?></label>
1317
+ </div>
1318
+ <?php } ?>
1319
+ <div>
1320
+ <input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_captcha" value="1" />
1321
+ <label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_captcha"><?php _e( "Captcha", 'contact_form' ); ?> </label><span style="color: #888888;font-size: 10px;"><?php _e( '(powered by bestwebsoft.com)', 'contact_form' ); ?></span>
1322
+ </div>
1323
+ </td>
1324
+ </tr>
1325
+ <tr valign="top">
1326
+ <th colspan="3" scope="row"><input disabled='disabled' type="checkbox" id="cntctfrmpr_style_options" name="cntctfrmpr_style_options" value="1" checked="checked" /> <?php _e( "Style options", 'contact_form' ); ?></th>
1327
+ </tr>
1328
+ <tr valign="top" class="cntctfrmpr_style_block <?php if ( '0' == $cntctfrm_options['style_options'] ) echo "cntctfrmpr_hidden"; ?>">
1329
+ <th scope="row"><?php _e( "Text color", 'contact_form' ); ?></th>
1330
+ <td colspan="2">
1331
+ <div>
1332
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1333
+ <input disabled='disabled' type="text" name="cntctfrmpr_label_color" value="" class="cntctfrmpr_colorPicker" />
1334
+ <?php _e( 'Label text color', 'contact_form' ); ?>
1335
+ </div>
1336
+ <div>
1337
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1338
+ <input disabled='disabled' type="text" name="cntctfrmpr_input_placeholder_color" value="" class="cntctfrmpr_colorPicker" />
1339
+ <?php _e( "Placeholder color", 'contact_form' ); ?>
1340
+ </div>
1341
+ </td>
1342
+ </tr>
1343
+ <tr valign="top" class="cntctfrmpr_style_block">
1344
+ <th scope="row"><?php _e( "Errors color", 'contact_form' ); ?></th>
1345
+ <td colspan="2">
1346
+ <div>
1347
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1348
+ <input disabled='disabled' type="text" name="cntctfrmpr_error_color" value="" class="cntctfrmpr_colorPicker" />
1349
+ <?php _e( 'Error text color', 'contact_form' ); ?>
1350
+ </div>
1351
+ <div>
1352
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1353
+ <input disabled='disabled' type="text" name="cntctfrmpr_error_input_color" value="" class="cntctfrmpr_colorPicker" />
1354
+ <?php _e( 'Background color of the input field errors', 'contact_form' ); ?>
1355
+ </div>
1356
+ <div>
1357
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1358
+ <input disabled='disabled' type="text" name="cntctfrmpr_error_input_border_color" value="" class="cntctfrmpr_colorPicker" />
1359
+ <?php _e( 'Border color of the input field errors', 'contact_form' ); ?>
1360
+ </div>
1361
+ <div>
1362
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" id="" value="<?php _e('Default', 'contact_form'); ?>" />
1363
+ <input disabled='disabled' type="text" name="cntctfrmpr_input_placeholder_error_color" value="" class="cntctfrmpr_colorPicker " />
1364
+ <?php _e( "Placeholder color of the input field errors", 'contact_form' ); ?>
1365
+ </div>
1366
+ </td>
1367
+ </tr>
1368
+ <tr valign="top" class="cntctfrmpr_style_block">
1369
+ <th scope="row"><?php _e( "Input fields", 'contact_form' ); ?></th>
1370
+ <td colspan="2">
1371
+ <div>
1372
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" id="" value="<?php _e('Default', 'contact_form'); ?>" />
1373
+ <input disabled='disabled' type="text" name="cntctfrmpr_input_background" value="" class="cntctfrmpr_colorPicker" />
1374
+ <?php _e( "Input fields background color", 'contact_form' ); ?>
1375
+ </div>
1376
+ <div>
1377
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1378
+ <input disabled='disabled' type="text" name="cntctfrmpr_input_color" value="" class="cntctfrmpr_colorPicker" />
1379
+ <?php _e( "Text fields color", 'contact_form' ); ?>
1380
+ </div>
1381
+ <input disabled='disabled' style="margin-left: 66px;" size="8" type="text" value="" name="cntctfrmpr_border_input_width" /> <?php _e( 'Border width in px, numbers only', 'contact_form' ); ?><br />
1382
+ <div>
1383
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1384
+ <input disabled='disabled' type="text" name="cntctfrmpr_border_input_color" value="" class="cntctfrmpr_colorPicker" />
1385
+ <?php _e( 'Border color', 'contact_form' ); ?>
1386
+ </div>
1387
+ </td>
1388
+ </tr>
1389
+ <tr valign="top" class="cntctfrmpr_style_block">
1390
+ <th scope="row"><?php _e( "Submit button", 'contact_form' ); ?></th>
1391
+ <td colspan="2">
1392
+ <input disabled='disabled' style="margin-left: 66px;" size="8" type="text" value="" name="cntctfrmpr_button_width" /> <?php _e( 'Width in px, numbers only', 'contact_form' ); ?><br />
1393
+ <div>
1394
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1395
+ <input disabled='disabled' type="text" name="cntctfrmpr_button_backgroud" value="" class="cntctfrmpr_colorPicker" />
1396
+ <?php _e( 'Button color', 'contact_form' ); ?>
1397
+ </div>
1398
+ <div>
1399
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1400
+ <input disabled='disabled' type="text" name="cntctfrmpr_button_color" value="" class="cntctfrmpr_colorPicker" />
1401
+ <?php _e( "Button text color", 'contact_form' ); ?>
1402
+ </div>
1403
+ <div>
1404
+ <input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', 'contact_form'); ?>" />
1405
+ <input disabled='disabled' type="text" name="cntctfrmpr_border_button_color" value="" class="cntctfrmpr_colorPicker" />
1406
+ <?php _e( 'Border color', 'contact_form' ); ?>
1407
+ </div>
1408
+ </td>
1409
+ </tr>
1410
+ <tr valign="top">
1411
+ <th scope="row" colspan="2">
1412
+ * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'contact_form' ); ?>
1413
+ </th>
1414
+ </tr>
1415
+ </table>
1416
+ </div>
1417
+ <div class="bws_pro_version_tooltip">
1418
+ <div class="bws_info">
1419
+ <?php _e( 'Unlock premium options by upgrading to a PRO version.', 'contact_form' ); ?>
1420
+ <a href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro"><?php _e( 'Learn More', 'contact_form' ); ?></a>
1421
+ </div>
1422
+ <a class="bws_button" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>#purchase" target="_blank" title="Contact Form Pro">
1423
+ <?php _e( 'Go', 'contact_form' ); ?> <strong>PRO</strong>
1424
+ </a>
1425
+ <div class="clear"></div>
1426
+ </div>
1427
+ </div>
1428
  <input type="hidden" name="cntctfrmpr_form_submit" value="submit" />
1429
  <p class="submit">
1430
  <input disabled='disabled' type="button" class="button-primary" value="<?php _e('Save Changes') ?>" />
1918
  unset( $error_message['error_attachment'] );
1919
  } else {
1920
  $letter_upload_max_size = substr( ini_get('upload_max_filesize'), -1);
1921
+ // $upload_max_size = substr( ini_get('upload_max_filesize'), 0, -1 );
1922
+ $upload_max_size = '1';
1923
  switch( strtoupper( $letter_upload_max_size ) ) {
1924
  case 'P':
1925
  $upload_max_size *= 1024;
2218
  }
2219
  return $links;
2220
  }
2221
+ }
2222
+ /* End function cntctfrm_plugin_action_links */
2223
 
2224
  if ( ! function_exists ( 'cntctfrm_register_plugin_links' ) ) {
2225
  function cntctfrm_register_plugin_links( $links, $file ) {
2250
  return $string;
2251
  }
2252
  }
2253
+ }
2254
+ /* End function ctf_clean_input */
2255
 
2256
  /* Functions for protecting and validating form vars */
2257
  if ( ! function_exists ( 'cntctfrm_sanitize_string' ) ) {
2409
  global $cntctfrm_plugin_info;
2410
  $banner_array = array(
2411
  array( 'pdtr_hide_banner_on_plugin_page', 'updater/updater.php', '1.12' ),
2412
+ array( 'cntctfrmtdb_hide_banner_on_plugin_page', 'contact-form-to-db/contact_form_to_db.php', '1.2' ),
2413
+ array( 'gglmps_hide_banner_on_plugin_page', 'bws-google-maps/bws-google-maps.php', '1.2' ),
2414
  array( 'fcbkbttn_hide_banner_on_plugin_page', 'facebook-button-plugin/facebook-button-plugin.php', '2.29' ),
2415
  array( 'twttr_hide_banner_on_plugin_page', 'twitter-plugin/twitter.php', '2.34' ),
2416
  array( 'pdfprnt_hide_banner_on_plugin_page', 'pdf-print/pdf-print.php', '1.7.1' ),
2439
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
2440
  echo '<script type="text/javascript" src="' . plugins_url( 'js/c_o_o_k_i_e.js', __FILE__ ) . '"></script>';
2441
  $bstwbsftwppdtplgns_cookie_add = true;
2442
+ } ?>
2443
+ <script type="text/javascript">
2444
+ (function($) {
2445
+ $(document).ready( function() {
2446
+ var hide_message = $.cookie( "cntctfrm_hide_banner_on_plugin_page" );
2447
+ var hide_message_for_ctfrmtdb = $.cookie( "cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page" );
2448
+ if ( hide_message == "true" ) {
2449
+ $( ".cntctfrm_message" ).css( "display", "none" );
2450
+ if ( hide_message_for_ctfrmtdb == "true" ) {
2451
+ $( ".cntctfrm_message_for_ctfrmtdb" ).css( "display", "none" );
 
 
 
2452
  } else {
2453
+ $( ".cntctfrm_message_for_ctfrmtdb" ).css( "display", "block" );
2454
  }
2455
+ } else {
2456
+ $( ".cntctfrm_message" ).css( "display", "block" );
2457
+ }
2458
+ $( ".cntctfrm_close_icon" ).click( function() {
2459
+ $( ".cntctfrm_message" ).css( "display", "none" );
2460
+ $.cookie( "cntctfrm_hide_banner_on_plugin_page", "true", { expires: 32 } );
2461
+ });
2462
+ $( ".cntctfrm_for_ctfrmtdb_close_icon" ).click( function() {
2463
+ $( ".cntctfrm_message_for_ctfrmtdb" ).css( "display", "none" );
2464
+ $.cookie( "cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page", "true", { expires: 32 } );
2465
  });
2466
+ });
2467
+ })(jQuery);
2468
+ </script>
2469
+ <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
2470
+ <div class="cntctfrm_message bws_banner_on_plugin_page" style="display: none;">
2471
+ <img class="cntctfrm_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
2472
+ <div class="button_div">
2473
+ <a class="button" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=f575dc39cba54a9de88df346eed52101&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"><?php _e( 'Learn More', 'contact_form' ); ?></a>
2474
+ </div>
2475
+ <div class="text">
2476
+ <?php _e( "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version", 'contact_form' ); ?>!<br />
2477
+ <span><?php _e( "Extend standard plugin functionality with new great options.", 'contact_form' ); ?></span>
2478
+ </div>
2479
+ <div class="icon">
2480
+ <img class="icon" title="" src="<?php echo plugins_url( 'images/banner.png', __FILE__ ); ?>" alt=""/>
2481
+ </div>
2482
+ </div>
2483
+ </div>
2484
+ <?php if ( ! array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) && ! array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) { ?>
2485
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
2486
+ <div class="cntctfrm_message_for_ctfrmtdb bws_banner_on_plugin_page" style="display: none;">
2487
+ <img class="cntctfrm_for_ctfrmtdb_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
2488
  <div class="button_div">
2489
+ <a class="button" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-to-db-pro/?k=6ebf0743736411607343ad391dc3b436&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"><?php _e( 'Learn More', 'contact_form' ); ?></a>
2490
  </div>
2491
  <div class="text">
2492
+ <?php _e( "<strong>Contact Form to DB</strong> allows to store your messages to the database.", 'contact_form' ); ?><br />
2493
+ <span><?php _e( "Manage messages that have been sent from your website.", 'contact_form' ); ?></span>
2494
+ </div>
2495
  <div class="icon">
2496
+ <img title="" src="<?php echo plugins_url( 'images/banner_for_ctfrmtdb.png', __FILE__ ); ?>" alt=""/>
2497
  </div>
2498
  </div>
2499
+ </div>
2500
+ <?php }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2501
  break;
2502
  }
2503
  if ( isset( $all_plugins[ $value[1] ] ) && $all_plugins[ $value[1] ]["Version"] >= $value[2] && ( 0 < count( preg_grep( '/' . str_replace( '/', '\/', $value[1] ) . '/', $active_plugins ) ) || is_plugin_active_for_network( $value[1] ) ) && ! isset( $_COOKIE[ $value[0] ] ) ) {
css/style.css CHANGED
@@ -113,7 +113,7 @@
113
  clear: none !important;
114
  }
115
  .cntctfrm_hidden_help_text {
116
- background: #F4F4F4;
117
  border: 1px solid #DCDCDC;
118
  border-radius: 4px;
119
  left: 40px;
@@ -166,16 +166,3 @@
166
  padding: 2px 10px;
167
  text-align: left;
168
  }
169
- /*
170
- * styles for pro_version settings
171
- */
172
- .cntctfrm_settings_table .bws_pro_version_tooltip {
173
- background: #FFF;
174
- border: 1px solid #AAA;
175
- }
176
- .cntctfrmpr_department_table > img {
177
- margin: -21px 17px 0;
178
- }
179
- #cntctfrmpr_pro_version > td {
180
- width: 900px;
181
- }
113
  clear: none !important;
114
  }
115
  .cntctfrm_hidden_help_text {
116
+ background: #FFF;
117
  border: 1px solid #DCDCDC;
118
  border-radius: 4px;
119
  left: 40px;
166
  padding: 2px 10px;
167
  text-align: left;
168
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
css/style_wp_before_3.8.css CHANGED
@@ -159,17 +159,4 @@
159
  height: 25px;
160
  padding: 2px 10px;
161
  text-align: left;
162
- }
163
- /*
164
- * styles for pro_version settings, banner and tooltip
165
- */
166
- .cntctfrm_settings_table .bws_pro_version_tooltip {
167
- background: #FFF;
168
- border: 1px solid #AAA;
169
- }
170
- .cntctfrmpr_department_table > img {
171
- margin: -21px 17px 0;
172
- }
173
- #cntctfrmpr_pro_version > td {
174
- width: 900px;
175
  }
159
  height: 25px;
160
  padding: 2px 10px;
161
  text-align: left;
 
 
 
 
 
 
 
 
 
 
 
 
 
162
  }
images/banner.png CHANGED
File without changes
images/banner_for_ctfrmtdb.png CHANGED
File without changes
images/close_banner.png CHANGED
File without changes
images/gray-grad.png CHANGED
File without changes
images/pro_screen_1.png CHANGED
File without changes
images/px.png CHANGED
File without changes
images/tooltip_attachment_tips.png CHANGED
File without changes
images/tooltip_sendme_block.png CHANGED
File without changes
js/script.js CHANGED
File without changes
languages/contact_form-af_ZA.mo CHANGED
Binary file
languages/contact_form-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: 2014-04-08 13:34+0300\n"
6
- "PO-Revision-Date: 2014-04-08 13:34+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Aldu <alducornelissen@gmail.com>\n"
9
  "Language: af\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: contact_form.php:73
21
- #: contact_form.php:788
22
  msgid "Contact Form Settings"
23
  msgstr "Kontak Form Verstellings"
24
 
@@ -27,44 +27,44 @@ msgid "Contact Form"
27
  msgstr "Kontak Form"
28
 
29
  #: contact_form.php:149
30
- #: contact_form.php:1106
31
- #: contact_form.php:1140
32
  msgid "Name:"
33
  msgstr "Naam:"
34
 
35
  #: contact_form.php:150
36
- #: contact_form.php:1107
37
- #: contact_form.php:1141
38
  msgid "Address:"
39
  msgstr "Adres:"
40
 
41
  #: contact_form.php:151
42
- #: contact_form.php:1108
43
- #: contact_form.php:1142
44
  msgid "Email Address:"
45
  msgstr "Epos Adres:"
46
 
47
  #: contact_form.php:152
48
- #: contact_form.php:1109
49
- #: contact_form.php:1143
50
  msgid "Phone number:"
51
  msgstr "Telefoon nommer:"
52
 
53
  #: contact_form.php:153
54
- #: contact_form.php:1110
55
- #: contact_form.php:1144
56
  msgid "Subject:"
57
  msgstr "Onderwerp:"
58
 
59
  #: contact_form.php:154
60
- #: contact_form.php:1111
61
- #: contact_form.php:1145
62
  msgid "Message:"
63
  msgstr "Boodskap:"
64
 
65
  #: contact_form.php:155
66
- #: contact_form.php:1112
67
- #: contact_form.php:1146
68
  msgid "Attachment:"
69
  msgstr "Aanhegsel:"
70
 
@@ -73,14 +73,14 @@ msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI,
73
  msgstr "Ondersteunde datalêer tipes: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max Datei-Größe: 2MB"
74
 
75
  #: contact_form.php:157
76
- #: contact_form.php:1114
77
- #: contact_form.php:1148
78
  msgid "Send me a copy"
79
  msgstr "Stuur vir my 'n kopie"
80
 
81
  #: contact_form.php:158
82
- #: contact_form.php:1115
83
- #: contact_form.php:1149
84
  msgid "Submit"
85
  msgstr "Dien in"
86
 
@@ -136,847 +136,871 @@ msgstr "Korregeer asseblief die foute hierdoner en probeer weer."
136
  msgid "Thank you for contacting us."
137
  msgstr "Dankie dat jy ons gekontak het."
138
 
139
- #: contact_form.php:325
140
  msgid "requires"
141
  msgstr "benodig"
142
 
143
- #: contact_form.php:325
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr "of hoër, dit is waarom dit gedeaktiveer is! Opgradeer asseblief WordPress, en probeer weer."
146
 
147
- #: contact_form.php:325
148
  msgid "Back to the WordPress"
149
  msgstr "Terug na WordPress."
150
 
151
- #: contact_form.php:325
152
  msgid "Plugins page"
153
  msgstr "Plugin blad"
154
 
155
- #: contact_form.php:628
156
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
157
  msgstr "As die 'Redirect to page' opsie geselekteer is moet die URL veld in die volgende formaat wees"
158
 
159
- #: contact_form.php:637
160
  msgid "Such user does not exist. Settings are not saved."
161
  msgstr "Hierdie gebruiker bestaan nie. Die instellings is nie gestoor nie."
162
 
163
- #: contact_form.php:641
164
- #: contact_form.php:647
165
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
166
  msgstr "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings is nie gestoor nie."
167
 
168
- #: contact_form.php:663
169
  msgid "Settings saved."
170
  msgstr "Verstellings is gestoor."
171
 
172
- #: contact_form.php:690
173
- #: contact_form.php:722
174
  msgid "Wrong license key"
175
  msgstr "Verkeerde lisensie sleutel"
176
 
177
- #: contact_form.php:715
178
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
179
  msgstr "Iets het fout gegaan. Probeer weer later. As die foutboodskap weer verskyn, kontak ons asseblief by <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Ons is jammer vir die ongerief."
180
 
181
- #: contact_form.php:724
182
  msgid "This license key is bind to another site"
183
  msgstr "Hierdie lisensie sleutel is verbind met 'n ander webblad."
184
 
185
- #: contact_form.php:726
186
- #: contact_form.php:1536
187
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
188
  msgstr "Ongelukkig het u die aantal beskikbare probeerslae per dag oorskry. Laai asseblief die plugin handmatig op."
189
 
190
- #: contact_form.php:743
191
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
192
  msgstr "Mislukking om zip Argiewe oop te maak. Laai asseblief die plugin handmatig op."
193
 
194
- #: contact_form.php:749
195
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
196
  msgstr "U server ondersteun of nie ZipArchive of Phar nie. Laai asseblief die plugin handmatig op."
197
 
198
- #: contact_form.php:753
199
- #: contact_form.php:762
200
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
201
  msgstr "Mislukking om zip Argiewe af te laai. Laai asseblief die plugin handmatig op."
202
 
203
- #: contact_form.php:766
204
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
205
  msgstr "Iets het verkeerd gegaan. Probeer weer later, of laai die plugin op handmatig. Ons is jammer vir die ongerief."
206
 
207
- #: contact_form.php:781
208
  msgid "Please, enter Your license key"
209
  msgstr "Sleutel asseblief u lisensie sleutel in"
210
 
211
- #: contact_form.php:790
212
- #: contact_form.php:2181
213
- #: contact_form.php:2192
214
  msgid "Settings"
215
  msgstr "Verstellings"
216
 
217
- #: contact_form.php:791
218
  msgid "Extra settings"
219
  msgstr "Ekstra verstellings"
220
 
221
- #: contact_form.php:792
222
  msgid "Go PRO"
223
  msgstr "Gaan PRO"
224
 
225
- #: contact_form.php:795
226
  msgid "Notice:"
227
  msgstr "Kennisgewing:"
228
 
229
- #: contact_form.php:795
230
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
231
  msgstr "Die plugin se verstellings het verander. Onthou om 'Save Changes' te kliek om die veranderinge te stoor."
232
 
233
- #: contact_form.php:801
234
- #: contact_form.php:806
235
- #: contact_form.php:1495
 
 
 
 
236
  msgid "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:"
237
  msgstr "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die kortkode na u post, bladsy of widget:"
238
 
239
- #: contact_form.php:801
240
- #: contact_form.php:802
241
- #: contact_form.php:806
242
- #: contact_form.php:807
243
- #: contact_form.php:1130
244
- #: contact_form.php:1132
245
- #: contact_form.php:1187
246
- #: contact_form.php:1189
247
  msgid "or"
248
  msgstr "of"
249
 
250
- #: contact_form.php:802
251
- #: contact_form.php:807
252
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
253
  msgstr "As u enige probelem het met die standaard kortkode [contact_form], moet u die volgende kortkodes gebruik"
254
 
255
- #: contact_form.php:803
256
- #: contact_form.php:808
257
  msgid "They work the same way."
258
  msgstr "Hulle werk op dieselfde manier."
259
 
260
- #: contact_form.php:804
261
- #: contact_form.php:809
262
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
263
  msgstr "As u die velde leeg laat, sal die boodskappe gestuur word na die epos adres wat gespesifiseer was gedurende registrasie"
264
 
265
- #: contact_form.php:814
266
  msgid "The user's email address:"
267
  msgstr "Die gebruiker se epos adres:"
268
 
269
- #: contact_form.php:818
270
  msgid "Create a username"
271
  msgstr "Skep 'n gebruikersnaam"
272
 
273
- #: contact_form.php:823
274
  msgid "Enter a username of the person who should get the messages from the contact form."
275
  msgstr "Sleutel 'n gebruikersnaam in vir die persoon wat die boodskappe moet kry van die kontak vorm."
276
 
277
- #: contact_form.php:827
278
  msgid "Use this email address:"
279
  msgstr "Gebruik hierdie epos adres:"
280
 
281
- #: contact_form.php:830
282
  msgid "Enter the email address you want the messages forwarded to."
283
  msgstr "Sleutel in die epos adres in waar u die boodskappe aangestuur wil he."
284
 
285
- #: contact_form.php:836
286
  msgid "Add department selectbox to the contact form:"
287
  msgstr "Voeg 'n departementele keuse-boks by die kontak vorm:"
288
 
289
- #: contact_form.php:844
290
- #: contact_form.php:1390
291
  msgid "If you upgrade to Pro version all your settings will be saved."
292
  msgstr "As u opgradeer na die Pro weergawe sal die verstellings gestoor word."
293
 
294
- #: contact_form.php:849
295
- #: contact_form.php:982
296
- #: contact_form.php:1051
297
- #: contact_form.php:1240
298
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
299
- msgstr "Hierdie funksie is beskikbaar in die Pro weergawe van die plugin. Vir meer besonderhede, volg die skakel:"
300
 
301
- #: contact_form.php:850
302
- #: contact_form.php:983
303
- #: contact_form.php:1052
304
- #: contact_form.php:1241
305
- msgid "Contact Form Pro"
306
- msgstr "Kontak Form Pro"
 
 
 
 
 
 
 
 
 
 
307
 
308
- #: contact_form.php:856
309
  msgid "Save emails to the database"
310
  msgstr "Stoor eposse na die databasis."
311
 
312
- #: contact_form.php:862
313
  msgid "Using"
314
  msgstr "In Gebruik"
315
 
316
- #: contact_form.php:862
317
- #: contact_form.php:1029
318
- #: contact_form.php:1032
319
- #: contact_form.php:1036
320
  msgid "powered by"
321
  msgstr "Verrig deur"
322
 
323
- #: contact_form.php:865
324
- #: contact_form.php:869
325
  msgid "Using Contact Form to DB powered by"
326
  msgstr "Gebruik van Kontak Vorm na DB verrig deur"
327
 
328
- #: contact_form.php:865
329
  msgid "Activate Contact Form to DB"
330
  msgstr "Aktiveer Kontak Vorm na DB"
331
 
332
- #: contact_form.php:869
333
  msgid "Download Contact Form to DB"
334
  msgstr "Laai Kontak Vorm na DB af"
335
 
336
- #: contact_form.php:874
337
  msgid "Additional options"
338
  msgstr "Addisionele opsies"
339
 
340
- #: contact_form.php:876
341
  msgid "Show"
342
  msgstr "Besigtig"
343
 
344
- #: contact_form.php:877
345
  msgid "Hide"
346
  msgstr "Versteek"
347
 
348
- #: contact_form.php:881
349
  msgid "What to use?"
350
  msgstr "Wat om te gebruik?"
351
 
352
- #: contact_form.php:884
353
  msgid "Wp-mail"
354
  msgstr "Wp-mail"
355
 
356
- #: contact_form.php:884
357
  msgid "You can use the wp_mail function for mailing"
358
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
359
 
360
- #: contact_form.php:886
361
  msgid "Mail"
362
  msgstr "Mail"
363
 
364
- #: contact_form.php:886
365
  msgid "To send mail you can use the php mail function"
366
  msgstr "Om eposse te stuur kan u die php epos funksie gebruik"
367
 
368
- #: contact_form.php:890
369
  msgid "The text in the 'From' field"
370
  msgstr "Die teks in die 'From/Van' veld"
371
 
372
- #: contact_form.php:892
373
  msgid "User name"
374
  msgstr "Gebruikersnaam"
375
 
376
- #: contact_form.php:893
377
  msgid "The name of the user who fills the form will be used in the field 'From'."
378
  msgstr "Die naam van die gebruiker wie die vorm invul sal gebruik word vir die 'From/Van' veld."
379
 
380
- #: contact_form.php:896
381
  msgid "This text will be used in the 'FROM' field"
382
  msgstr "Hierdie teks sal gebruik word in die 'FROM/VAN' veld"
383
 
384
- #: contact_form.php:900
385
  msgid "The email address in the 'From' field"
386
  msgstr "Die epos adres in die 'From/Van' veld"
387
 
388
- #: contact_form.php:902
389
  msgid "User email"
390
  msgstr "Gebruiker epos"
391
 
392
- #: contact_form.php:903
393
  msgid "The email address of the user who fills the form will be used in the field 'From'."
394
  msgstr "Die epos adres van die gebruiker wie die vorm invul sal gebruik word in die 'From/van' veld."
395
 
396
- #: contact_form.php:906
397
  msgid "This email address will be used in the 'From' field."
398
  msgstr "Hierdie epos adres sal gebruik word in die 'From/Van' veld."
399
 
400
- #: contact_form.php:910
401
  msgid "Required symbol"
402
  msgstr "Benodigde simbool"
403
 
404
- #: contact_form.php:920
405
  msgid "Fields"
406
  msgstr "Velde"
407
 
408
- #: contact_form.php:921
409
  msgid "Used"
410
  msgstr "Gebruik"
411
 
412
- #: contact_form.php:922
413
  msgid "Required"
414
  msgstr "Benodig"
415
 
416
- #: contact_form.php:923
417
  msgid "Visible"
418
  msgstr "Sigbaar"
419
 
420
- #: contact_form.php:924
421
  msgid "Disabled for editing"
422
  msgstr "Gedeaktiveer vir wysiging"
423
 
424
- #: contact_form.php:925
425
  msgid "Field's default value"
426
  msgstr "Veld se verstekwaarde"
427
 
428
- #: contact_form.php:930
429
- #: contact_form.php:1265
430
- #: contact_form.php:2024
431
- #: contact_form.php:2054
432
  msgid "Name"
433
  msgstr "Naam"
434
 
435
- #: contact_form.php:938
436
- #: contact_form.php:1270
437
- #: contact_form.php:2028
438
- #: contact_form.php:2056
439
  msgid "Address"
440
  msgstr "Adres: "
441
 
442
- #: contact_form.php:946
443
  msgid "Email Address"
444
  msgstr "Epos Adres:"
445
 
446
- #: contact_form.php:954
447
  msgid "Phone number"
448
  msgstr "Telefoon nommer:"
449
 
450
- #: contact_form.php:962
451
- #: contact_form.php:1285
452
- #: contact_form.php:2038
453
- #: contact_form.php:2060
454
  msgid "Subject"
455
  msgstr "Onderwerp"
456
 
457
- #: contact_form.php:970
458
- #: contact_form.php:1289
459
- #: contact_form.php:2041
460
- #: contact_form.php:2061
461
  msgid "Message"
462
  msgstr "Boodskap"
463
 
464
- #: contact_form.php:988
465
  msgid "Attachment block"
466
  msgstr "Aanhegsel blok"
467
 
468
- #: contact_form.php:990
469
  msgid "Users can attach the following file formats"
470
  msgstr "Gebruikers kan die volgende dataleêr formate aanheg"
471
 
472
- #: contact_form.php:1004
473
  msgid "Add to the form"
474
  msgstr "Voeg by die vorm by"
475
 
476
- #: contact_form.php:1009
477
  msgid "Tips below the Attachment"
478
  msgstr "Wenke onder die Aanhegsel"
479
 
480
- #: contact_form.php:1018
481
  msgid "'Send me a copy' block"
482
  msgstr "'Stuur vir my 'n kopie' blok"
483
 
484
- #: contact_form.php:1029
485
- #: contact_form.php:1032
486
- #: contact_form.php:1036
487
- #: contact_form.php:1299
488
  msgid "Captcha"
489
  msgstr "Captcha"
490
 
491
- #: contact_form.php:1032
492
  msgid "Activate captcha"
493
  msgstr "Aktiveer captcha"
494
 
495
- #: contact_form.php:1036
496
  msgid "Download captcha"
497
  msgstr "Laai captcha af"
498
 
499
- #: contact_form.php:1044
500
  msgid "Agreement checkbox"
501
  msgstr "Ooreenstemming checkbox"
502
 
503
- #: contact_form.php:1044
504
  msgid "Required checkbox for submitting the form"
505
  msgstr "Benodigde checkbox om die vorm in te dien"
506
 
507
- #: contact_form.php:1045
508
  msgid "Optional checkbox"
509
  msgstr "Opsie checkbox"
510
 
511
- #: contact_form.php:1045
512
  msgid "Optional checkbox, the results of which will be displayed in email"
513
  msgstr "Opsionele checkbox, die resultate waarvan in die epos sal verskyn"
514
 
515
- #: contact_form.php:1056
516
  msgid "Delete an attachment file from the server after the email is sent"
517
  msgstr "Verwyder 'n aanhegsel dataleêr van die server na epos gestuur is"
518
 
519
- #: contact_form.php:1062
520
  msgid "Email in HTML format sending"
521
  msgstr "E-Mail in HTML Format"
522
 
523
- #: contact_form.php:1066
524
  msgid "Display additional info in the email"
525
  msgstr "Toon addisionele inligting in die epos"
526
 
527
- #: contact_form.php:1071
528
- #: contact_form.php:1991
529
- #: contact_form.php:1993
530
  msgid "Sent from (ip address)"
531
  msgstr "Gestuur van (IP-Adres)"
532
 
533
- #: contact_form.php:1071
534
  msgid "Example: Sent from (IP address):\t127.0.0.1"
535
  msgstr "Voorbeeld: Gestuur van (IP-Adres):\t127.0.0.1"
536
 
537
- #: contact_form.php:1072
538
- #: contact_form.php:1997
539
- #: contact_form.php:1999
540
  msgid "Date/Time"
541
  msgstr "Datum/Tyd"
542
 
543
- #: contact_form.php:1072
544
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
545
  msgstr "Voorbeeld: Datum/Tyd:\tAugustus 19, 2013 8:50 pm"
546
 
547
- #: contact_form.php:1073
548
- #: contact_form.php:2003
549
- #: contact_form.php:2005
550
  msgid "Sent from (referer)"
551
  msgstr "Gestuur van (referer)"
552
 
553
- #: contact_form.php:1073
554
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
555
  msgstr "Voorbeeld: Gestuur van (referer):\thttp://bestwebsoft.com/kontakte/kontak-ons/"
556
 
557
- #: contact_form.php:1074
558
- #: contact_form.php:2009
559
- #: contact_form.php:2011
560
  msgid "Using (user agent)"
561
  msgstr "Gebruik (user agent)"
562
 
563
- #: contact_form.php:1074
564
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
565
  msgstr "Voorbeeld: Gebruik (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
566
 
567
- #: contact_form.php:1078
568
  msgid "Language settings for the field names in the form"
569
  msgstr "Taal verstellings vir die naamvelde in die vorm"
570
 
571
- #: contact_form.php:1087
572
  msgid "Add a language"
573
  msgstr "Voeg 'n taal by"
574
 
575
- #: contact_form.php:1091
576
  msgid "Change the names of the contact form fields and error messages"
577
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
578
 
579
- #: contact_form.php:1096
580
- #: contact_form.php:1177
581
  msgid "English"
582
  msgstr "Engels"
583
 
584
- #: contact_form.php:1104
585
- #: contact_form.php:1138
586
  msgid "click to expand/hide the list"
587
  msgstr "Kliek om uit te brei/lys te versteek"
588
 
589
- #: contact_form.php:1113
590
- #: contact_form.php:1147
591
  msgid "Tips below the Attachment block"
592
  msgstr "Wenke onder toe Aanhegsel blok"
593
 
594
- #: contact_form.php:1116
595
- #: contact_form.php:1150
596
  msgid "Error message for the Name field"
597
  msgstr "FFoutboodskap vir die Naamveld"
598
 
599
- #: contact_form.php:1117
600
- #: contact_form.php:1151
601
  msgid "Error message for the Address field"
602
  msgstr "Foutboodskap vir die Adres veld"
603
 
604
- #: contact_form.php:1118
605
- #: contact_form.php:1152
606
  msgid "Error message for the Email field"
607
  msgstr "Foutboodskap vir die Epos veld"
608
 
609
- #: contact_form.php:1119
610
- #: contact_form.php:1153
611
  msgid "Error message for the Phone field"
612
  msgstr "Foutboodskap vir die Telefoon Nommer veld"
613
 
614
- #: contact_form.php:1120
615
- #: contact_form.php:1154
616
  msgid "Error message for the Subject field"
617
  msgstr "Foutboodskap vir die Onderwerp veld"
618
 
619
- #: contact_form.php:1121
620
- #: contact_form.php:1155
621
  msgid "Error message for the Message field"
622
  msgstr "Foutboodskap vir die Boodskap veld"
623
 
624
- #: contact_form.php:1122
625
- #: contact_form.php:1156
626
  msgid "Error message about the file type for the Attachment field"
627
  msgstr "Foutboodskap oor die dataleêr tipe vir die Aanhegsel veld"
628
 
629
- #: contact_form.php:1123
630
- #: contact_form.php:1157
631
  msgid "Error message while uploading a file for the Attachment field to the server"
632
  msgstr "Foutboodskap tydens dataleêr oplaai vir die Aanhegsel veld na die server"
633
 
634
- #: contact_form.php:1124
635
- #: contact_form.php:1158
636
  msgid "Error message while moving the file for the Attachment field"
637
  msgstr "Foutboodskap tydens die skuif van dataleêr vir die Aanhegsel veld"
638
 
639
- #: contact_form.php:1125
640
- #: contact_form.php:1159
641
  msgid "Error message when file size limit for the Attachment field is exceeded"
642
  msgstr "Foutboodskap wanneer die dataleêr limiet vir die Aanhegsel veld oorskry is"
643
 
644
- #: contact_form.php:1126
645
- #: contact_form.php:1160
646
  msgid "Error message for the Captcha field"
647
  msgstr "Foutboodskap vir die Captcha veld"
648
 
649
- #: contact_form.php:1127
650
- #: contact_form.php:1161
651
  msgid "Error message for the whole form"
652
  msgstr "Foutboodskap vir die hele vorm"
653
 
654
- #: contact_form.php:1130
655
- #: contact_form.php:1132
656
- #: contact_form.php:1164
657
- #: contact_form.php:1166
658
- #: contact_form.php:1187
659
  #: contact_form.php:1189
660
- #: contact_form.php:1197
661
- #: contact_form.php:1199
 
 
 
662
  msgid "Use shortcode"
663
  msgstr "Gebruik kortkode"
664
 
665
- #: contact_form.php:1130
666
- #: contact_form.php:1132
667
- #: contact_form.php:1164
668
- #: contact_form.php:1166
669
- #: contact_form.php:1187
670
  #: contact_form.php:1189
671
- #: contact_form.php:1197
672
- #: contact_form.php:1199
 
 
 
673
  msgid "for this language"
674
  msgstr "vir hierdie taal"
675
 
676
- #: contact_form.php:1174
677
  msgid "Action after email is sent"
678
  msgstr "Aksie na epos gestuur is"
679
 
680
- #: contact_form.php:1176
681
  msgid "Display text"
682
  msgstr "Toon teks"
683
 
684
- #: contact_form.php:1185
685
- #: contact_form.php:1195
686
  msgid "Text"
687
  msgstr "teks"
688
 
689
- #: contact_form.php:1206
690
  msgid "Redirect to the page"
691
  msgstr "Herlei na die bladsy"
692
 
693
- #: contact_form.php:1207
694
  msgid "Url"
695
  msgstr "Url"
696
 
697
- #: contact_form.php:1211
698
  msgid "The $_SERVER variable that is used to build a URL of the form"
699
  msgstr ""
700
 
701
- #: contact_form.php:1215
702
  msgid "If you are not sure whether to change this setting or not, please do not do that."
703
  msgstr ""
704
 
705
- #: contact_form.php:1221
706
- #: contact_form.php:1396
707
  msgid "Save Changes"
708
  msgstr "Stoor veranderinge"
709
 
710
- #: contact_form.php:1226
711
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
712
  msgstr "As u die plugin geniet, gee dit asseblief 5 sterre op WordPress"
713
 
714
- #: contact_form.php:1227
715
  msgid "Rate the plugin"
716
  msgstr "Prys die plugin"
717
 
718
- #: contact_form.php:1230
719
  msgid "If there is something wrong about it, please contact us"
720
  msgstr "As daar iets fout is met dit, kontak ons asseblief"
721
 
722
- #: contact_form.php:1245
723
  msgid "Errors output"
724
  msgstr "Foutboodskap uitset"
725
 
726
- #: contact_form.php:1248
727
  msgid "Display error messages"
728
  msgstr "Toon foutboodskappe"
729
 
730
- #: contact_form.php:1249
731
  msgid "Color of the input field errors."
732
  msgstr "Kleur van die inset veld foutboodskappe"
733
 
734
- #: contact_form.php:1250
735
  msgid "Display error messages & color of the input field errors"
736
  msgstr "Toon foutboodskappe & kleur van die inset veld foutboodskappe"
737
 
738
- #: contact_form.php:1255
739
  msgid "Add placeholder to the input blocks"
740
  msgstr "Voeg 'n plekhouer by die inset blokke"
741
 
742
- #: contact_form.php:1261
743
  msgid "Add tooltips"
744
  msgstr "Voeg tool-wenke"
745
 
746
- #: contact_form.php:1275
747
  msgid "Email address"
748
  msgstr "Epos Adres:"
749
 
750
- #: contact_form.php:1280
751
  msgid "Phone Number"
752
  msgstr "Telefoon Nommer:"
753
 
754
- #: contact_form.php:1294
755
  msgid "Attachment"
756
  msgstr "Aanhegsel:"
757
 
758
- #: contact_form.php:1299
759
  msgid "(powered by bestwebsoft.com)"
760
  msgstr "(Verrig deur bestwebsoft.com)"
761
 
762
- #: contact_form.php:1304
763
  msgid "Style options"
764
  msgstr "Styl opsies"
765
 
766
- #: contact_form.php:1307
767
  msgid "Text color"
768
  msgstr "Teks kleur"
769
 
770
- #: contact_form.php:1310
771
- #: contact_form.php:1315
772
- #: contact_form.php:1325
773
- #: contact_form.php:1330
774
- #: contact_form.php:1335
775
- #: contact_form.php:1340
776
- #: contact_form.php:1350
777
- #: contact_form.php:1355
778
- #: contact_form.php:1361
779
  #: contact_form.php:1372
780
  #: contact_form.php:1377
781
- #: contact_form.php:1382
 
 
 
782
  msgid "Default"
783
  msgstr "Verstek"
784
 
785
- #: contact_form.php:1312
786
  msgid "Label text color"
787
  msgstr "Etiket teks kleur"
788
 
789
- #: contact_form.php:1317
790
  msgid "Placeholder color"
791
  msgstr "Plekhouer kleur"
792
 
793
- #: contact_form.php:1322
794
  msgid "Errors color"
795
  msgstr "Foutboodskap kleur"
796
 
797
- #: contact_form.php:1327
798
  msgid "Error text color"
799
  msgstr "Foutboodskap teks kleur"
800
 
801
- #: contact_form.php:1332
802
  msgid "Background color of the input field errors"
803
  msgstr "Agtergrond kleur van die inset veld foutboodskappe"
804
 
805
- #: contact_form.php:1337
806
  msgid "Border color of the input field errors"
807
  msgstr "Rand-kleur van die inset veld foutboodskappe"
808
 
809
- #: contact_form.php:1342
810
  msgid "Placeholder color of the input field errors"
811
  msgstr "Plekhouer kleur van die inset veld foutboodskappe"
812
 
813
- #: contact_form.php:1347
814
  msgid "Input fields"
815
  msgstr "Inset velde"
816
 
817
- #: contact_form.php:1352
818
  msgid "Input fields background color"
819
  msgstr "Inset velde agtergrond kleur"
820
 
821
- #: contact_form.php:1357
822
  msgid "Text fields color"
823
  msgstr "Teks velde kleur"
824
 
825
- #: contact_form.php:1359
826
  msgid "Border width in px, numbers only"
827
  msgstr "Rand wydte in px, nommers alleenlik"
828
 
829
- #: contact_form.php:1363
830
- #: contact_form.php:1384
831
  msgid "Border color"
832
  msgstr "Rand kleur"
833
 
834
- #: contact_form.php:1368
835
  msgid "Submit button"
836
  msgstr "Indien knoppie"
837
 
838
- #: contact_form.php:1370
839
  msgid "Width in px, numbers only"
840
  msgstr "Wydte in px, nommers alleenlik"
841
 
842
- #: contact_form.php:1374
843
  msgid "Button color"
844
  msgstr "Knoppie Kleur"
845
 
846
- #: contact_form.php:1379
847
  msgid "Button text color"
848
  msgstr "Knoppie teks kleur"
849
 
850
- #: contact_form.php:1400
851
  msgid "Contact Form Pro | Preview"
852
  msgstr "Kontak Vorm Pro | Voorskou"
853
 
854
- #: contact_form.php:1403
855
  msgid "Show with errors"
856
  msgstr "Toon met foutboodskappe"
857
 
858
- #: contact_form.php:1411
859
- #: contact_form.php:1413
860
  msgid "Please enter your full name..."
861
  msgstr "Vul asseblief u volle name in..."
862
 
863
- #: contact_form.php:1424
864
- #: contact_form.php:1426
865
  msgid "Please enter your address..."
866
  msgstr "Vul asseblief u adres in... "
867
 
868
- #: contact_form.php:1435
869
- #: contact_form.php:1437
870
  msgid "Please enter your email address..."
871
  msgstr "Vul asseblief u epos adres in..."
872
 
873
- #: contact_form.php:1446
874
- #: contact_form.php:1448
875
  msgid "Please enter your phone number..."
876
  msgstr "Vul asseblief u telefoon nommer in... "
877
 
878
- #: contact_form.php:1457
879
- #: contact_form.php:1459
880
  msgid "Please enter subject..."
881
  msgstr "Vul asseblief 'n onderwerp in... "
882
 
883
- #: contact_form.php:1467
884
- #: contact_form.php:1469
885
  msgid "Please enter your message..."
886
  msgstr "Vul asseblief jou boodskap in... "
887
 
888
- #: contact_form.php:1511
889
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
890
  msgstr "Geluk! Die PRO weergawe van die plugin het suksesvol afgelaai en is geaktiveer"
891
 
892
- #: contact_form.php:1513
893
  msgid "Please, go to"
894
  msgstr "Gaan asseblief na"
895
 
896
- #: contact_form.php:1513
897
  msgid "the setting page"
898
  msgstr "Die verstelling bladsy"
899
 
900
- #: contact_form.php:1514
901
  msgid "You will be redirected automatically in 5 seconds."
902
  msgstr "U sal outomaties herlei word in 5 sekondes."
903
 
904
- #: contact_form.php:1519
905
  msgid "You can download and activate"
906
  msgstr "U kan aflaai en aktiveer"
907
 
908
- #: contact_form.php:1521
909
  msgid "version of this plugin by entering Your license key."
910
  msgstr "weergawe van hierdie plugin deurom u lisensiekode in te vul."
911
 
912
- #: contact_form.php:1523
913
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
914
  msgstr "U kan u lisensiekode vind op u persoonlike bladsy Klient area, deurom te kliek op die skakel"
915
 
916
- #: contact_form.php:1525
917
  msgid "(your username is the email you specify when purchasing the product)."
918
  msgstr "(u gebruikersnaam is die epos wat u gespesifiseer het toe u die produk aangekoop het)."
919
 
920
- #: contact_form.php:1533
921
- #: contact_form.php:1543
922
  msgid "Go!"
923
  msgstr "Go!"
924
 
925
- #: contact_form.php:1613
926
  msgid "Sorry, email message could not be delivered."
927
  msgstr "Verskoning, die epos kon nie gestuur word nie."
928
 
929
- #: contact_form.php:2018
930
  msgid "Contact from"
931
  msgstr "Kontak Vorm"
932
 
933
- #: contact_form.php:2031
934
- #: contact_form.php:2057
935
  msgid "Email"
936
  msgstr "Epos"
937
 
938
- #: contact_form.php:2035
939
- #: contact_form.php:2059
940
  msgid "Phone"
941
  msgstr "Telefoon Nommer"
942
 
943
- #: contact_form.php:2044
944
- #: contact_form.php:2062
945
  msgid "Site"
946
  msgstr "Webtuiste"
947
 
948
- #: contact_form.php:2125
949
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
950
  msgstr "As u die MIME kan sie, beteken dit dat die MIME tipe nie ondersteun word deur u epos klient nie!"
951
 
952
- #: contact_form.php:2193
953
  msgid "FAQ"
954
  msgstr "Gereeld Gestelde Vrae (FAQ)"
955
 
956
- #: contact_form.php:2194
957
  msgid "Support"
958
  msgstr "Steun"
959
 
960
- #: contact_form.php:2243
961
  msgid "Are you sure that you want to delete this language data?"
962
  msgstr "Is u seker dat u die taal data wil verwyder?"
963
 
964
- #: contact_form.php:2438
965
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
966
  msgstr ""
967
 
968
- #: contact_form.php:2439
969
  msgid "Extend standard plugin functionality with new great options."
970
  msgstr ""
971
 
972
- #: contact_form.php:2454
973
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
974
  msgstr ""
975
 
976
- #: contact_form.php:2455
977
  msgid "Manage messages that have been sent from your website."
978
  msgstr ""
979
 
 
 
 
 
 
 
 
 
 
 
980
  #~ msgid "Not set"
981
  #~ msgstr "Nie gestel nie"
982
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:37+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:37+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Aldu <alducornelissen@gmail.com>\n"
9
  "Language: af\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: contact_form.php:73
21
+ #: contact_form.php:785
22
  msgid "Contact Form Settings"
23
  msgstr "Kontak Form Verstellings"
24
 
27
  msgstr "Kontak Form"
28
 
29
  #: contact_form.php:149
30
+ #: contact_form.php:1131
31
+ #: contact_form.php:1165
32
  msgid "Name:"
33
  msgstr "Naam:"
34
 
35
  #: contact_form.php:150
36
+ #: contact_form.php:1132
37
+ #: contact_form.php:1166
38
  msgid "Address:"
39
  msgstr "Adres:"
40
 
41
  #: contact_form.php:151
42
+ #: contact_form.php:1133
43
+ #: contact_form.php:1167
44
  msgid "Email Address:"
45
  msgstr "Epos Adres:"
46
 
47
  #: contact_form.php:152
48
+ #: contact_form.php:1134
49
+ #: contact_form.php:1168
50
  msgid "Phone number:"
51
  msgstr "Telefoon nommer:"
52
 
53
  #: contact_form.php:153
54
+ #: contact_form.php:1135
55
+ #: contact_form.php:1169
56
  msgid "Subject:"
57
  msgstr "Onderwerp:"
58
 
59
  #: contact_form.php:154
60
+ #: contact_form.php:1136
61
+ #: contact_form.php:1170
62
  msgid "Message:"
63
  msgstr "Boodskap:"
64
 
65
  #: contact_form.php:155
66
+ #: contact_form.php:1137
67
+ #: contact_form.php:1171
68
  msgid "Attachment:"
69
  msgstr "Aanhegsel:"
70
 
73
  msgstr "Ondersteunde datalêer tipes: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max Datei-Größe: 2MB"
74
 
75
  #: contact_form.php:157
76
+ #: contact_form.php:1139
77
+ #: contact_form.php:1173
78
  msgid "Send me a copy"
79
  msgstr "Stuur vir my 'n kopie"
80
 
81
  #: contact_form.php:158
82
+ #: contact_form.php:1140
83
+ #: contact_form.php:1174
84
  msgid "Submit"
85
  msgstr "Dien in"
86
 
136
  msgid "Thank you for contacting us."
137
  msgstr "Dankie dat jy ons gekontak het."
138
 
139
+ #: contact_form.php:322
140
  msgid "requires"
141
  msgstr "benodig"
142
 
143
+ #: contact_form.php:322
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr "of hoër, dit is waarom dit gedeaktiveer is! Opgradeer asseblief WordPress, en probeer weer."
146
 
147
+ #: contact_form.php:322
148
  msgid "Back to the WordPress"
149
  msgstr "Terug na WordPress."
150
 
151
+ #: contact_form.php:322
152
  msgid "Plugins page"
153
  msgstr "Plugin blad"
154
 
155
+ #: contact_form.php:626
156
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
157
  msgstr "As die 'Redirect to page' opsie geselekteer is moet die URL veld in die volgende formaat wees"
158
 
159
+ #: contact_form.php:635
160
  msgid "Such user does not exist. Settings are not saved."
161
  msgstr "Hierdie gebruiker bestaan nie. Die instellings is nie gestoor nie."
162
 
163
+ #: contact_form.php:639
164
+ #: contact_form.php:645
165
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
166
  msgstr "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings is nie gestoor nie."
167
 
168
+ #: contact_form.php:661
169
  msgid "Settings saved."
170
  msgstr "Verstellings is gestoor."
171
 
172
+ #: contact_form.php:688
173
+ #: contact_form.php:720
174
  msgid "Wrong license key"
175
  msgstr "Verkeerde lisensie sleutel"
176
 
177
+ #: contact_form.php:713
178
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
179
  msgstr "Iets het fout gegaan. Probeer weer later. As die foutboodskap weer verskyn, kontak ons asseblief by <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Ons is jammer vir die ongerief."
180
 
181
+ #: contact_form.php:722
182
  msgid "This license key is bind to another site"
183
  msgstr "Hierdie lisensie sleutel is verbind met 'n ander webblad."
184
 
185
+ #: contact_form.php:724
186
+ #: contact_form.php:1570
187
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
188
  msgstr "Ongelukkig het u die aantal beskikbare probeerslae per dag oorskry. Laai asseblief die plugin handmatig op."
189
 
190
+ #: contact_form.php:741
191
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
192
  msgstr "Mislukking om zip Argiewe oop te maak. Laai asseblief die plugin handmatig op."
193
 
194
+ #: contact_form.php:747
195
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
196
  msgstr "U server ondersteun of nie ZipArchive of Phar nie. Laai asseblief die plugin handmatig op."
197
 
198
+ #: contact_form.php:751
199
+ #: contact_form.php:760
200
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
201
  msgstr "Mislukking om zip Argiewe af te laai. Laai asseblief die plugin handmatig op."
202
 
203
+ #: contact_form.php:764
204
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
205
  msgstr "Iets het verkeerd gegaan. Probeer weer later, of laai die plugin op handmatig. Ons is jammer vir die ongerief."
206
 
207
+ #: contact_form.php:779
208
  msgid "Please, enter Your license key"
209
  msgstr "Sleutel asseblief u lisensie sleutel in"
210
 
211
+ #: contact_form.php:787
212
+ #: contact_form.php:2216
213
+ #: contact_form.php:2228
214
  msgid "Settings"
215
  msgstr "Verstellings"
216
 
217
+ #: contact_form.php:788
218
  msgid "Extra settings"
219
  msgstr "Ekstra verstellings"
220
 
221
+ #: contact_form.php:789
222
  msgid "Go PRO"
223
  msgstr "Gaan PRO"
224
 
225
+ #: contact_form.php:792
226
  msgid "Notice:"
227
  msgstr "Kennisgewing:"
228
 
229
+ #: contact_form.php:792
230
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
231
  msgstr "Die plugin se verstellings het verander. Onthou om 'Save Changes' te kliek om die veranderinge te stoor."
232
 
233
+ #: contact_form.php:798
234
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
235
+ msgstr ""
236
+
237
+ #: contact_form.php:804
238
+ #: contact_form.php:809
239
+ #: contact_form.php:1529
240
  msgid "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:"
241
  msgstr "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die kortkode na u post, bladsy of widget:"
242
 
243
+ #: contact_form.php:804
244
+ #: contact_form.php:805
245
+ #: contact_form.php:809
246
+ #: contact_form.php:810
247
+ #: contact_form.php:1155
248
+ #: contact_form.php:1157
249
+ #: contact_form.php:1212
250
+ #: contact_form.php:1214
251
  msgid "or"
252
  msgstr "of"
253
 
254
+ #: contact_form.php:805
255
+ #: contact_form.php:810
256
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
257
  msgstr "As u enige probelem het met die standaard kortkode [contact_form], moet u die volgende kortkodes gebruik"
258
 
259
+ #: contact_form.php:806
260
+ #: contact_form.php:811
261
  msgid "They work the same way."
262
  msgstr "Hulle werk op dieselfde manier."
263
 
264
+ #: contact_form.php:807
265
+ #: contact_form.php:812
266
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
267
  msgstr "As u die velde leeg laat, sal die boodskappe gestuur word na die epos adres wat gespesifiseer was gedurende registrasie"
268
 
269
+ #: contact_form.php:817
270
  msgid "The user's email address:"
271
  msgstr "Die gebruiker se epos adres:"
272
 
273
+ #: contact_form.php:821
274
  msgid "Create a username"
275
  msgstr "Skep 'n gebruikersnaam"
276
 
277
+ #: contact_form.php:828
278
  msgid "Enter a username of the person who should get the messages from the contact form."
279
  msgstr "Sleutel 'n gebruikersnaam in vir die persoon wat die boodskappe moet kry van die kontak vorm."
280
 
281
+ #: contact_form.php:832
282
  msgid "Use this email address:"
283
  msgstr "Gebruik hierdie epos adres:"
284
 
285
+ #: contact_form.php:835
286
  msgid "Enter the email address you want the messages forwarded to."
287
  msgstr "Sleutel in die epos adres in waar u die boodskappe aangestuur wil he."
288
 
289
+ #: contact_form.php:844
290
  msgid "Add department selectbox to the contact form:"
291
  msgstr "Voeg 'n departementele keuse-boks by die kontak vorm:"
292
 
293
+ #: contact_form.php:852
294
+ #: contact_form.php:1412
295
  msgid "If you upgrade to Pro version all your settings will be saved."
296
  msgstr "As u opgradeer na die Pro weergawe sal die verstellings gestoor word."
297
 
298
+ #: contact_form.php:859
299
+ #: contact_form.php:997
300
+ #: contact_form.php:1071
301
+ #: contact_form.php:1419
302
+ msgid "Unlock premium options by upgrading to a PRO version."
303
+ msgstr ""
304
 
305
+ #: contact_form.php:860
306
+ #: contact_form.php:998
307
+ #: contact_form.php:1072
308
+ #: contact_form.php:1420
309
+ #: contact_form.php:2473
310
+ #: contact_form.php:2489
311
+ msgid "Learn More"
312
+ msgstr ""
313
+
314
+ #: contact_form.php:863
315
+ #: contact_form.php:1001
316
+ #: contact_form.php:1075
317
+ #: contact_form.php:1423
318
+ #, fuzzy
319
+ msgid "Go"
320
+ msgstr "Go!"
321
 
322
+ #: contact_form.php:870
323
  msgid "Save emails to the database"
324
  msgstr "Stoor eposse na die databasis."
325
 
326
+ #: contact_form.php:876
327
  msgid "Using"
328
  msgstr "In Gebruik"
329
 
330
+ #: contact_form.php:876
331
+ #: contact_form.php:1048
332
+ #: contact_form.php:1051
333
+ #: contact_form.php:1055
334
  msgid "powered by"
335
  msgstr "Verrig deur"
336
 
337
+ #: contact_form.php:879
338
+ #: contact_form.php:883
339
  msgid "Using Contact Form to DB powered by"
340
  msgstr "Gebruik van Kontak Vorm na DB verrig deur"
341
 
342
+ #: contact_form.php:879
343
  msgid "Activate Contact Form to DB"
344
  msgstr "Aktiveer Kontak Vorm na DB"
345
 
346
+ #: contact_form.php:883
347
  msgid "Download Contact Form to DB"
348
  msgstr "Laai Kontak Vorm na DB af"
349
 
350
+ #: contact_form.php:888
351
  msgid "Additional options"
352
  msgstr "Addisionele opsies"
353
 
354
+ #: contact_form.php:890
355
  msgid "Show"
356
  msgstr "Besigtig"
357
 
358
+ #: contact_form.php:891
359
  msgid "Hide"
360
  msgstr "Versteek"
361
 
362
+ #: contact_form.php:895
363
  msgid "What to use?"
364
  msgstr "Wat om te gebruik?"
365
 
366
+ #: contact_form.php:898
367
  msgid "Wp-mail"
368
  msgstr "Wp-mail"
369
 
370
+ #: contact_form.php:898
371
  msgid "You can use the wp_mail function for mailing"
372
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
373
 
374
+ #: contact_form.php:900
375
  msgid "Mail"
376
  msgstr "Mail"
377
 
378
+ #: contact_form.php:900
379
  msgid "To send mail you can use the php mail function"
380
  msgstr "Om eposse te stuur kan u die php epos funksie gebruik"
381
 
382
+ #: contact_form.php:904
383
  msgid "The text in the 'From' field"
384
  msgstr "Die teks in die 'From/Van' veld"
385
 
386
+ #: contact_form.php:906
387
  msgid "User name"
388
  msgstr "Gebruikersnaam"
389
 
390
+ #: contact_form.php:907
391
  msgid "The name of the user who fills the form will be used in the field 'From'."
392
  msgstr "Die naam van die gebruiker wie die vorm invul sal gebruik word vir die 'From/Van' veld."
393
 
394
+ #: contact_form.php:910
395
  msgid "This text will be used in the 'FROM' field"
396
  msgstr "Hierdie teks sal gebruik word in die 'FROM/VAN' veld"
397
 
398
+ #: contact_form.php:914
399
  msgid "The email address in the 'From' field"
400
  msgstr "Die epos adres in die 'From/Van' veld"
401
 
402
+ #: contact_form.php:916
403
  msgid "User email"
404
  msgstr "Gebruiker epos"
405
 
406
+ #: contact_form.php:917
407
  msgid "The email address of the user who fills the form will be used in the field 'From'."
408
  msgstr "Die epos adres van die gebruiker wie die vorm invul sal gebruik word in die 'From/van' veld."
409
 
410
+ #: contact_form.php:920
411
  msgid "This email address will be used in the 'From' field."
412
  msgstr "Hierdie epos adres sal gebruik word in die 'From/Van' veld."
413
 
414
+ #: contact_form.php:924
415
  msgid "Required symbol"
416
  msgstr "Benodigde simbool"
417
 
418
+ #: contact_form.php:934
419
  msgid "Fields"
420
  msgstr "Velde"
421
 
422
+ #: contact_form.php:935
423
  msgid "Used"
424
  msgstr "Gebruik"
425
 
426
+ #: contact_form.php:936
427
  msgid "Required"
428
  msgstr "Benodig"
429
 
430
+ #: contact_form.php:937
431
  msgid "Visible"
432
  msgstr "Sigbaar"
433
 
434
+ #: contact_form.php:938
435
  msgid "Disabled for editing"
436
  msgstr "Gedeaktiveer vir wysiging"
437
 
438
+ #: contact_form.php:939
439
  msgid "Field's default value"
440
  msgstr "Veld se verstekwaarde"
441
 
442
+ #: contact_form.php:944
443
+ #: contact_form.php:1287
444
+ #: contact_form.php:2059
445
+ #: contact_form.php:2089
446
  msgid "Name"
447
  msgstr "Naam"
448
 
449
+ #: contact_form.php:952
450
+ #: contact_form.php:1292
451
+ #: contact_form.php:2063
452
+ #: contact_form.php:2091
453
  msgid "Address"
454
  msgstr "Adres: "
455
 
456
+ #: contact_form.php:960
457
  msgid "Email Address"
458
  msgstr "Epos Adres:"
459
 
460
+ #: contact_form.php:968
461
  msgid "Phone number"
462
  msgstr "Telefoon nommer:"
463
 
464
+ #: contact_form.php:976
465
+ #: contact_form.php:1307
466
+ #: contact_form.php:2073
467
+ #: contact_form.php:2095
468
  msgid "Subject"
469
  msgstr "Onderwerp"
470
 
471
+ #: contact_form.php:984
472
+ #: contact_form.php:1311
473
+ #: contact_form.php:2076
474
+ #: contact_form.php:2096
475
  msgid "Message"
476
  msgstr "Boodskap"
477
 
478
+ #: contact_form.php:1008
479
  msgid "Attachment block"
480
  msgstr "Aanhegsel blok"
481
 
482
+ #: contact_form.php:1010
483
  msgid "Users can attach the following file formats"
484
  msgstr "Gebruikers kan die volgende dataleêr formate aanheg"
485
 
486
+ #: contact_form.php:1023
487
  msgid "Add to the form"
488
  msgstr "Voeg by die vorm by"
489
 
490
+ #: contact_form.php:1028
491
  msgid "Tips below the Attachment"
492
  msgstr "Wenke onder die Aanhegsel"
493
 
494
+ #: contact_form.php:1037
495
  msgid "'Send me a copy' block"
496
  msgstr "'Stuur vir my 'n kopie' blok"
497
 
498
+ #: contact_form.php:1048
499
+ #: contact_form.php:1051
500
+ #: contact_form.php:1055
501
+ #: contact_form.php:1321
502
  msgid "Captcha"
503
  msgstr "Captcha"
504
 
505
+ #: contact_form.php:1051
506
  msgid "Activate captcha"
507
  msgstr "Aktiveer captcha"
508
 
509
+ #: contact_form.php:1055
510
  msgid "Download captcha"
511
  msgstr "Laai captcha af"
512
 
513
+ #: contact_form.php:1063
514
  msgid "Agreement checkbox"
515
  msgstr "Ooreenstemming checkbox"
516
 
517
+ #: contact_form.php:1063
518
  msgid "Required checkbox for submitting the form"
519
  msgstr "Benodigde checkbox om die vorm in te dien"
520
 
521
+ #: contact_form.php:1064
522
  msgid "Optional checkbox"
523
  msgstr "Opsie checkbox"
524
 
525
+ #: contact_form.php:1064
526
  msgid "Optional checkbox, the results of which will be displayed in email"
527
  msgstr "Opsionele checkbox, die resultate waarvan in die epos sal verskyn"
528
 
529
+ #: contact_form.php:1081
530
  msgid "Delete an attachment file from the server after the email is sent"
531
  msgstr "Verwyder 'n aanhegsel dataleêr van die server na epos gestuur is"
532
 
533
+ #: contact_form.php:1087
534
  msgid "Email in HTML format sending"
535
  msgstr "E-Mail in HTML Format"
536
 
537
+ #: contact_form.php:1091
538
  msgid "Display additional info in the email"
539
  msgstr "Toon addisionele inligting in die epos"
540
 
541
+ #: contact_form.php:1096
542
+ #: contact_form.php:2026
543
+ #: contact_form.php:2028
544
  msgid "Sent from (ip address)"
545
  msgstr "Gestuur van (IP-Adres)"
546
 
547
+ #: contact_form.php:1096
548
  msgid "Example: Sent from (IP address):\t127.0.0.1"
549
  msgstr "Voorbeeld: Gestuur van (IP-Adres):\t127.0.0.1"
550
 
551
+ #: contact_form.php:1097
552
+ #: contact_form.php:2032
553
+ #: contact_form.php:2034
554
  msgid "Date/Time"
555
  msgstr "Datum/Tyd"
556
 
557
+ #: contact_form.php:1097
558
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
559
  msgstr "Voorbeeld: Datum/Tyd:\tAugustus 19, 2013 8:50 pm"
560
 
561
+ #: contact_form.php:1098
562
+ #: contact_form.php:2038
563
+ #: contact_form.php:2040
564
  msgid "Sent from (referer)"
565
  msgstr "Gestuur van (referer)"
566
 
567
+ #: contact_form.php:1098
568
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
569
  msgstr "Voorbeeld: Gestuur van (referer):\thttp://bestwebsoft.com/kontakte/kontak-ons/"
570
 
571
+ #: contact_form.php:1099
572
+ #: contact_form.php:2044
573
+ #: contact_form.php:2046
574
  msgid "Using (user agent)"
575
  msgstr "Gebruik (user agent)"
576
 
577
+ #: contact_form.php:1099
578
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
579
  msgstr "Voorbeeld: Gebruik (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
580
 
581
+ #: contact_form.php:1103
582
  msgid "Language settings for the field names in the form"
583
  msgstr "Taal verstellings vir die naamvelde in die vorm"
584
 
585
+ #: contact_form.php:1112
586
  msgid "Add a language"
587
  msgstr "Voeg 'n taal by"
588
 
589
+ #: contact_form.php:1116
590
  msgid "Change the names of the contact form fields and error messages"
591
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
592
 
593
+ #: contact_form.php:1121
594
+ #: contact_form.php:1202
595
  msgid "English"
596
  msgstr "Engels"
597
 
598
+ #: contact_form.php:1129
599
+ #: contact_form.php:1163
600
  msgid "click to expand/hide the list"
601
  msgstr "Kliek om uit te brei/lys te versteek"
602
 
603
+ #: contact_form.php:1138
604
+ #: contact_form.php:1172
605
  msgid "Tips below the Attachment block"
606
  msgstr "Wenke onder toe Aanhegsel blok"
607
 
608
+ #: contact_form.php:1141
609
+ #: contact_form.php:1175
610
  msgid "Error message for the Name field"
611
  msgstr "FFoutboodskap vir die Naamveld"
612
 
613
+ #: contact_form.php:1142
614
+ #: contact_form.php:1176
615
  msgid "Error message for the Address field"
616
  msgstr "Foutboodskap vir die Adres veld"
617
 
618
+ #: contact_form.php:1143
619
+ #: contact_form.php:1177
620
  msgid "Error message for the Email field"
621
  msgstr "Foutboodskap vir die Epos veld"
622
 
623
+ #: contact_form.php:1144
624
+ #: contact_form.php:1178
625
  msgid "Error message for the Phone field"
626
  msgstr "Foutboodskap vir die Telefoon Nommer veld"
627
 
628
+ #: contact_form.php:1145
629
+ #: contact_form.php:1179
630
  msgid "Error message for the Subject field"
631
  msgstr "Foutboodskap vir die Onderwerp veld"
632
 
633
+ #: contact_form.php:1146
634
+ #: contact_form.php:1180
635
  msgid "Error message for the Message field"
636
  msgstr "Foutboodskap vir die Boodskap veld"
637
 
638
+ #: contact_form.php:1147
639
+ #: contact_form.php:1181
640
  msgid "Error message about the file type for the Attachment field"
641
  msgstr "Foutboodskap oor die dataleêr tipe vir die Aanhegsel veld"
642
 
643
+ #: contact_form.php:1148
644
+ #: contact_form.php:1182
645
  msgid "Error message while uploading a file for the Attachment field to the server"
646
  msgstr "Foutboodskap tydens dataleêr oplaai vir die Aanhegsel veld na die server"
647
 
648
+ #: contact_form.php:1149
649
+ #: contact_form.php:1183
650
  msgid "Error message while moving the file for the Attachment field"
651
  msgstr "Foutboodskap tydens die skuif van dataleêr vir die Aanhegsel veld"
652
 
653
+ #: contact_form.php:1150
654
+ #: contact_form.php:1184
655
  msgid "Error message when file size limit for the Attachment field is exceeded"
656
  msgstr "Foutboodskap wanneer die dataleêr limiet vir die Aanhegsel veld oorskry is"
657
 
658
+ #: contact_form.php:1151
659
+ #: contact_form.php:1185
660
  msgid "Error message for the Captcha field"
661
  msgstr "Foutboodskap vir die Captcha veld"
662
 
663
+ #: contact_form.php:1152
664
+ #: contact_form.php:1186
665
  msgid "Error message for the whole form"
666
  msgstr "Foutboodskap vir die hele vorm"
667
 
668
+ #: contact_form.php:1155
669
+ #: contact_form.php:1157
 
 
 
670
  #: contact_form.php:1189
671
+ #: contact_form.php:1191
672
+ #: contact_form.php:1212
673
+ #: contact_form.php:1214
674
+ #: contact_form.php:1222
675
+ #: contact_form.php:1224
676
  msgid "Use shortcode"
677
  msgstr "Gebruik kortkode"
678
 
679
+ #: contact_form.php:1155
680
+ #: contact_form.php:1157
 
 
 
681
  #: contact_form.php:1189
682
+ #: contact_form.php:1191
683
+ #: contact_form.php:1212
684
+ #: contact_form.php:1214
685
+ #: contact_form.php:1222
686
+ #: contact_form.php:1224
687
  msgid "for this language"
688
  msgstr "vir hierdie taal"
689
 
690
+ #: contact_form.php:1199
691
  msgid "Action after email is sent"
692
  msgstr "Aksie na epos gestuur is"
693
 
694
+ #: contact_form.php:1201
695
  msgid "Display text"
696
  msgstr "Toon teks"
697
 
698
+ #: contact_form.php:1210
699
+ #: contact_form.php:1220
700
  msgid "Text"
701
  msgstr "teks"
702
 
703
+ #: contact_form.php:1231
704
  msgid "Redirect to the page"
705
  msgstr "Herlei na die bladsy"
706
 
707
+ #: contact_form.php:1232
708
  msgid "Url"
709
  msgstr "Url"
710
 
711
+ #: contact_form.php:1236
712
  msgid "The $_SERVER variable that is used to build a URL of the form"
713
  msgstr ""
714
 
715
+ #: contact_form.php:1240
716
  msgid "If you are not sure whether to change this setting or not, please do not do that."
717
  msgstr ""
718
 
719
+ #: contact_form.php:1246
720
+ #: contact_form.php:1430
721
  msgid "Save Changes"
722
  msgstr "Stoor veranderinge"
723
 
724
+ #: contact_form.php:1251
725
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
726
  msgstr "As u die plugin geniet, gee dit asseblief 5 sterre op WordPress"
727
 
728
+ #: contact_form.php:1252
729
  msgid "Rate the plugin"
730
  msgstr "Prys die plugin"
731
 
732
+ #: contact_form.php:1255
733
  msgid "If there is something wrong about it, please contact us"
734
  msgstr "As daar iets fout is met dit, kontak ons asseblief"
735
 
736
+ #: contact_form.php:1267
737
  msgid "Errors output"
738
  msgstr "Foutboodskap uitset"
739
 
740
+ #: contact_form.php:1270
741
  msgid "Display error messages"
742
  msgstr "Toon foutboodskappe"
743
 
744
+ #: contact_form.php:1271
745
  msgid "Color of the input field errors."
746
  msgstr "Kleur van die inset veld foutboodskappe"
747
 
748
+ #: contact_form.php:1272
749
  msgid "Display error messages & color of the input field errors"
750
  msgstr "Toon foutboodskappe & kleur van die inset veld foutboodskappe"
751
 
752
+ #: contact_form.php:1277
753
  msgid "Add placeholder to the input blocks"
754
  msgstr "Voeg 'n plekhouer by die inset blokke"
755
 
756
+ #: contact_form.php:1283
757
  msgid "Add tooltips"
758
  msgstr "Voeg tool-wenke"
759
 
760
+ #: contact_form.php:1297
761
  msgid "Email address"
762
  msgstr "Epos Adres:"
763
 
764
+ #: contact_form.php:1302
765
  msgid "Phone Number"
766
  msgstr "Telefoon Nommer:"
767
 
768
+ #: contact_form.php:1316
769
  msgid "Attachment"
770
  msgstr "Aanhegsel:"
771
 
772
+ #: contact_form.php:1321
773
  msgid "(powered by bestwebsoft.com)"
774
  msgstr "(Verrig deur bestwebsoft.com)"
775
 
776
+ #: contact_form.php:1326
777
  msgid "Style options"
778
  msgstr "Styl opsies"
779
 
780
+ #: contact_form.php:1329
781
  msgid "Text color"
782
  msgstr "Teks kleur"
783
 
784
+ #: contact_form.php:1332
785
+ #: contact_form.php:1337
786
+ #: contact_form.php:1347
787
+ #: contact_form.php:1352
788
+ #: contact_form.php:1357
789
+ #: contact_form.php:1362
 
 
 
790
  #: contact_form.php:1372
791
  #: contact_form.php:1377
792
+ #: contact_form.php:1383
793
+ #: contact_form.php:1394
794
+ #: contact_form.php:1399
795
+ #: contact_form.php:1404
796
  msgid "Default"
797
  msgstr "Verstek"
798
 
799
+ #: contact_form.php:1334
800
  msgid "Label text color"
801
  msgstr "Etiket teks kleur"
802
 
803
+ #: contact_form.php:1339
804
  msgid "Placeholder color"
805
  msgstr "Plekhouer kleur"
806
 
807
+ #: contact_form.php:1344
808
  msgid "Errors color"
809
  msgstr "Foutboodskap kleur"
810
 
811
+ #: contact_form.php:1349
812
  msgid "Error text color"
813
  msgstr "Foutboodskap teks kleur"
814
 
815
+ #: contact_form.php:1354
816
  msgid "Background color of the input field errors"
817
  msgstr "Agtergrond kleur van die inset veld foutboodskappe"
818
 
819
+ #: contact_form.php:1359
820
  msgid "Border color of the input field errors"
821
  msgstr "Rand-kleur van die inset veld foutboodskappe"
822
 
823
+ #: contact_form.php:1364
824
  msgid "Placeholder color of the input field errors"
825
  msgstr "Plekhouer kleur van die inset veld foutboodskappe"
826
 
827
+ #: contact_form.php:1369
828
  msgid "Input fields"
829
  msgstr "Inset velde"
830
 
831
+ #: contact_form.php:1374
832
  msgid "Input fields background color"
833
  msgstr "Inset velde agtergrond kleur"
834
 
835
+ #: contact_form.php:1379
836
  msgid "Text fields color"
837
  msgstr "Teks velde kleur"
838
 
839
+ #: contact_form.php:1381
840
  msgid "Border width in px, numbers only"
841
  msgstr "Rand wydte in px, nommers alleenlik"
842
 
843
+ #: contact_form.php:1385
844
+ #: contact_form.php:1406
845
  msgid "Border color"
846
  msgstr "Rand kleur"
847
 
848
+ #: contact_form.php:1390
849
  msgid "Submit button"
850
  msgstr "Indien knoppie"
851
 
852
+ #: contact_form.php:1392
853
  msgid "Width in px, numbers only"
854
  msgstr "Wydte in px, nommers alleenlik"
855
 
856
+ #: contact_form.php:1396
857
  msgid "Button color"
858
  msgstr "Knoppie Kleur"
859
 
860
+ #: contact_form.php:1401
861
  msgid "Button text color"
862
  msgstr "Knoppie teks kleur"
863
 
864
+ #: contact_form.php:1434
865
  msgid "Contact Form Pro | Preview"
866
  msgstr "Kontak Vorm Pro | Voorskou"
867
 
868
+ #: contact_form.php:1437
869
  msgid "Show with errors"
870
  msgstr "Toon met foutboodskappe"
871
 
872
+ #: contact_form.php:1445
873
+ #: contact_form.php:1447
874
  msgid "Please enter your full name..."
875
  msgstr "Vul asseblief u volle name in..."
876
 
877
+ #: contact_form.php:1458
878
+ #: contact_form.php:1460
879
  msgid "Please enter your address..."
880
  msgstr "Vul asseblief u adres in... "
881
 
882
+ #: contact_form.php:1469
883
+ #: contact_form.php:1471
884
  msgid "Please enter your email address..."
885
  msgstr "Vul asseblief u epos adres in..."
886
 
887
+ #: contact_form.php:1480
888
+ #: contact_form.php:1482
889
  msgid "Please enter your phone number..."
890
  msgstr "Vul asseblief u telefoon nommer in... "
891
 
892
+ #: contact_form.php:1491
893
+ #: contact_form.php:1493
894
  msgid "Please enter subject..."
895
  msgstr "Vul asseblief 'n onderwerp in... "
896
 
897
+ #: contact_form.php:1501
898
+ #: contact_form.php:1503
899
  msgid "Please enter your message..."
900
  msgstr "Vul asseblief jou boodskap in... "
901
 
902
+ #: contact_form.php:1545
903
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
904
  msgstr "Geluk! Die PRO weergawe van die plugin het suksesvol afgelaai en is geaktiveer"
905
 
906
+ #: contact_form.php:1547
907
  msgid "Please, go to"
908
  msgstr "Gaan asseblief na"
909
 
910
+ #: contact_form.php:1547
911
  msgid "the setting page"
912
  msgstr "Die verstelling bladsy"
913
 
914
+ #: contact_form.php:1548
915
  msgid "You will be redirected automatically in 5 seconds."
916
  msgstr "U sal outomaties herlei word in 5 sekondes."
917
 
918
+ #: contact_form.php:1553
919
  msgid "You can download and activate"
920
  msgstr "U kan aflaai en aktiveer"
921
 
922
+ #: contact_form.php:1555
923
  msgid "version of this plugin by entering Your license key."
924
  msgstr "weergawe van hierdie plugin deurom u lisensiekode in te vul."
925
 
926
+ #: contact_form.php:1557
927
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
928
  msgstr "U kan u lisensiekode vind op u persoonlike bladsy Klient area, deurom te kliek op die skakel"
929
 
930
+ #: contact_form.php:1559
931
  msgid "(your username is the email you specify when purchasing the product)."
932
  msgstr "(u gebruikersnaam is die epos wat u gespesifiseer het toe u die produk aangekoop het)."
933
 
934
+ #: contact_form.php:1567
935
+ #: contact_form.php:1577
936
  msgid "Go!"
937
  msgstr "Go!"
938
 
939
+ #: contact_form.php:1647
940
  msgid "Sorry, email message could not be delivered."
941
  msgstr "Verskoning, die epos kon nie gestuur word nie."
942
 
943
+ #: contact_form.php:2053
944
  msgid "Contact from"
945
  msgstr "Kontak Vorm"
946
 
947
+ #: contact_form.php:2066
948
+ #: contact_form.php:2092
949
  msgid "Email"
950
  msgstr "Epos"
951
 
952
+ #: contact_form.php:2070
953
+ #: contact_form.php:2094
954
  msgid "Phone"
955
  msgstr "Telefoon Nommer"
956
 
957
+ #: contact_form.php:2079
958
+ #: contact_form.php:2097
959
  msgid "Site"
960
  msgstr "Webtuiste"
961
 
962
+ #: contact_form.php:2160
963
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
964
  msgstr "As u die MIME kan sie, beteken dit dat die MIME tipe nie ondersteun word deur u epos klient nie!"
965
 
966
+ #: contact_form.php:2229
967
  msgid "FAQ"
968
  msgstr "Gereeld Gestelde Vrae (FAQ)"
969
 
970
+ #: contact_form.php:2230
971
  msgid "Support"
972
  msgstr "Steun"
973
 
974
+ #: contact_form.php:2280
975
  msgid "Are you sure that you want to delete this language data?"
976
  msgstr "Is u seker dat u die taal data wil verwyder?"
977
 
978
+ #: contact_form.php:2476
979
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
980
  msgstr ""
981
 
982
+ #: contact_form.php:2477
983
  msgid "Extend standard plugin functionality with new great options."
984
  msgstr ""
985
 
986
+ #: contact_form.php:2492
987
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
988
  msgstr ""
989
 
990
+ #: contact_form.php:2493
991
  msgid "Manage messages that have been sent from your website."
992
  msgstr ""
993
 
994
+ #~ msgid ""
995
+ #~ "This functionality is available in the Pro version of the plugin. For "
996
+ #~ "more details, please follow the link"
997
+ #~ msgstr ""
998
+ #~ "Hierdie funksie is beskikbaar in die Pro weergawe van die plugin. Vir "
999
+ #~ "meer besonderhede, volg die skakel:"
1000
+
1001
+ #~ msgid "Contact Form Pro"
1002
+ #~ msgstr "Kontak Form Pro"
1003
+
1004
  #~ msgid "Not set"
1005
  #~ msgstr "Nie gestel nie"
1006
 
languages/contact_form-be_BY.mo CHANGED
Binary file
languages/contact_form-be_BY.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: 2014-02-20 13:59+0300\n"
6
- "PO-Revision-Date: 2014-02-20 13:59+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Sakałoŭ Alaksiej <nullbsd@gmail.com>\n"
9
  "Language: be_BY\n"
@@ -16,999 +16,1031 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Наладкі кантактнай формы"
24
 
25
- #: contact_form.php:33
26
  msgid "Contact Form"
27
  msgstr "Кантактная форма"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:978
31
- #: contact_form.php:1008
32
  msgid "Name:"
33
  msgstr "Імя:"
34
 
35
- #: contact_form.php:81
36
- #: contact_form.php:979
37
- #: contact_form.php:1009
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "E-mail адрас:"
41
 
42
- #: contact_form.php:82
43
- #: contact_form.php:980
44
- #: contact_form.php:1010
45
  msgid "Email Address:"
46
  msgstr "E-mail адрас:"
47
 
48
- #: contact_form.php:83
49
- #: contact_form.php:981
50
- #: contact_form.php:1011
51
  msgid "Phone number:"
52
  msgstr "Тэлефон:"
53
 
54
- #: contact_form.php:84
55
- #: contact_form.php:982
56
- #: contact_form.php:1012
57
  msgid "Subject:"
58
  msgstr "Тэма:"
59
 
60
- #: contact_form.php:85
61
- #: contact_form.php:983
62
- #: contact_form.php:1013
63
  msgid "Message:"
64
  msgstr "Паведамленьне:"
65
 
66
- #: contact_form.php:86
67
- #: contact_form.php:984
68
- #: contact_form.php:1014
69
  msgid "Attachment:"
70
  msgstr "Прычапіць файл:"
71
 
72
- #: contact_form.php:87
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
- #: contact_form.php:88
77
- #: contact_form.php:986
78
- #: contact_form.php:1016
79
  msgid "Send me a copy"
80
  msgstr "Адправіць мне копію"
81
 
82
- #: contact_form.php:89
83
- #: contact_form.php:987
84
- #: contact_form.php:1017
85
  msgid "Submit"
86
  msgstr "Адправіць"
87
 
88
- #: contact_form.php:90
89
  msgid "Your name is required."
90
  msgstr "Вашае імя - гэта абавязковы радок."
91
 
92
- #: contact_form.php:91
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "Радок e-mail адраса - обавязковы да запаўненьня"
96
 
97
- #: contact_form.php:92
98
  #, fuzzy
99
  msgid "A valid email address is required."
100
  msgstr "Радок e-mail адраса - обавязковы да запаўненьня"
101
 
102
- #: contact_form.php:93
103
  msgid "Phone number is required."
104
  msgstr "Вашае імя - абавязковае поле."
105
 
106
- #: contact_form.php:94
107
  msgid "Subject is required."
108
  msgstr "Поле Тэма - абавязковае."
109
 
110
- #: contact_form.php:95
111
  msgid "Message text is required."
112
  msgstr "Радок паведамленьня - абавязковы."
113
 
114
- #: contact_form.php:96
115
  msgid "File format is not valid."
116
  msgstr "Фармат файла не зьяўляецца дапушчальным."
117
 
118
- #: contact_form.php:97
119
  msgid "File upload error."
120
  msgstr ""
121
 
122
- #: contact_form.php:98
123
  msgid "The file could not be uploaded."
124
  msgstr ""
125
 
126
- #: contact_form.php:99
127
  msgid "This file is too large."
128
  msgstr ""
129
 
130
- #: contact_form.php:100
131
  msgid "Please fill out the CAPTCHA."
132
  msgstr "Калі ласка, запоўніце сымбалі з выявы."
133
 
134
- #: contact_form.php:101
135
  msgid "Please make corrections below and try again."
136
  msgstr "Калі ласка, зрабіце выпраўленьне ў радках ніжэй ды паўтарыце працэдуру"
137
 
138
- #: contact_form.php:103
139
  msgid "Thank you for contacting us."
140
  msgstr "Дзякуем за кантакт з намі."
141
 
142
- #: contact_form.php:203
143
  #, fuzzy
144
  msgid "requires"
145
  msgstr "Абавязковыя палі"
146
 
147
- #: contact_form.php:203
148
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
149
  msgstr ""
150
 
151
- #: contact_form.php:203
152
  msgid "Back to the WordPress"
153
  msgstr ""
154
 
155
- #: contact_form.php:203
156
  #, fuzzy
157
  msgid "Plugins page"
158
  msgstr "Плагины BWS"
159
 
160
- #: contact_form.php:494
161
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
162
  msgstr "Калі наладка 'Перайсьці на старонку' абрана, тады URL павінен быць запоўнены ў наступным фармаце"
163
 
164
- #: contact_form.php:503
165
  msgid "Such user does not exist. Settings are not saved."
166
  msgstr "Дадзены карыстальнік ня знойдзен. Наладкі не захаваны"
167
 
168
- #: contact_form.php:507
169
- #: contact_form.php:513
170
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
171
  msgstr "Калі ласка, увядзіце карэктны адрас для радка 'FROM'. Наладкі не захаваны."
172
 
173
- #: contact_form.php:518
174
  #, fuzzy
175
  msgid "Settings saved."
176
  msgstr "Наладкі захаваны."
177
 
178
- #: contact_form.php:554
179
- #: contact_form.php:593
180
  msgid "Wrong license key"
181
  msgstr ""
182
 
183
- #: contact_form.php:586
184
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
185
  msgstr ""
186
 
187
- #: contact_form.php:595
188
  msgid "This license key is bind to another site"
189
  msgstr ""
190
 
191
- #: contact_form.php:597
192
- #: contact_form.php:1392
193
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
194
  msgstr ""
195
 
196
- #: contact_form.php:615
197
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
198
  msgstr ""
199
 
200
- #: contact_form.php:621
201
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
- #: contact_form.php:625
205
- #: contact_form.php:634
206
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
207
  msgstr ""
208
 
209
- #: contact_form.php:638
210
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
211
  msgstr ""
212
 
213
- #: contact_form.php:653
214
  #, fuzzy
215
  msgid "Please, enter Your license key"
216
  msgstr "Выкарыстоўваць гэты email-адрас:"
217
 
218
- #: contact_form.php:662
219
- msgid "Notice:"
220
- msgstr ""
221
-
222
- #: contact_form.php:662
223
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
224
- msgstr ""
225
-
226
- #: contact_form.php:665
227
- #: contact_form.php:1997
228
- #: contact_form.php:2008
229
  msgid "Settings"
230
  msgstr "Наладкі"
231
 
232
- #: contact_form.php:666
233
  #, fuzzy
234
  msgid "Extra settings"
235
  msgstr "Наладкі"
236
 
237
- #: contact_form.php:667
238
  msgid "Go PRO"
239
  msgstr ""
240
 
241
- #: contact_form.php:673
242
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  msgid "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:"
244
  msgstr "Калі вы жадаеце дадаць Кантактную Форму на свой сайт, тады вам неабходна толькі скапіяваць ды ўставіць Shortcode у канктэнт старонкі, ці запісу, ці аздабленьня:"
245
 
246
- #: contact_form.php:673
247
- #: contact_form.php:674
248
- #: contact_form.php:1001
249
- #: contact_form.php:1050
 
 
 
 
250
  msgid "or"
251
  msgstr ""
252
 
253
- #: contact_form.php:674
 
254
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
255
  msgstr ""
256
 
257
- #: contact_form.php:675
 
258
  msgid "They work the same way."
259
  msgstr ""
260
 
261
- #: contact_form.php:676
 
262
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
263
  msgstr "Калі інфармацыя ў палях ніжэй адсутнічае, паведамленьне будзе адпраўлена на email адрас, які быў указаны пры рэгістрацыі на сайце."
264
 
265
- #: contact_form.php:680
266
  msgid "The user's email address:"
267
  msgstr "Электронны адрас карыстальніка:"
268
 
269
- #: contact_form.php:684
270
  msgid "Create a username"
271
  msgstr "Абярыце імя карыстальніка"
272
 
273
- #: contact_form.php:689
274
  msgid "Enter a username of the person who should get the messages from the contact form."
275
  msgstr "Увядзіце імя карыстальніка, які будзе атрымліваць паведамленьні кантактнай формы."
276
 
277
- #: contact_form.php:693
278
  msgid "Use this email address:"
279
  msgstr "Выкарыстоўваць гэты email-адрас:"
280
 
281
- #: contact_form.php:696
282
  msgid "Enter the email address you want the messages forwarded to."
283
  msgstr "Увядзіце адрас, на які хочаце перанакіраваць паведамленьне."
284
 
285
- #: contact_form.php:702
286
  msgid "Add department selectbox to the contact form:"
287
  msgstr ""
288
 
289
- #: contact_form.php:710
290
- #: contact_form.php:1246
291
  msgid "If you upgrade to Pro version all your settings will be saved."
292
  msgstr ""
293
 
294
- #: contact_form.php:715
295
- #: contact_form.php:852
296
- #: contact_form.php:923
297
- #: contact_form.php:1096
298
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
299
  msgstr ""
300
 
301
- #: contact_form.php:716
302
- #: contact_form.php:853
303
- #: contact_form.php:924
304
- #: contact_form.php:1097
305
- #, fuzzy
306
- msgid "Contact Form Pro"
307
- msgstr "Кантактная форма"
 
308
 
309
- #: contact_form.php:722
 
 
 
 
 
 
 
310
  msgid "Save emails to the database"
311
  msgstr ""
312
 
313
- #: contact_form.php:732
314
  msgid "Using"
315
  msgstr ""
316
 
317
- #: contact_form.php:732
318
- #: contact_form.php:901
319
- #: contact_form.php:904
320
- #: contact_form.php:908
321
  msgid "powered by"
322
  msgstr ""
323
 
324
- #: contact_form.php:735
325
- #: contact_form.php:739
326
  msgid "Using Contact Form to DB powered by"
327
  msgstr ""
328
 
329
- #: contact_form.php:735
330
  #, fuzzy
331
  msgid "Activate Contact Form to DB"
332
  msgstr "Кантактная форма"
333
 
334
- #: contact_form.php:739
335
  #, fuzzy
336
  msgid "Download Contact Form to DB"
337
  msgstr "Кантактная форма"
338
 
339
- #: contact_form.php:744
340
  msgid "Additional options"
341
  msgstr "Дадатковыя наладкі"
342
 
343
- #: contact_form.php:746
344
  msgid "Show"
345
  msgstr ""
346
 
347
- #: contact_form.php:747
348
  msgid "Hide"
349
  msgstr ""
350
 
351
- #: contact_form.php:751
352
  msgid "What to use?"
353
  msgstr "Што выкарыстоўваць?"
354
 
355
- #: contact_form.php:754
356
  msgid "Wp-mail"
357
  msgstr "Wp-mail"
358
 
359
- #: contact_form.php:754
360
  msgid "You can use the wp_mail function for mailing"
361
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
362
 
363
- #: contact_form.php:756
364
  msgid "Mail"
365
  msgstr "Mail"
366
 
367
- #: contact_form.php:756
368
  msgid "To send mail you can use the php mail function"
369
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
370
 
371
- #: contact_form.php:760
372
  #, fuzzy
373
  msgid "The text in the 'From' field"
374
  msgstr "Зьмяніць тэкст для радка 'FROM' у лісьце"
375
 
376
- #: contact_form.php:762
377
  msgid "User name"
378
  msgstr ""
379
 
380
- #: contact_form.php:763
381
  #, fuzzy
382
  msgid "The name of the user who fills the form will be used in the field 'From'."
383
  msgstr "Адрас электроннай пошты карыстальніка, які запаўняе форму будзе выкарыстоўвацца ў поле 'From'."
384
 
385
- #: contact_form.php:766
386
  #, fuzzy
387
  msgid "This text will be used in the 'FROM' field"
388
  msgstr "Гэты адрас будзе выкарыстоўвацца ў поле 'From'"
389
 
390
- #: contact_form.php:770
391
  #, fuzzy
392
  msgid "The email address in the 'From' field"
393
  msgstr "Калі ласка, увядзіце адрас электроннай пошты ў поле 'From'"
394
 
395
- #: contact_form.php:772
396
  msgid "User email"
397
  msgstr ""
398
 
399
- #: contact_form.php:773
400
  #, fuzzy
401
  msgid "The email address of the user who fills the form will be used in the field 'From'."
402
  msgstr "Адрас электроннай пошты карыстальніка, які запаўняе форму будзе выкарыстоўвацца ў поле 'From'."
403
 
404
- #: contact_form.php:776
405
  msgid "This email address will be used in the 'From' field."
406
  msgstr "Гэты адрас будзе выкарыстоўвацца ў поле 'From'"
407
 
408
- #: contact_form.php:780
409
  #, fuzzy
410
  msgid "Required symbol"
411
  msgstr "Абавязковыя палі"
412
 
413
- #: contact_form.php:790
414
  msgid "Fields"
415
  msgstr ""
416
 
417
- #: contact_form.php:791
418
  msgid "Used"
419
  msgstr ""
420
 
421
- #: contact_form.php:792
422
  #, fuzzy
423
  msgid "Required"
424
  msgstr "Абавязковыя палі"
425
 
426
- #: contact_form.php:793
427
  msgid "Visible"
428
  msgstr ""
429
 
430
- #: contact_form.php:794
431
  msgid "Disabled for editing"
432
  msgstr ""
433
 
434
- #: contact_form.php:795
435
  msgid "Field's default value"
436
  msgstr ""
437
 
438
- #: contact_form.php:800
439
- #: contact_form.php:1121
440
- #: contact_form.php:1841
441
- #: contact_form.php:1871
442
  msgid "Name"
443
  msgstr "Імя"
444
 
445
- #: contact_form.php:808
446
- #: contact_form.php:1126
447
- #: contact_form.php:1845
448
- #: contact_form.php:1873
449
  #, fuzzy
450
  msgid "Address"
451
  msgstr "E-mail адрас:"
452
 
453
- #: contact_form.php:816
454
  #, fuzzy
455
  msgid "Email Address"
456
  msgstr "E-mail адрас:"
457
 
458
- #: contact_form.php:824
459
  #, fuzzy
460
  msgid "Phone number"
461
  msgstr "Тэлефон:"
462
 
463
- #: contact_form.php:832
464
- #: contact_form.php:1141
465
- #: contact_form.php:1855
466
- #: contact_form.php:1877
467
  msgid "Subject"
468
  msgstr "Тэма"
469
 
470
- #: contact_form.php:840
471
- #: contact_form.php:1145
472
- #: contact_form.php:1858
473
- #: contact_form.php:1878
474
  msgid "Message"
475
  msgstr "Паведамленьне"
476
 
477
- #: contact_form.php:858
478
  #, fuzzy
479
  msgid "Attachment block"
480
  msgstr "Паказваць блок Прычапіць Файл"
481
 
482
- #: contact_form.php:860
483
  msgid "Users can attach the following file formats"
484
  msgstr "Карыстальнікі могуць прычапляць файлы наступных тыпаў"
485
 
486
- #: contact_form.php:874
487
  msgid "Add to the form"
488
  msgstr ""
489
 
490
- #: contact_form.php:879
491
  #, fuzzy
492
  msgid "Tips below the Attachment"
493
  msgstr "Паказваць блок Прычапіць Файл"
494
 
495
- #: contact_form.php:888
496
  #, fuzzy
497
  msgid "'Send me a copy' block"
498
  msgstr "Паказаць блок Адправіць мне копію"
499
 
500
- #: contact_form.php:901
501
- #: contact_form.php:904
502
- #: contact_form.php:908
503
- #: contact_form.php:1155
504
  msgid "Captcha"
505
  msgstr ""
506
 
507
- #: contact_form.php:904
508
  #, fuzzy
509
  msgid "Activate captcha"
510
  msgstr "Актываваныя пашырэньні"
511
 
512
- #: contact_form.php:908
513
  #, fuzzy
514
  msgid "Download captcha"
515
  msgstr "Спампаваць"
516
 
517
- #: contact_form.php:916
518
  msgid "Agreement checkbox"
519
  msgstr ""
520
 
521
- #: contact_form.php:916
522
  msgid "Required checkbox for submitting the form"
523
  msgstr ""
524
 
525
- #: contact_form.php:917
526
  msgid "Optional checkbox"
527
  msgstr ""
528
 
529
- #: contact_form.php:917
530
  msgid "Optional checkbox, the results of which will be displayed in email"
531
  msgstr ""
532
 
533
- #: contact_form.php:928
534
  msgid "Delete an attachment file from the server after the email is sent"
535
  msgstr ""
536
 
537
- #: contact_form.php:934
538
  msgid "Email in HTML format sending"
539
  msgstr ""
540
 
541
- #: contact_form.php:938
542
  #, fuzzy
543
  msgid "Display additional info in the email"
544
  msgstr "Паказ дадатковай інфармацыі ў лісьце"
545
 
546
- #: contact_form.php:943
547
- #: contact_form.php:1808
548
- #: contact_form.php:1810
549
  msgid "Sent from (ip address)"
550
  msgstr "Адпраўлена ад (IP адрас)"
551
 
552
- #: contact_form.php:943
553
  #, fuzzy
554
  msgid "Example: Sent from (IP address):\t127.0.0.1"
555
  msgstr "Адпраўлена ад (IP адрас)"
556
 
557
- #: contact_form.php:944
558
- #: contact_form.php:1814
559
- #: contact_form.php:1816
560
  msgid "Date/Time"
561
  msgstr "Дата/Час"
562
 
563
- #: contact_form.php:944
564
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
565
  msgstr ""
566
 
567
- #: contact_form.php:945
568
- #: contact_form.php:1820
569
- #: contact_form.php:1822
570
  msgid "Sent from (referer)"
571
  msgstr "Прыйшло з "
572
 
573
- #: contact_form.php:945
574
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
575
  msgstr ""
576
 
577
- #: contact_form.php:946
578
- #: contact_form.php:1826
579
- #: contact_form.php:1828
580
  msgid "Using (user agent)"
581
  msgstr "Выкарыстоўваць (user agent)"
582
 
583
- #: contact_form.php:946
584
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
585
  msgstr ""
586
 
587
- #: contact_form.php:950
588
  msgid "Language settings for the field names in the form"
589
  msgstr "Моўныя наладкі для палёў у форме"
590
 
591
- #: contact_form.php:959
592
  #, fuzzy
593
  msgid "Add a language"
594
  msgstr "Дадаць мову"
595
 
596
- #: contact_form.php:963
597
  msgid "Change the names of the contact form fields and error messages"
598
  msgstr "Зьмяніць назвы палёў кантактнай формы й паведамленьняў аб памылках"
599
 
600
- #: contact_form.php:968
601
- #: contact_form.php:1041
602
  msgid "English"
603
  msgstr "Ангельская"
604
 
605
- #: contact_form.php:976
606
- #: contact_form.php:1006
607
  msgid "click to expand/hide the list"
608
  msgstr ""
609
 
610
- #: contact_form.php:985
611
- #: contact_form.php:1015
612
  #, fuzzy
613
  msgid "Tips below the Attachment block"
614
  msgstr "Паказваць блок Прычапіць Файл"
615
 
616
- #: contact_form.php:988
617
- #: contact_form.php:1018
618
  msgid "Error message for the Name field"
619
  msgstr "Паведамленьне аб памылкі для поля Імя Карыстальніка"
620
 
621
- #: contact_form.php:989
622
- #: contact_form.php:1019
623
  #, fuzzy
624
  msgid "Error message for the Address field"
625
  msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
626
 
627
- #: contact_form.php:990
628
- #: contact_form.php:1020
629
  msgid "Error message for the Email field"
630
  msgstr "Паведамленьне аб памылкі для поля Электронная Пошта"
631
 
632
- #: contact_form.php:991
633
- #: contact_form.php:1021
634
  msgid "Error message for the Phone field"
635
  msgstr "Паведамленьне аб памылкі для поля Тэлефон"
636
 
637
- #: contact_form.php:992
638
- #: contact_form.php:1022
639
  msgid "Error message for the Subject field"
640
  msgstr "Паведамленьне аб памылкі для поля Тэма"
641
 
642
- #: contact_form.php:993
643
- #: contact_form.php:1023
644
  msgid "Error message for the Message field"
645
  msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
646
 
647
- #: contact_form.php:994
648
- #: contact_form.php:1024
649
  #, fuzzy
650
  msgid "Error message about the file type for the Attachment field"
651
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
652
 
653
- #: contact_form.php:995
654
- #: contact_form.php:1025
655
  #, fuzzy
656
  msgid "Error message while uploading a file for the Attachment field to the server"
657
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
658
 
659
- #: contact_form.php:996
660
- #: contact_form.php:1026
661
  #, fuzzy
662
  msgid "Error message while moving the file for the Attachment field"
663
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
664
 
665
- #: contact_form.php:997
666
- #: contact_form.php:1027
667
  #, fuzzy
668
  msgid "Error message when file size limit for the Attachment field is exceeded"
669
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
670
 
671
- #: contact_form.php:998
672
- #: contact_form.php:1028
673
  msgid "Error message for the Captcha field"
674
  msgstr "Паведамленьне аб памылкі для поля Captcha"
675
 
676
- #: contact_form.php:999
677
- #: contact_form.php:1029
678
  msgid "Error message for the whole form"
679
  msgstr "Паведамленьне аб памылцы для усёй формы"
680
 
681
- #: contact_form.php:1001
682
- #: contact_form.php:1031
683
- #: contact_form.php:1050
684
- #: contact_form.php:1056
 
 
 
 
685
  msgid "Use shortcode"
686
  msgstr "Выкарыстоўваць shortcode"
687
 
688
- #: contact_form.php:1001
689
- #: contact_form.php:1031
690
- #: contact_form.php:1050
691
- #: contact_form.php:1056
 
 
 
 
692
  msgid "for this language"
693
  msgstr "для дадзенай мовы"
694
 
695
- #: contact_form.php:1038
696
  msgid "Action after email is sent"
697
  msgstr "Дзеяньні пасьля адпраўкі ліста"
698
 
699
- #: contact_form.php:1040
700
  msgid "Display text"
701
  msgstr "Адлюстраваць тэкст"
702
 
703
- #: contact_form.php:1049
704
- #: contact_form.php:1055
705
  msgid "Text"
706
  msgstr "Тэкст"
707
 
708
- #: contact_form.php:1062
709
  msgid "Redirect to the page"
710
  msgstr "Перакінуць на старонку"
711
 
712
- #: contact_form.php:1063
713
  msgid "Url"
714
  msgstr "www-адрас"
715
 
716
- #: contact_form.php:1067
717
  msgid "The $_SERVER variable that is used to build a URL of the form"
718
  msgstr ""
719
 
720
- #: contact_form.php:1071
721
  msgid "If you are not sure whether to change this setting or not, please do not do that."
722
  msgstr ""
723
 
724
- #: contact_form.php:1077
725
- #: contact_form.php:1252
726
  msgid "Save Changes"
727
  msgstr "Захаваць зьмены"
728
 
729
- #: contact_form.php:1082
730
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
731
  msgstr ""
732
 
733
- #: contact_form.php:1083
734
  #, fuzzy
735
  msgid "Rate the plugin"
736
  msgstr "Рэкамэндаваныя да ўсталёўкі пашырэньні"
737
 
738
- #: contact_form.php:1086
739
  #, fuzzy
740
  msgid "If there is something wrong about it, please contact us"
741
  msgstr "Калі ў вас ёсьць якія небудзь пытаньні, зьвяртайцеся да plugin@bestwebsoft.com ці запоўніце кантактную форму на нашым сайце"
742
 
743
- #: contact_form.php:1101
744
  msgid "Errors output"
745
  msgstr ""
746
 
747
- #: contact_form.php:1104
748
  msgid "Display error messages"
749
  msgstr ""
750
 
751
- #: contact_form.php:1105
752
  msgid "Color of the input field errors."
753
  msgstr ""
754
 
755
- #: contact_form.php:1106
756
  #, fuzzy
757
  msgid "Display error messages & color of the input field errors"
758
  msgstr "Паведамленьне аб памылкі для поля Тэма"
759
 
760
- #: contact_form.php:1111
761
  msgid "Add placeholder to the input blocks"
762
  msgstr ""
763
 
764
- #: contact_form.php:1117
765
  #, fuzzy
766
  msgid "Add tooltips"
767
  msgstr "Дадатковыя наладкі"
768
 
769
- #: contact_form.php:1131
770
  #, fuzzy
771
  msgid "Email address"
772
  msgstr "E-mail адрас:"
773
 
774
- #: contact_form.php:1136
775
  #, fuzzy
776
  msgid "Phone Number"
777
  msgstr "Тэлефон:"
778
 
779
- #: contact_form.php:1150
780
  #, fuzzy
781
  msgid "Attachment"
782
  msgstr "Прычапіць файл:"
783
 
784
- #: contact_form.php:1155
785
  msgid "(powered by bestwebsoft.com)"
786
  msgstr ""
787
 
788
- #: contact_form.php:1160
789
  #, fuzzy
790
  msgid "Style options"
791
  msgstr "Дадатковыя наладкі"
792
 
793
- #: contact_form.php:1163
794
  msgid "Text color"
795
  msgstr ""
796
 
797
- #: contact_form.php:1166
798
- #: contact_form.php:1171
799
- #: contact_form.php:1181
800
- #: contact_form.php:1186
801
- #: contact_form.php:1191
802
- #: contact_form.php:1196
803
- #: contact_form.php:1206
804
- #: contact_form.php:1211
805
- #: contact_form.php:1217
806
- #: contact_form.php:1228
807
- #: contact_form.php:1233
808
- #: contact_form.php:1238
809
  msgid "Default"
810
  msgstr ""
811
 
812
- #: contact_form.php:1168
813
  msgid "Label text color"
814
  msgstr ""
815
 
816
- #: contact_form.php:1173
817
  msgid "Placeholder color"
818
  msgstr ""
819
 
820
- #: contact_form.php:1178
821
  msgid "Errors color"
822
  msgstr ""
823
 
824
- #: contact_form.php:1183
825
  msgid "Error text color"
826
  msgstr ""
827
 
828
- #: contact_form.php:1188
829
  msgid "Background color of the input field errors"
830
  msgstr ""
831
 
832
- #: contact_form.php:1193
833
  msgid "Border color of the input field errors"
834
  msgstr ""
835
 
836
- #: contact_form.php:1198
837
  msgid "Placeholder color of the input field errors"
838
  msgstr ""
839
 
840
- #: contact_form.php:1203
841
  #, fuzzy
842
  msgid "Input fields"
843
  msgstr "Адлюстраваць тэкст"
844
 
845
- #: contact_form.php:1208
846
  msgid "Input fields background color"
847
  msgstr ""
848
 
849
- #: contact_form.php:1213
850
  msgid "Text fields color"
851
  msgstr ""
852
 
853
- #: contact_form.php:1215
854
  msgid "Border width in px, numbers only"
855
  msgstr ""
856
 
857
- #: contact_form.php:1219
858
- #: contact_form.php:1240
859
  msgid "Border color"
860
  msgstr ""
861
 
862
- #: contact_form.php:1224
863
  #, fuzzy
864
  msgid "Submit button"
865
  msgstr "Адправіць"
866
 
867
- #: contact_form.php:1226
868
  msgid "Width in px, numbers only"
869
  msgstr ""
870
 
871
- #: contact_form.php:1230
872
  msgid "Button color"
873
  msgstr ""
874
 
875
- #: contact_form.php:1235
876
  msgid "Button text color"
877
  msgstr ""
878
 
879
- #: contact_form.php:1256
880
  #, fuzzy
881
  msgid "Contact Form Pro | Preview"
882
  msgstr "Кантактная форма"
883
 
884
- #: contact_form.php:1259
885
  msgid "Show with errors"
886
  msgstr ""
887
 
888
- #: contact_form.php:1267
889
- #: contact_form.php:1269
890
  msgid "Please enter your full name..."
891
  msgstr ""
892
 
893
- #: contact_form.php:1280
894
- #: contact_form.php:1282
895
  msgid "Please enter your address..."
896
  msgstr ""
897
 
898
- #: contact_form.php:1291
899
- #: contact_form.php:1293
900
  #, fuzzy
901
  msgid "Please enter your email address..."
902
  msgstr "Выкарыстоўваць гэты email-адрас:"
903
 
904
- #: contact_form.php:1302
905
- #: contact_form.php:1304
906
  msgid "Please enter your phone number..."
907
  msgstr ""
908
 
909
- #: contact_form.php:1313
910
- #: contact_form.php:1315
911
  msgid "Please enter subject..."
912
  msgstr ""
913
 
914
- #: contact_form.php:1323
915
- #: contact_form.php:1325
916
  msgid "Please enter your message..."
917
  msgstr ""
918
 
919
- #: contact_form.php:1367
920
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
921
  msgstr ""
922
 
923
- #: contact_form.php:1369
924
  msgid "Please, go to"
925
  msgstr ""
926
 
927
- #: contact_form.php:1369
928
  #, fuzzy
929
  msgid "the setting page"
930
  msgstr "Наладкі"
931
 
932
- #: contact_form.php:1370
933
  msgid "You will be redirected automatically in 5 seconds."
934
  msgstr ""
935
 
936
- #: contact_form.php:1375
937
  msgid "You can download and activate"
938
  msgstr ""
939
 
940
- #: contact_form.php:1377
941
  msgid "version of this plugin by entering Your license key."
942
  msgstr ""
943
 
944
- #: contact_form.php:1379
945
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
946
  msgstr ""
947
 
948
- #: contact_form.php:1381
949
  msgid "(your username is the email you specify when purchasing the product)."
950
  msgstr ""
951
 
952
- #: contact_form.php:1389
953
- #: contact_form.php:1399
954
  msgid "Go!"
955
  msgstr ""
956
 
957
- #: contact_form.php:1449
958
  msgid "Sorry, email message could not be delivered."
959
  msgstr "Прабачце, вашая электронная пошта не можа быць адпраўленай."
960
 
961
- #: contact_form.php:1835
962
  msgid "Contact from"
963
  msgstr "Кантактная форма"
964
 
965
- #: contact_form.php:1848
966
- #: contact_form.php:1874
967
  msgid "Email"
968
  msgstr "Электронная пошта"
969
 
970
- #: contact_form.php:1852
971
- #: contact_form.php:1876
972
  msgid "Phone"
973
  msgstr "Тэлефон"
974
 
975
- #: contact_form.php:1861
976
- #: contact_form.php:1879
977
  msgid "Site"
978
  msgstr "Сайт"
979
 
980
- #: contact_form.php:1941
981
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
982
  msgstr "Калі вы бачыце гэты MIME, значыць гэты тып не падтрымліваецца вашым паштовым кліентам!"
983
 
984
- #: contact_form.php:2009
985
  msgid "FAQ"
986
  msgstr "Пытаньні й адказы"
987
 
988
- #: contact_form.php:2010
989
  msgid "Support"
990
  msgstr "Падтрымка"
991
 
992
- #: contact_form.php:2068
993
  msgid "Are you sure that you want to delete this language data?"
994
  msgstr "Вы сапраўды хочаце выдаліць дадзеныя для гэтай мовы?"
995
 
996
- #: contact_form.php:2223
997
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
998
  msgstr ""
999
 
1000
- #: contact_form.php:2224
1001
  msgid "Extend standard plugin functionality with new great options."
1002
  msgstr ""
1003
 
1004
- #: contact_form.php:2233
1005
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1006
  msgstr ""
1007
 
1008
- #: contact_form.php:2234
1009
  msgid "Manage messages that have been sent from your website."
1010
  msgstr ""
1011
 
 
 
 
 
1012
  #, fuzzy
1013
  #~ msgid "Contact Form Pro Extra Settings"
1014
  #~ msgstr "Наладкі кантактнай формы"
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:37+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:37+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Sakałoŭ Alaksiej <nullbsd@gmail.com>\n"
9
  "Language: be_BY\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Наладкі кантактнай формы"
24
 
25
+ #: contact_form.php:73
26
  msgid "Contact Form"
27
  msgstr "Кантактная форма"
28
 
29
+ #: contact_form.php:149
30
+ #: contact_form.php:1131
31
+ #: contact_form.php:1165
32
  msgid "Name:"
33
  msgstr "Імя:"
34
 
35
+ #: contact_form.php:150
36
+ #: contact_form.php:1132
37
+ #: contact_form.php:1166
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "E-mail адрас:"
41
 
42
+ #: contact_form.php:151
43
+ #: contact_form.php:1133
44
+ #: contact_form.php:1167
45
  msgid "Email Address:"
46
  msgstr "E-mail адрас:"
47
 
48
+ #: contact_form.php:152
49
+ #: contact_form.php:1134
50
+ #: contact_form.php:1168
51
  msgid "Phone number:"
52
  msgstr "Тэлефон:"
53
 
54
+ #: contact_form.php:153
55
+ #: contact_form.php:1135
56
+ #: contact_form.php:1169
57
  msgid "Subject:"
58
  msgstr "Тэма:"
59
 
60
+ #: contact_form.php:154
61
+ #: contact_form.php:1136
62
+ #: contact_form.php:1170
63
  msgid "Message:"
64
  msgstr "Паведамленьне:"
65
 
66
+ #: contact_form.php:155
67
+ #: contact_form.php:1137
68
+ #: contact_form.php:1171
69
  msgid "Attachment:"
70
  msgstr "Прычапіць файл:"
71
 
72
+ #: contact_form.php:156
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
+ #: contact_form.php:157
77
+ #: contact_form.php:1139
78
+ #: contact_form.php:1173
79
  msgid "Send me a copy"
80
  msgstr "Адправіць мне копію"
81
 
82
+ #: contact_form.php:158
83
+ #: contact_form.php:1140
84
+ #: contact_form.php:1174
85
  msgid "Submit"
86
  msgstr "Адправіць"
87
 
88
+ #: contact_form.php:159
89
  msgid "Your name is required."
90
  msgstr "Вашае імя - гэта абавязковы радок."
91
 
92
+ #: contact_form.php:160
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "Радок e-mail адраса - обавязковы да запаўненьня"
96
 
97
+ #: contact_form.php:161
98
  #, fuzzy
99
  msgid "A valid email address is required."
100
  msgstr "Радок e-mail адраса - обавязковы да запаўненьня"
101
 
102
+ #: contact_form.php:162
103
  msgid "Phone number is required."
104
  msgstr "Вашае імя - абавязковае поле."
105
 
106
+ #: contact_form.php:163
107
  msgid "Subject is required."
108
  msgstr "Поле Тэма - абавязковае."
109
 
110
+ #: contact_form.php:164
111
  msgid "Message text is required."
112
  msgstr "Радок паведамленьня - абавязковы."
113
 
114
+ #: contact_form.php:165
115
  msgid "File format is not valid."
116
  msgstr "Фармат файла не зьяўляецца дапушчальным."
117
 
118
+ #: contact_form.php:166
119
  msgid "File upload error."
120
  msgstr ""
121
 
122
+ #: contact_form.php:167
123
  msgid "The file could not be uploaded."
124
  msgstr ""
125
 
126
+ #: contact_form.php:168
127
  msgid "This file is too large."
128
  msgstr ""
129
 
130
+ #: contact_form.php:169
131
  msgid "Please fill out the CAPTCHA."
132
  msgstr "Калі ласка, запоўніце сымбалі з выявы."
133
 
134
+ #: contact_form.php:170
135
  msgid "Please make corrections below and try again."
136
  msgstr "Калі ласка, зрабіце выпраўленьне ў радках ніжэй ды паўтарыце працэдуру"
137
 
138
+ #: contact_form.php:172
139
  msgid "Thank you for contacting us."
140
  msgstr "Дзякуем за кантакт з намі."
141
 
142
+ #: contact_form.php:322
143
  #, fuzzy
144
  msgid "requires"
145
  msgstr "Абавязковыя палі"
146
 
147
+ #: contact_form.php:322
148
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
149
  msgstr ""
150
 
151
+ #: contact_form.php:322
152
  msgid "Back to the WordPress"
153
  msgstr ""
154
 
155
+ #: contact_form.php:322
156
  #, fuzzy
157
  msgid "Plugins page"
158
  msgstr "Плагины BWS"
159
 
160
+ #: contact_form.php:626
161
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
162
  msgstr "Калі наладка 'Перайсьці на старонку' абрана, тады URL павінен быць запоўнены ў наступным фармаце"
163
 
164
+ #: contact_form.php:635
165
  msgid "Such user does not exist. Settings are not saved."
166
  msgstr "Дадзены карыстальнік ня знойдзен. Наладкі не захаваны"
167
 
168
+ #: contact_form.php:639
169
+ #: contact_form.php:645
170
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
171
  msgstr "Калі ласка, увядзіце карэктны адрас для радка 'FROM'. Наладкі не захаваны."
172
 
173
+ #: contact_form.php:661
174
  #, fuzzy
175
  msgid "Settings saved."
176
  msgstr "Наладкі захаваны."
177
 
178
+ #: contact_form.php:688
179
+ #: contact_form.php:720
180
  msgid "Wrong license key"
181
  msgstr ""
182
 
183
+ #: contact_form.php:713
184
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
185
  msgstr ""
186
 
187
+ #: contact_form.php:722
188
  msgid "This license key is bind to another site"
189
  msgstr ""
190
 
191
+ #: contact_form.php:724
192
+ #: contact_form.php:1570
193
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
194
  msgstr ""
195
 
196
+ #: contact_form.php:741
197
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
198
  msgstr ""
199
 
200
+ #: contact_form.php:747
201
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
+ #: contact_form.php:751
205
+ #: contact_form.php:760
206
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
207
  msgstr ""
208
 
209
+ #: contact_form.php:764
210
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
211
  msgstr ""
212
 
213
+ #: contact_form.php:779
214
  #, fuzzy
215
  msgid "Please, enter Your license key"
216
  msgstr "Выкарыстоўваць гэты email-адрас:"
217
 
218
+ #: contact_form.php:787
219
+ #: contact_form.php:2216
220
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
221
  msgid "Settings"
222
  msgstr "Наладкі"
223
 
224
+ #: contact_form.php:788
225
  #, fuzzy
226
  msgid "Extra settings"
227
  msgstr "Наладкі"
228
 
229
+ #: contact_form.php:789
230
  msgid "Go PRO"
231
  msgstr ""
232
 
233
+ #: contact_form.php:792
234
+ msgid "Notice:"
235
+ msgstr ""
236
+
237
+ #: contact_form.php:792
238
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
239
+ msgstr ""
240
+
241
+ #: contact_form.php:798
242
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
243
+ msgstr ""
244
+
245
+ #: contact_form.php:804
246
+ #: contact_form.php:809
247
+ #: contact_form.php:1529
248
  msgid "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:"
249
  msgstr "Калі вы жадаеце дадаць Кантактную Форму на свой сайт, тады вам неабходна толькі скапіяваць ды ўставіць Shortcode у канктэнт старонкі, ці запісу, ці аздабленьня:"
250
 
251
+ #: contact_form.php:804
252
+ #: contact_form.php:805
253
+ #: contact_form.php:809
254
+ #: contact_form.php:810
255
+ #: contact_form.php:1155
256
+ #: contact_form.php:1157
257
+ #: contact_form.php:1212
258
+ #: contact_form.php:1214
259
  msgid "or"
260
  msgstr ""
261
 
262
+ #: contact_form.php:805
263
+ #: contact_form.php:810
264
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
265
  msgstr ""
266
 
267
+ #: contact_form.php:806
268
+ #: contact_form.php:811
269
  msgid "They work the same way."
270
  msgstr ""
271
 
272
+ #: contact_form.php:807
273
+ #: contact_form.php:812
274
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
275
  msgstr "Калі інфармацыя ў палях ніжэй адсутнічае, паведамленьне будзе адпраўлена на email адрас, які быў указаны пры рэгістрацыі на сайце."
276
 
277
+ #: contact_form.php:817
278
  msgid "The user's email address:"
279
  msgstr "Электронны адрас карыстальніка:"
280
 
281
+ #: contact_form.php:821
282
  msgid "Create a username"
283
  msgstr "Абярыце імя карыстальніка"
284
 
285
+ #: contact_form.php:828
286
  msgid "Enter a username of the person who should get the messages from the contact form."
287
  msgstr "Увядзіце імя карыстальніка, які будзе атрымліваць паведамленьні кантактнай формы."
288
 
289
+ #: contact_form.php:832
290
  msgid "Use this email address:"
291
  msgstr "Выкарыстоўваць гэты email-адрас:"
292
 
293
+ #: contact_form.php:835
294
  msgid "Enter the email address you want the messages forwarded to."
295
  msgstr "Увядзіце адрас, на які хочаце перанакіраваць паведамленьне."
296
 
297
+ #: contact_form.php:844
298
  msgid "Add department selectbox to the contact form:"
299
  msgstr ""
300
 
301
+ #: contact_form.php:852
302
+ #: contact_form.php:1412
303
  msgid "If you upgrade to Pro version all your settings will be saved."
304
  msgstr ""
305
 
306
+ #: contact_form.php:859
307
+ #: contact_form.php:997
308
+ #: contact_form.php:1071
309
+ #: contact_form.php:1419
310
+ msgid "Unlock premium options by upgrading to a PRO version."
311
  msgstr ""
312
 
313
+ #: contact_form.php:860
314
+ #: contact_form.php:998
315
+ #: contact_form.php:1072
316
+ #: contact_form.php:1420
317
+ #: contact_form.php:2473
318
+ #: contact_form.php:2489
319
+ msgid "Learn More"
320
+ msgstr ""
321
 
322
+ #: contact_form.php:863
323
+ #: contact_form.php:1001
324
+ #: contact_form.php:1075
325
+ #: contact_form.php:1423
326
+ msgid "Go"
327
+ msgstr ""
328
+
329
+ #: contact_form.php:870
330
  msgid "Save emails to the database"
331
  msgstr ""
332
 
333
+ #: contact_form.php:876
334
  msgid "Using"
335
  msgstr ""
336
 
337
+ #: contact_form.php:876
338
+ #: contact_form.php:1048
339
+ #: contact_form.php:1051
340
+ #: contact_form.php:1055
341
  msgid "powered by"
342
  msgstr ""
343
 
344
+ #: contact_form.php:879
345
+ #: contact_form.php:883
346
  msgid "Using Contact Form to DB powered by"
347
  msgstr ""
348
 
349
+ #: contact_form.php:879
350
  #, fuzzy
351
  msgid "Activate Contact Form to DB"
352
  msgstr "Кантактная форма"
353
 
354
+ #: contact_form.php:883
355
  #, fuzzy
356
  msgid "Download Contact Form to DB"
357
  msgstr "Кантактная форма"
358
 
359
+ #: contact_form.php:888
360
  msgid "Additional options"
361
  msgstr "Дадатковыя наладкі"
362
 
363
+ #: contact_form.php:890
364
  msgid "Show"
365
  msgstr ""
366
 
367
+ #: contact_form.php:891
368
  msgid "Hide"
369
  msgstr ""
370
 
371
+ #: contact_form.php:895
372
  msgid "What to use?"
373
  msgstr "Што выкарыстоўваць?"
374
 
375
+ #: contact_form.php:898
376
  msgid "Wp-mail"
377
  msgstr "Wp-mail"
378
 
379
+ #: contact_form.php:898
380
  msgid "You can use the wp_mail function for mailing"
381
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
382
 
383
+ #: contact_form.php:900
384
  msgid "Mail"
385
  msgstr "Mail"
386
 
387
+ #: contact_form.php:900
388
  msgid "To send mail you can use the php mail function"
389
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
390
 
391
+ #: contact_form.php:904
392
  #, fuzzy
393
  msgid "The text in the 'From' field"
394
  msgstr "Зьмяніць тэкст для радка 'FROM' у лісьце"
395
 
396
+ #: contact_form.php:906
397
  msgid "User name"
398
  msgstr ""
399
 
400
+ #: contact_form.php:907
401
  #, fuzzy
402
  msgid "The name of the user who fills the form will be used in the field 'From'."
403
  msgstr "Адрас электроннай пошты карыстальніка, які запаўняе форму будзе выкарыстоўвацца ў поле 'From'."
404
 
405
+ #: contact_form.php:910
406
  #, fuzzy
407
  msgid "This text will be used in the 'FROM' field"
408
  msgstr "Гэты адрас будзе выкарыстоўвацца ў поле 'From'"
409
 
410
+ #: contact_form.php:914
411
  #, fuzzy
412
  msgid "The email address in the 'From' field"
413
  msgstr "Калі ласка, увядзіце адрас электроннай пошты ў поле 'From'"
414
 
415
+ #: contact_form.php:916
416
  msgid "User email"
417
  msgstr ""
418
 
419
+ #: contact_form.php:917
420
  #, fuzzy
421
  msgid "The email address of the user who fills the form will be used in the field 'From'."
422
  msgstr "Адрас электроннай пошты карыстальніка, які запаўняе форму будзе выкарыстоўвацца ў поле 'From'."
423
 
424
+ #: contact_form.php:920
425
  msgid "This email address will be used in the 'From' field."
426
  msgstr "Гэты адрас будзе выкарыстоўвацца ў поле 'From'"
427
 
428
+ #: contact_form.php:924
429
  #, fuzzy
430
  msgid "Required symbol"
431
  msgstr "Абавязковыя палі"
432
 
433
+ #: contact_form.php:934
434
  msgid "Fields"
435
  msgstr ""
436
 
437
+ #: contact_form.php:935
438
  msgid "Used"
439
  msgstr ""
440
 
441
+ #: contact_form.php:936
442
  #, fuzzy
443
  msgid "Required"
444
  msgstr "Абавязковыя палі"
445
 
446
+ #: contact_form.php:937
447
  msgid "Visible"
448
  msgstr ""
449
 
450
+ #: contact_form.php:938
451
  msgid "Disabled for editing"
452
  msgstr ""
453
 
454
+ #: contact_form.php:939
455
  msgid "Field's default value"
456
  msgstr ""
457
 
458
+ #: contact_form.php:944
459
+ #: contact_form.php:1287
460
+ #: contact_form.php:2059
461
+ #: contact_form.php:2089
462
  msgid "Name"
463
  msgstr "Імя"
464
 
465
+ #: contact_form.php:952
466
+ #: contact_form.php:1292
467
+ #: contact_form.php:2063
468
+ #: contact_form.php:2091
469
  #, fuzzy
470
  msgid "Address"
471
  msgstr "E-mail адрас:"
472
 
473
+ #: contact_form.php:960
474
  #, fuzzy
475
  msgid "Email Address"
476
  msgstr "E-mail адрас:"
477
 
478
+ #: contact_form.php:968
479
  #, fuzzy
480
  msgid "Phone number"
481
  msgstr "Тэлефон:"
482
 
483
+ #: contact_form.php:976
484
+ #: contact_form.php:1307
485
+ #: contact_form.php:2073
486
+ #: contact_form.php:2095
487
  msgid "Subject"
488
  msgstr "Тэма"
489
 
490
+ #: contact_form.php:984
491
+ #: contact_form.php:1311
492
+ #: contact_form.php:2076
493
+ #: contact_form.php:2096
494
  msgid "Message"
495
  msgstr "Паведамленьне"
496
 
497
+ #: contact_form.php:1008
498
  #, fuzzy
499
  msgid "Attachment block"
500
  msgstr "Паказваць блок Прычапіць Файл"
501
 
502
+ #: contact_form.php:1010
503
  msgid "Users can attach the following file formats"
504
  msgstr "Карыстальнікі могуць прычапляць файлы наступных тыпаў"
505
 
506
+ #: contact_form.php:1023
507
  msgid "Add to the form"
508
  msgstr ""
509
 
510
+ #: contact_form.php:1028
511
  #, fuzzy
512
  msgid "Tips below the Attachment"
513
  msgstr "Паказваць блок Прычапіць Файл"
514
 
515
+ #: contact_form.php:1037
516
  #, fuzzy
517
  msgid "'Send me a copy' block"
518
  msgstr "Паказаць блок Адправіць мне копію"
519
 
520
+ #: contact_form.php:1048
521
+ #: contact_form.php:1051
522
+ #: contact_form.php:1055
523
+ #: contact_form.php:1321
524
  msgid "Captcha"
525
  msgstr ""
526
 
527
+ #: contact_form.php:1051
528
  #, fuzzy
529
  msgid "Activate captcha"
530
  msgstr "Актываваныя пашырэньні"
531
 
532
+ #: contact_form.php:1055
533
  #, fuzzy
534
  msgid "Download captcha"
535
  msgstr "Спампаваць"
536
 
537
+ #: contact_form.php:1063
538
  msgid "Agreement checkbox"
539
  msgstr ""
540
 
541
+ #: contact_form.php:1063
542
  msgid "Required checkbox for submitting the form"
543
  msgstr ""
544
 
545
+ #: contact_form.php:1064
546
  msgid "Optional checkbox"
547
  msgstr ""
548
 
549
+ #: contact_form.php:1064
550
  msgid "Optional checkbox, the results of which will be displayed in email"
551
  msgstr ""
552
 
553
+ #: contact_form.php:1081
554
  msgid "Delete an attachment file from the server after the email is sent"
555
  msgstr ""
556
 
557
+ #: contact_form.php:1087
558
  msgid "Email in HTML format sending"
559
  msgstr ""
560
 
561
+ #: contact_form.php:1091
562
  #, fuzzy
563
  msgid "Display additional info in the email"
564
  msgstr "Паказ дадатковай інфармацыі ў лісьце"
565
 
566
+ #: contact_form.php:1096
567
+ #: contact_form.php:2026
568
+ #: contact_form.php:2028
569
  msgid "Sent from (ip address)"
570
  msgstr "Адпраўлена ад (IP адрас)"
571
 
572
+ #: contact_form.php:1096
573
  #, fuzzy
574
  msgid "Example: Sent from (IP address):\t127.0.0.1"
575
  msgstr "Адпраўлена ад (IP адрас)"
576
 
577
+ #: contact_form.php:1097
578
+ #: contact_form.php:2032
579
+ #: contact_form.php:2034
580
  msgid "Date/Time"
581
  msgstr "Дата/Час"
582
 
583
+ #: contact_form.php:1097
584
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
585
  msgstr ""
586
 
587
+ #: contact_form.php:1098
588
+ #: contact_form.php:2038
589
+ #: contact_form.php:2040
590
  msgid "Sent from (referer)"
591
  msgstr "Прыйшло з "
592
 
593
+ #: contact_form.php:1098
594
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
595
  msgstr ""
596
 
597
+ #: contact_form.php:1099
598
+ #: contact_form.php:2044
599
+ #: contact_form.php:2046
600
  msgid "Using (user agent)"
601
  msgstr "Выкарыстоўваць (user agent)"
602
 
603
+ #: contact_form.php:1099
604
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
605
  msgstr ""
606
 
607
+ #: contact_form.php:1103
608
  msgid "Language settings for the field names in the form"
609
  msgstr "Моўныя наладкі для палёў у форме"
610
 
611
+ #: contact_form.php:1112
612
  #, fuzzy
613
  msgid "Add a language"
614
  msgstr "Дадаць мову"
615
 
616
+ #: contact_form.php:1116
617
  msgid "Change the names of the contact form fields and error messages"
618
  msgstr "Зьмяніць назвы палёў кантактнай формы й паведамленьняў аб памылках"
619
 
620
+ #: contact_form.php:1121
621
+ #: contact_form.php:1202
622
  msgid "English"
623
  msgstr "Ангельская"
624
 
625
+ #: contact_form.php:1129
626
+ #: contact_form.php:1163
627
  msgid "click to expand/hide the list"
628
  msgstr ""
629
 
630
+ #: contact_form.php:1138
631
+ #: contact_form.php:1172
632
  #, fuzzy
633
  msgid "Tips below the Attachment block"
634
  msgstr "Паказваць блок Прычапіць Файл"
635
 
636
+ #: contact_form.php:1141
637
+ #: contact_form.php:1175
638
  msgid "Error message for the Name field"
639
  msgstr "Паведамленьне аб памылкі для поля Імя Карыстальніка"
640
 
641
+ #: contact_form.php:1142
642
+ #: contact_form.php:1176
643
  #, fuzzy
644
  msgid "Error message for the Address field"
645
  msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
646
 
647
+ #: contact_form.php:1143
648
+ #: contact_form.php:1177
649
  msgid "Error message for the Email field"
650
  msgstr "Паведамленьне аб памылкі для поля Электронная Пошта"
651
 
652
+ #: contact_form.php:1144
653
+ #: contact_form.php:1178
654
  msgid "Error message for the Phone field"
655
  msgstr "Паведамленьне аб памылкі для поля Тэлефон"
656
 
657
+ #: contact_form.php:1145
658
+ #: contact_form.php:1179
659
  msgid "Error message for the Subject field"
660
  msgstr "Паведамленьне аб памылкі для поля Тэма"
661
 
662
+ #: contact_form.php:1146
663
+ #: contact_form.php:1180
664
  msgid "Error message for the Message field"
665
  msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
666
 
667
+ #: contact_form.php:1147
668
+ #: contact_form.php:1181
669
  #, fuzzy
670
  msgid "Error message about the file type for the Attachment field"
671
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
672
 
673
+ #: contact_form.php:1148
674
+ #: contact_form.php:1182
675
  #, fuzzy
676
  msgid "Error message while uploading a file for the Attachment field to the server"
677
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
678
 
679
+ #: contact_form.php:1149
680
+ #: contact_form.php:1183
681
  #, fuzzy
682
  msgid "Error message while moving the file for the Attachment field"
683
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
684
 
685
+ #: contact_form.php:1150
686
+ #: contact_form.php:1184
687
  #, fuzzy
688
  msgid "Error message when file size limit for the Attachment field is exceeded"
689
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
690
 
691
+ #: contact_form.php:1151
692
+ #: contact_form.php:1185
693
  msgid "Error message for the Captcha field"
694
  msgstr "Паведамленьне аб памылкі для поля Captcha"
695
 
696
+ #: contact_form.php:1152
697
+ #: contact_form.php:1186
698
  msgid "Error message for the whole form"
699
  msgstr "Паведамленьне аб памылцы для усёй формы"
700
 
701
+ #: contact_form.php:1155
702
+ #: contact_form.php:1157
703
+ #: contact_form.php:1189
704
+ #: contact_form.php:1191
705
+ #: contact_form.php:1212
706
+ #: contact_form.php:1214
707
+ #: contact_form.php:1222
708
+ #: contact_form.php:1224
709
  msgid "Use shortcode"
710
  msgstr "Выкарыстоўваць shortcode"
711
 
712
+ #: contact_form.php:1155
713
+ #: contact_form.php:1157
714
+ #: contact_form.php:1189
715
+ #: contact_form.php:1191
716
+ #: contact_form.php:1212
717
+ #: contact_form.php:1214
718
+ #: contact_form.php:1222
719
+ #: contact_form.php:1224
720
  msgid "for this language"
721
  msgstr "для дадзенай мовы"
722
 
723
+ #: contact_form.php:1199
724
  msgid "Action after email is sent"
725
  msgstr "Дзеяньні пасьля адпраўкі ліста"
726
 
727
+ #: contact_form.php:1201
728
  msgid "Display text"
729
  msgstr "Адлюстраваць тэкст"
730
 
731
+ #: contact_form.php:1210
732
+ #: contact_form.php:1220
733
  msgid "Text"
734
  msgstr "Тэкст"
735
 
736
+ #: contact_form.php:1231
737
  msgid "Redirect to the page"
738
  msgstr "Перакінуць на старонку"
739
 
740
+ #: contact_form.php:1232
741
  msgid "Url"
742
  msgstr "www-адрас"
743
 
744
+ #: contact_form.php:1236
745
  msgid "The $_SERVER variable that is used to build a URL of the form"
746
  msgstr ""
747
 
748
+ #: contact_form.php:1240
749
  msgid "If you are not sure whether to change this setting or not, please do not do that."
750
  msgstr ""
751
 
752
+ #: contact_form.php:1246
753
+ #: contact_form.php:1430
754
  msgid "Save Changes"
755
  msgstr "Захаваць зьмены"
756
 
757
+ #: contact_form.php:1251
758
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
759
  msgstr ""
760
 
761
+ #: contact_form.php:1252
762
  #, fuzzy
763
  msgid "Rate the plugin"
764
  msgstr "Рэкамэндаваныя да ўсталёўкі пашырэньні"
765
 
766
+ #: contact_form.php:1255
767
  #, fuzzy
768
  msgid "If there is something wrong about it, please contact us"
769
  msgstr "Калі ў вас ёсьць якія небудзь пытаньні, зьвяртайцеся да plugin@bestwebsoft.com ці запоўніце кантактную форму на нашым сайце"
770
 
771
+ #: contact_form.php:1267
772
  msgid "Errors output"
773
  msgstr ""
774
 
775
+ #: contact_form.php:1270
776
  msgid "Display error messages"
777
  msgstr ""
778
 
779
+ #: contact_form.php:1271
780
  msgid "Color of the input field errors."
781
  msgstr ""
782
 
783
+ #: contact_form.php:1272
784
  #, fuzzy
785
  msgid "Display error messages & color of the input field errors"
786
  msgstr "Паведамленьне аб памылкі для поля Тэма"
787
 
788
+ #: contact_form.php:1277
789
  msgid "Add placeholder to the input blocks"
790
  msgstr ""
791
 
792
+ #: contact_form.php:1283
793
  #, fuzzy
794
  msgid "Add tooltips"
795
  msgstr "Дадатковыя наладкі"
796
 
797
+ #: contact_form.php:1297
798
  #, fuzzy
799
  msgid "Email address"
800
  msgstr "E-mail адрас:"
801
 
802
+ #: contact_form.php:1302
803
  #, fuzzy
804
  msgid "Phone Number"
805
  msgstr "Тэлефон:"
806
 
807
+ #: contact_form.php:1316
808
  #, fuzzy
809
  msgid "Attachment"
810
  msgstr "Прычапіць файл:"
811
 
812
+ #: contact_form.php:1321
813
  msgid "(powered by bestwebsoft.com)"
814
  msgstr ""
815
 
816
+ #: contact_form.php:1326
817
  #, fuzzy
818
  msgid "Style options"
819
  msgstr "Дадатковыя наладкі"
820
 
821
+ #: contact_form.php:1329
822
  msgid "Text color"
823
  msgstr ""
824
 
825
+ #: contact_form.php:1332
826
+ #: contact_form.php:1337
827
+ #: contact_form.php:1347
828
+ #: contact_form.php:1352
829
+ #: contact_form.php:1357
830
+ #: contact_form.php:1362
831
+ #: contact_form.php:1372
832
+ #: contact_form.php:1377
833
+ #: contact_form.php:1383
834
+ #: contact_form.php:1394
835
+ #: contact_form.php:1399
836
+ #: contact_form.php:1404
837
  msgid "Default"
838
  msgstr ""
839
 
840
+ #: contact_form.php:1334
841
  msgid "Label text color"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1339
845
  msgid "Placeholder color"
846
  msgstr ""
847
 
848
+ #: contact_form.php:1344
849
  msgid "Errors color"
850
  msgstr ""
851
 
852
+ #: contact_form.php:1349
853
  msgid "Error text color"
854
  msgstr ""
855
 
856
+ #: contact_form.php:1354
857
  msgid "Background color of the input field errors"
858
  msgstr ""
859
 
860
+ #: contact_form.php:1359
861
  msgid "Border color of the input field errors"
862
  msgstr ""
863
 
864
+ #: contact_form.php:1364
865
  msgid "Placeholder color of the input field errors"
866
  msgstr ""
867
 
868
+ #: contact_form.php:1369
869
  #, fuzzy
870
  msgid "Input fields"
871
  msgstr "Адлюстраваць тэкст"
872
 
873
+ #: contact_form.php:1374
874
  msgid "Input fields background color"
875
  msgstr ""
876
 
877
+ #: contact_form.php:1379
878
  msgid "Text fields color"
879
  msgstr ""
880
 
881
+ #: contact_form.php:1381
882
  msgid "Border width in px, numbers only"
883
  msgstr ""
884
 
885
+ #: contact_form.php:1385
886
+ #: contact_form.php:1406
887
  msgid "Border color"
888
  msgstr ""
889
 
890
+ #: contact_form.php:1390
891
  #, fuzzy
892
  msgid "Submit button"
893
  msgstr "Адправіць"
894
 
895
+ #: contact_form.php:1392
896
  msgid "Width in px, numbers only"
897
  msgstr ""
898
 
899
+ #: contact_form.php:1396
900
  msgid "Button color"
901
  msgstr ""
902
 
903
+ #: contact_form.php:1401
904
  msgid "Button text color"
905
  msgstr ""
906
 
907
+ #: contact_form.php:1434
908
  #, fuzzy
909
  msgid "Contact Form Pro | Preview"
910
  msgstr "Кантактная форма"
911
 
912
+ #: contact_form.php:1437
913
  msgid "Show with errors"
914
  msgstr ""
915
 
916
+ #: contact_form.php:1445
917
+ #: contact_form.php:1447
918
  msgid "Please enter your full name..."
919
  msgstr ""
920
 
921
+ #: contact_form.php:1458
922
+ #: contact_form.php:1460
923
  msgid "Please enter your address..."
924
  msgstr ""
925
 
926
+ #: contact_form.php:1469
927
+ #: contact_form.php:1471
928
  #, fuzzy
929
  msgid "Please enter your email address..."
930
  msgstr "Выкарыстоўваць гэты email-адрас:"
931
 
932
+ #: contact_form.php:1480
933
+ #: contact_form.php:1482
934
  msgid "Please enter your phone number..."
935
  msgstr ""
936
 
937
+ #: contact_form.php:1491
938
+ #: contact_form.php:1493
939
  msgid "Please enter subject..."
940
  msgstr ""
941
 
942
+ #: contact_form.php:1501
943
+ #: contact_form.php:1503
944
  msgid "Please enter your message..."
945
  msgstr ""
946
 
947
+ #: contact_form.php:1545
948
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
949
  msgstr ""
950
 
951
+ #: contact_form.php:1547
952
  msgid "Please, go to"
953
  msgstr ""
954
 
955
+ #: contact_form.php:1547
956
  #, fuzzy
957
  msgid "the setting page"
958
  msgstr "Наладкі"
959
 
960
+ #: contact_form.php:1548
961
  msgid "You will be redirected automatically in 5 seconds."
962
  msgstr ""
963
 
964
+ #: contact_form.php:1553
965
  msgid "You can download and activate"
966
  msgstr ""
967
 
968
+ #: contact_form.php:1555
969
  msgid "version of this plugin by entering Your license key."
970
  msgstr ""
971
 
972
+ #: contact_form.php:1557
973
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
974
  msgstr ""
975
 
976
+ #: contact_form.php:1559
977
  msgid "(your username is the email you specify when purchasing the product)."
978
  msgstr ""
979
 
980
+ #: contact_form.php:1567
981
+ #: contact_form.php:1577
982
  msgid "Go!"
983
  msgstr ""
984
 
985
+ #: contact_form.php:1647
986
  msgid "Sorry, email message could not be delivered."
987
  msgstr "Прабачце, вашая электронная пошта не можа быць адпраўленай."
988
 
989
+ #: contact_form.php:2053
990
  msgid "Contact from"
991
  msgstr "Кантактная форма"
992
 
993
+ #: contact_form.php:2066
994
+ #: contact_form.php:2092
995
  msgid "Email"
996
  msgstr "Электронная пошта"
997
 
998
+ #: contact_form.php:2070
999
+ #: contact_form.php:2094
1000
  msgid "Phone"
1001
  msgstr "Тэлефон"
1002
 
1003
+ #: contact_form.php:2079
1004
+ #: contact_form.php:2097
1005
  msgid "Site"
1006
  msgstr "Сайт"
1007
 
1008
+ #: contact_form.php:2160
1009
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
1010
  msgstr "Калі вы бачыце гэты MIME, значыць гэты тып не падтрымліваецца вашым паштовым кліентам!"
1011
 
1012
+ #: contact_form.php:2229
1013
  msgid "FAQ"
1014
  msgstr "Пытаньні й адказы"
1015
 
1016
+ #: contact_form.php:2230
1017
  msgid "Support"
1018
  msgstr "Падтрымка"
1019
 
1020
+ #: contact_form.php:2280
1021
  msgid "Are you sure that you want to delete this language data?"
1022
  msgstr "Вы сапраўды хочаце выдаліць дадзеныя для гэтай мовы?"
1023
 
1024
+ #: contact_form.php:2476
1025
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
1026
  msgstr ""
1027
 
1028
+ #: contact_form.php:2477
1029
  msgid "Extend standard plugin functionality with new great options."
1030
  msgstr ""
1031
 
1032
+ #: contact_form.php:2492
1033
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1034
  msgstr ""
1035
 
1036
+ #: contact_form.php:2493
1037
  msgid "Manage messages that have been sent from your website."
1038
  msgstr ""
1039
 
1040
+ #, fuzzy
1041
+ #~ msgid "Contact Form Pro"
1042
+ #~ msgstr "Кантактная форма"
1043
+
1044
  #, fuzzy
1045
  #~ msgid "Contact Form Pro Extra Settings"
1046
  #~ msgstr "Наладкі кантактнай формы"
languages/contact_form-ca.mo CHANGED
Binary file
languages/contact_form-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: 2014-02-20 14:00+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:00+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Kenneth <kenneth@snollocer.net>\n"
9
  "Language: ca_ES\n"
@@ -16,970 +16,1009 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  msgid "Contact Form Settings"
22
  msgstr "Opcions Contact Form"
23
 
24
- #: contact_form.php:33
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
- #: contact_form.php:80
29
- #: contact_form.php:978
30
- #: contact_form.php:1008
31
  msgid "Name:"
32
  msgstr "Nom:"
33
 
34
- #: contact_form.php:81
35
- #: contact_form.php:979
36
- #: contact_form.php:1009
37
  msgid "Address:"
38
  msgstr "Adreça:"
39
 
40
- #: contact_form.php:82
41
- #: contact_form.php:980
42
- #: contact_form.php:1010
43
  msgid "Email Address:"
44
  msgstr "Adreça de correu electrònic:"
45
 
46
- #: contact_form.php:83
47
- #: contact_form.php:981
48
- #: contact_form.php:1011
49
  msgid "Phone number:"
50
  msgstr "Nombre de telèfon"
51
 
52
- #: contact_form.php:84
53
- #: contact_form.php:982
54
- #: contact_form.php:1012
55
  msgid "Subject:"
56
  msgstr "Asumpte:"
57
 
58
- #: contact_form.php:85
59
- #: contact_form.php:983
60
- #: contact_form.php:1013
61
  msgid "Message:"
62
  msgstr "Missatge:"
63
 
64
- #: contact_form.php:86
65
- #: contact_form.php:984
66
- #: contact_form.php:1014
67
  msgid "Attachment:"
68
  msgstr "Adjunt:"
69
 
70
- #: contact_form.php:87
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Formats de fitxer suportats: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Mida màxima: 2MB"
73
 
74
- #: contact_form.php:88
75
- #: contact_form.php:986
76
- #: contact_form.php:1016
77
  msgid "Send me a copy"
78
  msgstr "Envia'm una còpia"
79
 
80
- #: contact_form.php:89
81
- #: contact_form.php:987
82
- #: contact_form.php:1017
83
  msgid "Submit"
84
  msgstr "Enviar"
85
 
86
- #: contact_form.php:90
87
  msgid "Your name is required."
88
  msgstr "El seu nom es obligatori."
89
 
90
- #: contact_form.php:91
91
  msgid "Address is required."
92
  msgstr "Una adreça vàlida és obligatòria."
93
 
94
- #: contact_form.php:92
95
  msgid "A valid email address is required."
96
  msgstr "Una Adreça de correu electrònic és obligatòria."
97
 
98
- #: contact_form.php:93
99
  msgid "Phone number is required."
100
  msgstr "El seu nombre de telèfon és obligatori."
101
 
102
- #: contact_form.php:94
103
  msgid "Subject is required."
104
  msgstr "L'assumpte és obligatori."
105
 
106
- #: contact_form.php:95
107
  msgid "Message text is required."
108
  msgstr "El missatge és obligatori."
109
 
110
- #: contact_form.php:96
111
  msgid "File format is not valid."
112
  msgstr "El format de l'adjunt és incorrecte."
113
 
114
- #: contact_form.php:97
115
  msgid "File upload error."
116
  msgstr "Error de càrrega del fitxer"
117
 
118
- #: contact_form.php:98
119
  msgid "The file could not be uploaded."
120
  msgstr "El fitxer no ha pogut ser carregat"
121
 
122
- #: contact_form.php:99
123
  msgid "This file is too large."
124
  msgstr "Aquest document és massa gran."
125
 
126
- #: contact_form.php:100
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Si us plau completi el CAPTCHA"
129
 
130
- #: contact_form.php:101
131
  msgid "Please make corrections below and try again."
132
  msgstr "Si us plau, corregeixi les dades i provi un altre cop."
133
 
134
- #: contact_form.php:103
135
  msgid "Thank you for contacting us."
136
  msgstr "Gràcies per contactar amb nosaltres"
137
 
138
- #: contact_form.php:203
139
  #, fuzzy
140
  msgid "requires"
141
  msgstr "Camps requerits"
142
 
143
- #: contact_form.php:203
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr ""
146
 
147
- #: contact_form.php:203
148
  msgid "Back to the WordPress"
149
  msgstr ""
150
 
151
- #: contact_form.php:203
152
  #, fuzzy
153
  msgid "Plugins page"
154
  msgstr "Plugins Pro"
155
 
156
- #: contact_form.php:494
157
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
158
  msgstr "Si l'opció de 'redireccionament a la pàgina' està seleccionat llavors el camp URL ha d'estar en el següent format"
159
 
160
- #: contact_form.php:503
161
  msgid "Such user does not exist. Settings are not saved."
162
  msgstr "Usuari inexistent. Els canvis no s'han desat."
163
 
164
- #: contact_form.php:507
165
- #: contact_form.php:513
166
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
167
  msgstr "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis no s'han desat."
168
 
169
- #: contact_form.php:518
170
  msgid "Settings saved."
171
  msgstr "Configuració desada."
172
 
173
- #: contact_form.php:554
174
- #: contact_form.php:593
175
  msgid "Wrong license key"
176
  msgstr ""
177
 
178
- #: contact_form.php:586
179
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
180
  msgstr ""
181
 
182
- #: contact_form.php:595
183
  msgid "This license key is bind to another site"
184
  msgstr ""
185
 
186
- #: contact_form.php:597
187
- #: contact_form.php:1392
188
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
189
  msgstr ""
190
 
191
- #: contact_form.php:615
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
 
195
- #: contact_form.php:621
196
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
- #: contact_form.php:625
200
- #: contact_form.php:634
201
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
- #: contact_form.php:638
205
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
206
  msgstr ""
207
 
208
- #: contact_form.php:653
209
  #, fuzzy
210
  msgid "Please, enter Your license key"
211
  msgstr "Si us plau introduïu el missatge"
212
 
213
- #: contact_form.php:662
214
- msgid "Notice:"
215
- msgstr ""
216
-
217
- #: contact_form.php:662
218
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
219
- msgstr ""
220
-
221
- #: contact_form.php:665
222
- #: contact_form.php:1997
223
- #: contact_form.php:2008
224
  msgid "Settings"
225
  msgstr "Configuració"
226
 
227
- #: contact_form.php:666
228
  msgid "Extra settings"
229
  msgstr "Configuració extra"
230
 
231
- #: contact_form.php:667
232
  msgid "Go PRO"
233
  msgstr ""
234
 
235
- #: contact_form.php:673
236
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  msgid "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:"
238
  msgstr "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el seu missatge, pàgina o widget:"
239
 
240
- #: contact_form.php:673
241
- #: contact_form.php:674
242
- #: contact_form.php:1001
243
- #: contact_form.php:1050
 
 
 
 
244
  msgid "or"
245
  msgstr ""
246
 
247
- #: contact_form.php:674
 
248
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
249
  msgstr ""
250
 
251
- #: contact_form.php:675
 
252
  msgid "They work the same way."
253
  msgstr ""
254
 
255
- #: contact_form.php:676
 
256
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
257
  msgstr "Si la informació d'aquest camp queda buida, s'usarà l'adreça especificada durant el registre."
258
 
259
- #: contact_form.php:680
260
  msgid "The user's email address:"
261
  msgstr "Adreça de correu electrònic de l'usuari:"
262
 
263
- #: contact_form.php:684
264
  msgid "Create a username"
265
  msgstr "Seleccioni un nom d'usuari"
266
 
267
- #: contact_form.php:689
268
  msgid "Enter a username of the person who should get the messages from the contact form."
269
  msgstr "Introdueixi el nom de l'usuari que rebrà missatges des de contact form"
270
 
271
- #: contact_form.php:693
272
  msgid "Use this email address:"
273
  msgstr "Usi aquesta adreça de correu electrònic::"
274
 
275
- #: contact_form.php:696
276
  msgid "Enter the email address you want the messages forwarded to."
277
  msgstr "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
278
 
279
- #: contact_form.php:702
280
  msgid "Add department selectbox to the contact form:"
281
  msgstr ""
282
 
283
- #: contact_form.php:710
284
- #: contact_form.php:1246
285
  msgid "If you upgrade to Pro version all your settings will be saved."
286
  msgstr ""
287
 
288
- #: contact_form.php:715
289
- #: contact_form.php:852
290
- #: contact_form.php:923
291
- #: contact_form.php:1096
292
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
293
- msgstr "Aquesta funcionalitat està disponible en la versió Pro del connector. Per a més detalls, si us plau seguiu l'enllaç"
294
 
295
- #: contact_form.php:716
296
- #: contact_form.php:853
297
- #: contact_form.php:924
298
- #: contact_form.php:1097
299
- msgid "Contact Form Pro"
300
- msgstr "Contact Form Pro"
 
 
301
 
302
- #: contact_form.php:722
 
 
 
 
 
 
 
303
  msgid "Save emails to the database"
304
  msgstr ""
305
 
306
- #: contact_form.php:732
307
  msgid "Using"
308
  msgstr ""
309
 
310
- #: contact_form.php:732
311
- #: contact_form.php:901
312
- #: contact_form.php:904
313
- #: contact_form.php:908
314
  msgid "powered by"
315
  msgstr ""
316
 
317
- #: contact_form.php:735
318
- #: contact_form.php:739
319
  msgid "Using Contact Form to DB powered by"
320
  msgstr ""
321
 
322
- #: contact_form.php:735
323
  #, fuzzy
324
  msgid "Activate Contact Form to DB"
325
  msgstr "Contact Form Pro"
326
 
327
- #: contact_form.php:739
328
  #, fuzzy
329
  msgid "Download Contact Form to DB"
330
  msgstr "Contact Form Pro"
331
 
332
- #: contact_form.php:744
333
  msgid "Additional options"
334
  msgstr "Opcions addicionals"
335
 
336
- #: contact_form.php:746
337
  msgid "Show"
338
  msgstr ""
339
 
340
- #: contact_form.php:747
341
  msgid "Hide"
342
  msgstr ""
343
 
344
- #: contact_form.php:751
345
  msgid "What to use?"
346
  msgstr "Què usar?"
347
 
348
- #: contact_form.php:754
349
  msgid "Wp-mail"
350
  msgstr "Wp-mail"
351
 
352
- #: contact_form.php:754
353
  msgid "You can use the wp_mail function for mailing"
354
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
355
 
356
- #: contact_form.php:756
357
  msgid "Mail"
358
  msgstr "Mail"
359
 
360
- #: contact_form.php:756
361
  msgid "To send mail you can use the php mail function"
362
  msgstr "Per enviar correu vostè pot usar la funció 'php mail'"
363
 
364
- #: contact_form.php:760
365
  #, fuzzy
366
  msgid "The text in the 'From' field"
367
  msgstr "Modifica el camp DE al contact form"
368
 
369
- #: contact_form.php:762
370
  msgid "User name"
371
  msgstr ""
372
 
373
- #: contact_form.php:763
374
  #, fuzzy
375
  msgid "The name of the user who fills the form will be used in the field 'From'."
376
  msgstr "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de posar al camp 'From'."
377
 
378
- #: contact_form.php:766
379
  #, fuzzy
380
  msgid "This text will be used in the 'FROM' field"
381
  msgstr "Aquesta adreça de correu electrònic s'utilitzarà al camp 'De'"
382
 
383
- #: contact_form.php:770
384
  #, fuzzy
385
  msgid "The email address in the 'From' field"
386
  msgstr "Introduir el correu electrònic al camp 'From'"
387
 
388
- #: contact_form.php:772
389
  msgid "User email"
390
  msgstr ""
391
 
392
- #: contact_form.php:773
393
  msgid "The email address of the user who fills the form will be used in the field 'From'."
394
  msgstr "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de posar al camp 'From'."
395
 
396
- #: contact_form.php:776
397
  msgid "This email address will be used in the 'From' field."
398
  msgstr "Aquesta adreça de correu electrònic s'utilitzarà al camp 'De'"
399
 
400
- #: contact_form.php:780
401
  #, fuzzy
402
  msgid "Required symbol"
403
  msgstr "Camps requerits"
404
 
405
- #: contact_form.php:790
406
  msgid "Fields"
407
  msgstr ""
408
 
409
- #: contact_form.php:791
410
  msgid "Used"
411
  msgstr ""
412
 
413
- #: contact_form.php:792
414
  #, fuzzy
415
  msgid "Required"
416
  msgstr "Camps requerits"
417
 
418
- #: contact_form.php:793
419
  msgid "Visible"
420
  msgstr ""
421
 
422
- #: contact_form.php:794
423
  msgid "Disabled for editing"
424
  msgstr ""
425
 
426
- #: contact_form.php:795
427
  msgid "Field's default value"
428
  msgstr ""
429
 
430
- #: contact_form.php:800
431
- #: contact_form.php:1121
432
- #: contact_form.php:1841
433
- #: contact_form.php:1871
434
  msgid "Name"
435
  msgstr "Nom"
436
 
437
- #: contact_form.php:808
438
- #: contact_form.php:1126
439
- #: contact_form.php:1845
440
- #: contact_form.php:1873
441
  msgid "Address"
442
  msgstr "Adreça:"
443
 
444
- #: contact_form.php:816
445
  msgid "Email Address"
446
  msgstr "Adreça de correu electrònic:"
447
 
448
- #: contact_form.php:824
449
  #, fuzzy
450
  msgid "Phone number"
451
  msgstr "Nombre de telèfon"
452
 
453
- #: contact_form.php:832
454
- #: contact_form.php:1141
455
- #: contact_form.php:1855
456
- #: contact_form.php:1877
457
  msgid "Subject"
458
  msgstr "Assumpte"
459
 
460
- #: contact_form.php:840
461
- #: contact_form.php:1145
462
- #: contact_form.php:1858
463
- #: contact_form.php:1878
464
  msgid "Message"
465
  msgstr "MIssatge"
466
 
467
- #: contact_form.php:858
468
  msgid "Attachment block"
469
  msgstr "Adjunt blocat"
470
 
471
- #: contact_form.php:860
472
  msgid "Users can attach the following file formats"
473
  msgstr "Els usuaris poden adjuntar els següents formats d'arxiu"
474
 
475
- #: contact_form.php:874
476
  msgid "Add to the form"
477
  msgstr ""
478
 
479
- #: contact_form.php:879
480
  #, fuzzy
481
  msgid "Tips below the Attachment"
482
  msgstr "Consells del blocatge de l'adjunt"
483
 
484
- #: contact_form.php:888
485
  #, fuzzy
486
  msgid "'Send me a copy' block"
487
  msgstr "Envia'm una còpia"
488
 
489
- #: contact_form.php:901
490
- #: contact_form.php:904
491
- #: contact_form.php:908
492
- #: contact_form.php:1155
493
  msgid "Captcha"
494
  msgstr "Captcha"
495
 
496
- #: contact_form.php:904
497
  msgid "Activate captcha"
498
  msgstr "Captcha activat"
499
 
500
- #: contact_form.php:908
501
  msgid "Download captcha"
502
  msgstr "Descarrega captcha"
503
 
504
- #: contact_form.php:916
505
  msgid "Agreement checkbox"
506
  msgstr ""
507
 
508
- #: contact_form.php:916
509
  msgid "Required checkbox for submitting the form"
510
  msgstr ""
511
 
512
- #: contact_form.php:917
513
  msgid "Optional checkbox"
514
  msgstr ""
515
 
516
- #: contact_form.php:917
517
  msgid "Optional checkbox, the results of which will be displayed in email"
518
  msgstr ""
519
 
520
- #: contact_form.php:928
521
  msgid "Delete an attachment file from the server after the email is sent"
522
  msgstr ""
523
 
524
- #: contact_form.php:934
525
  msgid "Email in HTML format sending"
526
  msgstr ""
527
 
528
- #: contact_form.php:938
529
  msgid "Display additional info in the email"
530
  msgstr "Mostra informació addicional al correu electrònic,"
531
 
532
- #: contact_form.php:943
533
- #: contact_form.php:1808
534
- #: contact_form.php:1810
535
  msgid "Sent from (ip address)"
536
  msgstr "Enviat des de (adreça IP)"
537
 
538
- #: contact_form.php:943
539
  #, fuzzy
540
  msgid "Example: Sent from (IP address):\t127.0.0.1"
541
  msgstr "Enviat des de (adreça IP)"
542
 
543
- #: contact_form.php:944
544
- #: contact_form.php:1814
545
- #: contact_form.php:1816
546
  msgid "Date/Time"
547
  msgstr "Data/hora"
548
 
549
- #: contact_form.php:944
550
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
551
  msgstr ""
552
 
553
- #: contact_form.php:945
554
- #: contact_form.php:1820
555
- #: contact_form.php:1822
556
  msgid "Sent from (referer)"
557
  msgstr "Enviat des de (referent)"
558
 
559
- #: contact_form.php:945
560
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
561
  msgstr ""
562
 
563
- #: contact_form.php:946
564
- #: contact_form.php:1826
565
- #: contact_form.php:1828
566
  msgid "Using (user agent)"
567
  msgstr "Usant (user agent)"
568
 
569
- #: contact_form.php:946
570
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
571
  msgstr ""
572
 
573
- #: contact_form.php:950
574
  msgid "Language settings for the field names in the form"
575
  msgstr "Configuració de la llengua als noms dels camps del formulari"
576
 
577
- #: contact_form.php:959
578
  msgid "Add a language"
579
  msgstr "Afegeix lengua"
580
 
581
- #: contact_form.php:963
582
  msgid "Change the names of the contact form fields and error messages"
583
  msgstr "Modifica els noms dels camps i els missatges d'error del formulari de contacte"
584
 
585
- #: contact_form.php:968
586
- #: contact_form.php:1041
587
  msgid "English"
588
  msgstr "Anglès"
589
 
590
- #: contact_form.php:976
591
- #: contact_form.php:1006
592
  msgid "click to expand/hide the list"
593
  msgstr ""
594
 
595
- #: contact_form.php:985
596
- #: contact_form.php:1015
597
  #, fuzzy
598
  msgid "Tips below the Attachment block"
599
  msgstr "Consells del blocatge de l'adjunt"
600
 
601
- #: contact_form.php:988
602
- #: contact_form.php:1018
603
  msgid "Error message for the Name field"
604
  msgstr "Missatge d'error per al camp 'Nom'"
605
 
606
- #: contact_form.php:989
607
- #: contact_form.php:1019
608
  msgid "Error message for the Address field"
609
  msgstr "Missatge d'error per al camp 'Adreça'"
610
 
611
- #: contact_form.php:990
612
- #: contact_form.php:1020
613
  msgid "Error message for the Email field"
614
  msgstr "Missatge d'error per al camp 'Adreça de correu electrònic'"
615
 
616
- #: contact_form.php:991
617
- #: contact_form.php:1021
618
  msgid "Error message for the Phone field"
619
  msgstr "Missatge d'error per al camp 'Telèfon\""
620
 
621
- #: contact_form.php:992
622
- #: contact_form.php:1022
623
  msgid "Error message for the Subject field"
624
  msgstr "Missatge d'error per al camp 'Assumpte'"
625
 
626
- #: contact_form.php:993
627
- #: contact_form.php:1023
628
  msgid "Error message for the Message field"
629
  msgstr "Missatge d'error per al camp 'Missatge'"
630
 
631
- #: contact_form.php:994
632
- #: contact_form.php:1024
633
  msgid "Error message about the file type for the Attachment field"
634
  msgstr "Missatge d'error sobre el tipus de per al camp 'Adjunt'"
635
 
636
- #: contact_form.php:995
637
- #: contact_form.php:1025
638
  msgid "Error message while uploading a file for the Attachment field to the server"
639
  msgstr "Missatge d'error al carregar al servidor un fitxer per al camp Adjunt"
640
 
641
- #: contact_form.php:996
642
- #: contact_form.php:1026
643
  msgid "Error message while moving the file for the Attachment field"
644
  msgstr "Missatge d'error al mourerun fitxer per al camp Adjunt"
645
 
646
- #: contact_form.php:997
647
- #: contact_form.php:1027
648
  msgid "Error message when file size limit for the Attachment field is exceeded"
649
  msgstr "Missatge d'error al superar el límit de mida de fitxer per al camp Adjunt"
650
 
651
- #: contact_form.php:998
652
- #: contact_form.php:1028
653
  msgid "Error message for the Captcha field"
654
  msgstr "Missatge d'error al camp Captcha"
655
 
656
- #: contact_form.php:999
657
- #: contact_form.php:1029
658
  msgid "Error message for the whole form"
659
  msgstr "Missatge d'error a tot el formulari"
660
 
661
- #: contact_form.php:1001
662
- #: contact_form.php:1031
663
- #: contact_form.php:1050
664
- #: contact_form.php:1056
 
 
 
 
665
  msgid "Use shortcode"
666
  msgstr "useu un codi curt"
667
 
668
- #: contact_form.php:1001
669
- #: contact_form.php:1031
670
- #: contact_form.php:1050
671
- #: contact_form.php:1056
 
 
 
 
672
  msgid "for this language"
673
  msgstr "Per aquesta llengua"
674
 
675
- #: contact_form.php:1038
676
  msgid "Action after email is sent"
677
  msgstr "Accions després d'enviar un correu electrònic."
678
 
679
- #: contact_form.php:1040
680
  msgid "Display text"
681
  msgstr "Mostra el text"
682
 
683
- #: contact_form.php:1049
684
- #: contact_form.php:1055
685
  msgid "Text"
686
  msgstr "Text"
687
 
688
- #: contact_form.php:1062
689
  msgid "Redirect to the page"
690
  msgstr "Redirigir a la pàgina"
691
 
692
- #: contact_form.php:1063
693
  msgid "Url"
694
  msgstr "Url"
695
 
696
- #: contact_form.php:1067
697
  msgid "The $_SERVER variable that is used to build a URL of the form"
698
  msgstr ""
699
 
700
- #: contact_form.php:1071
701
  msgid "If you are not sure whether to change this setting or not, please do not do that."
702
  msgstr ""
703
 
704
- #: contact_form.php:1077
705
- #: contact_form.php:1252
706
  msgid "Save Changes"
707
  msgstr "Desar els canvis"
708
 
709
- #: contact_form.php:1082
710
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
711
  msgstr ""
712
 
713
- #: contact_form.php:1083
714
  #, fuzzy
715
  msgid "Rate the plugin"
716
  msgstr "Plugins gratuïts"
717
 
718
- #: contact_form.php:1086
719
  #, fuzzy
720
  msgid "If there is something wrong about it, please contact us"
721
  msgstr "Si té alguna pregunta, contacti'ns si us plau via plugin@bestwebsoft.com o utilitzi el formulari de contacte de la nostra web"
722
 
723
- #: contact_form.php:1101
724
  msgid "Errors output"
725
  msgstr "Errors de sortida"
726
 
727
- #: contact_form.php:1104
728
  msgid "Display error messages"
729
  msgstr "Mostra els missatges d'error"
730
 
731
- #: contact_form.php:1105
732
  msgid "Color of the input field errors."
733
  msgstr "Color dels errors al camp d'entrada"
734
 
735
- #: contact_form.php:1106
736
  msgid "Display error messages & color of the input field errors"
737
  msgstr "Mostra els missatges d'error i el color dels errors del camp d'entrada"
738
 
739
- #: contact_form.php:1111
740
  msgid "Add placeholder to the input blocks"
741
  msgstr "Afegeix marcador de posició als blocs d'entrada"
742
 
743
- #: contact_form.php:1117
744
  msgid "Add tooltips"
745
  msgstr "Afegir consells sobre les eines"
746
 
747
- #: contact_form.php:1131
748
  msgid "Email address"
749
  msgstr "Adreça de correu electrònic:"
750
 
751
- #: contact_form.php:1136
752
  msgid "Phone Number"
753
  msgstr "Nombre de telèfon"
754
 
755
- #: contact_form.php:1150
756
  msgid "Attachment"
757
  msgstr "Adjunt:"
758
 
759
- #: contact_form.php:1155
760
  msgid "(powered by bestwebsoft.com)"
761
  msgstr "(Impulsat per bestwebsoft.com)"
762
 
763
- #: contact_form.php:1160
764
  msgid "Style options"
765
  msgstr "Opcions d'estil"
766
 
767
- #: contact_form.php:1163
768
  msgid "Text color"
769
  msgstr "Color del text"
770
 
771
- #: contact_form.php:1166
772
- #: contact_form.php:1171
773
- #: contact_form.php:1181
774
- #: contact_form.php:1186
775
- #: contact_form.php:1191
776
- #: contact_form.php:1196
777
- #: contact_form.php:1206
778
- #: contact_form.php:1211
779
- #: contact_form.php:1217
780
- #: contact_form.php:1228
781
- #: contact_form.php:1233
782
- #: contact_form.php:1238
783
  msgid "Default"
784
  msgstr "Per defecte"
785
 
786
- #: contact_form.php:1168
787
  msgid "Label text color"
788
  msgstr "Color del text de l'etiqeta"
789
 
790
- #: contact_form.php:1173
791
  msgid "Placeholder color"
792
  msgstr "Color del marcador de posició"
793
 
794
- #: contact_form.php:1178
795
  msgid "Errors color"
796
  msgstr "Color dels errors"
797
 
798
- #: contact_form.php:1183
799
  msgid "Error text color"
800
  msgstr "Color del text d'error"
801
 
802
- #: contact_form.php:1188
803
  msgid "Background color of the input field errors"
804
  msgstr "Color de fons dels errors del camp d'entrada"
805
 
806
- #: contact_form.php:1193
807
  msgid "Border color of the input field errors"
808
  msgstr "Color de la vora dels errors del camp d'entrada"
809
 
810
- #: contact_form.php:1198
811
  msgid "Placeholder color of the input field errors"
812
  msgstr "Color del marcador de posició dels errors del camp d'entrada"
813
 
814
- #: contact_form.php:1203
815
  msgid "Input fields"
816
  msgstr "Visualitza l'adjunt"
817
 
818
- #: contact_form.php:1208
819
  msgid "Input fields background color"
820
  msgstr "Color de fons dels camps d'entrada"
821
 
822
- #: contact_form.php:1213
823
  msgid "Text fields color"
824
  msgstr "Color dels camps de text"
825
 
826
- #: contact_form.php:1215
827
  msgid "Border width in px, numbers only"
828
  msgstr "Ample de vora en px, sols nombres"
829
 
830
- #: contact_form.php:1219
831
- #: contact_form.php:1240
832
  msgid "Border color"
833
  msgstr "Color de la vora"
834
 
835
- #: contact_form.php:1224
836
  msgid "Submit button"
837
  msgstr "Enviar"
838
 
839
  # #: contact_form.php:928
840
- #: contact_form.php:1226
841
  msgid "Width in px, numbers only"
842
  msgstr "Ample en px, sols nombres"
843
 
844
- #: contact_form.php:1230
845
  msgid "Button color"
846
  msgstr "Color del botó"
847
 
848
- #: contact_form.php:1235
849
  msgid "Button text color"
850
  msgstr "Color del text del botó"
851
 
852
- #: contact_form.php:1256
853
  msgid "Contact Form Pro | Preview"
854
  msgstr "Contact Form Pro | Vista prèvia"
855
 
856
- #: contact_form.php:1259
857
  msgid "Show with errors"
858
  msgstr "Mostra amb errors"
859
 
860
- #: contact_form.php:1267
861
- #: contact_form.php:1269
862
  msgid "Please enter your full name..."
863
  msgstr "Si us plau introduïu el nom complet"
864
 
865
- #: contact_form.php:1280
866
- #: contact_form.php:1282
867
  msgid "Please enter your address..."
868
  msgstr "Si us plau introduïu l'adreça"
869
 
870
- #: contact_form.php:1291
871
- #: contact_form.php:1293
872
  msgid "Please enter your email address..."
873
  msgstr "Si us plau introdueixi el seu e-mail"
874
 
875
- #: contact_form.php:1302
876
- #: contact_form.php:1304
877
  msgid "Please enter your phone number..."
878
  msgstr "Si us plau introduïu el nombre de telèfon"
879
 
880
- #: contact_form.php:1313
881
- #: contact_form.php:1315
882
  msgid "Please enter subject..."
883
  msgstr "Si us plau introduïu l'assumpte"
884
 
885
- #: contact_form.php:1323
886
- #: contact_form.php:1325
887
  msgid "Please enter your message..."
888
  msgstr "Si us plau introduïu el missatge"
889
 
890
- #: contact_form.php:1367
891
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
892
  msgstr ""
893
 
894
- #: contact_form.php:1369
895
  msgid "Please, go to"
896
  msgstr ""
897
 
898
- #: contact_form.php:1369
899
  #, fuzzy
900
  msgid "the setting page"
901
  msgstr "Configuració extra"
902
 
903
- #: contact_form.php:1370
904
  msgid "You will be redirected automatically in 5 seconds."
905
  msgstr ""
906
 
907
- #: contact_form.php:1375
908
  msgid "You can download and activate"
909
  msgstr ""
910
 
911
- #: contact_form.php:1377
912
  msgid "version of this plugin by entering Your license key."
913
  msgstr ""
914
 
915
- #: contact_form.php:1379
916
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
917
  msgstr ""
918
 
919
- #: contact_form.php:1381
920
  msgid "(your username is the email you specify when purchasing the product)."
921
  msgstr ""
922
 
923
- #: contact_form.php:1389
924
- #: contact_form.php:1399
925
  msgid "Go!"
926
  msgstr ""
927
 
928
- #: contact_form.php:1449
929
  msgid "Sorry, email message could not be delivered."
930
  msgstr "Ho sentim, el seu e-mail no ha pogut ser lliurat."
931
 
932
- #: contact_form.php:1835
933
  msgid "Contact from"
934
  msgstr "Contact from"
935
 
936
- #: contact_form.php:1848
937
- #: contact_form.php:1874
938
  msgid "Email"
939
  msgstr "Adreça de correu electrònic"
940
 
941
- #: contact_form.php:1852
942
- #: contact_form.php:1876
943
  msgid "Phone"
944
  msgstr "Telèfon"
945
 
946
- #: contact_form.php:1861
947
- #: contact_form.php:1879
948
  msgid "Site"
949
  msgstr "Lloc"
950
 
951
- #: contact_form.php:1941
952
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
953
  msgstr "Si pot veure aquest MIME, vol dir que el tipus MIME no és compatible amb el seu client de correu electrònic!"
954
 
955
- #: contact_form.php:2009
956
  msgid "FAQ"
957
  msgstr "FAQ"
958
 
959
- #: contact_form.php:2010
960
  msgid "Support"
961
  msgstr "Suport"
962
 
963
- #: contact_form.php:2068
964
  msgid "Are you sure that you want to delete this language data?"
965
  msgstr "Està vostè segur que vol esborrar aquest idioma?"
966
 
967
- #: contact_form.php:2223
968
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
969
  msgstr ""
970
 
971
- #: contact_form.php:2224
972
  msgid "Extend standard plugin functionality with new great options."
973
  msgstr ""
974
 
975
- #: contact_form.php:2233
976
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
977
  msgstr ""
978
 
979
- #: contact_form.php:2234
980
  msgid "Manage messages that have been sent from your website."
981
  msgstr ""
982
 
 
 
 
 
 
 
 
 
 
 
983
  #~ msgid "Contact Form Pro Extra Settings"
984
  #~ msgstr "Opcions extra del Contact Form Pro"
985
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:37+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:37+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Kenneth <kenneth@snollocer.net>\n"
9
  "Language: ca_ES\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  msgid "Contact Form Settings"
22
  msgstr "Opcions Contact Form"
23
 
24
+ #: contact_form.php:73
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
+ #: contact_form.php:149
29
+ #: contact_form.php:1131
30
+ #: contact_form.php:1165
31
  msgid "Name:"
32
  msgstr "Nom:"
33
 
34
+ #: contact_form.php:150
35
+ #: contact_form.php:1132
36
+ #: contact_form.php:1166
37
  msgid "Address:"
38
  msgstr "Adreça:"
39
 
40
+ #: contact_form.php:151
41
+ #: contact_form.php:1133
42
+ #: contact_form.php:1167
43
  msgid "Email Address:"
44
  msgstr "Adreça de correu electrònic:"
45
 
46
+ #: contact_form.php:152
47
+ #: contact_form.php:1134
48
+ #: contact_form.php:1168
49
  msgid "Phone number:"
50
  msgstr "Nombre de telèfon"
51
 
52
+ #: contact_form.php:153
53
+ #: contact_form.php:1135
54
+ #: contact_form.php:1169
55
  msgid "Subject:"
56
  msgstr "Asumpte:"
57
 
58
+ #: contact_form.php:154
59
+ #: contact_form.php:1136
60
+ #: contact_form.php:1170
61
  msgid "Message:"
62
  msgstr "Missatge:"
63
 
64
+ #: contact_form.php:155
65
+ #: contact_form.php:1137
66
+ #: contact_form.php:1171
67
  msgid "Attachment:"
68
  msgstr "Adjunt:"
69
 
70
+ #: contact_form.php:156
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Formats de fitxer suportats: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Mida màxima: 2MB"
73
 
74
+ #: contact_form.php:157
75
+ #: contact_form.php:1139
76
+ #: contact_form.php:1173
77
  msgid "Send me a copy"
78
  msgstr "Envia'm una còpia"
79
 
80
+ #: contact_form.php:158
81
+ #: contact_form.php:1140
82
+ #: contact_form.php:1174
83
  msgid "Submit"
84
  msgstr "Enviar"
85
 
86
+ #: contact_form.php:159
87
  msgid "Your name is required."
88
  msgstr "El seu nom es obligatori."
89
 
90
+ #: contact_form.php:160
91
  msgid "Address is required."
92
  msgstr "Una adreça vàlida és obligatòria."
93
 
94
+ #: contact_form.php:161
95
  msgid "A valid email address is required."
96
  msgstr "Una Adreça de correu electrònic és obligatòria."
97
 
98
+ #: contact_form.php:162
99
  msgid "Phone number is required."
100
  msgstr "El seu nombre de telèfon és obligatori."
101
 
102
+ #: contact_form.php:163
103
  msgid "Subject is required."
104
  msgstr "L'assumpte és obligatori."
105
 
106
+ #: contact_form.php:164
107
  msgid "Message text is required."
108
  msgstr "El missatge és obligatori."
109
 
110
+ #: contact_form.php:165
111
  msgid "File format is not valid."
112
  msgstr "El format de l'adjunt és incorrecte."
113
 
114
+ #: contact_form.php:166
115
  msgid "File upload error."
116
  msgstr "Error de càrrega del fitxer"
117
 
118
+ #: contact_form.php:167
119
  msgid "The file could not be uploaded."
120
  msgstr "El fitxer no ha pogut ser carregat"
121
 
122
+ #: contact_form.php:168
123
  msgid "This file is too large."
124
  msgstr "Aquest document és massa gran."
125
 
126
+ #: contact_form.php:169
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Si us plau completi el CAPTCHA"
129
 
130
+ #: contact_form.php:170
131
  msgid "Please make corrections below and try again."
132
  msgstr "Si us plau, corregeixi les dades i provi un altre cop."
133
 
134
+ #: contact_form.php:172
135
  msgid "Thank you for contacting us."
136
  msgstr "Gràcies per contactar amb nosaltres"
137
 
138
+ #: contact_form.php:322
139
  #, fuzzy
140
  msgid "requires"
141
  msgstr "Camps requerits"
142
 
143
+ #: contact_form.php:322
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr ""
146
 
147
+ #: contact_form.php:322
148
  msgid "Back to the WordPress"
149
  msgstr ""
150
 
151
+ #: contact_form.php:322
152
  #, fuzzy
153
  msgid "Plugins page"
154
  msgstr "Plugins Pro"
155
 
156
+ #: contact_form.php:626
157
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
158
  msgstr "Si l'opció de 'redireccionament a la pàgina' està seleccionat llavors el camp URL ha d'estar en el següent format"
159
 
160
+ #: contact_form.php:635
161
  msgid "Such user does not exist. Settings are not saved."
162
  msgstr "Usuari inexistent. Els canvis no s'han desat."
163
 
164
+ #: contact_form.php:639
165
+ #: contact_form.php:645
166
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
167
  msgstr "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis no s'han desat."
168
 
169
+ #: contact_form.php:661
170
  msgid "Settings saved."
171
  msgstr "Configuració desada."
172
 
173
+ #: contact_form.php:688
174
+ #: contact_form.php:720
175
  msgid "Wrong license key"
176
  msgstr ""
177
 
178
+ #: contact_form.php:713
179
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
180
  msgstr ""
181
 
182
+ #: contact_form.php:722
183
  msgid "This license key is bind to another site"
184
  msgstr ""
185
 
186
+ #: contact_form.php:724
187
+ #: contact_form.php:1570
188
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
189
  msgstr ""
190
 
191
+ #: contact_form.php:741
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
 
195
+ #: contact_form.php:747
196
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
+ #: contact_form.php:751
200
+ #: contact_form.php:760
201
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
+ #: contact_form.php:764
205
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
206
  msgstr ""
207
 
208
+ #: contact_form.php:779
209
  #, fuzzy
210
  msgid "Please, enter Your license key"
211
  msgstr "Si us plau introduïu el missatge"
212
 
213
+ #: contact_form.php:787
214
+ #: contact_form.php:2216
215
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
216
  msgid "Settings"
217
  msgstr "Configuració"
218
 
219
+ #: contact_form.php:788
220
  msgid "Extra settings"
221
  msgstr "Configuració extra"
222
 
223
+ #: contact_form.php:789
224
  msgid "Go PRO"
225
  msgstr ""
226
 
227
+ #: contact_form.php:792
228
+ msgid "Notice:"
229
+ msgstr ""
230
+
231
+ #: contact_form.php:792
232
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
233
+ msgstr ""
234
+
235
+ #: contact_form.php:798
236
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
237
+ msgstr ""
238
+
239
+ #: contact_form.php:804
240
+ #: contact_form.php:809
241
+ #: contact_form.php:1529
242
  msgid "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:"
243
  msgstr "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el seu missatge, pàgina o widget:"
244
 
245
+ #: contact_form.php:804
246
+ #: contact_form.php:805
247
+ #: contact_form.php:809
248
+ #: contact_form.php:810
249
+ #: contact_form.php:1155
250
+ #: contact_form.php:1157
251
+ #: contact_form.php:1212
252
+ #: contact_form.php:1214
253
  msgid "or"
254
  msgstr ""
255
 
256
+ #: contact_form.php:805
257
+ #: contact_form.php:810
258
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
259
  msgstr ""
260
 
261
+ #: contact_form.php:806
262
+ #: contact_form.php:811
263
  msgid "They work the same way."
264
  msgstr ""
265
 
266
+ #: contact_form.php:807
267
+ #: contact_form.php:812
268
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
269
  msgstr "Si la informació d'aquest camp queda buida, s'usarà l'adreça especificada durant el registre."
270
 
271
+ #: contact_form.php:817
272
  msgid "The user's email address:"
273
  msgstr "Adreça de correu electrònic de l'usuari:"
274
 
275
+ #: contact_form.php:821
276
  msgid "Create a username"
277
  msgstr "Seleccioni un nom d'usuari"
278
 
279
+ #: contact_form.php:828
280
  msgid "Enter a username of the person who should get the messages from the contact form."
281
  msgstr "Introdueixi el nom de l'usuari que rebrà missatges des de contact form"
282
 
283
+ #: contact_form.php:832
284
  msgid "Use this email address:"
285
  msgstr "Usi aquesta adreça de correu electrònic::"
286
 
287
+ #: contact_form.php:835
288
  msgid "Enter the email address you want the messages forwarded to."
289
  msgstr "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
290
 
291
+ #: contact_form.php:844
292
  msgid "Add department selectbox to the contact form:"
293
  msgstr ""
294
 
295
+ #: contact_form.php:852
296
+ #: contact_form.php:1412
297
  msgid "If you upgrade to Pro version all your settings will be saved."
298
  msgstr ""
299
 
300
+ #: contact_form.php:859
301
+ #: contact_form.php:997
302
+ #: contact_form.php:1071
303
+ #: contact_form.php:1419
304
+ msgid "Unlock premium options by upgrading to a PRO version."
305
+ msgstr ""
306
 
307
+ #: contact_form.php:860
308
+ #: contact_form.php:998
309
+ #: contact_form.php:1072
310
+ #: contact_form.php:1420
311
+ #: contact_form.php:2473
312
+ #: contact_form.php:2489
313
+ msgid "Learn More"
314
+ msgstr ""
315
 
316
+ #: contact_form.php:863
317
+ #: contact_form.php:1001
318
+ #: contact_form.php:1075
319
+ #: contact_form.php:1423
320
+ msgid "Go"
321
+ msgstr ""
322
+
323
+ #: contact_form.php:870
324
  msgid "Save emails to the database"
325
  msgstr ""
326
 
327
+ #: contact_form.php:876
328
  msgid "Using"
329
  msgstr ""
330
 
331
+ #: contact_form.php:876
332
+ #: contact_form.php:1048
333
+ #: contact_form.php:1051
334
+ #: contact_form.php:1055
335
  msgid "powered by"
336
  msgstr ""
337
 
338
+ #: contact_form.php:879
339
+ #: contact_form.php:883
340
  msgid "Using Contact Form to DB powered by"
341
  msgstr ""
342
 
343
+ #: contact_form.php:879
344
  #, fuzzy
345
  msgid "Activate Contact Form to DB"
346
  msgstr "Contact Form Pro"
347
 
348
+ #: contact_form.php:883
349
  #, fuzzy
350
  msgid "Download Contact Form to DB"
351
  msgstr "Contact Form Pro"
352
 
353
+ #: contact_form.php:888
354
  msgid "Additional options"
355
  msgstr "Opcions addicionals"
356
 
357
+ #: contact_form.php:890
358
  msgid "Show"
359
  msgstr ""
360
 
361
+ #: contact_form.php:891
362
  msgid "Hide"
363
  msgstr ""
364
 
365
+ #: contact_form.php:895
366
  msgid "What to use?"
367
  msgstr "Què usar?"
368
 
369
+ #: contact_form.php:898
370
  msgid "Wp-mail"
371
  msgstr "Wp-mail"
372
 
373
+ #: contact_form.php:898
374
  msgid "You can use the wp_mail function for mailing"
375
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
376
 
377
+ #: contact_form.php:900
378
  msgid "Mail"
379
  msgstr "Mail"
380
 
381
+ #: contact_form.php:900
382
  msgid "To send mail you can use the php mail function"
383
  msgstr "Per enviar correu vostè pot usar la funció 'php mail'"
384
 
385
+ #: contact_form.php:904
386
  #, fuzzy
387
  msgid "The text in the 'From' field"
388
  msgstr "Modifica el camp DE al contact form"
389
 
390
+ #: contact_form.php:906
391
  msgid "User name"
392
  msgstr ""
393
 
394
+ #: contact_form.php:907
395
  #, fuzzy
396
  msgid "The name of the user who fills the form will be used in the field 'From'."
397
  msgstr "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de posar al camp 'From'."
398
 
399
+ #: contact_form.php:910
400
  #, fuzzy
401
  msgid "This text will be used in the 'FROM' field"
402
  msgstr "Aquesta adreça de correu electrònic s'utilitzarà al camp 'De'"
403
 
404
+ #: contact_form.php:914
405
  #, fuzzy
406
  msgid "The email address in the 'From' field"
407
  msgstr "Introduir el correu electrònic al camp 'From'"
408
 
409
+ #: contact_form.php:916
410
  msgid "User email"
411
  msgstr ""
412
 
413
+ #: contact_form.php:917
414
  msgid "The email address of the user who fills the form will be used in the field 'From'."
415
  msgstr "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de posar al camp 'From'."
416
 
417
+ #: contact_form.php:920
418
  msgid "This email address will be used in the 'From' field."
419
  msgstr "Aquesta adreça de correu electrònic s'utilitzarà al camp 'De'"
420
 
421
+ #: contact_form.php:924
422
  #, fuzzy
423
  msgid "Required symbol"
424
  msgstr "Camps requerits"
425
 
426
+ #: contact_form.php:934
427
  msgid "Fields"
428
  msgstr ""
429
 
430
+ #: contact_form.php:935
431
  msgid "Used"
432
  msgstr ""
433
 
434
+ #: contact_form.php:936
435
  #, fuzzy
436
  msgid "Required"
437
  msgstr "Camps requerits"
438
 
439
+ #: contact_form.php:937
440
  msgid "Visible"
441
  msgstr ""
442
 
443
+ #: contact_form.php:938
444
  msgid "Disabled for editing"
445
  msgstr ""
446
 
447
+ #: contact_form.php:939
448
  msgid "Field's default value"
449
  msgstr ""
450
 
451
+ #: contact_form.php:944
452
+ #: contact_form.php:1287
453
+ #: contact_form.php:2059
454
+ #: contact_form.php:2089
455
  msgid "Name"
456
  msgstr "Nom"
457
 
458
+ #: contact_form.php:952
459
+ #: contact_form.php:1292
460
+ #: contact_form.php:2063
461
+ #: contact_form.php:2091
462
  msgid "Address"
463
  msgstr "Adreça:"
464
 
465
+ #: contact_form.php:960
466
  msgid "Email Address"
467
  msgstr "Adreça de correu electrònic:"
468
 
469
+ #: contact_form.php:968
470
  #, fuzzy
471
  msgid "Phone number"
472
  msgstr "Nombre de telèfon"
473
 
474
+ #: contact_form.php:976
475
+ #: contact_form.php:1307
476
+ #: contact_form.php:2073
477
+ #: contact_form.php:2095
478
  msgid "Subject"
479
  msgstr "Assumpte"
480
 
481
+ #: contact_form.php:984
482
+ #: contact_form.php:1311
483
+ #: contact_form.php:2076
484
+ #: contact_form.php:2096
485
  msgid "Message"
486
  msgstr "MIssatge"
487
 
488
+ #: contact_form.php:1008
489
  msgid "Attachment block"
490
  msgstr "Adjunt blocat"
491
 
492
+ #: contact_form.php:1010
493
  msgid "Users can attach the following file formats"
494
  msgstr "Els usuaris poden adjuntar els següents formats d'arxiu"
495
 
496
+ #: contact_form.php:1023
497
  msgid "Add to the form"
498
  msgstr ""
499
 
500
+ #: contact_form.php:1028
501
  #, fuzzy
502
  msgid "Tips below the Attachment"
503
  msgstr "Consells del blocatge de l'adjunt"
504
 
505
+ #: contact_form.php:1037
506
  #, fuzzy
507
  msgid "'Send me a copy' block"
508
  msgstr "Envia'm una còpia"
509
 
510
+ #: contact_form.php:1048
511
+ #: contact_form.php:1051
512
+ #: contact_form.php:1055
513
+ #: contact_form.php:1321
514
  msgid "Captcha"
515
  msgstr "Captcha"
516
 
517
+ #: contact_form.php:1051
518
  msgid "Activate captcha"
519
  msgstr "Captcha activat"
520
 
521
+ #: contact_form.php:1055
522
  msgid "Download captcha"
523
  msgstr "Descarrega captcha"
524
 
525
+ #: contact_form.php:1063
526
  msgid "Agreement checkbox"
527
  msgstr ""
528
 
529
+ #: contact_form.php:1063
530
  msgid "Required checkbox for submitting the form"
531
  msgstr ""
532
 
533
+ #: contact_form.php:1064
534
  msgid "Optional checkbox"
535
  msgstr ""
536
 
537
+ #: contact_form.php:1064
538
  msgid "Optional checkbox, the results of which will be displayed in email"
539
  msgstr ""
540
 
541
+ #: contact_form.php:1081
542
  msgid "Delete an attachment file from the server after the email is sent"
543
  msgstr ""
544
 
545
+ #: contact_form.php:1087
546
  msgid "Email in HTML format sending"
547
  msgstr ""
548
 
549
+ #: contact_form.php:1091
550
  msgid "Display additional info in the email"
551
  msgstr "Mostra informació addicional al correu electrònic,"
552
 
553
+ #: contact_form.php:1096
554
+ #: contact_form.php:2026
555
+ #: contact_form.php:2028
556
  msgid "Sent from (ip address)"
557
  msgstr "Enviat des de (adreça IP)"
558
 
559
+ #: contact_form.php:1096
560
  #, fuzzy
561
  msgid "Example: Sent from (IP address):\t127.0.0.1"
562
  msgstr "Enviat des de (adreça IP)"
563
 
564
+ #: contact_form.php:1097
565
+ #: contact_form.php:2032
566
+ #: contact_form.php:2034
567
  msgid "Date/Time"
568
  msgstr "Data/hora"
569
 
570
+ #: contact_form.php:1097
571
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
572
  msgstr ""
573
 
574
+ #: contact_form.php:1098
575
+ #: contact_form.php:2038
576
+ #: contact_form.php:2040
577
  msgid "Sent from (referer)"
578
  msgstr "Enviat des de (referent)"
579
 
580
+ #: contact_form.php:1098
581
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
582
  msgstr ""
583
 
584
+ #: contact_form.php:1099
585
+ #: contact_form.php:2044
586
+ #: contact_form.php:2046
587
  msgid "Using (user agent)"
588
  msgstr "Usant (user agent)"
589
 
590
+ #: contact_form.php:1099
591
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
592
  msgstr ""
593
 
594
+ #: contact_form.php:1103
595
  msgid "Language settings for the field names in the form"
596
  msgstr "Configuració de la llengua als noms dels camps del formulari"
597
 
598
+ #: contact_form.php:1112
599
  msgid "Add a language"
600
  msgstr "Afegeix lengua"
601
 
602
+ #: contact_form.php:1116
603
  msgid "Change the names of the contact form fields and error messages"
604
  msgstr "Modifica els noms dels camps i els missatges d'error del formulari de contacte"
605
 
606
+ #: contact_form.php:1121
607
+ #: contact_form.php:1202
608
  msgid "English"
609
  msgstr "Anglès"
610
 
611
+ #: contact_form.php:1129
612
+ #: contact_form.php:1163
613
  msgid "click to expand/hide the list"
614
  msgstr ""
615
 
616
+ #: contact_form.php:1138
617
+ #: contact_form.php:1172
618
  #, fuzzy
619
  msgid "Tips below the Attachment block"
620
  msgstr "Consells del blocatge de l'adjunt"
621
 
622
+ #: contact_form.php:1141
623
+ #: contact_form.php:1175
624
  msgid "Error message for the Name field"
625
  msgstr "Missatge d'error per al camp 'Nom'"
626
 
627
+ #: contact_form.php:1142
628
+ #: contact_form.php:1176
629
  msgid "Error message for the Address field"
630
  msgstr "Missatge d'error per al camp 'Adreça'"
631
 
632
+ #: contact_form.php:1143
633
+ #: contact_form.php:1177
634
  msgid "Error message for the Email field"
635
  msgstr "Missatge d'error per al camp 'Adreça de correu electrònic'"
636
 
637
+ #: contact_form.php:1144
638
+ #: contact_form.php:1178
639
  msgid "Error message for the Phone field"
640
  msgstr "Missatge d'error per al camp 'Telèfon\""
641
 
642
+ #: contact_form.php:1145
643
+ #: contact_form.php:1179
644
  msgid "Error message for the Subject field"
645
  msgstr "Missatge d'error per al camp 'Assumpte'"
646
 
647
+ #: contact_form.php:1146
648
+ #: contact_form.php:1180
649
  msgid "Error message for the Message field"
650
  msgstr "Missatge d'error per al camp 'Missatge'"
651
 
652
+ #: contact_form.php:1147
653
+ #: contact_form.php:1181
654
  msgid "Error message about the file type for the Attachment field"
655
  msgstr "Missatge d'error sobre el tipus de per al camp 'Adjunt'"
656
 
657
+ #: contact_form.php:1148
658
+ #: contact_form.php:1182
659
  msgid "Error message while uploading a file for the Attachment field to the server"
660
  msgstr "Missatge d'error al carregar al servidor un fitxer per al camp Adjunt"
661
 
662
+ #: contact_form.php:1149
663
+ #: contact_form.php:1183
664
  msgid "Error message while moving the file for the Attachment field"
665
  msgstr "Missatge d'error al mourerun fitxer per al camp Adjunt"
666
 
667
+ #: contact_form.php:1150
668
+ #: contact_form.php:1184
669
  msgid "Error message when file size limit for the Attachment field is exceeded"
670
  msgstr "Missatge d'error al superar el límit de mida de fitxer per al camp Adjunt"
671
 
672
+ #: contact_form.php:1151
673
+ #: contact_form.php:1185
674
  msgid "Error message for the Captcha field"
675
  msgstr "Missatge d'error al camp Captcha"
676
 
677
+ #: contact_form.php:1152
678
+ #: contact_form.php:1186
679
  msgid "Error message for the whole form"
680
  msgstr "Missatge d'error a tot el formulari"
681
 
682
+ #: contact_form.php:1155
683
+ #: contact_form.php:1157
684
+ #: contact_form.php:1189
685
+ #: contact_form.php:1191
686
+ #: contact_form.php:1212
687
+ #: contact_form.php:1214
688
+ #: contact_form.php:1222
689
+ #: contact_form.php:1224
690
  msgid "Use shortcode"
691
  msgstr "useu un codi curt"
692
 
693
+ #: contact_form.php:1155
694
+ #: contact_form.php:1157
695
+ #: contact_form.php:1189
696
+ #: contact_form.php:1191
697
+ #: contact_form.php:1212
698
+ #: contact_form.php:1214
699
+ #: contact_form.php:1222
700
+ #: contact_form.php:1224
701
  msgid "for this language"
702
  msgstr "Per aquesta llengua"
703
 
704
+ #: contact_form.php:1199
705
  msgid "Action after email is sent"
706
  msgstr "Accions després d'enviar un correu electrònic."
707
 
708
+ #: contact_form.php:1201
709
  msgid "Display text"
710
  msgstr "Mostra el text"
711
 
712
+ #: contact_form.php:1210
713
+ #: contact_form.php:1220
714
  msgid "Text"
715
  msgstr "Text"
716
 
717
+ #: contact_form.php:1231
718
  msgid "Redirect to the page"
719
  msgstr "Redirigir a la pàgina"
720
 
721
+ #: contact_form.php:1232
722
  msgid "Url"
723
  msgstr "Url"
724
 
725
+ #: contact_form.php:1236
726
  msgid "The $_SERVER variable that is used to build a URL of the form"
727
  msgstr ""
728
 
729
+ #: contact_form.php:1240
730
  msgid "If you are not sure whether to change this setting or not, please do not do that."
731
  msgstr ""
732
 
733
+ #: contact_form.php:1246
734
+ #: contact_form.php:1430
735
  msgid "Save Changes"
736
  msgstr "Desar els canvis"
737
 
738
+ #: contact_form.php:1251
739
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
740
  msgstr ""
741
 
742
+ #: contact_form.php:1252
743
  #, fuzzy
744
  msgid "Rate the plugin"
745
  msgstr "Plugins gratuïts"
746
 
747
+ #: contact_form.php:1255
748
  #, fuzzy
749
  msgid "If there is something wrong about it, please contact us"
750
  msgstr "Si té alguna pregunta, contacti'ns si us plau via plugin@bestwebsoft.com o utilitzi el formulari de contacte de la nostra web"
751
 
752
+ #: contact_form.php:1267
753
  msgid "Errors output"
754
  msgstr "Errors de sortida"
755
 
756
+ #: contact_form.php:1270
757
  msgid "Display error messages"
758
  msgstr "Mostra els missatges d'error"
759
 
760
+ #: contact_form.php:1271
761
  msgid "Color of the input field errors."
762
  msgstr "Color dels errors al camp d'entrada"
763
 
764
+ #: contact_form.php:1272
765
  msgid "Display error messages & color of the input field errors"
766
  msgstr "Mostra els missatges d'error i el color dels errors del camp d'entrada"
767
 
768
+ #: contact_form.php:1277
769
  msgid "Add placeholder to the input blocks"
770
  msgstr "Afegeix marcador de posició als blocs d'entrada"
771
 
772
+ #: contact_form.php:1283
773
  msgid "Add tooltips"
774
  msgstr "Afegir consells sobre les eines"
775
 
776
+ #: contact_form.php:1297
777
  msgid "Email address"
778
  msgstr "Adreça de correu electrònic:"
779
 
780
+ #: contact_form.php:1302
781
  msgid "Phone Number"
782
  msgstr "Nombre de telèfon"
783
 
784
+ #: contact_form.php:1316
785
  msgid "Attachment"
786
  msgstr "Adjunt:"
787
 
788
+ #: contact_form.php:1321
789
  msgid "(powered by bestwebsoft.com)"
790
  msgstr "(Impulsat per bestwebsoft.com)"
791
 
792
+ #: contact_form.php:1326
793
  msgid "Style options"
794
  msgstr "Opcions d'estil"
795
 
796
+ #: contact_form.php:1329
797
  msgid "Text color"
798
  msgstr "Color del text"
799
 
800
+ #: contact_form.php:1332
801
+ #: contact_form.php:1337
802
+ #: contact_form.php:1347
803
+ #: contact_form.php:1352
804
+ #: contact_form.php:1357
805
+ #: contact_form.php:1362
806
+ #: contact_form.php:1372
807
+ #: contact_form.php:1377
808
+ #: contact_form.php:1383
809
+ #: contact_form.php:1394
810
+ #: contact_form.php:1399
811
+ #: contact_form.php:1404
812
  msgid "Default"
813
  msgstr "Per defecte"
814
 
815
+ #: contact_form.php:1334
816
  msgid "Label text color"
817
  msgstr "Color del text de l'etiqeta"
818
 
819
+ #: contact_form.php:1339
820
  msgid "Placeholder color"
821
  msgstr "Color del marcador de posició"
822
 
823
+ #: contact_form.php:1344
824
  msgid "Errors color"
825
  msgstr "Color dels errors"
826
 
827
+ #: contact_form.php:1349
828
  msgid "Error text color"
829
  msgstr "Color del text d'error"
830
 
831
+ #: contact_form.php:1354
832
  msgid "Background color of the input field errors"
833
  msgstr "Color de fons dels errors del camp d'entrada"
834
 
835
+ #: contact_form.php:1359
836
  msgid "Border color of the input field errors"
837
  msgstr "Color de la vora dels errors del camp d'entrada"
838
 
839
+ #: contact_form.php:1364
840
  msgid "Placeholder color of the input field errors"
841
  msgstr "Color del marcador de posició dels errors del camp d'entrada"
842
 
843
+ #: contact_form.php:1369
844
  msgid "Input fields"
845
  msgstr "Visualitza l'adjunt"
846
 
847
+ #: contact_form.php:1374
848
  msgid "Input fields background color"
849
  msgstr "Color de fons dels camps d'entrada"
850
 
851
+ #: contact_form.php:1379
852
  msgid "Text fields color"
853
  msgstr "Color dels camps de text"
854
 
855
+ #: contact_form.php:1381
856
  msgid "Border width in px, numbers only"
857
  msgstr "Ample de vora en px, sols nombres"
858
 
859
+ #: contact_form.php:1385
860
+ #: contact_form.php:1406
861
  msgid "Border color"
862
  msgstr "Color de la vora"
863
 
864
+ #: contact_form.php:1390
865
  msgid "Submit button"
866
  msgstr "Enviar"
867
 
868
  # #: contact_form.php:928
869
+ #: contact_form.php:1392
870
  msgid "Width in px, numbers only"
871
  msgstr "Ample en px, sols nombres"
872
 
873
+ #: contact_form.php:1396
874
  msgid "Button color"
875
  msgstr "Color del botó"
876
 
877
+ #: contact_form.php:1401
878
  msgid "Button text color"
879
  msgstr "Color del text del botó"
880
 
881
+ #: contact_form.php:1434
882
  msgid "Contact Form Pro | Preview"
883
  msgstr "Contact Form Pro | Vista prèvia"
884
 
885
+ #: contact_form.php:1437
886
  msgid "Show with errors"
887
  msgstr "Mostra amb errors"
888
 
889
+ #: contact_form.php:1445
890
+ #: contact_form.php:1447
891
  msgid "Please enter your full name..."
892
  msgstr "Si us plau introduïu el nom complet"
893
 
894
+ #: contact_form.php:1458
895
+ #: contact_form.php:1460
896
  msgid "Please enter your address..."
897
  msgstr "Si us plau introduïu l'adreça"
898
 
899
+ #: contact_form.php:1469
900
+ #: contact_form.php:1471
901
  msgid "Please enter your email address..."
902
  msgstr "Si us plau introdueixi el seu e-mail"
903
 
904
+ #: contact_form.php:1480
905
+ #: contact_form.php:1482
906
  msgid "Please enter your phone number..."
907
  msgstr "Si us plau introduïu el nombre de telèfon"
908
 
909
+ #: contact_form.php:1491
910
+ #: contact_form.php:1493
911
  msgid "Please enter subject..."
912
  msgstr "Si us plau introduïu l'assumpte"
913
 
914
+ #: contact_form.php:1501
915
+ #: contact_form.php:1503
916
  msgid "Please enter your message..."
917
  msgstr "Si us plau introduïu el missatge"
918
 
919
+ #: contact_form.php:1545
920
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
921
  msgstr ""
922
 
923
+ #: contact_form.php:1547
924
  msgid "Please, go to"
925
  msgstr ""
926
 
927
+ #: contact_form.php:1547
928
  #, fuzzy
929
  msgid "the setting page"
930
  msgstr "Configuració extra"
931
 
932
+ #: contact_form.php:1548
933
  msgid "You will be redirected automatically in 5 seconds."
934
  msgstr ""
935
 
936
+ #: contact_form.php:1553
937
  msgid "You can download and activate"
938
  msgstr ""
939
 
940
+ #: contact_form.php:1555
941
  msgid "version of this plugin by entering Your license key."
942
  msgstr ""
943
 
944
+ #: contact_form.php:1557
945
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
946
  msgstr ""
947
 
948
+ #: contact_form.php:1559
949
  msgid "(your username is the email you specify when purchasing the product)."
950
  msgstr ""
951
 
952
+ #: contact_form.php:1567
953
+ #: contact_form.php:1577
954
  msgid "Go!"
955
  msgstr ""
956
 
957
+ #: contact_form.php:1647
958
  msgid "Sorry, email message could not be delivered."
959
  msgstr "Ho sentim, el seu e-mail no ha pogut ser lliurat."
960
 
961
+ #: contact_form.php:2053
962
  msgid "Contact from"
963
  msgstr "Contact from"
964
 
965
+ #: contact_form.php:2066
966
+ #: contact_form.php:2092
967
  msgid "Email"
968
  msgstr "Adreça de correu electrònic"
969
 
970
+ #: contact_form.php:2070
971
+ #: contact_form.php:2094
972
  msgid "Phone"
973
  msgstr "Telèfon"
974
 
975
+ #: contact_form.php:2079
976
+ #: contact_form.php:2097
977
  msgid "Site"
978
  msgstr "Lloc"
979
 
980
+ #: contact_form.php:2160
981
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
982
  msgstr "Si pot veure aquest MIME, vol dir que el tipus MIME no és compatible amb el seu client de correu electrònic!"
983
 
984
+ #: contact_form.php:2229
985
  msgid "FAQ"
986
  msgstr "FAQ"
987
 
988
+ #: contact_form.php:2230
989
  msgid "Support"
990
  msgstr "Suport"
991
 
992
+ #: contact_form.php:2280
993
  msgid "Are you sure that you want to delete this language data?"
994
  msgstr "Està vostè segur que vol esborrar aquest idioma?"
995
 
996
+ #: contact_form.php:2476
997
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
998
  msgstr ""
999
 
1000
+ #: contact_form.php:2477
1001
  msgid "Extend standard plugin functionality with new great options."
1002
  msgstr ""
1003
 
1004
+ #: contact_form.php:2492
1005
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1006
  msgstr ""
1007
 
1008
+ #: contact_form.php:2493
1009
  msgid "Manage messages that have been sent from your website."
1010
  msgstr ""
1011
 
1012
+ #~ msgid ""
1013
+ #~ "This functionality is available in the Pro version of the plugin. For "
1014
+ #~ "more details, please follow the link"
1015
+ #~ msgstr ""
1016
+ #~ "Aquesta funcionalitat està disponible en la versió Pro del connector. Per "
1017
+ #~ "a més detalls, si us plau seguiu l'enllaç"
1018
+
1019
+ #~ msgid "Contact Form Pro"
1020
+ #~ msgstr "Contact Form Pro"
1021
+
1022
  #~ msgid "Contact Form Pro Extra Settings"
1023
  #~ msgstr "Opcions extra del Contact Form Pro"
1024
 
languages/contact_form-de_DE.mo CHANGED
Binary file
languages/contact_form-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-20 14:00+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Alex <private183@web.de>\n"
9
  "Language: de_DE\n"
@@ -17,950 +17,990 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:33
21
- #: contact_form.php:660
22
  msgid "Contact Form Settings"
23
  msgstr "Kontakt-Form Einstellungen"
24
 
25
- #: contact_form.php:33
26
  msgid "Contact Form"
27
  msgstr "Kontakt-Form"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:978
31
- #: contact_form.php:1008
32
  msgid "Name:"
33
  msgstr "Name:"
34
 
35
- #: contact_form.php:81
36
- #: contact_form.php:979
37
- #: contact_form.php:1009
38
  msgid "Address:"
39
  msgstr "Adresse:"
40
 
41
- #: contact_form.php:82
42
- #: contact_form.php:980
43
- #: contact_form.php:1010
44
  msgid "Email Address:"
45
  msgstr "E-Mail Adresse:"
46
 
47
- #: contact_form.php:83
48
- #: contact_form.php:981
49
- #: contact_form.php:1011
50
  msgid "Phone number:"
51
  msgstr "Telefonnummer:"
52
 
53
- #: contact_form.php:84
54
- #: contact_form.php:982
55
- #: contact_form.php:1012
56
  msgid "Subject:"
57
  msgstr "Betreff:"
58
 
59
- #: contact_form.php:85
60
- #: contact_form.php:983
61
- #: contact_form.php:1013
62
  msgid "Message:"
63
  msgstr "Inhalt:"
64
 
65
- #: contact_form.php:86
66
- #: contact_form.php:984
67
- #: contact_form.php:1014
68
  msgid "Attachment:"
69
  msgstr "Anhang:"
70
 
71
- #: contact_form.php:87
72
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
73
  msgstr "Unterstützte Dateitypen: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max Datei-Größe: 2MB"
74
 
75
- #: contact_form.php:88
76
- #: contact_form.php:986
77
- #: contact_form.php:1016
78
  msgid "Send me a copy"
79
  msgstr "Kopie an mich senden"
80
 
81
- #: contact_form.php:89
82
- #: contact_form.php:987
83
- #: contact_form.php:1017
84
  msgid "Submit"
85
  msgstr "Senden"
86
 
87
- #: contact_form.php:90
88
  msgid "Your name is required."
89
  msgstr "Dein Name wird benötigt."
90
 
91
- #: contact_form.php:91
92
  msgid "Address is required."
93
  msgstr "Adresse wird benötigt"
94
 
95
- #: contact_form.php:92
96
  msgid "A valid email address is required."
97
  msgstr "Eine gültige E-Mail Adresse wird benötigt."
98
 
99
- #: contact_form.php:93
100
  msgid "Phone number is required."
101
  msgstr "Deine Telefonnummer wird benötigt."
102
 
103
- #: contact_form.php:94
104
  msgid "Subject is required."
105
  msgstr "Ein Betreff wird benötigt."
106
 
107
- #: contact_form.php:95
108
  msgid "Message text is required."
109
  msgstr "Ein Inhalt wird benötigt."
110
 
111
- #: contact_form.php:96
112
  msgid "File format is not valid."
113
  msgstr "Datei Format ist nicht erlaubt."
114
 
115
- #: contact_form.php:97
116
  msgid "File upload error."
117
  msgstr "Datei-Übertragungsfehler"
118
 
119
- #: contact_form.php:98
120
  msgid "The file could not be uploaded."
121
  msgstr "Die Datei konnte nicht hochgeladen werden."
122
 
123
- #: contact_form.php:99
124
  msgid "This file is too large."
125
  msgstr "Diese Datei ist zu groß."
126
 
127
- #: contact_form.php:100
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Bitte CAPTCHA ausfüllen."
130
 
131
- #: contact_form.php:101
132
  msgid "Please make corrections below and try again."
133
  msgstr "Bitte mach unten korrekturen und versuche es erneut."
134
 
135
- #: contact_form.php:103
136
  msgid "Thank you for contacting us."
137
  msgstr "Danke für Ihre Nachricht."
138
 
139
- #: contact_form.php:203
140
  msgid "requires"
141
  msgstr "benötigt"
142
 
143
- #: contact_form.php:203
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr "oder höher, darum wurde es deaktiviert! Bitte rüsten sie WordPress auf und versuchen sie es erneut."
146
 
147
- #: contact_form.php:203
148
  msgid "Back to the WordPress"
149
  msgstr "Zurück zu WordPress"
150
 
151
- #: contact_form.php:203
152
  msgid "Plugins page"
153
  msgstr "Plugin Seite"
154
 
155
- #: contact_form.php:494
156
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
157
  msgstr "Wenn die 'Redirect to page/Umleiten zur Seite' Option verwendet wird, dann sollte das Feld URL in folgendem Format sein"
158
 
159
- #: contact_form.php:503
160
  msgid "Such user does not exist. Settings are not saved."
161
  msgstr "Dieser User exestiert nicht. Einstellungen werden nicht gespeichert."
162
 
163
- #: contact_form.php:507
164
- #: contact_form.php:513
165
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
166
  msgstr "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. Einstellungen werden nicht gespeichert."
167
 
168
- #: contact_form.php:518
169
  msgid "Settings saved."
170
  msgstr "Einstellungen gespeichert."
171
 
172
- #: contact_form.php:554
173
- #: contact_form.php:593
174
  msgid "Wrong license key"
175
  msgstr "Falscher Lizenzschlüssel"
176
 
177
- #: contact_form.php:586
178
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
179
  msgstr "Etwas ging schief. Versuchen sie es später nochmals. Wenn der Fehler erneut auftritt, bitte, kontaktieren sie uns <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Wir entschuldigen für die Umstände."
180
 
181
- #: contact_form.php:595
182
  msgid "This license key is bind to another site"
183
  msgstr "Dieser Linzenz-Key ist an eine andere Seite gebunden."
184
 
185
- #: contact_form.php:597
186
- #: contact_form.php:1392
187
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
188
  msgstr "Leider haben sie die Anzahl an verfügbaren Versuchen pro Trag überschritten. Bitte laden sie das Plugin manuell hoch"
189
 
190
- #: contact_form.php:615
191
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
192
  msgstr "Fehler beim öffnen des zip Archives. Bitte laden sie das Plugin manuell hoch"
193
 
194
- #: contact_form.php:621
195
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
196
  msgstr "Ihr Server unterstützt kein ZipArchiv oder Phar. Bitte laden sie das Plugin manuell hoch"
197
 
198
- #: contact_form.php:625
199
- #: contact_form.php:634
200
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
201
  msgstr "Download des zip Archives fehlgeschlagen. Bitte laden sie das Plugin manuell hoch"
202
 
203
- #: contact_form.php:638
204
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
205
  msgstr "Etwas ging schief. Versuchen sie es später oder laden sie das plugin manuell hoch. Wir entschuldigen für die Umstände."
206
 
207
- #: contact_form.php:653
208
  msgid "Please, enter Your license key"
209
  msgstr "Bitte, geben sie Ihren Linzenzschlüssel ein"
210
 
211
- #: contact_form.php:662
212
- msgid "Notice:"
213
- msgstr "Notiz:"
214
-
215
- #: contact_form.php:662
216
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
217
- msgstr "Die Einstellungen des Plugins wurden geändert. Um diese zu speichern vergessen sie nicht auf 'Save Changes/Speicher Änderungen' zu klicken."
218
-
219
- #: contact_form.php:665
220
- #: contact_form.php:1997
221
- #: contact_form.php:2008
222
  msgid "Settings"
223
  msgstr "Einstellungen"
224
 
225
- #: contact_form.php:666
226
  msgid "Extra settings"
227
  msgstr "Weitere Einstellungen"
228
 
229
- #: contact_form.php:667
230
  msgid "Go PRO"
231
  msgstr "Go PRO"
232
 
233
- #: contact_form.php:673
234
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  msgid "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:"
236
  msgstr "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
237
 
238
- #: contact_form.php:673
239
- #: contact_form.php:674
240
- #: contact_form.php:1001
241
- #: contact_form.php:1050
 
 
 
 
242
  msgid "or"
243
  msgstr "oder"
244
 
245
- #: contact_form.php:674
 
246
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
247
  msgstr "Wenn sie irgendwelche Probleme mit dem standard shortcode [contact_form] haben, sollten sie folgenden shortcode verwenden"
248
 
249
- #: contact_form.php:675
 
250
  msgid "They work the same way."
251
  msgstr "Sie arbeiten auf gleiche weise."
252
 
253
- #: contact_form.php:676
 
254
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
255
  msgstr "Wenn sie die Felder leer lassen, wird die Nachricht an die bei der registrierung angegebenen E-Mail Adresse gesendet."
256
 
257
- #: contact_form.php:680
258
  msgid "The user's email address:"
259
  msgstr "Benutzer E-Mail Adresse"
260
 
261
- #: contact_form.php:684
262
  msgid "Create a username"
263
  msgstr "Benutzername erstellen"
264
 
265
- #: contact_form.php:689
266
  msgid "Enter a username of the person who should get the messages from the contact form."
267
  msgstr "Geben sie den Benutzernamen des Users an, der die Nachrichten der Kontakt-Form erhalten soll."
268
 
269
- #: contact_form.php:693
270
  msgid "Use this email address:"
271
  msgstr "Nutzen sie diese E-Mail Adresse"
272
 
273
- #: contact_form.php:696
274
  msgid "Enter the email address you want the messages forwarded to."
275
  msgstr "Geben sie die E-Mail Adresse ein, an welche die Nachricht weitergeleitet werden soll."
276
 
277
- #: contact_form.php:702
278
  msgid "Add department selectbox to the contact form:"
279
  msgstr "Füge Abteilungs- Auswahlbox zu der Kontakt-Form:"
280
 
281
- #: contact_form.php:710
282
- #: contact_form.php:1246
283
  msgid "If you upgrade to Pro version all your settings will be saved."
284
  msgstr "Wenn sie auf Pro upgraden werden alle ihre Einstellungen gespeichert"
285
 
286
- #: contact_form.php:715
287
- #: contact_form.php:852
288
- #: contact_form.php:923
289
- #: contact_form.php:1096
290
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
291
- msgstr "Diese Funktion ist in der Pro Version des plugins verfügbar. Für mehr Details, folgen sie bitte dem Link"
292
 
293
- #: contact_form.php:716
294
- #: contact_form.php:853
295
- #: contact_form.php:924
296
- #: contact_form.php:1097
297
- msgid "Contact Form Pro"
298
- msgstr "Kontakt-Form Pro"
 
 
299
 
300
- #: contact_form.php:722
 
 
 
 
 
 
 
 
301
  msgid "Save emails to the database"
302
  msgstr "Speicher E-Mails in die Datenbank"
303
 
304
- #: contact_form.php:732
305
  msgid "Using"
306
  msgstr "Verwendet"
307
 
308
- #: contact_form.php:732
309
- #: contact_form.php:901
310
- #: contact_form.php:904
311
- #: contact_form.php:908
312
  msgid "powered by"
313
  msgstr "powered by"
314
 
315
- #: contact_form.php:735
316
- #: contact_form.php:739
317
  msgid "Using Contact Form to DB powered by"
318
  msgstr "Verwende 'Kontakt-Form in die DB' powered by"
319
 
320
- #: contact_form.php:735
321
  msgid "Activate Contact Form to DB"
322
  msgstr "Aktiviere 'Kontakt-Form in die DB'"
323
 
324
- #: contact_form.php:739
325
  msgid "Download Contact Form to DB"
326
  msgstr "Lade 'Kontakt-Form in die DB' herunter"
327
 
328
- #: contact_form.php:744
329
  msgid "Additional options"
330
  msgstr "Weitere Optionen"
331
 
332
- #: contact_form.php:746
333
  msgid "Show"
334
  msgstr "Zeige"
335
 
336
- #: contact_form.php:747
337
  msgid "Hide"
338
  msgstr "Verstecke"
339
 
340
- #: contact_form.php:751
341
  msgid "What to use?"
342
  msgstr "Was soll verwendet werden?"
343
 
344
- #: contact_form.php:754
345
  msgid "Wp-mail"
346
  msgstr "Wp-mail"
347
 
348
- #: contact_form.php:754
349
  msgid "You can use the wp_mail function for mailing"
350
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
351
 
352
- #: contact_form.php:756
353
  msgid "Mail"
354
  msgstr "Mail"
355
 
356
- #: contact_form.php:756
357
  msgid "To send mail you can use the php mail function"
358
  msgstr "Um mails zu versenden, können sie die php mail Funktion verwenden."
359
 
360
- #: contact_form.php:760
361
  msgid "The text in the 'From' field"
362
  msgstr "Der Text in dem Feld 'From/Von'"
363
 
364
- #: contact_form.php:762
365
  msgid "User name"
366
  msgstr "Benutzer Name"
367
 
368
- #: contact_form.php:763
369
  msgid "The name of the user who fills the form will be used in the field 'From'."
370
  msgstr "Der Name des Benutzers, der das Formular ausfüllt, wird im Feld 'From/Von' verwendt."
371
 
372
- #: contact_form.php:766
373
  msgid "This text will be used in the 'FROM' field"
374
  msgstr "Dieser Text wird in dem Feld 'FROM/VON' stehen"
375
 
376
- #: contact_form.php:770
377
  msgid "The email address in the 'From' field"
378
  msgstr "Die E-Mail Adresse in dem Feld 'From/Von'"
379
 
380
- #: contact_form.php:772
381
  msgid "User email"
382
  msgstr "Benutzer E-Mail"
383
 
384
- #: contact_form.php:773
385
  msgid "The email address of the user who fills the form will be used in the field 'From'."
386
  msgstr "Die E-Mail Adresse des Benutzers, der das Formular ausfüllt, wird im Feld 'From/Von' verwendt."
387
 
388
- #: contact_form.php:776
389
  msgid "This email address will be used in the 'From' field."
390
  msgstr "Diese E-Mail Adresse wird in dem 'From/Von' Feld verwendet"
391
 
392
- #: contact_form.php:780
393
  msgid "Required symbol"
394
  msgstr "Benötigtes Symbol"
395
 
396
- #: contact_form.php:790
397
  msgid "Fields"
398
  msgstr "Felder"
399
 
400
- #: contact_form.php:791
401
  msgid "Used"
402
  msgstr "Benutzt"
403
 
404
- #: contact_form.php:792
405
  msgid "Required"
406
  msgstr "Benötigt"
407
 
408
- #: contact_form.php:793
409
  msgid "Visible"
410
  msgstr "Sichtbar"
411
 
412
- #: contact_form.php:794
413
  msgid "Disabled for editing"
414
  msgstr "Bearbeitung ist ausgeschaltet"
415
 
416
- #: contact_form.php:795
417
  msgid "Field's default value"
418
  msgstr "Standard-Feld-Wert"
419
 
420
- #: contact_form.php:800
421
- #: contact_form.php:1121
422
- #: contact_form.php:1841
423
- #: contact_form.php:1871
424
  msgid "Name"
425
  msgstr "Name"
426
 
427
- #: contact_form.php:808
428
- #: contact_form.php:1126
429
- #: contact_form.php:1845
430
- #: contact_form.php:1873
431
  msgid "Address"
432
  msgstr "Adresse: "
433
 
434
- #: contact_form.php:816
435
  msgid "Email Address"
436
  msgstr "E-Mail Adresse:"
437
 
438
- #: contact_form.php:824
439
  msgid "Phone number"
440
  msgstr "Telefonnummer:"
441
 
442
- #: contact_form.php:832
443
- #: contact_form.php:1141
444
- #: contact_form.php:1855
445
- #: contact_form.php:1877
446
  msgid "Subject"
447
  msgstr "Betreff"
448
 
449
- #: contact_form.php:840
450
- #: contact_form.php:1145
451
- #: contact_form.php:1858
452
- #: contact_form.php:1878
453
  msgid "Message"
454
  msgstr "Inhalt"
455
 
456
- #: contact_form.php:858
457
  msgid "Attachment block"
458
  msgstr "Anhang-Block"
459
 
460
- #: contact_form.php:860
461
  msgid "Users can attach the following file formats"
462
  msgstr "Benutzer können die folgenden Formate anhängen:"
463
 
464
- #: contact_form.php:874
465
  msgid "Add to the form"
466
  msgstr "Füge in die Form"
467
 
468
- #: contact_form.php:879
469
  msgid "Tips below the Attachment"
470
  msgstr "Tipps unterhalb des Anhangs"
471
 
472
- #: contact_form.php:888
473
  msgid "'Send me a copy' block"
474
  msgstr "'Kopie an mich senden' Block"
475
 
476
- #: contact_form.php:901
477
- #: contact_form.php:904
478
- #: contact_form.php:908
479
- #: contact_form.php:1155
480
  msgid "Captcha"
481
  msgstr "Captcha"
482
 
483
- #: contact_form.php:904
484
  msgid "Activate captcha"
485
  msgstr "Aktiviere captcha"
486
 
487
- #: contact_form.php:908
488
  msgid "Download captcha"
489
  msgstr "Download captcha"
490
 
491
- #: contact_form.php:916
492
  msgid "Agreement checkbox"
493
  msgstr "Agreement checkbox"
494
 
495
- #: contact_form.php:916
496
  msgid "Required checkbox for submitting the form"
497
  msgstr "Benötigte checkbox zur übermittlung des Formulars"
498
 
499
- #: contact_form.php:917
500
  msgid "Optional checkbox"
501
  msgstr "Optionale checkbox"
502
 
503
- #: contact_form.php:917
504
  msgid "Optional checkbox, the results of which will be displayed in email"
505
  msgstr "Optionale checkbox, das Ergebnis davon wird in der E-Mail angezeigt"
506
 
507
- #: contact_form.php:928
508
  msgid "Delete an attachment file from the server after the email is sent"
509
  msgstr "Lösche die Anhang-Datei vom Server nachdem die E-Mail gesendet wurde"
510
 
511
- #: contact_form.php:934
512
  msgid "Email in HTML format sending"
513
  msgstr "E-Mail im HTML Format"
514
 
515
- #: contact_form.php:938
516
  msgid "Display additional info in the email"
517
  msgstr "Zeige weitere Informationen in der E-Mail"
518
 
519
- #: contact_form.php:943
520
- #: contact_form.php:1808
521
- #: contact_form.php:1810
522
  msgid "Sent from (ip address)"
523
  msgstr "Gesendet von (IP-Adresse)"
524
 
525
- #: contact_form.php:943
526
  msgid "Example: Sent from (IP address):\t127.0.0.1"
527
  msgstr "Beispiel: Gesendet von (IP-Adresse):\t127.0.0.1"
528
 
529
- #: contact_form.php:944
530
- #: contact_form.php:1814
531
- #: contact_form.php:1816
532
  msgid "Date/Time"
533
  msgstr "Datum/Zeit"
534
 
535
- #: contact_form.php:944
536
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
537
  msgstr "Beispiel: Datum/Zeit:\tAugust 19, 2013 8:50 pm"
538
 
539
- #: contact_form.php:945
540
- #: contact_form.php:1820
541
- #: contact_form.php:1822
542
  msgid "Sent from (referer)"
543
  msgstr "Gesendet von (referer)"
544
 
545
- #: contact_form.php:945
546
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
547
  msgstr "Beispiel: Gesendet von (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
548
 
549
- #: contact_form.php:946
550
- #: contact_form.php:1826
551
- #: contact_form.php:1828
552
  msgid "Using (user agent)"
553
  msgstr "Verwendet (user agent)"
554
 
555
- #: contact_form.php:946
556
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
557
  msgstr "Beispiel: Verwendet (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
558
 
559
- #: contact_form.php:950
560
  msgid "Language settings for the field names in the form"
561
  msgstr "Benutzer-Einstellungen für die Feld-Namen in der Form"
562
 
563
- #: contact_form.php:959
564
  msgid "Add a language"
565
  msgstr "Hinzufügen einer Sprache"
566
 
567
- #: contact_form.php:963
568
  msgid "Change the names of the contact form fields and error messages"
569
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
570
 
571
- #: contact_form.php:968
572
- #: contact_form.php:1041
573
  msgid "English"
574
  msgstr "Englisch"
575
 
576
- #: contact_form.php:976
577
- #: contact_form.php:1006
578
  msgid "click to expand/hide the list"
579
  msgstr "Klick zum erweitern/verstecken der Liste"
580
 
581
- #: contact_form.php:985
582
- #: contact_form.php:1015
583
  msgid "Tips below the Attachment block"
584
  msgstr "Tipps unterhalb des Anhang-Blocks"
585
 
586
- #: contact_form.php:988
587
- #: contact_form.php:1018
588
  msgid "Error message for the Name field"
589
  msgstr "Fehlermeldung für das Namensfeld"
590
 
591
- #: contact_form.php:989
592
- #: contact_form.php:1019
593
  msgid "Error message for the Address field"
594
  msgstr "Fehlermeldung für das Adress-Feld"
595
 
596
- #: contact_form.php:990
597
- #: contact_form.php:1020
598
  msgid "Error message for the Email field"
599
  msgstr "Fehlermeldung für das E-Mail-Feld"
600
 
601
- #: contact_form.php:991
602
- #: contact_form.php:1021
603
  msgid "Error message for the Phone field"
604
  msgstr "Fehlermeldung für das Telefonnummer-Feld"
605
 
606
- #: contact_form.php:992
607
- #: contact_form.php:1022
608
  msgid "Error message for the Subject field"
609
  msgstr "Fehlermeldung für das Betreff-Feld"
610
 
611
- #: contact_form.php:993
612
- #: contact_form.php:1023
613
  msgid "Error message for the Message field"
614
  msgstr "Fehlermeldung für das Inhalts-Feld"
615
 
616
- #: contact_form.php:994
617
- #: contact_form.php:1024
618
  msgid "Error message about the file type for the Attachment field"
619
  msgstr "Fehlermeldung über den Datei-Typ für das Anhang-Feld"
620
 
621
- #: contact_form.php:995
622
- #: contact_form.php:1025
623
  msgid "Error message while uploading a file for the Attachment field to the server"
624
  msgstr "Fehlermeldung während des hochladens einer Datei zum Server für das Anhang-Feld"
625
 
626
- #: contact_form.php:996
627
- #: contact_form.php:1026
628
  msgid "Error message while moving the file for the Attachment field"
629
  msgstr "Fehlermeldung während der Verschiebung für das Anhang-Feld"
630
 
631
- #: contact_form.php:997
632
- #: contact_form.php:1027
633
  msgid "Error message when file size limit for the Attachment field is exceeded"
634
  msgstr "Fehlermeldung wenn das Datei-Größen-Limit für das Anhang-Feld überschritten wird"
635
 
636
- #: contact_form.php:998
637
- #: contact_form.php:1028
638
  msgid "Error message for the Captcha field"
639
  msgstr "Fehlermeldung für das Capatcha-Feld"
640
 
641
- #: contact_form.php:999
642
- #: contact_form.php:1029
643
  msgid "Error message for the whole form"
644
  msgstr "Fehlermeldung für das ganze Formular"
645
 
646
- #: contact_form.php:1001
647
- #: contact_form.php:1031
648
- #: contact_form.php:1050
649
- #: contact_form.php:1056
 
 
 
 
650
  msgid "Use shortcode"
651
  msgstr "Benutze shortcode"
652
 
653
- #: contact_form.php:1001
654
- #: contact_form.php:1031
655
- #: contact_form.php:1050
656
- #: contact_form.php:1056
 
 
 
 
657
  msgid "for this language"
658
  msgstr "für diese Sprache"
659
 
660
- #: contact_form.php:1038
661
  msgid "Action after email is sent"
662
  msgstr "Handlung nachdem die E-Mail gesendet wurde"
663
 
664
- #: contact_form.php:1040
665
  msgid "Display text"
666
  msgstr "Zeige Text"
667
 
668
- #: contact_form.php:1049
669
- #: contact_form.php:1055
670
  msgid "Text"
671
  msgstr "Text"
672
 
673
- #: contact_form.php:1062
674
  msgid "Redirect to the page"
675
  msgstr "Umleiten zur Seite"
676
 
677
- #: contact_form.php:1063
678
  msgid "Url"
679
  msgstr "Url"
680
 
681
- #: contact_form.php:1067
682
  msgid "The $_SERVER variable that is used to build a URL of the form"
683
  msgstr ""
684
 
685
- #: contact_form.php:1071
686
  msgid "If you are not sure whether to change this setting or not, please do not do that."
687
  msgstr ""
688
 
689
- #: contact_form.php:1077
690
- #: contact_form.php:1252
691
  msgid "Save Changes"
692
  msgstr "Speichere Änderungen"
693
 
694
- #: contact_form.php:1082
695
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
696
  msgstr "Wenn ihnen das Plugin gefällt, geben sie bitte 5 Sterne auf WordPress"
697
 
698
- #: contact_form.php:1083
699
  msgid "Rate the plugin"
700
  msgstr "Bewerten Sie das Plugin"
701
 
702
- #: contact_form.php:1086
703
  msgid "If there is something wrong about it, please contact us"
704
  msgstr "Wenn etwas fehlerhaft ist, kontaktieren sie uns bitte"
705
 
706
- #: contact_form.php:1101
707
  msgid "Errors output"
708
  msgstr "Fehler-Ausgabe"
709
 
710
- #: contact_form.php:1104
711
  msgid "Display error messages"
712
  msgstr "Zeige Fehlermeldungen"
713
 
714
- #: contact_form.php:1105
715
  msgid "Color of the input field errors."
716
  msgstr "Farbe der Eingabe-Fehld-Fehler"
717
 
718
- #: contact_form.php:1106
719
  msgid "Display error messages & color of the input field errors"
720
  msgstr "Zeige Fehlermeldungen & Farbe zu den Eingabe-Feldern"
721
 
722
- #: contact_form.php:1111
723
  msgid "Add placeholder to the input blocks"
724
  msgstr "Füge Platzhalter an die Eingabe-Blöcke"
725
 
726
- #: contact_form.php:1117
727
  msgid "Add tooltips"
728
  msgstr "Füge Tooltips hinzu"
729
 
730
- #: contact_form.php:1131
731
  msgid "Email address"
732
  msgstr "E-Mail Adresse:"
733
 
734
- #: contact_form.php:1136
735
  msgid "Phone Number"
736
  msgstr "Telefonnummer:"
737
 
738
- #: contact_form.php:1150
739
  msgid "Attachment"
740
  msgstr "Anhang:"
741
 
742
- #: contact_form.php:1155
743
  msgid "(powered by bestwebsoft.com)"
744
  msgstr "(powered by bestwebsoft.com)"
745
 
746
- #: contact_form.php:1160
747
  msgid "Style options"
748
  msgstr "Stil-Optionen"
749
 
750
- #: contact_form.php:1163
751
  msgid "Text color"
752
  msgstr "Text -Farbe"
753
 
754
- #: contact_form.php:1166
755
- #: contact_form.php:1171
756
- #: contact_form.php:1181
757
- #: contact_form.php:1186
758
- #: contact_form.php:1191
759
- #: contact_form.php:1196
760
- #: contact_form.php:1206
761
- #: contact_form.php:1211
762
- #: contact_form.php:1217
763
- #: contact_form.php:1228
764
- #: contact_form.php:1233
765
- #: contact_form.php:1238
766
  msgid "Default"
767
  msgstr "Standard"
768
 
769
- #: contact_form.php:1168
770
  msgid "Label text color"
771
  msgstr "Beschriftungs-Text -Farbe"
772
 
773
- #: contact_form.php:1173
774
  msgid "Placeholder color"
775
  msgstr "Platzhalter -Farbe"
776
 
777
- #: contact_form.php:1178
778
  msgid "Errors color"
779
  msgstr "Fehler -Farbe"
780
 
781
- #: contact_form.php:1183
782
  msgid "Error text color"
783
  msgstr "Fehler-Text -Farbe"
784
 
785
- #: contact_form.php:1188
786
  msgid "Background color of the input field errors"
787
  msgstr "Hintergrund -Farbe von den Eingabefeld-Fehlern"
788
 
789
- #: contact_form.php:1193
790
  msgid "Border color of the input field errors"
791
  msgstr "Rand -Farbe von den Eingabefeld-Fehlern"
792
 
793
- #: contact_form.php:1198
794
  msgid "Placeholder color of the input field errors"
795
  msgstr "Platzhalter -Farbe von den Eingabefeld-Fehlern"
796
 
797
- #: contact_form.php:1203
798
  msgid "Input fields"
799
  msgstr "Eingabe-Felder"
800
 
801
- #: contact_form.php:1208
802
  msgid "Input fields background color"
803
  msgstr "Eingabefelder - Hintergrundfarbe"
804
 
805
- #: contact_form.php:1213
806
  msgid "Text fields color"
807
  msgstr "Text-Felder -Farbe"
808
 
809
- #: contact_form.php:1215
810
  msgid "Border width in px, numbers only"
811
  msgstr "Rand-Breite in px, nur Zahlen"
812
 
813
- #: contact_form.php:1219
814
- #: contact_form.php:1240
815
  msgid "Border color"
816
  msgstr "Rand -Farbe"
817
 
818
- #: contact_form.php:1224
819
  msgid "Submit button"
820
  msgstr "Sende-Schaltfläche"
821
 
822
- #: contact_form.php:1226
823
  msgid "Width in px, numbers only"
824
  msgstr "Breite in px, nur Zahlen"
825
 
826
- #: contact_form.php:1230
827
  msgid "Button color"
828
  msgstr "Schaltflächen -Farbe"
829
 
830
- #: contact_form.php:1235
831
  msgid "Button text color"
832
  msgstr "Schaltflächen-Text -Farbe"
833
 
834
- #: contact_form.php:1256
835
  msgid "Contact Form Pro | Preview"
836
  msgstr "Kontakt-Form Pro | Vorschau"
837
 
838
- #: contact_form.php:1259
839
  msgid "Show with errors"
840
  msgstr "Zeige mit Fehlern"
841
 
842
- #: contact_form.php:1267
843
- #: contact_form.php:1269
844
  msgid "Please enter your full name..."
845
  msgstr "Bitte geben sie Ihren vollen Namen ein... "
846
 
847
- #: contact_form.php:1280
848
- #: contact_form.php:1282
849
  msgid "Please enter your address..."
850
  msgstr "Bitte geben sie Ihre Adresse ein... "
851
 
852
- #: contact_form.php:1291
853
- #: contact_form.php:1293
854
  msgid "Please enter your email address..."
855
  msgstr "Bitte geben sie ihre E-Mail Adresse an ..."
856
 
857
- #: contact_form.php:1302
858
- #: contact_form.php:1304
859
  msgid "Please enter your phone number..."
860
  msgstr "Bitte geben sie Ihre Telefonnummer ein... "
861
 
862
- #: contact_form.php:1313
863
- #: contact_form.php:1315
864
  msgid "Please enter subject..."
865
  msgstr "Bitte geben sie Ihren Betreff an... "
866
 
867
- #: contact_form.php:1323
868
- #: contact_form.php:1325
869
  msgid "Please enter your message..."
870
  msgstr "Bitte geben sie Ihre Nachricht ein... "
871
 
872
- #: contact_form.php:1367
873
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
874
  msgstr "Glückwunsch! Die PRO Version des Plugins wurde erfolgreich heruntergeladen und aktiviert."
875
 
876
- #: contact_form.php:1369
877
  msgid "Please, go to"
878
  msgstr "Bitte, gehen Sie nach"
879
 
880
- #: contact_form.php:1369
881
  msgid "the setting page"
882
  msgstr "Die Einstellungs-Seite"
883
 
884
- #: contact_form.php:1370
885
  msgid "You will be redirected automatically in 5 seconds."
886
  msgstr "Sie werden in 5 Sekunden automatisch weitergeleitet"
887
 
888
- #: contact_form.php:1375
889
  msgid "You can download and activate"
890
  msgstr "You can download and activate"
891
 
892
- #: contact_form.php:1377
893
  msgid "version of this plugin by entering Your license key."
894
  msgstr "Version des Plugins durch Eingabe des Linzenzschlüssels."
895
 
896
- #: contact_form.php:1379
897
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
898
  msgstr "Sie finden Ihren Linzenschlüssel auf Ihrer persönlichen Seite 'Client area', durch klicken des Links"
899
 
900
- #: contact_form.php:1381
901
  msgid "(your username is the email you specify when purchasing the product)."
902
  msgstr "(ihr Benutzername ist die beim Kauf verwendte E-Mail)."
903
 
904
- #: contact_form.php:1389
905
- #: contact_form.php:1399
906
  msgid "Go!"
907
  msgstr "Go!"
908
 
909
- #: contact_form.php:1449
910
  msgid "Sorry, email message could not be delivered."
911
  msgstr "Verzeihung, die Nachricht konnte nicht gesendet werden."
912
 
913
- #: contact_form.php:1835
914
  msgid "Contact from"
915
  msgstr "Kontakt von"
916
 
917
- #: contact_form.php:1848
918
- #: contact_form.php:1874
919
  msgid "Email"
920
  msgstr "E-Mail"
921
 
922
- #: contact_form.php:1852
923
- #: contact_form.php:1876
924
  msgid "Phone"
925
  msgstr "Telefonnummer"
926
 
927
- #: contact_form.php:1861
928
- #: contact_form.php:1879
929
  msgid "Site"
930
  msgstr "Webseite"
931
 
932
- #: contact_form.php:1941
933
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
934
  msgstr "Wenn sie dieses MIME sehen, unterstützt Ihr Browser diesen MIME Typ nicht!"
935
 
936
- #: contact_form.php:2009
937
  msgid "FAQ"
938
  msgstr "Häufig gestellte Fragen (FAQ)"
939
 
940
- #: contact_form.php:2010
941
  msgid "Support"
942
  msgstr "Support"
943
 
944
- #: contact_form.php:2068
945
  msgid "Are you sure that you want to delete this language data?"
946
  msgstr "Sind sie sicher, dass sie diese Sprach-Daten löschen wollen?"
947
 
948
- #: contact_form.php:2223
949
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
950
  msgstr ""
951
 
952
- #: contact_form.php:2224
953
  msgid "Extend standard plugin functionality with new great options."
954
  msgstr ""
955
 
956
- #: contact_form.php:2233
957
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
958
  msgstr ""
959
 
960
- #: contact_form.php:2234
961
  msgid "Manage messages that have been sent from your website."
962
  msgstr ""
963
 
 
 
 
 
 
 
 
 
 
 
964
  #, fuzzy
965
  #~ msgid "Contact Form Pro Extra Settings"
966
  #~ msgstr "Contact Form Opties"
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:37+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:37+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@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:73
21
+ #: contact_form.php:785
22
  msgid "Contact Form Settings"
23
  msgstr "Kontakt-Form Einstellungen"
24
 
25
+ #: contact_form.php:73
26
  msgid "Contact Form"
27
  msgstr "Kontakt-Form"
28
 
29
+ #: contact_form.php:149
30
+ #: contact_form.php:1131
31
+ #: contact_form.php:1165
32
  msgid "Name:"
33
  msgstr "Name:"
34
 
35
+ #: contact_form.php:150
36
+ #: contact_form.php:1132
37
+ #: contact_form.php:1166
38
  msgid "Address:"
39
  msgstr "Adresse:"
40
 
41
+ #: contact_form.php:151
42
+ #: contact_form.php:1133
43
+ #: contact_form.php:1167
44
  msgid "Email Address:"
45
  msgstr "E-Mail Adresse:"
46
 
47
+ #: contact_form.php:152
48
+ #: contact_form.php:1134
49
+ #: contact_form.php:1168
50
  msgid "Phone number:"
51
  msgstr "Telefonnummer:"
52
 
53
+ #: contact_form.php:153
54
+ #: contact_form.php:1135
55
+ #: contact_form.php:1169
56
  msgid "Subject:"
57
  msgstr "Betreff:"
58
 
59
+ #: contact_form.php:154
60
+ #: contact_form.php:1136
61
+ #: contact_form.php:1170
62
  msgid "Message:"
63
  msgstr "Inhalt:"
64
 
65
+ #: contact_form.php:155
66
+ #: contact_form.php:1137
67
+ #: contact_form.php:1171
68
  msgid "Attachment:"
69
  msgstr "Anhang:"
70
 
71
+ #: contact_form.php:156
72
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
73
  msgstr "Unterstützte Dateitypen: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max Datei-Größe: 2MB"
74
 
75
+ #: contact_form.php:157
76
+ #: contact_form.php:1139
77
+ #: contact_form.php:1173
78
  msgid "Send me a copy"
79
  msgstr "Kopie an mich senden"
80
 
81
+ #: contact_form.php:158
82
+ #: contact_form.php:1140
83
+ #: contact_form.php:1174
84
  msgid "Submit"
85
  msgstr "Senden"
86
 
87
+ #: contact_form.php:159
88
  msgid "Your name is required."
89
  msgstr "Dein Name wird benötigt."
90
 
91
+ #: contact_form.php:160
92
  msgid "Address is required."
93
  msgstr "Adresse wird benötigt"
94
 
95
+ #: contact_form.php:161
96
  msgid "A valid email address is required."
97
  msgstr "Eine gültige E-Mail Adresse wird benötigt."
98
 
99
+ #: contact_form.php:162
100
  msgid "Phone number is required."
101
  msgstr "Deine Telefonnummer wird benötigt."
102
 
103
+ #: contact_form.php:163
104
  msgid "Subject is required."
105
  msgstr "Ein Betreff wird benötigt."
106
 
107
+ #: contact_form.php:164
108
  msgid "Message text is required."
109
  msgstr "Ein Inhalt wird benötigt."
110
 
111
+ #: contact_form.php:165
112
  msgid "File format is not valid."
113
  msgstr "Datei Format ist nicht erlaubt."
114
 
115
+ #: contact_form.php:166
116
  msgid "File upload error."
117
  msgstr "Datei-Übertragungsfehler"
118
 
119
+ #: contact_form.php:167
120
  msgid "The file could not be uploaded."
121
  msgstr "Die Datei konnte nicht hochgeladen werden."
122
 
123
+ #: contact_form.php:168
124
  msgid "This file is too large."
125
  msgstr "Diese Datei ist zu groß."
126
 
127
+ #: contact_form.php:169
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Bitte CAPTCHA ausfüllen."
130
 
131
+ #: contact_form.php:170
132
  msgid "Please make corrections below and try again."
133
  msgstr "Bitte mach unten korrekturen und versuche es erneut."
134
 
135
+ #: contact_form.php:172
136
  msgid "Thank you for contacting us."
137
  msgstr "Danke für Ihre Nachricht."
138
 
139
+ #: contact_form.php:322
140
  msgid "requires"
141
  msgstr "benötigt"
142
 
143
+ #: contact_form.php:322
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr "oder höher, darum wurde es deaktiviert! Bitte rüsten sie WordPress auf und versuchen sie es erneut."
146
 
147
+ #: contact_form.php:322
148
  msgid "Back to the WordPress"
149
  msgstr "Zurück zu WordPress"
150
 
151
+ #: contact_form.php:322
152
  msgid "Plugins page"
153
  msgstr "Plugin Seite"
154
 
155
+ #: contact_form.php:626
156
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
157
  msgstr "Wenn die 'Redirect to page/Umleiten zur Seite' Option verwendet wird, dann sollte das Feld URL in folgendem Format sein"
158
 
159
+ #: contact_form.php:635
160
  msgid "Such user does not exist. Settings are not saved."
161
  msgstr "Dieser User exestiert nicht. Einstellungen werden nicht gespeichert."
162
 
163
+ #: contact_form.php:639
164
+ #: contact_form.php:645
165
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
166
  msgstr "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. Einstellungen werden nicht gespeichert."
167
 
168
+ #: contact_form.php:661
169
  msgid "Settings saved."
170
  msgstr "Einstellungen gespeichert."
171
 
172
+ #: contact_form.php:688
173
+ #: contact_form.php:720
174
  msgid "Wrong license key"
175
  msgstr "Falscher Lizenzschlüssel"
176
 
177
+ #: contact_form.php:713
178
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
179
  msgstr "Etwas ging schief. Versuchen sie es später nochmals. Wenn der Fehler erneut auftritt, bitte, kontaktieren sie uns <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Wir entschuldigen für die Umstände."
180
 
181
+ #: contact_form.php:722
182
  msgid "This license key is bind to another site"
183
  msgstr "Dieser Linzenz-Key ist an eine andere Seite gebunden."
184
 
185
+ #: contact_form.php:724
186
+ #: contact_form.php:1570
187
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
188
  msgstr "Leider haben sie die Anzahl an verfügbaren Versuchen pro Trag überschritten. Bitte laden sie das Plugin manuell hoch"
189
 
190
+ #: contact_form.php:741
191
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
192
  msgstr "Fehler beim öffnen des zip Archives. Bitte laden sie das Plugin manuell hoch"
193
 
194
+ #: contact_form.php:747
195
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
196
  msgstr "Ihr Server unterstützt kein ZipArchiv oder Phar. Bitte laden sie das Plugin manuell hoch"
197
 
198
+ #: contact_form.php:751
199
+ #: contact_form.php:760
200
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
201
  msgstr "Download des zip Archives fehlgeschlagen. Bitte laden sie das Plugin manuell hoch"
202
 
203
+ #: contact_form.php:764
204
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
205
  msgstr "Etwas ging schief. Versuchen sie es später oder laden sie das plugin manuell hoch. Wir entschuldigen für die Umstände."
206
 
207
+ #: contact_form.php:779
208
  msgid "Please, enter Your license key"
209
  msgstr "Bitte, geben sie Ihren Linzenzschlüssel ein"
210
 
211
+ #: contact_form.php:787
212
+ #: contact_form.php:2216
213
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
214
  msgid "Settings"
215
  msgstr "Einstellungen"
216
 
217
+ #: contact_form.php:788
218
  msgid "Extra settings"
219
  msgstr "Weitere Einstellungen"
220
 
221
+ #: contact_form.php:789
222
  msgid "Go PRO"
223
  msgstr "Go PRO"
224
 
225
+ #: contact_form.php:792
226
+ msgid "Notice:"
227
+ msgstr "Notiz:"
228
+
229
+ #: contact_form.php:792
230
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
231
+ msgstr "Die Einstellungen des Plugins wurden geändert. Um diese zu speichern vergessen sie nicht auf 'Save Changes/Speicher Änderungen' zu klicken."
232
+
233
+ #: contact_form.php:798
234
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
235
+ msgstr ""
236
+
237
+ #: contact_form.php:804
238
+ #: contact_form.php:809
239
+ #: contact_form.php:1529
240
  msgid "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:"
241
  msgstr "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
242
 
243
+ #: contact_form.php:804
244
+ #: contact_form.php:805
245
+ #: contact_form.php:809
246
+ #: contact_form.php:810
247
+ #: contact_form.php:1155
248
+ #: contact_form.php:1157
249
+ #: contact_form.php:1212
250
+ #: contact_form.php:1214
251
  msgid "or"
252
  msgstr "oder"
253
 
254
+ #: contact_form.php:805
255
+ #: contact_form.php:810
256
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
257
  msgstr "Wenn sie irgendwelche Probleme mit dem standard shortcode [contact_form] haben, sollten sie folgenden shortcode verwenden"
258
 
259
+ #: contact_form.php:806
260
+ #: contact_form.php:811
261
  msgid "They work the same way."
262
  msgstr "Sie arbeiten auf gleiche weise."
263
 
264
+ #: contact_form.php:807
265
+ #: contact_form.php:812
266
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
267
  msgstr "Wenn sie die Felder leer lassen, wird die Nachricht an die bei der registrierung angegebenen E-Mail Adresse gesendet."
268
 
269
+ #: contact_form.php:817
270
  msgid "The user's email address:"
271
  msgstr "Benutzer E-Mail Adresse"
272
 
273
+ #: contact_form.php:821
274
  msgid "Create a username"
275
  msgstr "Benutzername erstellen"
276
 
277
+ #: contact_form.php:828
278
  msgid "Enter a username of the person who should get the messages from the contact form."
279
  msgstr "Geben sie den Benutzernamen des Users an, der die Nachrichten der Kontakt-Form erhalten soll."
280
 
281
+ #: contact_form.php:832
282
  msgid "Use this email address:"
283
  msgstr "Nutzen sie diese E-Mail Adresse"
284
 
285
+ #: contact_form.php:835
286
  msgid "Enter the email address you want the messages forwarded to."
287
  msgstr "Geben sie die E-Mail Adresse ein, an welche die Nachricht weitergeleitet werden soll."
288
 
289
+ #: contact_form.php:844
290
  msgid "Add department selectbox to the contact form:"
291
  msgstr "Füge Abteilungs- Auswahlbox zu der Kontakt-Form:"
292
 
293
+ #: contact_form.php:852
294
+ #: contact_form.php:1412
295
  msgid "If you upgrade to Pro version all your settings will be saved."
296
  msgstr "Wenn sie auf Pro upgraden werden alle ihre Einstellungen gespeichert"
297
 
298
+ #: contact_form.php:859
299
+ #: contact_form.php:997
300
+ #: contact_form.php:1071
301
+ #: contact_form.php:1419
302
+ msgid "Unlock premium options by upgrading to a PRO version."
303
+ msgstr ""
304
 
305
+ #: contact_form.php:860
306
+ #: contact_form.php:998
307
+ #: contact_form.php:1072
308
+ #: contact_form.php:1420
309
+ #: contact_form.php:2473
310
+ #: contact_form.php:2489
311
+ msgid "Learn More"
312
+ msgstr ""
313
 
314
+ #: contact_form.php:863
315
+ #: contact_form.php:1001
316
+ #: contact_form.php:1075
317
+ #: contact_form.php:1423
318
+ #, fuzzy
319
+ msgid "Go"
320
+ msgstr "Go!"
321
+
322
+ #: contact_form.php:870
323
  msgid "Save emails to the database"
324
  msgstr "Speicher E-Mails in die Datenbank"
325
 
326
+ #: contact_form.php:876
327
  msgid "Using"
328
  msgstr "Verwendet"
329
 
330
+ #: contact_form.php:876
331
+ #: contact_form.php:1048
332
+ #: contact_form.php:1051
333
+ #: contact_form.php:1055
334
  msgid "powered by"
335
  msgstr "powered by"
336
 
337
+ #: contact_form.php:879
338
+ #: contact_form.php:883
339
  msgid "Using Contact Form to DB powered by"
340
  msgstr "Verwende 'Kontakt-Form in die DB' powered by"
341
 
342
+ #: contact_form.php:879
343
  msgid "Activate Contact Form to DB"
344
  msgstr "Aktiviere 'Kontakt-Form in die DB'"
345
 
346
+ #: contact_form.php:883
347
  msgid "Download Contact Form to DB"
348
  msgstr "Lade 'Kontakt-Form in die DB' herunter"
349
 
350
+ #: contact_form.php:888
351
  msgid "Additional options"
352
  msgstr "Weitere Optionen"
353
 
354
+ #: contact_form.php:890
355
  msgid "Show"
356
  msgstr "Zeige"
357
 
358
+ #: contact_form.php:891
359
  msgid "Hide"
360
  msgstr "Verstecke"
361
 
362
+ #: contact_form.php:895
363
  msgid "What to use?"
364
  msgstr "Was soll verwendet werden?"
365
 
366
+ #: contact_form.php:898
367
  msgid "Wp-mail"
368
  msgstr "Wp-mail"
369
 
370
+ #: contact_form.php:898
371
  msgid "You can use the wp_mail function for mailing"
372
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
373
 
374
+ #: contact_form.php:900
375
  msgid "Mail"
376
  msgstr "Mail"
377
 
378
+ #: contact_form.php:900
379
  msgid "To send mail you can use the php mail function"
380
  msgstr "Um mails zu versenden, können sie die php mail Funktion verwenden."
381
 
382
+ #: contact_form.php:904
383
  msgid "The text in the 'From' field"
384
  msgstr "Der Text in dem Feld 'From/Von'"
385
 
386
+ #: contact_form.php:906
387
  msgid "User name"
388
  msgstr "Benutzer Name"
389
 
390
+ #: contact_form.php:907
391
  msgid "The name of the user who fills the form will be used in the field 'From'."
392
  msgstr "Der Name des Benutzers, der das Formular ausfüllt, wird im Feld 'From/Von' verwendt."
393
 
394
+ #: contact_form.php:910
395
  msgid "This text will be used in the 'FROM' field"
396
  msgstr "Dieser Text wird in dem Feld 'FROM/VON' stehen"
397
 
398
+ #: contact_form.php:914
399
  msgid "The email address in the 'From' field"
400
  msgstr "Die E-Mail Adresse in dem Feld 'From/Von'"
401
 
402
+ #: contact_form.php:916
403
  msgid "User email"
404
  msgstr "Benutzer E-Mail"
405
 
406
+ #: contact_form.php:917
407
  msgid "The email address of the user who fills the form will be used in the field 'From'."
408
  msgstr "Die E-Mail Adresse des Benutzers, der das Formular ausfüllt, wird im Feld 'From/Von' verwendt."
409
 
410
+ #: contact_form.php:920
411
  msgid "This email address will be used in the 'From' field."
412
  msgstr "Diese E-Mail Adresse wird in dem 'From/Von' Feld verwendet"
413
 
414
+ #: contact_form.php:924
415
  msgid "Required symbol"
416
  msgstr "Benötigtes Symbol"
417
 
418
+ #: contact_form.php:934
419
  msgid "Fields"
420
  msgstr "Felder"
421
 
422
+ #: contact_form.php:935
423
  msgid "Used"
424
  msgstr "Benutzt"
425
 
426
+ #: contact_form.php:936
427
  msgid "Required"
428
  msgstr "Benötigt"
429
 
430
+ #: contact_form.php:937
431
  msgid "Visible"
432
  msgstr "Sichtbar"
433
 
434
+ #: contact_form.php:938
435
  msgid "Disabled for editing"
436
  msgstr "Bearbeitung ist ausgeschaltet"
437
 
438
+ #: contact_form.php:939
439
  msgid "Field's default value"
440
  msgstr "Standard-Feld-Wert"
441
 
442
+ #: contact_form.php:944
443
+ #: contact_form.php:1287
444
+ #: contact_form.php:2059
445
+ #: contact_form.php:2089
446
  msgid "Name"
447
  msgstr "Name"
448
 
449
+ #: contact_form.php:952
450
+ #: contact_form.php:1292
451
+ #: contact_form.php:2063
452
+ #: contact_form.php:2091
453
  msgid "Address"
454
  msgstr "Adresse: "
455
 
456
+ #: contact_form.php:960
457
  msgid "Email Address"
458
  msgstr "E-Mail Adresse:"
459
 
460
+ #: contact_form.php:968
461
  msgid "Phone number"
462
  msgstr "Telefonnummer:"
463
 
464
+ #: contact_form.php:976
465
+ #: contact_form.php:1307
466
+ #: contact_form.php:2073
467
+ #: contact_form.php:2095
468
  msgid "Subject"
469
  msgstr "Betreff"
470
 
471
+ #: contact_form.php:984
472
+ #: contact_form.php:1311
473
+ #: contact_form.php:2076
474
+ #: contact_form.php:2096
475
  msgid "Message"
476
  msgstr "Inhalt"
477
 
478
+ #: contact_form.php:1008
479
  msgid "Attachment block"
480
  msgstr "Anhang-Block"
481
 
482
+ #: contact_form.php:1010
483
  msgid "Users can attach the following file formats"
484
  msgstr "Benutzer können die folgenden Formate anhängen:"
485
 
486
+ #: contact_form.php:1023
487
  msgid "Add to the form"
488
  msgstr "Füge in die Form"
489
 
490
+ #: contact_form.php:1028
491
  msgid "Tips below the Attachment"
492
  msgstr "Tipps unterhalb des Anhangs"
493
 
494
+ #: contact_form.php:1037
495
  msgid "'Send me a copy' block"
496
  msgstr "'Kopie an mich senden' Block"
497
 
498
+ #: contact_form.php:1048
499
+ #: contact_form.php:1051
500
+ #: contact_form.php:1055
501
+ #: contact_form.php:1321
502
  msgid "Captcha"
503
  msgstr "Captcha"
504
 
505
+ #: contact_form.php:1051
506
  msgid "Activate captcha"
507
  msgstr "Aktiviere captcha"
508
 
509
+ #: contact_form.php:1055
510
  msgid "Download captcha"
511
  msgstr "Download captcha"
512
 
513
+ #: contact_form.php:1063
514
  msgid "Agreement checkbox"
515
  msgstr "Agreement checkbox"
516
 
517
+ #: contact_form.php:1063
518
  msgid "Required checkbox for submitting the form"
519
  msgstr "Benötigte checkbox zur übermittlung des Formulars"
520
 
521
+ #: contact_form.php:1064
522
  msgid "Optional checkbox"
523
  msgstr "Optionale checkbox"
524
 
525
+ #: contact_form.php:1064
526
  msgid "Optional checkbox, the results of which will be displayed in email"
527
  msgstr "Optionale checkbox, das Ergebnis davon wird in der E-Mail angezeigt"
528
 
529
+ #: contact_form.php:1081
530
  msgid "Delete an attachment file from the server after the email is sent"
531
  msgstr "Lösche die Anhang-Datei vom Server nachdem die E-Mail gesendet wurde"
532
 
533
+ #: contact_form.php:1087
534
  msgid "Email in HTML format sending"
535
  msgstr "E-Mail im HTML Format"
536
 
537
+ #: contact_form.php:1091
538
  msgid "Display additional info in the email"
539
  msgstr "Zeige weitere Informationen in der E-Mail"
540
 
541
+ #: contact_form.php:1096
542
+ #: contact_form.php:2026
543
+ #: contact_form.php:2028
544
  msgid "Sent from (ip address)"
545
  msgstr "Gesendet von (IP-Adresse)"
546
 
547
+ #: contact_form.php:1096
548
  msgid "Example: Sent from (IP address):\t127.0.0.1"
549
  msgstr "Beispiel: Gesendet von (IP-Adresse):\t127.0.0.1"
550
 
551
+ #: contact_form.php:1097
552
+ #: contact_form.php:2032
553
+ #: contact_form.php:2034
554
  msgid "Date/Time"
555
  msgstr "Datum/Zeit"
556
 
557
+ #: contact_form.php:1097
558
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
559
  msgstr "Beispiel: Datum/Zeit:\tAugust 19, 2013 8:50 pm"
560
 
561
+ #: contact_form.php:1098
562
+ #: contact_form.php:2038
563
+ #: contact_form.php:2040
564
  msgid "Sent from (referer)"
565
  msgstr "Gesendet von (referer)"
566
 
567
+ #: contact_form.php:1098
568
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
569
  msgstr "Beispiel: Gesendet von (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
570
 
571
+ #: contact_form.php:1099
572
+ #: contact_form.php:2044
573
+ #: contact_form.php:2046
574
  msgid "Using (user agent)"
575
  msgstr "Verwendet (user agent)"
576
 
577
+ #: contact_form.php:1099
578
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
579
  msgstr "Beispiel: Verwendet (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
580
 
581
+ #: contact_form.php:1103
582
  msgid "Language settings for the field names in the form"
583
  msgstr "Benutzer-Einstellungen für die Feld-Namen in der Form"
584
 
585
+ #: contact_form.php:1112
586
  msgid "Add a language"
587
  msgstr "Hinzufügen einer Sprache"
588
 
589
+ #: contact_form.php:1116
590
  msgid "Change the names of the contact form fields and error messages"
591
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
592
 
593
+ #: contact_form.php:1121
594
+ #: contact_form.php:1202
595
  msgid "English"
596
  msgstr "Englisch"
597
 
598
+ #: contact_form.php:1129
599
+ #: contact_form.php:1163
600
  msgid "click to expand/hide the list"
601
  msgstr "Klick zum erweitern/verstecken der Liste"
602
 
603
+ #: contact_form.php:1138
604
+ #: contact_form.php:1172
605
  msgid "Tips below the Attachment block"
606
  msgstr "Tipps unterhalb des Anhang-Blocks"
607
 
608
+ #: contact_form.php:1141
609
+ #: contact_form.php:1175
610
  msgid "Error message for the Name field"
611
  msgstr "Fehlermeldung für das Namensfeld"
612
 
613
+ #: contact_form.php:1142
614
+ #: contact_form.php:1176
615
  msgid "Error message for the Address field"
616
  msgstr "Fehlermeldung für das Adress-Feld"
617
 
618
+ #: contact_form.php:1143
619
+ #: contact_form.php:1177
620
  msgid "Error message for the Email field"
621
  msgstr "Fehlermeldung für das E-Mail-Feld"
622
 
623
+ #: contact_form.php:1144
624
+ #: contact_form.php:1178
625
  msgid "Error message for the Phone field"
626
  msgstr "Fehlermeldung für das Telefonnummer-Feld"
627
 
628
+ #: contact_form.php:1145
629
+ #: contact_form.php:1179
630
  msgid "Error message for the Subject field"
631
  msgstr "Fehlermeldung für das Betreff-Feld"
632
 
633
+ #: contact_form.php:1146
634
+ #: contact_form.php:1180
635
  msgid "Error message for the Message field"
636
  msgstr "Fehlermeldung für das Inhalts-Feld"
637
 
638
+ #: contact_form.php:1147
639
+ #: contact_form.php:1181
640
  msgid "Error message about the file type for the Attachment field"
641
  msgstr "Fehlermeldung über den Datei-Typ für das Anhang-Feld"
642
 
643
+ #: contact_form.php:1148
644
+ #: contact_form.php:1182
645
  msgid "Error message while uploading a file for the Attachment field to the server"
646
  msgstr "Fehlermeldung während des hochladens einer Datei zum Server für das Anhang-Feld"
647
 
648
+ #: contact_form.php:1149
649
+ #: contact_form.php:1183
650
  msgid "Error message while moving the file for the Attachment field"
651
  msgstr "Fehlermeldung während der Verschiebung für das Anhang-Feld"
652
 
653
+ #: contact_form.php:1150
654
+ #: contact_form.php:1184
655
  msgid "Error message when file size limit for the Attachment field is exceeded"
656
  msgstr "Fehlermeldung wenn das Datei-Größen-Limit für das Anhang-Feld überschritten wird"
657
 
658
+ #: contact_form.php:1151
659
+ #: contact_form.php:1185
660
  msgid "Error message for the Captcha field"
661
  msgstr "Fehlermeldung für das Capatcha-Feld"
662
 
663
+ #: contact_form.php:1152
664
+ #: contact_form.php:1186
665
  msgid "Error message for the whole form"
666
  msgstr "Fehlermeldung für das ganze Formular"
667
 
668
+ #: contact_form.php:1155
669
+ #: contact_form.php:1157
670
+ #: contact_form.php:1189
671
+ #: contact_form.php:1191
672
+ #: contact_form.php:1212
673
+ #: contact_form.php:1214
674
+ #: contact_form.php:1222
675
+ #: contact_form.php:1224
676
  msgid "Use shortcode"
677
  msgstr "Benutze shortcode"
678
 
679
+ #: contact_form.php:1155
680
+ #: contact_form.php:1157
681
+ #: contact_form.php:1189
682
+ #: contact_form.php:1191
683
+ #: contact_form.php:1212
684
+ #: contact_form.php:1214
685
+ #: contact_form.php:1222
686
+ #: contact_form.php:1224
687
  msgid "for this language"
688
  msgstr "für diese Sprache"
689
 
690
+ #: contact_form.php:1199
691
  msgid "Action after email is sent"
692
  msgstr "Handlung nachdem die E-Mail gesendet wurde"
693
 
694
+ #: contact_form.php:1201
695
  msgid "Display text"
696
  msgstr "Zeige Text"
697
 
698
+ #: contact_form.php:1210
699
+ #: contact_form.php:1220
700
  msgid "Text"
701
  msgstr "Text"
702
 
703
+ #: contact_form.php:1231
704
  msgid "Redirect to the page"
705
  msgstr "Umleiten zur Seite"
706
 
707
+ #: contact_form.php:1232
708
  msgid "Url"
709
  msgstr "Url"
710
 
711
+ #: contact_form.php:1236
712
  msgid "The $_SERVER variable that is used to build a URL of the form"
713
  msgstr ""
714
 
715
+ #: contact_form.php:1240
716
  msgid "If you are not sure whether to change this setting or not, please do not do that."
717
  msgstr ""
718
 
719
+ #: contact_form.php:1246
720
+ #: contact_form.php:1430
721
  msgid "Save Changes"
722
  msgstr "Speichere Änderungen"
723
 
724
+ #: contact_form.php:1251
725
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
726
  msgstr "Wenn ihnen das Plugin gefällt, geben sie bitte 5 Sterne auf WordPress"
727
 
728
+ #: contact_form.php:1252
729
  msgid "Rate the plugin"
730
  msgstr "Bewerten Sie das Plugin"
731
 
732
+ #: contact_form.php:1255
733
  msgid "If there is something wrong about it, please contact us"
734
  msgstr "Wenn etwas fehlerhaft ist, kontaktieren sie uns bitte"
735
 
736
+ #: contact_form.php:1267
737
  msgid "Errors output"
738
  msgstr "Fehler-Ausgabe"
739
 
740
+ #: contact_form.php:1270
741
  msgid "Display error messages"
742
  msgstr "Zeige Fehlermeldungen"
743
 
744
+ #: contact_form.php:1271
745
  msgid "Color of the input field errors."
746
  msgstr "Farbe der Eingabe-Fehld-Fehler"
747
 
748
+ #: contact_form.php:1272
749
  msgid "Display error messages & color of the input field errors"
750
  msgstr "Zeige Fehlermeldungen & Farbe zu den Eingabe-Feldern"
751
 
752
+ #: contact_form.php:1277
753
  msgid "Add placeholder to the input blocks"
754
  msgstr "Füge Platzhalter an die Eingabe-Blöcke"
755
 
756
+ #: contact_form.php:1283
757
  msgid "Add tooltips"
758
  msgstr "Füge Tooltips hinzu"
759
 
760
+ #: contact_form.php:1297
761
  msgid "Email address"
762
  msgstr "E-Mail Adresse:"
763
 
764
+ #: contact_form.php:1302
765
  msgid "Phone Number"
766
  msgstr "Telefonnummer:"
767
 
768
+ #: contact_form.php:1316
769
  msgid "Attachment"
770
  msgstr "Anhang:"
771
 
772
+ #: contact_form.php:1321
773
  msgid "(powered by bestwebsoft.com)"
774
  msgstr "(powered by bestwebsoft.com)"
775
 
776
+ #: contact_form.php:1326
777
  msgid "Style options"
778
  msgstr "Stil-Optionen"
779
 
780
+ #: contact_form.php:1329
781
  msgid "Text color"
782
  msgstr "Text -Farbe"
783
 
784
+ #: contact_form.php:1332
785
+ #: contact_form.php:1337
786
+ #: contact_form.php:1347
787
+ #: contact_form.php:1352
788
+ #: contact_form.php:1357
789
+ #: contact_form.php:1362
790
+ #: contact_form.php:1372
791
+ #: contact_form.php:1377
792
+ #: contact_form.php:1383
793
+ #: contact_form.php:1394
794
+ #: contact_form.php:1399
795
+ #: contact_form.php:1404
796
  msgid "Default"
797
  msgstr "Standard"
798
 
799
+ #: contact_form.php:1334
800
  msgid "Label text color"
801
  msgstr "Beschriftungs-Text -Farbe"
802
 
803
+ #: contact_form.php:1339
804
  msgid "Placeholder color"
805
  msgstr "Platzhalter -Farbe"
806
 
807
+ #: contact_form.php:1344
808
  msgid "Errors color"
809
  msgstr "Fehler -Farbe"
810
 
811
+ #: contact_form.php:1349
812
  msgid "Error text color"
813
  msgstr "Fehler-Text -Farbe"
814
 
815
+ #: contact_form.php:1354
816
  msgid "Background color of the input field errors"
817
  msgstr "Hintergrund -Farbe von den Eingabefeld-Fehlern"
818
 
819
+ #: contact_form.php:1359
820
  msgid "Border color of the input field errors"
821
  msgstr "Rand -Farbe von den Eingabefeld-Fehlern"
822
 
823
+ #: contact_form.php:1364
824
  msgid "Placeholder color of the input field errors"
825
  msgstr "Platzhalter -Farbe von den Eingabefeld-Fehlern"
826
 
827
+ #: contact_form.php:1369
828
  msgid "Input fields"
829
  msgstr "Eingabe-Felder"
830
 
831
+ #: contact_form.php:1374
832
  msgid "Input fields background color"
833
  msgstr "Eingabefelder - Hintergrundfarbe"
834
 
835
+ #: contact_form.php:1379
836
  msgid "Text fields color"
837
  msgstr "Text-Felder -Farbe"
838
 
839
+ #: contact_form.php:1381
840
  msgid "Border width in px, numbers only"
841
  msgstr "Rand-Breite in px, nur Zahlen"
842
 
843
+ #: contact_form.php:1385
844
+ #: contact_form.php:1406
845
  msgid "Border color"
846
  msgstr "Rand -Farbe"
847
 
848
+ #: contact_form.php:1390
849
  msgid "Submit button"
850
  msgstr "Sende-Schaltfläche"
851
 
852
+ #: contact_form.php:1392
853
  msgid "Width in px, numbers only"
854
  msgstr "Breite in px, nur Zahlen"
855
 
856
+ #: contact_form.php:1396
857
  msgid "Button color"
858
  msgstr "Schaltflächen -Farbe"
859
 
860
+ #: contact_form.php:1401
861
  msgid "Button text color"
862
  msgstr "Schaltflächen-Text -Farbe"
863
 
864
+ #: contact_form.php:1434
865
  msgid "Contact Form Pro | Preview"
866
  msgstr "Kontakt-Form Pro | Vorschau"
867
 
868
+ #: contact_form.php:1437
869
  msgid "Show with errors"
870
  msgstr "Zeige mit Fehlern"
871
 
872
+ #: contact_form.php:1445
873
+ #: contact_form.php:1447
874
  msgid "Please enter your full name..."
875
  msgstr "Bitte geben sie Ihren vollen Namen ein... "
876
 
877
+ #: contact_form.php:1458
878
+ #: contact_form.php:1460
879
  msgid "Please enter your address..."
880
  msgstr "Bitte geben sie Ihre Adresse ein... "
881
 
882
+ #: contact_form.php:1469
883
+ #: contact_form.php:1471
884
  msgid "Please enter your email address..."
885
  msgstr "Bitte geben sie ihre E-Mail Adresse an ..."
886
 
887
+ #: contact_form.php:1480
888
+ #: contact_form.php:1482
889
  msgid "Please enter your phone number..."
890
  msgstr "Bitte geben sie Ihre Telefonnummer ein... "
891
 
892
+ #: contact_form.php:1491
893
+ #: contact_form.php:1493
894
  msgid "Please enter subject..."
895
  msgstr "Bitte geben sie Ihren Betreff an... "
896
 
897
+ #: contact_form.php:1501
898
+ #: contact_form.php:1503
899
  msgid "Please enter your message..."
900
  msgstr "Bitte geben sie Ihre Nachricht ein... "
901
 
902
+ #: contact_form.php:1545
903
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
904
  msgstr "Glückwunsch! Die PRO Version des Plugins wurde erfolgreich heruntergeladen und aktiviert."
905
 
906
+ #: contact_form.php:1547
907
  msgid "Please, go to"
908
  msgstr "Bitte, gehen Sie nach"
909
 
910
+ #: contact_form.php:1547
911
  msgid "the setting page"
912
  msgstr "Die Einstellungs-Seite"
913
 
914
+ #: contact_form.php:1548
915
  msgid "You will be redirected automatically in 5 seconds."
916
  msgstr "Sie werden in 5 Sekunden automatisch weitergeleitet"
917
 
918
+ #: contact_form.php:1553
919
  msgid "You can download and activate"
920
  msgstr "You can download and activate"
921
 
922
+ #: contact_form.php:1555
923
  msgid "version of this plugin by entering Your license key."
924
  msgstr "Version des Plugins durch Eingabe des Linzenzschlüssels."
925
 
926
+ #: contact_form.php:1557
927
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
928
  msgstr "Sie finden Ihren Linzenschlüssel auf Ihrer persönlichen Seite 'Client area', durch klicken des Links"
929
 
930
+ #: contact_form.php:1559
931
  msgid "(your username is the email you specify when purchasing the product)."
932
  msgstr "(ihr Benutzername ist die beim Kauf verwendte E-Mail)."
933
 
934
+ #: contact_form.php:1567
935
+ #: contact_form.php:1577
936
  msgid "Go!"
937
  msgstr "Go!"
938
 
939
+ #: contact_form.php:1647
940
  msgid "Sorry, email message could not be delivered."
941
  msgstr "Verzeihung, die Nachricht konnte nicht gesendet werden."
942
 
943
+ #: contact_form.php:2053
944
  msgid "Contact from"
945
  msgstr "Kontakt von"
946
 
947
+ #: contact_form.php:2066
948
+ #: contact_form.php:2092
949
  msgid "Email"
950
  msgstr "E-Mail"
951
 
952
+ #: contact_form.php:2070
953
+ #: contact_form.php:2094
954
  msgid "Phone"
955
  msgstr "Telefonnummer"
956
 
957
+ #: contact_form.php:2079
958
+ #: contact_form.php:2097
959
  msgid "Site"
960
  msgstr "Webseite"
961
 
962
+ #: contact_form.php:2160
963
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
964
  msgstr "Wenn sie dieses MIME sehen, unterstützt Ihr Browser diesen MIME Typ nicht!"
965
 
966
+ #: contact_form.php:2229
967
  msgid "FAQ"
968
  msgstr "Häufig gestellte Fragen (FAQ)"
969
 
970
+ #: contact_form.php:2230
971
  msgid "Support"
972
  msgstr "Support"
973
 
974
+ #: contact_form.php:2280
975
  msgid "Are you sure that you want to delete this language data?"
976
  msgstr "Sind sie sicher, dass sie diese Sprach-Daten löschen wollen?"
977
 
978
+ #: contact_form.php:2476
979
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
980
  msgstr ""
981
 
982
+ #: contact_form.php:2477
983
  msgid "Extend standard plugin functionality with new great options."
984
  msgstr ""
985
 
986
+ #: contact_form.php:2492
987
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
988
  msgstr ""
989
 
990
+ #: contact_form.php:2493
991
  msgid "Manage messages that have been sent from your website."
992
  msgstr ""
993
 
994
+ #~ msgid ""
995
+ #~ "This functionality is available in the Pro version of the plugin. For "
996
+ #~ "more details, please follow the link"
997
+ #~ msgstr ""
998
+ #~ "Diese Funktion ist in der Pro Version des plugins verfügbar. Für mehr "
999
+ #~ "Details, folgen sie bitte dem Link"
1000
+
1001
+ #~ msgid "Contact Form Pro"
1002
+ #~ msgstr "Kontakt-Form Pro"
1003
+
1004
  #, fuzzy
1005
  #~ msgid "Contact Form Pro Extra Settings"
1006
  #~ msgstr "Contact Form Opties"
languages/contact_form-et.mo CHANGED
Binary file
languages/contact_form-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: 2014-02-20 14:04+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Feliks <feliks@veebimeister.com>\n"
9
  "Language: ca_ES\n"
@@ -16,952 +16,991 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  msgid "Contact Form Settings"
22
  msgstr "Contact Form seaded"
23
 
24
- #: contact_form.php:33
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
- #: contact_form.php:80
29
- #: contact_form.php:978
30
- #: contact_form.php:1008
31
  msgid "Name:"
32
  msgstr "Nimi:"
33
 
34
- #: contact_form.php:81
35
- #: contact_form.php:979
36
- #: contact_form.php:1009
37
  msgid "Address:"
38
  msgstr "Aadress:"
39
 
40
- #: contact_form.php:82
41
- #: contact_form.php:980
42
- #: contact_form.php:1010
43
  msgid "Email Address:"
44
  msgstr "E-maili aadress:"
45
 
46
- #: contact_form.php:83
47
- #: contact_form.php:981
48
- #: contact_form.php:1011
49
  msgid "Phone number:"
50
  msgstr "Telefoni number:"
51
 
52
- #: contact_form.php:84
53
- #: contact_form.php:982
54
- #: contact_form.php:1012
55
  msgid "Subject:"
56
  msgstr "Pealkiri:"
57
 
58
- #: contact_form.php:85
59
- #: contact_form.php:983
60
- #: contact_form.php:1013
61
  msgid "Message:"
62
  msgstr "Sõnum:"
63
 
64
- #: contact_form.php:86
65
- #: contact_form.php:984
66
- #: contact_form.php:1014
67
  msgid "Attachment:"
68
  msgstr "Manus:"
69
 
70
- #: contact_form.php:87
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Toetatud failitüübid: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max faili suurus: 2MB"
73
 
74
- #: contact_form.php:88
75
- #: contact_form.php:986
76
- #: contact_form.php:1016
77
  msgid "Send me a copy"
78
  msgstr "Saada mulle koopia"
79
 
80
- #: contact_form.php:89
81
- #: contact_form.php:987
82
- #: contact_form.php:1017
83
  msgid "Submit"
84
  msgstr "Saada"
85
 
86
- #: contact_form.php:90
87
  msgid "Your name is required."
88
  msgstr "Sinu nimi on kohustuslik."
89
 
90
- #: contact_form.php:91
91
  msgid "Address is required."
92
  msgstr "Aadress on kohustuslik."
93
 
94
- #: contact_form.php:92
95
  msgid "A valid email address is required."
96
  msgstr "Korrektne e-mail on kohustuslik."
97
 
98
- #: contact_form.php:93
99
  msgid "Phone number is required."
100
  msgstr "Telefoni number on kohustuslik."
101
 
102
- #: contact_form.php:94
103
  msgid "Subject is required."
104
  msgstr "Pealkiri on kohustuslik."
105
 
106
- #: contact_form.php:95
107
  msgid "Message text is required."
108
  msgstr "Sõnumi tekst on kohustuslik."
109
 
110
- #: contact_form.php:96
111
  msgid "File format is not valid."
112
  msgstr "Failiformaat pole toetatud."
113
 
114
- #: contact_form.php:97
115
  msgid "File upload error."
116
  msgstr "Error faili üles laadimisel."
117
 
118
- #: contact_form.php:98
119
  msgid "The file could not be uploaded."
120
  msgstr "Faili ei saanud üles laadida."
121
 
122
- #: contact_form.php:99
123
  msgid "This file is too large."
124
  msgstr "See fail on liiga suur."
125
 
126
- #: contact_form.php:100
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Palun täida CAPTCHA."
129
 
130
- #: contact_form.php:101
131
  msgid "Please make corrections below and try again."
132
  msgstr "Palun tee allolevad parandused ja proovi uuesti."
133
 
134
- #: contact_form.php:103
135
  msgid "Thank you for contacting us."
136
  msgstr "Tänan meiega kontakteerumast."
137
 
138
- #: contact_form.php:203
139
  msgid "requires"
140
  msgstr "nõuab"
141
 
142
- #: contact_form.php:203
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "või uuem, seetõttu on ka see deaktiveeritud! Palun uuenda WordPressi ja proovi uuesti."
145
 
146
- #: contact_form.php:203
147
  msgid "Back to the WordPress"
148
  msgstr "Tagasi WordPressi"
149
 
150
- #: contact_form.php:203
151
  msgid "Plugins page"
152
  msgstr "Pluginate leht"
153
 
154
- #: contact_form.php:494
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "Kui 'Suuna lehele' valik on aktiveeritud, siis URL-i väli peab olema järgnevas formaadis"
157
 
158
- #: contact_form.php:503
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "Sellist kasutajat ei eksisteeri. Seaded pole salvestatud."
161
 
162
- #: contact_form.php:507
163
- #: contact_form.php:513
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. Seaded pole salvestatud."
166
 
167
- #: contact_form.php:518
168
  msgid "Settings saved."
169
  msgstr "Seaded salvestatud."
170
 
171
- #: contact_form.php:554
172
- #: contact_form.php:593
173
  msgid "Wrong license key"
174
  msgstr ""
175
 
176
- #: contact_form.php:586
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr ""
179
 
180
- #: contact_form.php:595
181
  msgid "This license key is bind to another site"
182
  msgstr ""
183
 
184
- #: contact_form.php:597
185
- #: contact_form.php:1392
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr ""
188
 
189
- #: contact_form.php:615
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr ""
192
 
193
- #: contact_form.php:621
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr ""
196
 
197
- #: contact_form.php:625
198
- #: contact_form.php:634
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
 
202
- #: contact_form.php:638
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr ""
205
 
206
- #: contact_form.php:653
207
  #, fuzzy
208
  msgid "Please, enter Your license key"
209
  msgstr "Palun sisesta oma sõnum..."
210
 
211
- #: contact_form.php:662
212
- msgid "Notice:"
213
- msgstr "Märkus:"
214
-
215
- #: contact_form.php:662
216
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
217
- msgstr "Plugina seaded on muudetud. Nende salvestamiseks ära unusta klikkimast 'Salvesta muutused' nupul."
218
-
219
- #: contact_form.php:665
220
- #: contact_form.php:1997
221
- #: contact_form.php:2008
222
  msgid "Settings"
223
  msgstr "Seaded"
224
 
225
- #: contact_form.php:666
226
  msgid "Extra settings"
227
  msgstr "Ekstra seaded"
228
 
229
- #: contact_form.php:667
230
  msgid "Go PRO"
231
  msgstr ""
232
 
233
- #: contact_form.php:673
234
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  msgid "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:"
236
  msgstr "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see lühikood oma postitusele või lehele või moodulile:"
237
 
238
- #: contact_form.php:673
239
- #: contact_form.php:674
240
- #: contact_form.php:1001
241
- #: contact_form.php:1050
 
 
 
 
242
  msgid "or"
243
  msgstr "või"
244
 
245
- #: contact_form.php:674
 
246
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
247
  msgstr "Kui sul on probleeme standard lühikoodiga [contact_form], siis peaksid kasutama lühikoodi"
248
 
249
- #: contact_form.php:675
 
250
  msgid "They work the same way."
251
  msgstr "Need töötavad täpselt samamoodi."
252
 
253
- #: contact_form.php:676
 
254
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
255
  msgstr "Kui sa jätad selle välja tühjaks, siis sõnumid saadetakse registreerumisel antud e-maili aadressile."
256
 
257
- #: contact_form.php:680
258
  msgid "The user's email address:"
259
  msgstr "Kasutaja e-maili aadress:"
260
 
261
- #: contact_form.php:684
262
  msgid "Create a username"
263
  msgstr "Loo kasutajanimi"
264
 
265
- #: contact_form.php:689
266
  msgid "Enter a username of the person who should get the messages from the contact form."
267
  msgstr "Sisesta selle isiku kasutajanimi, kes peaks saama sõnumid kontaktivormilt."
268
 
269
- #: contact_form.php:693
270
  msgid "Use this email address:"
271
  msgstr "Kasuta seda e-maili aadressi:"
272
 
273
- #: contact_form.php:696
274
  msgid "Enter the email address you want the messages forwarded to."
275
  msgstr "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
276
 
277
- #: contact_form.php:702
278
  msgid "Add department selectbox to the contact form:"
279
  msgstr "Lisa valikukast kontakti vormile:"
280
 
281
- #: contact_form.php:710
282
- #: contact_form.php:1246
283
  msgid "If you upgrade to Pro version all your settings will be saved."
284
  msgstr "Kui sa lähed üle Pro versioonile, siis kõik seaded salvestatakse."
285
 
286
- #: contact_form.php:715
287
- #: contact_form.php:852
288
- #: contact_form.php:923
289
- #: contact_form.php:1096
290
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
291
- msgstr "Aquesta funcionalitat està disponible en la versió Pro del connector. Per a més detalls, si us plau seguiu l'enllaç"
292
 
293
- #: contact_form.php:716
294
- #: contact_form.php:853
295
- #: contact_form.php:924
296
- #: contact_form.php:1097
297
- msgid "Contact Form Pro"
298
- msgstr "Contact Form Pro"
 
 
299
 
300
- #: contact_form.php:722
 
 
 
 
 
 
 
301
  msgid "Save emails to the database"
302
  msgstr "Salvesta e-mailid andmebaasi"
303
 
304
- #: contact_form.php:732
305
  msgid "Using"
306
  msgstr ""
307
 
308
- #: contact_form.php:732
309
- #: contact_form.php:901
310
- #: contact_form.php:904
311
- #: contact_form.php:908
312
  msgid "powered by"
313
  msgstr "loonud"
314
 
315
- #: contact_form.php:735
316
- #: contact_form.php:739
317
  msgid "Using Contact Form to DB powered by"
318
  msgstr "Kontakti vorm andmebaasi on loonud"
319
 
320
- #: contact_form.php:735
321
  msgid "Activate Contact Form to DB"
322
  msgstr "Aktiveeri Contact Form"
323
 
324
- #: contact_form.php:739
325
  msgid "Download Contact Form to DB"
326
  msgstr "Lae Contact Form alla"
327
 
328
- #: contact_form.php:744
329
  msgid "Additional options"
330
  msgstr "Opcions addicionals"
331
 
332
- #: contact_form.php:746
333
  msgid "Show"
334
  msgstr "Näita"
335
 
336
- #: contact_form.php:747
337
  msgid "Hide"
338
  msgstr "Peida"
339
 
340
- #: contact_form.php:751
341
  msgid "What to use?"
342
  msgstr "Mida kasutada?"
343
 
344
- #: contact_form.php:754
345
  msgid "Wp-mail"
346
  msgstr "Wp-mail"
347
 
348
- #: contact_form.php:754
349
  msgid "You can use the wp_mail function for mailing"
350
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
351
 
352
- #: contact_form.php:756
353
  msgid "Mail"
354
  msgstr "E-mail"
355
 
356
- #: contact_form.php:756
357
  msgid "To send mail you can use the php mail function"
358
  msgstr "E-mailide saatmiseks saad kasutada php mail funktsiooni"
359
 
360
- #: contact_form.php:760
361
  msgid "The text in the 'From' field"
362
  msgstr "Tekst 'Kellelt' väljal"
363
 
364
- #: contact_form.php:762
365
  msgid "User name"
366
  msgstr "Kasutaja nimi"
367
 
368
- #: contact_form.php:763
369
  msgid "The name of the user who fills the form will be used in the field 'From'."
370
  msgstr "Kasutaja nime (kes täidab vormi) kasutatakse 'Kellelt' väljal."
371
 
372
- #: contact_form.php:766
373
  msgid "This text will be used in the 'FROM' field"
374
  msgstr "Seda teksti kasutatakse 'Kellelt' väljal"
375
 
376
- #: contact_form.php:770
377
  msgid "The email address in the 'From' field"
378
  msgstr "E-maili aadress 'Kellelt' väljal"
379
 
380
- #: contact_form.php:772
381
  msgid "User email"
382
  msgstr "Kasutaja e-mail"
383
 
384
- #: contact_form.php:773
385
  msgid "The email address of the user who fills the form will be used in the field 'From'."
386
  msgstr "Selle kasutaja, kes täidab vormi, e-maili aadressi kasutatakse 'Kellelt' väljal."
387
 
388
- #: contact_form.php:776
389
  msgid "This email address will be used in the 'From' field."
390
  msgstr "Seda e-maili aadressi kasutatakse 'Kellelt' väljal."
391
 
392
- #: contact_form.php:780
393
  msgid "Required symbol"
394
  msgstr "Nõutud sümbol"
395
 
396
- #: contact_form.php:790
397
  msgid "Fields"
398
  msgstr "Väljad"
399
 
400
- #: contact_form.php:791
401
  msgid "Used"
402
  msgstr "Kasutatud"
403
 
404
- #: contact_form.php:792
405
  msgid "Required"
406
  msgstr "Nõutud"
407
 
408
- #: contact_form.php:793
409
  msgid "Visible"
410
  msgstr "Nähtav"
411
 
412
- #: contact_form.php:794
413
  msgid "Disabled for editing"
414
  msgstr "Toimetamiseks välja lülitatud"
415
 
416
- #: contact_form.php:795
417
  msgid "Field's default value"
418
  msgstr "Välja vaikeseades väärtus"
419
 
420
- #: contact_form.php:800
421
- #: contact_form.php:1121
422
- #: contact_form.php:1841
423
- #: contact_form.php:1871
424
  msgid "Name"
425
  msgstr "Nimi"
426
 
427
- #: contact_form.php:808
428
- #: contact_form.php:1126
429
- #: contact_form.php:1845
430
- #: contact_form.php:1873
431
  msgid "Address"
432
  msgstr "Aadress"
433
 
434
- #: contact_form.php:816
435
  msgid "Email Address"
436
  msgstr "E-maili aadress"
437
 
438
- #: contact_form.php:824
439
  msgid "Phone number"
440
  msgstr "Telefoni number"
441
 
442
- #: contact_form.php:832
443
- #: contact_form.php:1141
444
- #: contact_form.php:1855
445
- #: contact_form.php:1877
446
  msgid "Subject"
447
  msgstr "Pealkiri"
448
 
449
- #: contact_form.php:840
450
- #: contact_form.php:1145
451
- #: contact_form.php:1858
452
- #: contact_form.php:1878
453
  msgid "Message"
454
  msgstr "Sõnum"
455
 
456
- #: contact_form.php:858
457
  msgid "Attachment block"
458
  msgstr "Manuste blokk"
459
 
460
- #: contact_form.php:860
461
  msgid "Users can attach the following file formats"
462
  msgstr "Kasutajad saavad lisada manuseid järgnevates formaatides"
463
 
464
- #: contact_form.php:874
465
  msgid "Add to the form"
466
  msgstr "Lisa vormile"
467
 
468
- #: contact_form.php:879
469
  msgid "Tips below the Attachment"
470
  msgstr "Vihjed manuse alla"
471
 
472
- #: contact_form.php:888
473
  msgid "'Send me a copy' block"
474
  msgstr "'Saada mulle koopia' blokk"
475
 
476
- #: contact_form.php:901
477
- #: contact_form.php:904
478
- #: contact_form.php:908
479
- #: contact_form.php:1155
480
  msgid "Captcha"
481
  msgstr "Captcha"
482
 
483
- #: contact_form.php:904
484
  msgid "Activate captcha"
485
  msgstr "Captcha activat"
486
 
487
- #: contact_form.php:908
488
  msgid "Download captcha"
489
  msgstr "Lae captcha alla"
490
 
491
- #: contact_form.php:916
492
  msgid "Agreement checkbox"
493
  msgstr "Nõustumise kastike"
494
 
495
- #: contact_form.php:916
496
  msgid "Required checkbox for submitting the form"
497
  msgstr "Nõutud kastike vormi saatmiseks"
498
 
499
- #: contact_form.php:917
500
  msgid "Optional checkbox"
501
  msgstr "Valikuline kastike"
502
 
503
- #: contact_form.php:917
504
  msgid "Optional checkbox, the results of which will be displayed in email"
505
  msgstr "Valikuline kastike, mille tulemusi näidatakse e-mailis"
506
 
507
- #: contact_form.php:928
508
  msgid "Delete an attachment file from the server after the email is sent"
509
  msgstr "Kustuta manuse fail serverist peale e-maili saatmist"
510
 
511
- #: contact_form.php:934
512
  msgid "Email in HTML format sending"
513
  msgstr "E-maili saatmine HTML formaadis"
514
 
515
- #: contact_form.php:938
516
  msgid "Display additional info in the email"
517
  msgstr "Näita e-mailis lisainfot"
518
 
519
- #: contact_form.php:943
520
- #: contact_form.php:1808
521
- #: contact_form.php:1810
522
  msgid "Sent from (ip address)"
523
  msgstr "Saadetud (IP aadress)"
524
 
525
- #: contact_form.php:943
526
  msgid "Example: Sent from (IP address):\t127.0.0.1"
527
  msgstr "Näide: Saadetud (IP address):\t127.0.0.1"
528
 
529
- #: contact_form.php:944
530
- #: contact_form.php:1814
531
- #: contact_form.php:1816
532
  msgid "Date/Time"
533
  msgstr "Kuupäev/Aeg"
534
 
535
- #: contact_form.php:944
536
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
537
  msgstr "Näide: Kuupäev/Aeg:\tAugust 19, 2013 8:50 pm"
538
 
539
- #: contact_form.php:945
540
- #: contact_form.php:1820
541
- #: contact_form.php:1822
542
  msgid "Sent from (referer)"
543
  msgstr "Saadetud (referer)"
544
 
545
- #: contact_form.php:945
546
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
547
  msgstr "Näide: Saatnud (referer):\thttp://veebimeister.com/"
548
 
549
- #: contact_form.php:946
550
- #: contact_form.php:1826
551
- #: contact_form.php:1828
552
  msgid "Using (user agent)"
553
  msgstr "Kasutab (user agent)"
554
 
555
- #: contact_form.php:946
556
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
557
  msgstr "Näide: Kasutab (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
558
 
559
- #: contact_form.php:950
560
  msgid "Language settings for the field names in the form"
561
  msgstr "Vormi keeleseaded nimeväljadele"
562
 
563
- #: contact_form.php:959
564
  msgid "Add a language"
565
  msgstr "Lisa keel"
566
 
567
- #: contact_form.php:963
568
  msgid "Change the names of the contact form fields and error messages"
569
  msgstr "Muuda kontakti vormi väljade ja error-sõnumite nimesid"
570
 
571
- #: contact_form.php:968
572
- #: contact_form.php:1041
573
  msgid "English"
574
  msgstr "Inglise"
575
 
576
- #: contact_form.php:976
577
- #: contact_form.php:1006
578
  msgid "click to expand/hide the list"
579
  msgstr ""
580
 
581
- #: contact_form.php:985
582
- #: contact_form.php:1015
583
  msgid "Tips below the Attachment block"
584
  msgstr "Vihje manuse bloki all"
585
 
586
- #: contact_form.php:988
587
- #: contact_form.php:1018
588
  msgid "Error message for the Name field"
589
  msgstr "Error väljal 'Nimi'"
590
 
591
- #: contact_form.php:989
592
- #: contact_form.php:1019
593
  msgid "Error message for the Address field"
594
  msgstr "Error väljal 'Aadress'"
595
 
596
- #: contact_form.php:990
597
- #: contact_form.php:1020
598
  msgid "Error message for the Email field"
599
  msgstr "Error väljal 'E-mail'"
600
 
601
- #: contact_form.php:991
602
- #: contact_form.php:1021
603
  msgid "Error message for the Phone field"
604
  msgstr "Error väljal 'Telefon'"
605
 
606
- #: contact_form.php:992
607
- #: contact_form.php:1022
608
  msgid "Error message for the Subject field"
609
  msgstr "Error väljal 'Pealkiri'"
610
 
611
- #: contact_form.php:993
612
- #: contact_form.php:1023
613
  msgid "Error message for the Message field"
614
  msgstr "Error väljal 'Sõnum'"
615
 
616
- #: contact_form.php:994
617
- #: contact_form.php:1024
618
  msgid "Error message about the file type for the Attachment field"
619
  msgstr "Error faili tüübi kohta manuse väljal"
620
 
621
- #: contact_form.php:995
622
- #: contact_form.php:1025
623
  msgid "Error message while uploading a file for the Attachment field to the server"
624
  msgstr "Error faili üles laadimisel serverisse manuse välja jaoks"
625
 
626
- #: contact_form.php:996
627
- #: contact_form.php:1026
628
  msgid "Error message while moving the file for the Attachment field"
629
  msgstr "Error faili liigutamisel manuse väljale"
630
 
631
- #: contact_form.php:997
632
- #: contact_form.php:1027
633
  msgid "Error message when file size limit for the Attachment field is exceeded"
634
  msgstr "Error ületades faili suuruse limiiti manuse väljal"
635
 
636
- #: contact_form.php:998
637
- #: contact_form.php:1028
638
  msgid "Error message for the Captcha field"
639
  msgstr "Error väljal 'Captcha'"
640
 
641
- #: contact_form.php:999
642
- #: contact_form.php:1029
643
  msgid "Error message for the whole form"
644
  msgstr "Error kogu vormi kohta"
645
 
646
- #: contact_form.php:1001
647
- #: contact_form.php:1031
648
- #: contact_form.php:1050
649
- #: contact_form.php:1056
 
 
 
 
650
  msgid "Use shortcode"
651
  msgstr "Kasuta lühikoodi"
652
 
653
- #: contact_form.php:1001
654
- #: contact_form.php:1031
655
- #: contact_form.php:1050
656
- #: contact_form.php:1056
 
 
 
 
657
  msgid "for this language"
658
  msgstr "selle keele jaoks"
659
 
660
- #: contact_form.php:1038
661
  msgid "Action after email is sent"
662
  msgstr "Tegevus peale e-maili saatmist"
663
 
664
- #: contact_form.php:1040
665
  msgid "Display text"
666
  msgstr "Näita teksti"
667
 
668
- #: contact_form.php:1049
669
- #: contact_form.php:1055
670
  msgid "Text"
671
  msgstr "Tekst"
672
 
673
- #: contact_form.php:1062
674
  msgid "Redirect to the page"
675
  msgstr "Suuna lehele"
676
 
677
- #: contact_form.php:1063
678
  msgid "Url"
679
  msgstr "Url"
680
 
681
- #: contact_form.php:1067
682
  msgid "The $_SERVER variable that is used to build a URL of the form"
683
  msgstr ""
684
 
685
- #: contact_form.php:1071
686
  msgid "If you are not sure whether to change this setting or not, please do not do that."
687
  msgstr ""
688
 
689
- #: contact_form.php:1077
690
- #: contact_form.php:1252
691
  msgid "Save Changes"
692
  msgstr "Salvesta muudatused"
693
 
694
- #: contact_form.php:1082
695
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
696
  msgstr "Kui sulle see plugin meeldib, siis anna sellele 5 tärni WordPressis"
697
 
698
- #: contact_form.php:1083
699
  msgid "Rate the plugin"
700
  msgstr "Hinda pluginat"
701
 
702
- #: contact_form.php:1086
703
  msgid "If there is something wrong about it, please contact us"
704
  msgstr "Palun kontakteeru kohe meiega, kui sellega on midagi viga"
705
 
706
- #: contact_form.php:1101
707
  msgid "Errors output"
708
  msgstr "Errorite väljund"
709
 
710
- #: contact_form.php:1104
711
  msgid "Display error messages"
712
  msgstr "Näita error-sõnumeid"
713
 
714
- #: contact_form.php:1105
715
  msgid "Color of the input field errors."
716
  msgstr "Sisestusväljade errorite värv"
717
 
718
- #: contact_form.php:1106
719
  msgid "Display error messages & color of the input field errors"
720
  msgstr "Näita error-sõnumeid ja sisestusväljade errorite värvi"
721
 
722
- #: contact_form.php:1111
723
  msgid "Add placeholder to the input blocks"
724
  msgstr "Lisa kohahoidja sisestusblokkidele"
725
 
726
- #: contact_form.php:1117
727
  msgid "Add tooltips"
728
  msgstr "Lisa vihjed"
729
 
730
- #: contact_form.php:1131
731
  msgid "Email address"
732
  msgstr "E-maili aadress"
733
 
734
- #: contact_form.php:1136
735
  msgid "Phone Number"
736
  msgstr "Telefoni number"
737
 
738
- #: contact_form.php:1150
739
  msgid "Attachment"
740
  msgstr "Manus"
741
 
742
- #: contact_form.php:1155
743
  msgid "(powered by bestwebsoft.com)"
744
  msgstr "(Loonud bestwebsoft.com)"
745
 
746
- #: contact_form.php:1160
747
  msgid "Style options"
748
  msgstr "Stiili valikud"
749
 
750
- #: contact_form.php:1163
751
  msgid "Text color"
752
  msgstr "Teksti värv"
753
 
754
- #: contact_form.php:1166
755
- #: contact_form.php:1171
756
- #: contact_form.php:1181
757
- #: contact_form.php:1186
758
- #: contact_form.php:1191
759
- #: contact_form.php:1196
760
- #: contact_form.php:1206
761
- #: contact_form.php:1211
762
- #: contact_form.php:1217
763
- #: contact_form.php:1228
764
- #: contact_form.php:1233
765
- #: contact_form.php:1238
766
  msgid "Default"
767
  msgstr "Vaikimisi valik"
768
 
769
- #: contact_form.php:1168
770
  msgid "Label text color"
771
  msgstr "Sildi teksti värv"
772
 
773
- #: contact_form.php:1173
774
  msgid "Placeholder color"
775
  msgstr "Kohahoidja värv"
776
 
777
- #: contact_form.php:1178
778
  msgid "Errors color"
779
  msgstr "Errorite värv"
780
 
781
- #: contact_form.php:1183
782
  msgid "Error text color"
783
  msgstr "Error-teksti värv"
784
 
785
- #: contact_form.php:1188
786
  msgid "Background color of the input field errors"
787
  msgstr "Sisestusväljade errorite taustavärv"
788
 
789
- #: contact_form.php:1193
790
  msgid "Border color of the input field errors"
791
  msgstr "Sisestusväljade errorite piirjoonte värv"
792
 
793
- #: contact_form.php:1198
794
  msgid "Placeholder color of the input field errors"
795
  msgstr "Sisestusväljade errorite kohahoidja värv"
796
 
797
- #: contact_form.php:1203
798
  msgid "Input fields"
799
  msgstr "Sisestusväljad"
800
 
801
- #: contact_form.php:1208
802
  msgid "Input fields background color"
803
  msgstr "Sisestusväljade taustavärv"
804
 
805
- #: contact_form.php:1213
806
  msgid "Text fields color"
807
  msgstr "Tekstiväljade värv"
808
 
809
- #: contact_form.php:1215
810
  msgid "Border width in px, numbers only"
811
  msgstr "Piirjoone paksus pikslites. Ainult number"
812
 
813
- #: contact_form.php:1219
814
- #: contact_form.php:1240
815
  msgid "Border color"
816
  msgstr "Piirjoone värv"
817
 
818
- #: contact_form.php:1224
819
  msgid "Submit button"
820
  msgstr "'Saada' nupp"
821
 
822
- #: contact_form.php:1226
823
  msgid "Width in px, numbers only"
824
  msgstr "Laius pikslites, ainult numbrid"
825
 
826
- #: contact_form.php:1230
827
  msgid "Button color"
828
  msgstr "Nupu värv"
829
 
830
- #: contact_form.php:1235
831
  msgid "Button text color"
832
  msgstr "Nupu teksti värv"
833
 
834
- #: contact_form.php:1256
835
  msgid "Contact Form Pro | Preview"
836
  msgstr "Contact Form Pro | Eelvaade"
837
 
838
- #: contact_form.php:1259
839
  msgid "Show with errors"
840
  msgstr "Näita koos erroritega"
841
 
842
- #: contact_form.php:1267
843
- #: contact_form.php:1269
844
  msgid "Please enter your full name..."
845
  msgstr "Palun sisesta oma täisnimi..."
846
 
847
- #: contact_form.php:1280
848
- #: contact_form.php:1282
849
  msgid "Please enter your address..."
850
  msgstr "Palun sisesta oma aadress..."
851
 
852
- #: contact_form.php:1291
853
- #: contact_form.php:1293
854
  msgid "Please enter your email address..."
855
  msgstr "Palun sisesta oma e-maili aadress..."
856
 
857
- #: contact_form.php:1302
858
- #: contact_form.php:1304
859
  msgid "Please enter your phone number..."
860
  msgstr "Palun sisesta oma telefoni number..."
861
 
862
- #: contact_form.php:1313
863
- #: contact_form.php:1315
864
  msgid "Please enter subject..."
865
  msgstr "Palun sisesta pealkiri..."
866
 
867
- #: contact_form.php:1323
868
- #: contact_form.php:1325
869
  msgid "Please enter your message..."
870
  msgstr "Palun sisesta oma sõnum..."
871
 
872
- #: contact_form.php:1367
873
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
874
  msgstr ""
875
 
876
- #: contact_form.php:1369
877
  msgid "Please, go to"
878
  msgstr ""
879
 
880
- #: contact_form.php:1369
881
  #, fuzzy
882
  msgid "the setting page"
883
  msgstr "Ekstra seaded"
884
 
885
- #: contact_form.php:1370
886
  msgid "You will be redirected automatically in 5 seconds."
887
  msgstr ""
888
 
889
- #: contact_form.php:1375
890
  msgid "You can download and activate"
891
  msgstr ""
892
 
893
- #: contact_form.php:1377
894
  msgid "version of this plugin by entering Your license key."
895
  msgstr ""
896
 
897
- #: contact_form.php:1379
898
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
899
  msgstr ""
900
 
901
- #: contact_form.php:1381
902
  msgid "(your username is the email you specify when purchasing the product)."
903
  msgstr ""
904
 
905
- #: contact_form.php:1389
906
- #: contact_form.php:1399
907
  msgid "Go!"
908
  msgstr ""
909
 
910
- #: contact_form.php:1449
911
  msgid "Sorry, email message could not be delivered."
912
  msgstr "Vabandust, see kiri jäi saatmata."
913
 
914
- #: contact_form.php:1835
915
  msgid "Contact from"
916
  msgstr "Kontakti vorm"
917
 
918
- #: contact_form.php:1848
919
- #: contact_form.php:1874
920
  msgid "Email"
921
  msgstr "E-mail"
922
 
923
- #: contact_form.php:1852
924
- #: contact_form.php:1876
925
  msgid "Phone"
926
  msgstr "Telefon"
927
 
928
- #: contact_form.php:1861
929
- #: contact_form.php:1879
930
  msgid "Site"
931
  msgstr "Leht"
932
 
933
- #: contact_form.php:1941
934
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
935
  msgstr "Kui sa näed seda MIME-t, siis MIME tüüp pole sinu e-maili kliendi poolt toetatud!"
936
 
937
- #: contact_form.php:2009
938
  msgid "FAQ"
939
  msgstr "KKK"
940
 
941
- #: contact_form.php:2010
942
  msgid "Support"
943
  msgstr "Klienditugi"
944
 
945
- #: contact_form.php:2068
946
  msgid "Are you sure that you want to delete this language data?"
947
  msgstr "Oled sa kindel, et soovid kustutada selle keele andmeid?"
948
 
949
- #: contact_form.php:2223
950
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
951
  msgstr ""
952
 
953
- #: contact_form.php:2224
954
  msgid "Extend standard plugin functionality with new great options."
955
  msgstr ""
956
 
957
- #: contact_form.php:2233
958
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
959
  msgstr ""
960
 
961
- #: contact_form.php:2234
962
  msgid "Manage messages that have been sent from your website."
963
  msgstr ""
964
 
 
 
 
 
 
 
 
 
 
 
965
  #~ msgid "Contact Form Pro Extra Settings"
966
  #~ msgstr "Contact Form Pro ekstra seaded"
967
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:38+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:38+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@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:73
20
+ #: contact_form.php:785
21
  msgid "Contact Form Settings"
22
  msgstr "Contact Form seaded"
23
 
24
+ #: contact_form.php:73
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
+ #: contact_form.php:149
29
+ #: contact_form.php:1131
30
+ #: contact_form.php:1165
31
  msgid "Name:"
32
  msgstr "Nimi:"
33
 
34
+ #: contact_form.php:150
35
+ #: contact_form.php:1132
36
+ #: contact_form.php:1166
37
  msgid "Address:"
38
  msgstr "Aadress:"
39
 
40
+ #: contact_form.php:151
41
+ #: contact_form.php:1133
42
+ #: contact_form.php:1167
43
  msgid "Email Address:"
44
  msgstr "E-maili aadress:"
45
 
46
+ #: contact_form.php:152
47
+ #: contact_form.php:1134
48
+ #: contact_form.php:1168
49
  msgid "Phone number:"
50
  msgstr "Telefoni number:"
51
 
52
+ #: contact_form.php:153
53
+ #: contact_form.php:1135
54
+ #: contact_form.php:1169
55
  msgid "Subject:"
56
  msgstr "Pealkiri:"
57
 
58
+ #: contact_form.php:154
59
+ #: contact_form.php:1136
60
+ #: contact_form.php:1170
61
  msgid "Message:"
62
  msgstr "Sõnum:"
63
 
64
+ #: contact_form.php:155
65
+ #: contact_form.php:1137
66
+ #: contact_form.php:1171
67
  msgid "Attachment:"
68
  msgstr "Manus:"
69
 
70
+ #: contact_form.php:156
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Toetatud failitüübid: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max faili suurus: 2MB"
73
 
74
+ #: contact_form.php:157
75
+ #: contact_form.php:1139
76
+ #: contact_form.php:1173
77
  msgid "Send me a copy"
78
  msgstr "Saada mulle koopia"
79
 
80
+ #: contact_form.php:158
81
+ #: contact_form.php:1140
82
+ #: contact_form.php:1174
83
  msgid "Submit"
84
  msgstr "Saada"
85
 
86
+ #: contact_form.php:159
87
  msgid "Your name is required."
88
  msgstr "Sinu nimi on kohustuslik."
89
 
90
+ #: contact_form.php:160
91
  msgid "Address is required."
92
  msgstr "Aadress on kohustuslik."
93
 
94
+ #: contact_form.php:161
95
  msgid "A valid email address is required."
96
  msgstr "Korrektne e-mail on kohustuslik."
97
 
98
+ #: contact_form.php:162
99
  msgid "Phone number is required."
100
  msgstr "Telefoni number on kohustuslik."
101
 
102
+ #: contact_form.php:163
103
  msgid "Subject is required."
104
  msgstr "Pealkiri on kohustuslik."
105
 
106
+ #: contact_form.php:164
107
  msgid "Message text is required."
108
  msgstr "Sõnumi tekst on kohustuslik."
109
 
110
+ #: contact_form.php:165
111
  msgid "File format is not valid."
112
  msgstr "Failiformaat pole toetatud."
113
 
114
+ #: contact_form.php:166
115
  msgid "File upload error."
116
  msgstr "Error faili üles laadimisel."
117
 
118
+ #: contact_form.php:167
119
  msgid "The file could not be uploaded."
120
  msgstr "Faili ei saanud üles laadida."
121
 
122
+ #: contact_form.php:168
123
  msgid "This file is too large."
124
  msgstr "See fail on liiga suur."
125
 
126
+ #: contact_form.php:169
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Palun täida CAPTCHA."
129
 
130
+ #: contact_form.php:170
131
  msgid "Please make corrections below and try again."
132
  msgstr "Palun tee allolevad parandused ja proovi uuesti."
133
 
134
+ #: contact_form.php:172
135
  msgid "Thank you for contacting us."
136
  msgstr "Tänan meiega kontakteerumast."
137
 
138
+ #: contact_form.php:322
139
  msgid "requires"
140
  msgstr "nõuab"
141
 
142
+ #: contact_form.php:322
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "või uuem, seetõttu on ka see deaktiveeritud! Palun uuenda WordPressi ja proovi uuesti."
145
 
146
+ #: contact_form.php:322
147
  msgid "Back to the WordPress"
148
  msgstr "Tagasi WordPressi"
149
 
150
+ #: contact_form.php:322
151
  msgid "Plugins page"
152
  msgstr "Pluginate leht"
153
 
154
+ #: contact_form.php:626
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "Kui 'Suuna lehele' valik on aktiveeritud, siis URL-i väli peab olema järgnevas formaadis"
157
 
158
+ #: contact_form.php:635
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "Sellist kasutajat ei eksisteeri. Seaded pole salvestatud."
161
 
162
+ #: contact_form.php:639
163
+ #: contact_form.php:645
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. Seaded pole salvestatud."
166
 
167
+ #: contact_form.php:661
168
  msgid "Settings saved."
169
  msgstr "Seaded salvestatud."
170
 
171
+ #: contact_form.php:688
172
+ #: contact_form.php:720
173
  msgid "Wrong license key"
174
  msgstr ""
175
 
176
+ #: contact_form.php:713
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr ""
179
 
180
+ #: contact_form.php:722
181
  msgid "This license key is bind to another site"
182
  msgstr ""
183
 
184
+ #: contact_form.php:724
185
+ #: contact_form.php:1570
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr ""
188
 
189
+ #: contact_form.php:741
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr ""
192
 
193
+ #: contact_form.php:747
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr ""
196
 
197
+ #: contact_form.php:751
198
+ #: contact_form.php:760
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
 
202
+ #: contact_form.php:764
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr ""
205
 
206
+ #: contact_form.php:779
207
  #, fuzzy
208
  msgid "Please, enter Your license key"
209
  msgstr "Palun sisesta oma sõnum..."
210
 
211
+ #: contact_form.php:787
212
+ #: contact_form.php:2216
213
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
214
  msgid "Settings"
215
  msgstr "Seaded"
216
 
217
+ #: contact_form.php:788
218
  msgid "Extra settings"
219
  msgstr "Ekstra seaded"
220
 
221
+ #: contact_form.php:789
222
  msgid "Go PRO"
223
  msgstr ""
224
 
225
+ #: contact_form.php:792
226
+ msgid "Notice:"
227
+ msgstr "Märkus:"
228
+
229
+ #: contact_form.php:792
230
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
231
+ msgstr "Plugina seaded on muudetud. Nende salvestamiseks ära unusta klikkimast 'Salvesta muutused' nupul."
232
+
233
+ #: contact_form.php:798
234
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
235
+ msgstr ""
236
+
237
+ #: contact_form.php:804
238
+ #: contact_form.php:809
239
+ #: contact_form.php:1529
240
  msgid "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:"
241
  msgstr "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see lühikood oma postitusele või lehele või moodulile:"
242
 
243
+ #: contact_form.php:804
244
+ #: contact_form.php:805
245
+ #: contact_form.php:809
246
+ #: contact_form.php:810
247
+ #: contact_form.php:1155
248
+ #: contact_form.php:1157
249
+ #: contact_form.php:1212
250
+ #: contact_form.php:1214
251
  msgid "or"
252
  msgstr "või"
253
 
254
+ #: contact_form.php:805
255
+ #: contact_form.php:810
256
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
257
  msgstr "Kui sul on probleeme standard lühikoodiga [contact_form], siis peaksid kasutama lühikoodi"
258
 
259
+ #: contact_form.php:806
260
+ #: contact_form.php:811
261
  msgid "They work the same way."
262
  msgstr "Need töötavad täpselt samamoodi."
263
 
264
+ #: contact_form.php:807
265
+ #: contact_form.php:812
266
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
267
  msgstr "Kui sa jätad selle välja tühjaks, siis sõnumid saadetakse registreerumisel antud e-maili aadressile."
268
 
269
+ #: contact_form.php:817
270
  msgid "The user's email address:"
271
  msgstr "Kasutaja e-maili aadress:"
272
 
273
+ #: contact_form.php:821
274
  msgid "Create a username"
275
  msgstr "Loo kasutajanimi"
276
 
277
+ #: contact_form.php:828
278
  msgid "Enter a username of the person who should get the messages from the contact form."
279
  msgstr "Sisesta selle isiku kasutajanimi, kes peaks saama sõnumid kontaktivormilt."
280
 
281
+ #: contact_form.php:832
282
  msgid "Use this email address:"
283
  msgstr "Kasuta seda e-maili aadressi:"
284
 
285
+ #: contact_form.php:835
286
  msgid "Enter the email address you want the messages forwarded to."
287
  msgstr "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
288
 
289
+ #: contact_form.php:844
290
  msgid "Add department selectbox to the contact form:"
291
  msgstr "Lisa valikukast kontakti vormile:"
292
 
293
+ #: contact_form.php:852
294
+ #: contact_form.php:1412
295
  msgid "If you upgrade to Pro version all your settings will be saved."
296
  msgstr "Kui sa lähed üle Pro versioonile, siis kõik seaded salvestatakse."
297
 
298
+ #: contact_form.php:859
299
+ #: contact_form.php:997
300
+ #: contact_form.php:1071
301
+ #: contact_form.php:1419
302
+ msgid "Unlock premium options by upgrading to a PRO version."
303
+ msgstr ""
304
 
305
+ #: contact_form.php:860
306
+ #: contact_form.php:998
307
+ #: contact_form.php:1072
308
+ #: contact_form.php:1420
309
+ #: contact_form.php:2473
310
+ #: contact_form.php:2489
311
+ msgid "Learn More"
312
+ msgstr ""
313
 
314
+ #: contact_form.php:863
315
+ #: contact_form.php:1001
316
+ #: contact_form.php:1075
317
+ #: contact_form.php:1423
318
+ msgid "Go"
319
+ msgstr ""
320
+
321
+ #: contact_form.php:870
322
  msgid "Save emails to the database"
323
  msgstr "Salvesta e-mailid andmebaasi"
324
 
325
+ #: contact_form.php:876
326
  msgid "Using"
327
  msgstr ""
328
 
329
+ #: contact_form.php:876
330
+ #: contact_form.php:1048
331
+ #: contact_form.php:1051
332
+ #: contact_form.php:1055
333
  msgid "powered by"
334
  msgstr "loonud"
335
 
336
+ #: contact_form.php:879
337
+ #: contact_form.php:883
338
  msgid "Using Contact Form to DB powered by"
339
  msgstr "Kontakti vorm andmebaasi on loonud"
340
 
341
+ #: contact_form.php:879
342
  msgid "Activate Contact Form to DB"
343
  msgstr "Aktiveeri Contact Form"
344
 
345
+ #: contact_form.php:883
346
  msgid "Download Contact Form to DB"
347
  msgstr "Lae Contact Form alla"
348
 
349
+ #: contact_form.php:888
350
  msgid "Additional options"
351
  msgstr "Opcions addicionals"
352
 
353
+ #: contact_form.php:890
354
  msgid "Show"
355
  msgstr "Näita"
356
 
357
+ #: contact_form.php:891
358
  msgid "Hide"
359
  msgstr "Peida"
360
 
361
+ #: contact_form.php:895
362
  msgid "What to use?"
363
  msgstr "Mida kasutada?"
364
 
365
+ #: contact_form.php:898
366
  msgid "Wp-mail"
367
  msgstr "Wp-mail"
368
 
369
+ #: contact_form.php:898
370
  msgid "You can use the wp_mail function for mailing"
371
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
372
 
373
+ #: contact_form.php:900
374
  msgid "Mail"
375
  msgstr "E-mail"
376
 
377
+ #: contact_form.php:900
378
  msgid "To send mail you can use the php mail function"
379
  msgstr "E-mailide saatmiseks saad kasutada php mail funktsiooni"
380
 
381
+ #: contact_form.php:904
382
  msgid "The text in the 'From' field"
383
  msgstr "Tekst 'Kellelt' väljal"
384
 
385
+ #: contact_form.php:906
386
  msgid "User name"
387
  msgstr "Kasutaja nimi"
388
 
389
+ #: contact_form.php:907
390
  msgid "The name of the user who fills the form will be used in the field 'From'."
391
  msgstr "Kasutaja nime (kes täidab vormi) kasutatakse 'Kellelt' väljal."
392
 
393
+ #: contact_form.php:910
394
  msgid "This text will be used in the 'FROM' field"
395
  msgstr "Seda teksti kasutatakse 'Kellelt' väljal"
396
 
397
+ #: contact_form.php:914
398
  msgid "The email address in the 'From' field"
399
  msgstr "E-maili aadress 'Kellelt' väljal"
400
 
401
+ #: contact_form.php:916
402
  msgid "User email"
403
  msgstr "Kasutaja e-mail"
404
 
405
+ #: contact_form.php:917
406
  msgid "The email address of the user who fills the form will be used in the field 'From'."
407
  msgstr "Selle kasutaja, kes täidab vormi, e-maili aadressi kasutatakse 'Kellelt' väljal."
408
 
409
+ #: contact_form.php:920
410
  msgid "This email address will be used in the 'From' field."
411
  msgstr "Seda e-maili aadressi kasutatakse 'Kellelt' väljal."
412
 
413
+ #: contact_form.php:924
414
  msgid "Required symbol"
415
  msgstr "Nõutud sümbol"
416
 
417
+ #: contact_form.php:934
418
  msgid "Fields"
419
  msgstr "Väljad"
420
 
421
+ #: contact_form.php:935
422
  msgid "Used"
423
  msgstr "Kasutatud"
424
 
425
+ #: contact_form.php:936
426
  msgid "Required"
427
  msgstr "Nõutud"
428
 
429
+ #: contact_form.php:937
430
  msgid "Visible"
431
  msgstr "Nähtav"
432
 
433
+ #: contact_form.php:938
434
  msgid "Disabled for editing"
435
  msgstr "Toimetamiseks välja lülitatud"
436
 
437
+ #: contact_form.php:939
438
  msgid "Field's default value"
439
  msgstr "Välja vaikeseades väärtus"
440
 
441
+ #: contact_form.php:944
442
+ #: contact_form.php:1287
443
+ #: contact_form.php:2059
444
+ #: contact_form.php:2089
445
  msgid "Name"
446
  msgstr "Nimi"
447
 
448
+ #: contact_form.php:952
449
+ #: contact_form.php:1292
450
+ #: contact_form.php:2063
451
+ #: contact_form.php:2091
452
  msgid "Address"
453
  msgstr "Aadress"
454
 
455
+ #: contact_form.php:960
456
  msgid "Email Address"
457
  msgstr "E-maili aadress"
458
 
459
+ #: contact_form.php:968
460
  msgid "Phone number"
461
  msgstr "Telefoni number"
462
 
463
+ #: contact_form.php:976
464
+ #: contact_form.php:1307
465
+ #: contact_form.php:2073
466
+ #: contact_form.php:2095
467
  msgid "Subject"
468
  msgstr "Pealkiri"
469
 
470
+ #: contact_form.php:984
471
+ #: contact_form.php:1311
472
+ #: contact_form.php:2076
473
+ #: contact_form.php:2096
474
  msgid "Message"
475
  msgstr "Sõnum"
476
 
477
+ #: contact_form.php:1008
478
  msgid "Attachment block"
479
  msgstr "Manuste blokk"
480
 
481
+ #: contact_form.php:1010
482
  msgid "Users can attach the following file formats"
483
  msgstr "Kasutajad saavad lisada manuseid järgnevates formaatides"
484
 
485
+ #: contact_form.php:1023
486
  msgid "Add to the form"
487
  msgstr "Lisa vormile"
488
 
489
+ #: contact_form.php:1028
490
  msgid "Tips below the Attachment"
491
  msgstr "Vihjed manuse alla"
492
 
493
+ #: contact_form.php:1037
494
  msgid "'Send me a copy' block"
495
  msgstr "'Saada mulle koopia' blokk"
496
 
497
+ #: contact_form.php:1048
498
+ #: contact_form.php:1051
499
+ #: contact_form.php:1055
500
+ #: contact_form.php:1321
501
  msgid "Captcha"
502
  msgstr "Captcha"
503
 
504
+ #: contact_form.php:1051
505
  msgid "Activate captcha"
506
  msgstr "Captcha activat"
507
 
508
+ #: contact_form.php:1055
509
  msgid "Download captcha"
510
  msgstr "Lae captcha alla"
511
 
512
+ #: contact_form.php:1063
513
  msgid "Agreement checkbox"
514
  msgstr "Nõustumise kastike"
515
 
516
+ #: contact_form.php:1063
517
  msgid "Required checkbox for submitting the form"
518
  msgstr "Nõutud kastike vormi saatmiseks"
519
 
520
+ #: contact_form.php:1064
521
  msgid "Optional checkbox"
522
  msgstr "Valikuline kastike"
523
 
524
+ #: contact_form.php:1064
525
  msgid "Optional checkbox, the results of which will be displayed in email"
526
  msgstr "Valikuline kastike, mille tulemusi näidatakse e-mailis"
527
 
528
+ #: contact_form.php:1081
529
  msgid "Delete an attachment file from the server after the email is sent"
530
  msgstr "Kustuta manuse fail serverist peale e-maili saatmist"
531
 
532
+ #: contact_form.php:1087
533
  msgid "Email in HTML format sending"
534
  msgstr "E-maili saatmine HTML formaadis"
535
 
536
+ #: contact_form.php:1091
537
  msgid "Display additional info in the email"
538
  msgstr "Näita e-mailis lisainfot"
539
 
540
+ #: contact_form.php:1096
541
+ #: contact_form.php:2026
542
+ #: contact_form.php:2028
543
  msgid "Sent from (ip address)"
544
  msgstr "Saadetud (IP aadress)"
545
 
546
+ #: contact_form.php:1096
547
  msgid "Example: Sent from (IP address):\t127.0.0.1"
548
  msgstr "Näide: Saadetud (IP address):\t127.0.0.1"
549
 
550
+ #: contact_form.php:1097
551
+ #: contact_form.php:2032
552
+ #: contact_form.php:2034
553
  msgid "Date/Time"
554
  msgstr "Kuupäev/Aeg"
555
 
556
+ #: contact_form.php:1097
557
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
558
  msgstr "Näide: Kuupäev/Aeg:\tAugust 19, 2013 8:50 pm"
559
 
560
+ #: contact_form.php:1098
561
+ #: contact_form.php:2038
562
+ #: contact_form.php:2040
563
  msgid "Sent from (referer)"
564
  msgstr "Saadetud (referer)"
565
 
566
+ #: contact_form.php:1098
567
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
568
  msgstr "Näide: Saatnud (referer):\thttp://veebimeister.com/"
569
 
570
+ #: contact_form.php:1099
571
+ #: contact_form.php:2044
572
+ #: contact_form.php:2046
573
  msgid "Using (user agent)"
574
  msgstr "Kasutab (user agent)"
575
 
576
+ #: contact_form.php:1099
577
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
578
  msgstr "Näide: Kasutab (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
579
 
580
+ #: contact_form.php:1103
581
  msgid "Language settings for the field names in the form"
582
  msgstr "Vormi keeleseaded nimeväljadele"
583
 
584
+ #: contact_form.php:1112
585
  msgid "Add a language"
586
  msgstr "Lisa keel"
587
 
588
+ #: contact_form.php:1116
589
  msgid "Change the names of the contact form fields and error messages"
590
  msgstr "Muuda kontakti vormi väljade ja error-sõnumite nimesid"
591
 
592
+ #: contact_form.php:1121
593
+ #: contact_form.php:1202
594
  msgid "English"
595
  msgstr "Inglise"
596
 
597
+ #: contact_form.php:1129
598
+ #: contact_form.php:1163
599
  msgid "click to expand/hide the list"
600
  msgstr ""
601
 
602
+ #: contact_form.php:1138
603
+ #: contact_form.php:1172
604
  msgid "Tips below the Attachment block"
605
  msgstr "Vihje manuse bloki all"
606
 
607
+ #: contact_form.php:1141
608
+ #: contact_form.php:1175
609
  msgid "Error message for the Name field"
610
  msgstr "Error väljal 'Nimi'"
611
 
612
+ #: contact_form.php:1142
613
+ #: contact_form.php:1176
614
  msgid "Error message for the Address field"
615
  msgstr "Error väljal 'Aadress'"
616
 
617
+ #: contact_form.php:1143
618
+ #: contact_form.php:1177
619
  msgid "Error message for the Email field"
620
  msgstr "Error väljal 'E-mail'"
621
 
622
+ #: contact_form.php:1144
623
+ #: contact_form.php:1178
624
  msgid "Error message for the Phone field"
625
  msgstr "Error väljal 'Telefon'"
626
 
627
+ #: contact_form.php:1145
628
+ #: contact_form.php:1179
629
  msgid "Error message for the Subject field"
630
  msgstr "Error väljal 'Pealkiri'"
631
 
632
+ #: contact_form.php:1146
633
+ #: contact_form.php:1180
634
  msgid "Error message for the Message field"
635
  msgstr "Error väljal 'Sõnum'"
636
 
637
+ #: contact_form.php:1147
638
+ #: contact_form.php:1181
639
  msgid "Error message about the file type for the Attachment field"
640
  msgstr "Error faili tüübi kohta manuse väljal"
641
 
642
+ #: contact_form.php:1148
643
+ #: contact_form.php:1182
644
  msgid "Error message while uploading a file for the Attachment field to the server"
645
  msgstr "Error faili üles laadimisel serverisse manuse välja jaoks"
646
 
647
+ #: contact_form.php:1149
648
+ #: contact_form.php:1183
649
  msgid "Error message while moving the file for the Attachment field"
650
  msgstr "Error faili liigutamisel manuse väljale"
651
 
652
+ #: contact_form.php:1150
653
+ #: contact_form.php:1184
654
  msgid "Error message when file size limit for the Attachment field is exceeded"
655
  msgstr "Error ületades faili suuruse limiiti manuse väljal"
656
 
657
+ #: contact_form.php:1151
658
+ #: contact_form.php:1185
659
  msgid "Error message for the Captcha field"
660
  msgstr "Error väljal 'Captcha'"
661
 
662
+ #: contact_form.php:1152
663
+ #: contact_form.php:1186
664
  msgid "Error message for the whole form"
665
  msgstr "Error kogu vormi kohta"
666
 
667
+ #: contact_form.php:1155
668
+ #: contact_form.php:1157
669
+ #: contact_form.php:1189
670
+ #: contact_form.php:1191
671
+ #: contact_form.php:1212
672
+ #: contact_form.php:1214
673
+ #: contact_form.php:1222
674
+ #: contact_form.php:1224
675
  msgid "Use shortcode"
676
  msgstr "Kasuta lühikoodi"
677
 
678
+ #: contact_form.php:1155
679
+ #: contact_form.php:1157
680
+ #: contact_form.php:1189
681
+ #: contact_form.php:1191
682
+ #: contact_form.php:1212
683
+ #: contact_form.php:1214
684
+ #: contact_form.php:1222
685
+ #: contact_form.php:1224
686
  msgid "for this language"
687
  msgstr "selle keele jaoks"
688
 
689
+ #: contact_form.php:1199
690
  msgid "Action after email is sent"
691
  msgstr "Tegevus peale e-maili saatmist"
692
 
693
+ #: contact_form.php:1201
694
  msgid "Display text"
695
  msgstr "Näita teksti"
696
 
697
+ #: contact_form.php:1210
698
+ #: contact_form.php:1220
699
  msgid "Text"
700
  msgstr "Tekst"
701
 
702
+ #: contact_form.php:1231
703
  msgid "Redirect to the page"
704
  msgstr "Suuna lehele"
705
 
706
+ #: contact_form.php:1232
707
  msgid "Url"
708
  msgstr "Url"
709
 
710
+ #: contact_form.php:1236
711
  msgid "The $_SERVER variable that is used to build a URL of the form"
712
  msgstr ""
713
 
714
+ #: contact_form.php:1240
715
  msgid "If you are not sure whether to change this setting or not, please do not do that."
716
  msgstr ""
717
 
718
+ #: contact_form.php:1246
719
+ #: contact_form.php:1430
720
  msgid "Save Changes"
721
  msgstr "Salvesta muudatused"
722
 
723
+ #: contact_form.php:1251
724
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
725
  msgstr "Kui sulle see plugin meeldib, siis anna sellele 5 tärni WordPressis"
726
 
727
+ #: contact_form.php:1252
728
  msgid "Rate the plugin"
729
  msgstr "Hinda pluginat"
730
 
731
+ #: contact_form.php:1255
732
  msgid "If there is something wrong about it, please contact us"
733
  msgstr "Palun kontakteeru kohe meiega, kui sellega on midagi viga"
734
 
735
+ #: contact_form.php:1267
736
  msgid "Errors output"
737
  msgstr "Errorite väljund"
738
 
739
+ #: contact_form.php:1270
740
  msgid "Display error messages"
741
  msgstr "Näita error-sõnumeid"
742
 
743
+ #: contact_form.php:1271
744
  msgid "Color of the input field errors."
745
  msgstr "Sisestusväljade errorite värv"
746
 
747
+ #: contact_form.php:1272
748
  msgid "Display error messages & color of the input field errors"
749
  msgstr "Näita error-sõnumeid ja sisestusväljade errorite värvi"
750
 
751
+ #: contact_form.php:1277
752
  msgid "Add placeholder to the input blocks"
753
  msgstr "Lisa kohahoidja sisestusblokkidele"
754
 
755
+ #: contact_form.php:1283
756
  msgid "Add tooltips"
757
  msgstr "Lisa vihjed"
758
 
759
+ #: contact_form.php:1297
760
  msgid "Email address"
761
  msgstr "E-maili aadress"
762
 
763
+ #: contact_form.php:1302
764
  msgid "Phone Number"
765
  msgstr "Telefoni number"
766
 
767
+ #: contact_form.php:1316
768
  msgid "Attachment"
769
  msgstr "Manus"
770
 
771
+ #: contact_form.php:1321
772
  msgid "(powered by bestwebsoft.com)"
773
  msgstr "(Loonud bestwebsoft.com)"
774
 
775
+ #: contact_form.php:1326
776
  msgid "Style options"
777
  msgstr "Stiili valikud"
778
 
779
+ #: contact_form.php:1329
780
  msgid "Text color"
781
  msgstr "Teksti värv"
782
 
783
+ #: contact_form.php:1332
784
+ #: contact_form.php:1337
785
+ #: contact_form.php:1347
786
+ #: contact_form.php:1352
787
+ #: contact_form.php:1357
788
+ #: contact_form.php:1362
789
+ #: contact_form.php:1372
790
+ #: contact_form.php:1377
791
+ #: contact_form.php:1383
792
+ #: contact_form.php:1394
793
+ #: contact_form.php:1399
794
+ #: contact_form.php:1404
795
  msgid "Default"
796
  msgstr "Vaikimisi valik"
797
 
798
+ #: contact_form.php:1334
799
  msgid "Label text color"
800
  msgstr "Sildi teksti värv"
801
 
802
+ #: contact_form.php:1339
803
  msgid "Placeholder color"
804
  msgstr "Kohahoidja värv"
805
 
806
+ #: contact_form.php:1344
807
  msgid "Errors color"
808
  msgstr "Errorite värv"
809
 
810
+ #: contact_form.php:1349
811
  msgid "Error text color"
812
  msgstr "Error-teksti värv"
813
 
814
+ #: contact_form.php:1354
815
  msgid "Background color of the input field errors"
816
  msgstr "Sisestusväljade errorite taustavärv"
817
 
818
+ #: contact_form.php:1359
819
  msgid "Border color of the input field errors"
820
  msgstr "Sisestusväljade errorite piirjoonte värv"
821
 
822
+ #: contact_form.php:1364
823
  msgid "Placeholder color of the input field errors"
824
  msgstr "Sisestusväljade errorite kohahoidja värv"
825
 
826
+ #: contact_form.php:1369
827
  msgid "Input fields"
828
  msgstr "Sisestusväljad"
829
 
830
+ #: contact_form.php:1374
831
  msgid "Input fields background color"
832
  msgstr "Sisestusväljade taustavärv"
833
 
834
+ #: contact_form.php:1379
835
  msgid "Text fields color"
836
  msgstr "Tekstiväljade värv"
837
 
838
+ #: contact_form.php:1381
839
  msgid "Border width in px, numbers only"
840
  msgstr "Piirjoone paksus pikslites. Ainult number"
841
 
842
+ #: contact_form.php:1385
843
+ #: contact_form.php:1406
844
  msgid "Border color"
845
  msgstr "Piirjoone värv"
846
 
847
+ #: contact_form.php:1390
848
  msgid "Submit button"
849
  msgstr "'Saada' nupp"
850
 
851
+ #: contact_form.php:1392
852
  msgid "Width in px, numbers only"
853
  msgstr "Laius pikslites, ainult numbrid"
854
 
855
+ #: contact_form.php:1396
856
  msgid "Button color"
857
  msgstr "Nupu värv"
858
 
859
+ #: contact_form.php:1401
860
  msgid "Button text color"
861
  msgstr "Nupu teksti värv"
862
 
863
+ #: contact_form.php:1434
864
  msgid "Contact Form Pro | Preview"
865
  msgstr "Contact Form Pro | Eelvaade"
866
 
867
+ #: contact_form.php:1437
868
  msgid "Show with errors"
869
  msgstr "Näita koos erroritega"
870
 
871
+ #: contact_form.php:1445
872
+ #: contact_form.php:1447
873
  msgid "Please enter your full name..."
874
  msgstr "Palun sisesta oma täisnimi..."
875
 
876
+ #: contact_form.php:1458
877
+ #: contact_form.php:1460
878
  msgid "Please enter your address..."
879
  msgstr "Palun sisesta oma aadress..."
880
 
881
+ #: contact_form.php:1469
882
+ #: contact_form.php:1471
883
  msgid "Please enter your email address..."
884
  msgstr "Palun sisesta oma e-maili aadress..."
885
 
886
+ #: contact_form.php:1480
887
+ #: contact_form.php:1482
888
  msgid "Please enter your phone number..."
889
  msgstr "Palun sisesta oma telefoni number..."
890
 
891
+ #: contact_form.php:1491
892
+ #: contact_form.php:1493
893
  msgid "Please enter subject..."
894
  msgstr "Palun sisesta pealkiri..."
895
 
896
+ #: contact_form.php:1501
897
+ #: contact_form.php:1503
898
  msgid "Please enter your message..."
899
  msgstr "Palun sisesta oma sõnum..."
900
 
901
+ #: contact_form.php:1545
902
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
903
  msgstr ""
904
 
905
+ #: contact_form.php:1547
906
  msgid "Please, go to"
907
  msgstr ""
908
 
909
+ #: contact_form.php:1547
910
  #, fuzzy
911
  msgid "the setting page"
912
  msgstr "Ekstra seaded"
913
 
914
+ #: contact_form.php:1548
915
  msgid "You will be redirected automatically in 5 seconds."
916
  msgstr ""
917
 
918
+ #: contact_form.php:1553
919
  msgid "You can download and activate"
920
  msgstr ""
921
 
922
+ #: contact_form.php:1555
923
  msgid "version of this plugin by entering Your license key."
924
  msgstr ""
925
 
926
+ #: contact_form.php:1557
927
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
928
  msgstr ""
929
 
930
+ #: contact_form.php:1559
931
  msgid "(your username is the email you specify when purchasing the product)."
932
  msgstr ""
933
 
934
+ #: contact_form.php:1567
935
+ #: contact_form.php:1577
936
  msgid "Go!"
937
  msgstr ""
938
 
939
+ #: contact_form.php:1647
940
  msgid "Sorry, email message could not be delivered."
941
  msgstr "Vabandust, see kiri jäi saatmata."
942
 
943
+ #: contact_form.php:2053
944
  msgid "Contact from"
945
  msgstr "Kontakti vorm"
946
 
947
+ #: contact_form.php:2066
948
+ #: contact_form.php:2092
949
  msgid "Email"
950
  msgstr "E-mail"
951
 
952
+ #: contact_form.php:2070
953
+ #: contact_form.php:2094
954
  msgid "Phone"
955
  msgstr "Telefon"
956
 
957
+ #: contact_form.php:2079
958
+ #: contact_form.php:2097
959
  msgid "Site"
960
  msgstr "Leht"
961
 
962
+ #: contact_form.php:2160
963
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
964
  msgstr "Kui sa näed seda MIME-t, siis MIME tüüp pole sinu e-maili kliendi poolt toetatud!"
965
 
966
+ #: contact_form.php:2229
967
  msgid "FAQ"
968
  msgstr "KKK"
969
 
970
+ #: contact_form.php:2230
971
  msgid "Support"
972
  msgstr "Klienditugi"
973
 
974
+ #: contact_form.php:2280
975
  msgid "Are you sure that you want to delete this language data?"
976
  msgstr "Oled sa kindel, et soovid kustutada selle keele andmeid?"
977
 
978
+ #: contact_form.php:2476
979
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
980
  msgstr ""
981
 
982
+ #: contact_form.php:2477
983
  msgid "Extend standard plugin functionality with new great options."
984
  msgstr ""
985
 
986
+ #: contact_form.php:2492
987
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
988
  msgstr ""
989
 
990
+ #: contact_form.php:2493
991
  msgid "Manage messages that have been sent from your website."
992
  msgstr ""
993
 
994
+ #~ msgid ""
995
+ #~ "This functionality is available in the Pro version of the plugin. For "
996
+ #~ "more details, please follow the link"
997
+ #~ msgstr ""
998
+ #~ "Aquesta funcionalitat està disponible en la versió Pro del connector. Per "
999
+ #~ "a més detalls, si us plau seguiu l'enllaç"
1000
+
1001
+ #~ msgid "Contact Form Pro"
1002
+ #~ msgstr "Contact Form Pro"
1003
+
1004
  #~ msgid "Contact Form Pro Extra Settings"
1005
  #~ msgstr "Contact Form Pro ekstra seaded"
1006
 
languages/contact_form-fi.mo CHANGED
Binary file
languages/contact_form-fi.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: 2014-02-20 14:04+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest <joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
9
  "Language: ru_RU\n"
@@ -16,993 +16,1025 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Yhteydenottolomakeasetukset"
24
 
25
- #: contact_form.php:33
26
  msgid "Contact Form"
27
  msgstr "Yhteydenottolomake"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:978
31
- #: contact_form.php:1008
32
  msgid "Name:"
33
  msgstr "Nimi:"
34
 
35
- #: contact_form.php:81
36
- #: contact_form.php:979
37
- #: contact_form.php:1009
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "Sähköposti:"
41
 
42
- #: contact_form.php:82
43
- #: contact_form.php:980
44
- #: contact_form.php:1010
45
  msgid "Email Address:"
46
  msgstr "Sähköposti:"
47
 
48
- #: contact_form.php:83
49
- #: contact_form.php:981
50
- #: contact_form.php:1011
51
  msgid "Phone number:"
52
  msgstr "Puhelinnumero:"
53
 
54
- #: contact_form.php:84
55
- #: contact_form.php:982
56
- #: contact_form.php:1012
57
  msgid "Subject:"
58
  msgstr "Aihe:"
59
 
60
- #: contact_form.php:85
61
- #: contact_form.php:983
62
- #: contact_form.php:1013
63
  msgid "Message:"
64
  msgstr "Viesti:"
65
 
66
- #: contact_form.php:86
67
- #: contact_form.php:984
68
- #: contact_form.php:1014
69
  msgid "Attachment:"
70
  msgstr "Liite:"
71
 
72
- #: contact_form.php:87
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
- #: contact_form.php:88
77
- #: contact_form.php:986
78
- #: contact_form.php:1016
79
  msgid "Send me a copy"
80
  msgstr "Lähetä minulle kopio"
81
 
82
- #: contact_form.php:89
83
- #: contact_form.php:987
84
- #: contact_form.php:1017
85
  msgid "Submit"
86
  msgstr "Lähetä"
87
 
88
- #: contact_form.php:90
89
  msgid "Your name is required."
90
  msgstr "Nimikenttä pakollinen."
91
 
92
- #: contact_form.php:91
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "Anna toimiva sähköpostiosoite."
96
 
97
- #: contact_form.php:92
98
  msgid "A valid email address is required."
99
  msgstr "Anna toimiva sähköpostiosoite."
100
 
101
- #: contact_form.php:93
102
  msgid "Phone number is required."
103
  msgstr "Puhelinnumero pakollinen."
104
 
105
- #: contact_form.php:94
106
  msgid "Subject is required."
107
  msgstr "Aihe pakollinen."
108
 
109
- #: contact_form.php:95
110
  msgid "Message text is required."
111
  msgstr "Viestikenttä pakollinen."
112
 
113
- #: contact_form.php:96
114
  msgid "File format is not valid."
115
  msgstr "Tiedostotyyppi virheellinen."
116
 
117
- #: contact_form.php:97
118
  msgid "File upload error."
119
  msgstr ""
120
 
121
- #: contact_form.php:98
122
  msgid "The file could not be uploaded."
123
  msgstr ""
124
 
125
- #: contact_form.php:99
126
  msgid "This file is too large."
127
  msgstr ""
128
 
129
- #: contact_form.php:100
130
  msgid "Please fill out the CAPTCHA."
131
  msgstr "Täytä CAPTCHA."
132
 
133
- #: contact_form.php:101
134
  msgid "Please make corrections below and try again."
135
  msgstr "Tee allaolevat korjaukset ja yritä uudelleen."
136
 
137
- #: contact_form.php:103
138
  msgid "Thank you for contacting us."
139
  msgstr "Kiitos yhteydenotostanne."
140
 
141
- #: contact_form.php:203
142
  #, fuzzy
143
  msgid "requires"
144
  msgstr "Vaaditut kentät"
145
 
146
- #: contact_form.php:203
147
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
148
  msgstr ""
149
 
150
- #: contact_form.php:203
151
  msgid "Back to the WordPress"
152
  msgstr ""
153
 
154
- #: contact_form.php:203
155
  #, fuzzy
156
  msgid "Plugins page"
157
  msgstr "Плагины BWS"
158
 
159
- #: contact_form.php:494
160
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
161
  msgstr "Jos 'Ohjaa sivulle' vaihtoehto on valittu, URL-kentän tulisi olla seuraavaa muotoa"
162
 
163
- #: contact_form.php:503
164
  msgid "Such user does not exist. Settings are not saved."
165
  msgstr "Käyttäjää ei ole olemassa. Asetuksia ei tallennettu."
166
 
167
- #: contact_form.php:507
168
- #: contact_form.php:513
169
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
170
  msgstr "Anna toimiva sähköpostiosoite 'Lähettäjä' kenttään. Asetuksia ei tallennettu."
171
 
172
- #: contact_form.php:518
173
  #, fuzzy
174
  msgid "Settings saved."
175
  msgstr "Asetukset tallennettu."
176
 
177
- #: contact_form.php:554
178
- #: contact_form.php:593
179
  msgid "Wrong license key"
180
  msgstr ""
181
 
182
- #: contact_form.php:586
183
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
184
  msgstr ""
185
 
186
- #: contact_form.php:595
187
  msgid "This license key is bind to another site"
188
  msgstr ""
189
 
190
- #: contact_form.php:597
191
- #: contact_form.php:1392
192
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
193
  msgstr ""
194
 
195
- #: contact_form.php:615
196
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
- #: contact_form.php:621
200
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
201
  msgstr ""
202
 
203
- #: contact_form.php:625
204
- #: contact_form.php:634
205
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
206
  msgstr ""
207
 
208
- #: contact_form.php:638
209
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
210
  msgstr ""
211
 
212
- #: contact_form.php:653
213
  #, fuzzy
214
  msgid "Please, enter Your license key"
215
  msgstr "Käytä tätä sähköpostiosoitetta:"
216
 
217
- #: contact_form.php:662
218
- msgid "Notice:"
219
- msgstr ""
220
-
221
- #: contact_form.php:662
222
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
223
- msgstr ""
224
-
225
- #: contact_form.php:665
226
- #: contact_form.php:1997
227
- #: contact_form.php:2008
228
  msgid "Settings"
229
  msgstr "Asetukset"
230
 
231
- #: contact_form.php:666
232
  #, fuzzy
233
  msgid "Extra settings"
234
  msgstr "Asetukset"
235
 
236
- #: contact_form.php:667
237
  msgid "Go PRO"
238
  msgstr ""
239
 
240
- #: contact_form.php:673
241
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  msgid "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:"
243
  msgstr "Jos haluat lisätä yhteydenottolomakkeen sivullesi, kopioi ja liitä tämä shortcode artikkeliin, sivulle tai vimpaimeen."
244
 
245
- #: contact_form.php:673
246
- #: contact_form.php:674
247
- #: contact_form.php:1001
248
- #: contact_form.php:1050
 
 
 
 
249
  msgid "or"
250
  msgstr ""
251
 
252
- #: contact_form.php:674
 
253
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
254
  msgstr ""
255
 
256
- #: contact_form.php:675
 
257
  msgid "They work the same way."
258
  msgstr ""
259
 
260
- #: contact_form.php:676
 
261
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
262
  msgstr "Jos jätät kentät tyhjäksi, viestit lähetetään rekisteröinnin yhteydessä määriteltyyn sähköpostiin."
263
 
264
- #: contact_form.php:680
265
  msgid "The user's email address:"
266
  msgstr "Käyttäjän sähköpostiosoite:"
267
 
268
- #: contact_form.php:684
269
  msgid "Create a username"
270
  msgstr "Luo käyttäjänimi."
271
 
272
- #: contact_form.php:689
273
  msgid "Enter a username of the person who should get the messages from the contact form."
274
  msgstr "Syötä käyttäjänimi, jolle viestit lähetetään lomakkeesta."
275
 
276
- #: contact_form.php:693
277
  msgid "Use this email address:"
278
  msgstr "Käytä tätä sähköpostiosoitetta:"
279
 
280
- #: contact_form.php:696
281
  msgid "Enter the email address you want the messages forwarded to."
282
  msgstr "Sähköpostiosoite, johon viestit ohjataan."
283
 
284
- #: contact_form.php:702
285
  msgid "Add department selectbox to the contact form:"
286
  msgstr ""
287
 
288
- #: contact_form.php:710
289
- #: contact_form.php:1246
290
  msgid "If you upgrade to Pro version all your settings will be saved."
291
  msgstr ""
292
 
293
- #: contact_form.php:715
294
- #: contact_form.php:852
295
- #: contact_form.php:923
296
- #: contact_form.php:1096
297
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
298
  msgstr ""
299
 
300
- #: contact_form.php:716
301
- #: contact_form.php:853
302
- #: contact_form.php:924
303
- #: contact_form.php:1097
304
- #, fuzzy
305
- msgid "Contact Form Pro"
306
- msgstr "Yhteydenottolomake"
 
307
 
308
- #: contact_form.php:722
 
 
 
 
 
 
 
309
  msgid "Save emails to the database"
310
  msgstr ""
311
 
312
- #: contact_form.php:732
313
  msgid "Using"
314
  msgstr ""
315
 
316
- #: contact_form.php:732
317
- #: contact_form.php:901
318
- #: contact_form.php:904
319
- #: contact_form.php:908
320
  msgid "powered by"
321
  msgstr ""
322
 
323
- #: contact_form.php:735
324
- #: contact_form.php:739
325
  msgid "Using Contact Form to DB powered by"
326
  msgstr ""
327
 
328
- #: contact_form.php:735
329
  #, fuzzy
330
  msgid "Activate Contact Form to DB"
331
  msgstr "Yhteydenottolomake"
332
 
333
- #: contact_form.php:739
334
  #, fuzzy
335
  msgid "Download Contact Form to DB"
336
  msgstr "Yhteydenottolomake"
337
 
338
- #: contact_form.php:744
339
  msgid "Additional options"
340
  msgstr "Lisäasetukset"
341
 
342
- #: contact_form.php:746
343
  msgid "Show"
344
  msgstr ""
345
 
346
- #: contact_form.php:747
347
  msgid "Hide"
348
  msgstr ""
349
 
350
- #: contact_form.php:751
351
  msgid "What to use?"
352
  msgstr "Mitä käyttää?"
353
 
354
- #: contact_form.php:754
355
  msgid "Wp-mail"
356
  msgstr "Wp-sähköposti"
357
 
358
- #: contact_form.php:754
359
  msgid "You can use the wp_mail function for mailing"
360
  msgstr "Voit käyttää wp_mail funktiota sähköpostin lähettämiseen"
361
 
362
- #: contact_form.php:756
363
  msgid "Mail"
364
  msgstr "Sähköposti"
365
 
366
- #: contact_form.php:756
367
  msgid "To send mail you can use the php mail function"
368
  msgstr "Voit käyttää php sähköpostifunktiota lähettääksesi sähköpostia"
369
 
370
- #: contact_form.php:760
371
  #, fuzzy
372
  msgid "The text in the 'From' field"
373
  msgstr "Vaihda teksti 'Lähettäjä'- kentästä"
374
 
375
- #: contact_form.php:762
376
  msgid "User name"
377
  msgstr ""
378
 
379
- #: contact_form.php:763
380
  #, fuzzy
381
  msgid "The name of the user who fills the form will be used in the field 'From'."
382
  msgstr "Lomakkeen täyttäjän sähköpostiosoitetta käytetään 'Lähettäjä'- kentässä."
383
 
384
- #: contact_form.php:766
385
  #, fuzzy
386
  msgid "This text will be used in the 'FROM' field"
387
  msgstr "Tätä sähöpostiosoitetta käytetään 'Lähettäjä'- kentässä."
388
 
389
- #: contact_form.php:770
390
  #, fuzzy
391
  msgid "The email address in the 'From' field"
392
  msgstr "Syötä sähköpostiosoite 'Lähettäjä'- kenttään"
393
 
394
- #: contact_form.php:772
395
  msgid "User email"
396
  msgstr ""
397
 
398
- #: contact_form.php:773
399
  msgid "The email address of the user who fills the form will be used in the field 'From'."
400
  msgstr "Lomakkeen täyttäjän sähköpostiosoitetta käytetään 'Lähettäjä'- kentässä."
401
 
402
- #: contact_form.php:776
403
  msgid "This email address will be used in the 'From' field."
404
  msgstr "Tätä sähöpostiosoitetta käytetään 'Lähettäjä'- kentässä."
405
 
406
- #: contact_form.php:780
407
  #, fuzzy
408
  msgid "Required symbol"
409
  msgstr "Vaaditut kentät"
410
 
411
- #: contact_form.php:790
412
  msgid "Fields"
413
  msgstr ""
414
 
415
- #: contact_form.php:791
416
  msgid "Used"
417
  msgstr ""
418
 
419
- #: contact_form.php:792
420
  #, fuzzy
421
  msgid "Required"
422
  msgstr "Vaaditut kentät"
423
 
424
- #: contact_form.php:793
425
  msgid "Visible"
426
  msgstr ""
427
 
428
- #: contact_form.php:794
429
  msgid "Disabled for editing"
430
  msgstr ""
431
 
432
- #: contact_form.php:795
433
  msgid "Field's default value"
434
  msgstr ""
435
 
436
- #: contact_form.php:800
437
- #: contact_form.php:1121
438
- #: contact_form.php:1841
439
- #: contact_form.php:1871
440
  msgid "Name"
441
  msgstr "Nimi"
442
 
443
- #: contact_form.php:808
444
- #: contact_form.php:1126
445
- #: contact_form.php:1845
446
- #: contact_form.php:1873
447
  #, fuzzy
448
  msgid "Address"
449
  msgstr "Sähköposti"
450
 
451
- #: contact_form.php:816
452
  msgid "Email Address"
453
  msgstr "Sähköposti"
454
 
455
- #: contact_form.php:824
456
  #, fuzzy
457
  msgid "Phone number"
458
  msgstr "Puhelinnumero:"
459
 
460
- #: contact_form.php:832
461
- #: contact_form.php:1141
462
- #: contact_form.php:1855
463
- #: contact_form.php:1877
464
  msgid "Subject"
465
  msgstr "Aihe"
466
 
467
- #: contact_form.php:840
468
- #: contact_form.php:1145
469
- #: contact_form.php:1858
470
- #: contact_form.php:1878
471
  msgid "Message"
472
  msgstr "Viesti"
473
 
474
- #: contact_form.php:858
475
  #, fuzzy
476
  msgid "Attachment block"
477
  msgstr "Näytä liitelaatikko."
478
 
479
- #: contact_form.php:860
480
  msgid "Users can attach the following file formats"
481
  msgstr "Käyttäjä voi lisätä seuraavia tiedostotyyppejä"
482
 
483
- #: contact_form.php:874
484
  msgid "Add to the form"
485
  msgstr ""
486
 
487
- #: contact_form.php:879
488
  #, fuzzy
489
  msgid "Tips below the Attachment"
490
  msgstr "Näytä liitelaatikon allaolevat vinkit."
491
 
492
- #: contact_form.php:888
493
  #, fuzzy
494
  msgid "'Send me a copy' block"
495
  msgstr "Näytä Lähetä minulle kopio- laatikko"
496
 
497
- #: contact_form.php:901
498
- #: contact_form.php:904
499
- #: contact_form.php:908
500
- #: contact_form.php:1155
501
  msgid "Captcha"
502
  msgstr ""
503
 
504
- #: contact_form.php:904
505
  #, fuzzy
506
  msgid "Activate captcha"
507
  msgstr "Aktivoidut lisäosat"
508
 
509
- #: contact_form.php:908
510
  #, fuzzy
511
  msgid "Download captcha"
512
  msgstr "Lataa"
513
 
514
- #: contact_form.php:916
515
  msgid "Agreement checkbox"
516
  msgstr ""
517
 
518
- #: contact_form.php:916
519
  msgid "Required checkbox for submitting the form"
520
  msgstr ""
521
 
522
- #: contact_form.php:917
523
  msgid "Optional checkbox"
524
  msgstr ""
525
 
526
- #: contact_form.php:917
527
  msgid "Optional checkbox, the results of which will be displayed in email"
528
  msgstr ""
529
 
530
- #: contact_form.php:928
531
  msgid "Delete an attachment file from the server after the email is sent"
532
  msgstr ""
533
 
534
- #: contact_form.php:934
535
  msgid "Email in HTML format sending"
536
  msgstr ""
537
 
538
- #: contact_form.php:938
539
  msgid "Display additional info in the email"
540
  msgstr "Näytä lisätietoa sähköpostissa"
541
 
542
- #: contact_form.php:943
543
- #: contact_form.php:1808
544
- #: contact_form.php:1810
545
  msgid "Sent from (ip address)"
546
  msgstr "Lähetetty osoitteesta (ip-osoite)"
547
 
548
- #: contact_form.php:943
549
  #, fuzzy
550
  msgid "Example: Sent from (IP address):\t127.0.0.1"
551
  msgstr "Lähetetty osoitteesta (ip-osoite)"
552
 
553
- #: contact_form.php:944
554
- #: contact_form.php:1814
555
- #: contact_form.php:1816
556
  msgid "Date/Time"
557
  msgstr "Päivä/Aika"
558
 
559
- #: contact_form.php:944
560
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
561
  msgstr ""
562
 
563
- #: contact_form.php:945
564
- #: contact_form.php:1820
565
- #: contact_form.php:1822
566
  msgid "Sent from (referer)"
567
  msgstr "Lähetetty (referer)"
568
 
569
- #: contact_form.php:945
570
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
571
  msgstr ""
572
 
573
- #: contact_form.php:946
574
- #: contact_form.php:1826
575
- #: contact_form.php:1828
576
  msgid "Using (user agent)"
577
  msgstr "Käytetään (user agent)"
578
 
579
- #: contact_form.php:946
580
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
581
  msgstr ""
582
 
583
- #: contact_form.php:950
584
  msgid "Language settings for the field names in the form"
585
  msgstr "Kieliasetukset kenttien nimille lomakkeessa"
586
 
587
- #: contact_form.php:959
588
  msgid "Add a language"
589
  msgstr "Lisää kieli"
590
 
591
- #: contact_form.php:963
592
  msgid "Change the names of the contact form fields and error messages"
593
  msgstr ""
594
 
595
- #: contact_form.php:968
596
- #: contact_form.php:1041
597
  msgid "English"
598
  msgstr "Englanti"
599
 
600
- #: contact_form.php:976
601
- #: contact_form.php:1006
602
  msgid "click to expand/hide the list"
603
  msgstr ""
604
 
605
- #: contact_form.php:985
606
- #: contact_form.php:1015
607
  #, fuzzy
608
  msgid "Tips below the Attachment block"
609
  msgstr "Näytä liitelaatikon allaolevat vinkit."
610
 
611
- #: contact_form.php:988
612
- #: contact_form.php:1018
613
  msgid "Error message for the Name field"
614
  msgstr "Virheilmoitus nimikentälle"
615
 
616
- #: contact_form.php:989
617
- #: contact_form.php:1019
618
  #, fuzzy
619
  msgid "Error message for the Address field"
620
  msgstr "Virheilmoitus viestikentälle"
621
 
622
- #: contact_form.php:990
623
- #: contact_form.php:1020
624
  msgid "Error message for the Email field"
625
  msgstr "Virheilmoitus sähköpostikentälle"
626
 
627
- #: contact_form.php:991
628
- #: contact_form.php:1021
629
  msgid "Error message for the Phone field"
630
  msgstr "Virheilmoitus puhelinnumerokentälle"
631
 
632
- #: contact_form.php:992
633
- #: contact_form.php:1022
634
  msgid "Error message for the Subject field"
635
  msgstr "Virheilmoitus aihekentälle"
636
 
637
- #: contact_form.php:993
638
- #: contact_form.php:1023
639
  msgid "Error message for the Message field"
640
  msgstr "Virheilmoitus viestikentälle"
641
 
642
- #: contact_form.php:994
643
- #: contact_form.php:1024
644
  #, fuzzy
645
  msgid "Error message about the file type for the Attachment field"
646
  msgstr "Virheilmoitus liitekentälle"
647
 
648
- #: contact_form.php:995
649
- #: contact_form.php:1025
650
  #, fuzzy
651
  msgid "Error message while uploading a file for the Attachment field to the server"
652
  msgstr "Virheilmoitus liitekentälle"
653
 
654
- #: contact_form.php:996
655
- #: contact_form.php:1026
656
  #, fuzzy
657
  msgid "Error message while moving the file for the Attachment field"
658
  msgstr "Virheilmoitus liitekentälle"
659
 
660
- #: contact_form.php:997
661
- #: contact_form.php:1027
662
  #, fuzzy
663
  msgid "Error message when file size limit for the Attachment field is exceeded"
664
  msgstr "Virheilmoitus liitekentälle"
665
 
666
- #: contact_form.php:998
667
- #: contact_form.php:1028
668
  msgid "Error message for the Captcha field"
669
  msgstr "Virheilmoitus CAPTCHA:lle"
670
 
671
- #: contact_form.php:999
672
- #: contact_form.php:1029
673
  msgid "Error message for the whole form"
674
  msgstr "Virheilmoitus koko lomakkeelle"
675
 
676
- #: contact_form.php:1001
677
- #: contact_form.php:1031
678
- #: contact_form.php:1050
679
- #: contact_form.php:1056
 
 
 
 
680
  msgid "Use shortcode"
681
  msgstr "Käytä shortcodea"
682
 
683
- #: contact_form.php:1001
684
- #: contact_form.php:1031
685
- #: contact_form.php:1050
686
- #: contact_form.php:1056
 
 
 
 
687
  msgid "for this language"
688
  msgstr "tälle kielelle"
689
 
690
- #: contact_form.php:1038
691
  msgid "Action after email is sent"
692
  msgstr "Toiminta sähköpostin lähetyksen jälkeen"
693
 
694
- #: contact_form.php:1040
695
  msgid "Display text"
696
  msgstr "Näytä teksti"
697
 
698
- #: contact_form.php:1049
699
- #: contact_form.php:1055
700
  msgid "Text"
701
  msgstr "Teksti"
702
 
703
- #: contact_form.php:1062
704
  msgid "Redirect to the page"
705
  msgstr "Ohjaa sivulle"
706
 
707
- #: contact_form.php:1063
708
  msgid "Url"
709
  msgstr "Url"
710
 
711
- #: contact_form.php:1067
712
  msgid "The $_SERVER variable that is used to build a URL of the form"
713
  msgstr ""
714
 
715
- #: contact_form.php:1071
716
  msgid "If you are not sure whether to change this setting or not, please do not do that."
717
  msgstr ""
718
 
719
- #: contact_form.php:1077
720
- #: contact_form.php:1252
721
  msgid "Save Changes"
722
  msgstr "Tallenna muutokset"
723
 
724
- #: contact_form.php:1082
725
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
726
  msgstr ""
727
 
728
- #: contact_form.php:1083
729
  #, fuzzy
730
  msgid "Rate the plugin"
731
  msgstr "Suositellut lisäosat"
732
 
733
- #: contact_form.php:1086
734
  #, fuzzy
735
  msgid "If there is something wrong about it, please contact us"
736
  msgstr "Jos sinulla on kysyttävää, ota yhteyttä osoitteeseen plugin@bestwebsoft.com tai täytä yhteydenottolomake sivuillamme."
737
 
738
- #: contact_form.php:1101
739
  msgid "Errors output"
740
  msgstr ""
741
 
742
- #: contact_form.php:1104
743
  msgid "Display error messages"
744
  msgstr ""
745
 
746
- #: contact_form.php:1105
747
  msgid "Color of the input field errors."
748
  msgstr ""
749
 
750
- #: contact_form.php:1106
751
  #, fuzzy
752
  msgid "Display error messages & color of the input field errors"
753
  msgstr "Virheilmoitus aihekentälle"
754
 
755
- #: contact_form.php:1111
756
  msgid "Add placeholder to the input blocks"
757
  msgstr ""
758
 
759
- #: contact_form.php:1117
760
  #, fuzzy
761
  msgid "Add tooltips"
762
  msgstr "Lisäasetukset"
763
 
764
- #: contact_form.php:1131
765
  #, fuzzy
766
  msgid "Email address"
767
  msgstr "Sähköposti"
768
 
769
- #: contact_form.php:1136
770
  #, fuzzy
771
  msgid "Phone Number"
772
  msgstr "Puhelinnumero:"
773
 
774
- #: contact_form.php:1150
775
  #, fuzzy
776
  msgid "Attachment"
777
  msgstr "Liite:"
778
 
779
- #: contact_form.php:1155
780
  msgid "(powered by bestwebsoft.com)"
781
  msgstr ""
782
 
783
- #: contact_form.php:1160
784
  #, fuzzy
785
  msgid "Style options"
786
  msgstr "Lisäasetukset"
787
 
788
- #: contact_form.php:1163
789
  msgid "Text color"
790
  msgstr ""
791
 
792
- #: contact_form.php:1166
793
- #: contact_form.php:1171
794
- #: contact_form.php:1181
795
- #: contact_form.php:1186
796
- #: contact_form.php:1191
797
- #: contact_form.php:1196
798
- #: contact_form.php:1206
799
- #: contact_form.php:1211
800
- #: contact_form.php:1217
801
- #: contact_form.php:1228
802
- #: contact_form.php:1233
803
- #: contact_form.php:1238
804
  msgid "Default"
805
  msgstr ""
806
 
807
- #: contact_form.php:1168
808
  msgid "Label text color"
809
  msgstr ""
810
 
811
- #: contact_form.php:1173
812
  msgid "Placeholder color"
813
  msgstr ""
814
 
815
- #: contact_form.php:1178
816
  msgid "Errors color"
817
  msgstr ""
818
 
819
- #: contact_form.php:1183
820
  msgid "Error text color"
821
  msgstr ""
822
 
823
- #: contact_form.php:1188
824
  msgid "Background color of the input field errors"
825
  msgstr ""
826
 
827
- #: contact_form.php:1193
828
  msgid "Border color of the input field errors"
829
  msgstr ""
830
 
831
- #: contact_form.php:1198
832
  msgid "Placeholder color of the input field errors"
833
  msgstr ""
834
 
835
- #: contact_form.php:1203
836
  msgid "Input fields"
837
  msgstr ""
838
 
839
- #: contact_form.php:1208
840
  msgid "Input fields background color"
841
  msgstr ""
842
 
843
- #: contact_form.php:1213
844
  msgid "Text fields color"
845
  msgstr ""
846
 
847
- #: contact_form.php:1215
848
  msgid "Border width in px, numbers only"
849
  msgstr ""
850
 
851
- #: contact_form.php:1219
852
- #: contact_form.php:1240
853
  msgid "Border color"
854
  msgstr ""
855
 
856
- #: contact_form.php:1224
857
  #, fuzzy
858
  msgid "Submit button"
859
  msgstr "Lähetä"
860
 
861
- #: contact_form.php:1226
862
  msgid "Width in px, numbers only"
863
  msgstr ""
864
 
865
- #: contact_form.php:1230
866
  msgid "Button color"
867
  msgstr ""
868
 
869
- #: contact_form.php:1235
870
  msgid "Button text color"
871
  msgstr ""
872
 
873
- #: contact_form.php:1256
874
  #, fuzzy
875
  msgid "Contact Form Pro | Preview"
876
  msgstr "Yhteydenottolomake"
877
 
878
- #: contact_form.php:1259
879
  msgid "Show with errors"
880
  msgstr ""
881
 
882
- #: contact_form.php:1267
883
- #: contact_form.php:1269
884
  msgid "Please enter your full name..."
885
  msgstr ""
886
 
887
- #: contact_form.php:1280
888
- #: contact_form.php:1282
889
  msgid "Please enter your address..."
890
  msgstr ""
891
 
892
- #: contact_form.php:1291
893
- #: contact_form.php:1293
894
  #, fuzzy
895
  msgid "Please enter your email address..."
896
  msgstr "Käytä tätä sähköpostiosoitetta:"
897
 
898
- #: contact_form.php:1302
899
- #: contact_form.php:1304
900
  msgid "Please enter your phone number..."
901
  msgstr ""
902
 
903
- #: contact_form.php:1313
904
- #: contact_form.php:1315
905
  msgid "Please enter subject..."
906
  msgstr ""
907
 
908
- #: contact_form.php:1323
909
- #: contact_form.php:1325
910
  msgid "Please enter your message..."
911
  msgstr ""
912
 
913
- #: contact_form.php:1367
914
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
915
  msgstr ""
916
 
917
- #: contact_form.php:1369
918
  msgid "Please, go to"
919
  msgstr ""
920
 
921
- #: contact_form.php:1369
922
  #, fuzzy
923
  msgid "the setting page"
924
  msgstr "Asetukset"
925
 
926
- #: contact_form.php:1370
927
  msgid "You will be redirected automatically in 5 seconds."
928
  msgstr ""
929
 
930
- #: contact_form.php:1375
931
  msgid "You can download and activate"
932
  msgstr ""
933
 
934
- #: contact_form.php:1377
935
  msgid "version of this plugin by entering Your license key."
936
  msgstr ""
937
 
938
- #: contact_form.php:1379
939
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
940
  msgstr ""
941
 
942
- #: contact_form.php:1381
943
  msgid "(your username is the email you specify when purchasing the product)."
944
  msgstr ""
945
 
946
- #: contact_form.php:1389
947
- #: contact_form.php:1399
948
  msgid "Go!"
949
  msgstr ""
950
 
951
- #: contact_form.php:1449
952
  msgid "Sorry, email message could not be delivered."
953
  msgstr "Anteeksi, sähköpostiviestiä ei voitu lähettää."
954
 
955
- #: contact_form.php:1835
956
  msgid "Contact from"
957
  msgstr "Yhteydenottolomake"
958
 
959
- #: contact_form.php:1848
960
- #: contact_form.php:1874
961
  msgid "Email"
962
  msgstr "Sähköposti"
963
 
964
- #: contact_form.php:1852
965
- #: contact_form.php:1876
966
  msgid "Phone"
967
  msgstr "Puhelinnumero"
968
 
969
- #: contact_form.php:1861
970
- #: contact_form.php:1879
971
  msgid "Site"
972
  msgstr "Sivu"
973
 
974
- #: contact_form.php:1941
975
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
976
  msgstr "Jos näet tämän MIME:n, sen tyyppi ei ole tuettu sähköpostiohjelmassasi."
977
 
978
- #: contact_form.php:2009
979
  msgid "FAQ"
980
  msgstr "FAQ"
981
 
982
- #: contact_form.php:2010
983
  msgid "Support"
984
  msgstr "Tuki"
985
 
986
- #: contact_form.php:2068
987
  msgid "Are you sure that you want to delete this language data?"
988
  msgstr "Oletko varma että haluat poistaa kielitiedot?"
989
 
990
- #: contact_form.php:2223
991
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
992
  msgstr ""
993
 
994
- #: contact_form.php:2224
995
  msgid "Extend standard plugin functionality with new great options."
996
  msgstr ""
997
 
998
- #: contact_form.php:2233
999
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1000
  msgstr ""
1001
 
1002
- #: contact_form.php:2234
1003
  msgid "Manage messages that have been sent from your website."
1004
  msgstr ""
1005
 
 
 
 
 
1006
  #, fuzzy
1007
  #~ msgid "Contact Form Pro Extra Settings"
1008
  #~ msgstr "Yhteydenottolomakeasetukset"
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:38+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:38+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest <joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Yhteydenottolomakeasetukset"
24
 
25
+ #: contact_form.php:73
26
  msgid "Contact Form"
27
  msgstr "Yhteydenottolomake"
28
 
29
+ #: contact_form.php:149
30
+ #: contact_form.php:1131
31
+ #: contact_form.php:1165
32
  msgid "Name:"
33
  msgstr "Nimi:"
34
 
35
+ #: contact_form.php:150
36
+ #: contact_form.php:1132
37
+ #: contact_form.php:1166
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "Sähköposti:"
41
 
42
+ #: contact_form.php:151
43
+ #: contact_form.php:1133
44
+ #: contact_form.php:1167
45
  msgid "Email Address:"
46
  msgstr "Sähköposti:"
47
 
48
+ #: contact_form.php:152
49
+ #: contact_form.php:1134
50
+ #: contact_form.php:1168
51
  msgid "Phone number:"
52
  msgstr "Puhelinnumero:"
53
 
54
+ #: contact_form.php:153
55
+ #: contact_form.php:1135
56
+ #: contact_form.php:1169
57
  msgid "Subject:"
58
  msgstr "Aihe:"
59
 
60
+ #: contact_form.php:154
61
+ #: contact_form.php:1136
62
+ #: contact_form.php:1170
63
  msgid "Message:"
64
  msgstr "Viesti:"
65
 
66
+ #: contact_form.php:155
67
+ #: contact_form.php:1137
68
+ #: contact_form.php:1171
69
  msgid "Attachment:"
70
  msgstr "Liite:"
71
 
72
+ #: contact_form.php:156
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
+ #: contact_form.php:157
77
+ #: contact_form.php:1139
78
+ #: contact_form.php:1173
79
  msgid "Send me a copy"
80
  msgstr "Lähetä minulle kopio"
81
 
82
+ #: contact_form.php:158
83
+ #: contact_form.php:1140
84
+ #: contact_form.php:1174
85
  msgid "Submit"
86
  msgstr "Lähetä"
87
 
88
+ #: contact_form.php:159
89
  msgid "Your name is required."
90
  msgstr "Nimikenttä pakollinen."
91
 
92
+ #: contact_form.php:160
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "Anna toimiva sähköpostiosoite."
96
 
97
+ #: contact_form.php:161
98
  msgid "A valid email address is required."
99
  msgstr "Anna toimiva sähköpostiosoite."
100
 
101
+ #: contact_form.php:162
102
  msgid "Phone number is required."
103
  msgstr "Puhelinnumero pakollinen."
104
 
105
+ #: contact_form.php:163
106
  msgid "Subject is required."
107
  msgstr "Aihe pakollinen."
108
 
109
+ #: contact_form.php:164
110
  msgid "Message text is required."
111
  msgstr "Viestikenttä pakollinen."
112
 
113
+ #: contact_form.php:165
114
  msgid "File format is not valid."
115
  msgstr "Tiedostotyyppi virheellinen."
116
 
117
+ #: contact_form.php:166
118
  msgid "File upload error."
119
  msgstr ""
120
 
121
+ #: contact_form.php:167
122
  msgid "The file could not be uploaded."
123
  msgstr ""
124
 
125
+ #: contact_form.php:168
126
  msgid "This file is too large."
127
  msgstr ""
128
 
129
+ #: contact_form.php:169
130
  msgid "Please fill out the CAPTCHA."
131
  msgstr "Täytä CAPTCHA."
132
 
133
+ #: contact_form.php:170
134
  msgid "Please make corrections below and try again."
135
  msgstr "Tee allaolevat korjaukset ja yritä uudelleen."
136
 
137
+ #: contact_form.php:172
138
  msgid "Thank you for contacting us."
139
  msgstr "Kiitos yhteydenotostanne."
140
 
141
+ #: contact_form.php:322
142
  #, fuzzy
143
  msgid "requires"
144
  msgstr "Vaaditut kentät"
145
 
146
+ #: contact_form.php:322
147
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
148
  msgstr ""
149
 
150
+ #: contact_form.php:322
151
  msgid "Back to the WordPress"
152
  msgstr ""
153
 
154
+ #: contact_form.php:322
155
  #, fuzzy
156
  msgid "Plugins page"
157
  msgstr "Плагины BWS"
158
 
159
+ #: contact_form.php:626
160
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
161
  msgstr "Jos 'Ohjaa sivulle' vaihtoehto on valittu, URL-kentän tulisi olla seuraavaa muotoa"
162
 
163
+ #: contact_form.php:635
164
  msgid "Such user does not exist. Settings are not saved."
165
  msgstr "Käyttäjää ei ole olemassa. Asetuksia ei tallennettu."
166
 
167
+ #: contact_form.php:639
168
+ #: contact_form.php:645
169
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
170
  msgstr "Anna toimiva sähköpostiosoite 'Lähettäjä' kenttään. Asetuksia ei tallennettu."
171
 
172
+ #: contact_form.php:661
173
  #, fuzzy
174
  msgid "Settings saved."
175
  msgstr "Asetukset tallennettu."
176
 
177
+ #: contact_form.php:688
178
+ #: contact_form.php:720
179
  msgid "Wrong license key"
180
  msgstr ""
181
 
182
+ #: contact_form.php:713
183
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
184
  msgstr ""
185
 
186
+ #: contact_form.php:722
187
  msgid "This license key is bind to another site"
188
  msgstr ""
189
 
190
+ #: contact_form.php:724
191
+ #: contact_form.php:1570
192
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
193
  msgstr ""
194
 
195
+ #: contact_form.php:741
196
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
+ #: contact_form.php:747
200
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
201
  msgstr ""
202
 
203
+ #: contact_form.php:751
204
+ #: contact_form.php:760
205
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
206
  msgstr ""
207
 
208
+ #: contact_form.php:764
209
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
210
  msgstr ""
211
 
212
+ #: contact_form.php:779
213
  #, fuzzy
214
  msgid "Please, enter Your license key"
215
  msgstr "Käytä tätä sähköpostiosoitetta:"
216
 
217
+ #: contact_form.php:787
218
+ #: contact_form.php:2216
219
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
220
  msgid "Settings"
221
  msgstr "Asetukset"
222
 
223
+ #: contact_form.php:788
224
  #, fuzzy
225
  msgid "Extra settings"
226
  msgstr "Asetukset"
227
 
228
+ #: contact_form.php:789
229
  msgid "Go PRO"
230
  msgstr ""
231
 
232
+ #: contact_form.php:792
233
+ msgid "Notice:"
234
+ msgstr ""
235
+
236
+ #: contact_form.php:792
237
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
238
+ msgstr ""
239
+
240
+ #: contact_form.php:798
241
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
242
+ msgstr ""
243
+
244
+ #: contact_form.php:804
245
+ #: contact_form.php:809
246
+ #: contact_form.php:1529
247
  msgid "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:"
248
  msgstr "Jos haluat lisätä yhteydenottolomakkeen sivullesi, kopioi ja liitä tämä shortcode artikkeliin, sivulle tai vimpaimeen."
249
 
250
+ #: contact_form.php:804
251
+ #: contact_form.php:805
252
+ #: contact_form.php:809
253
+ #: contact_form.php:810
254
+ #: contact_form.php:1155
255
+ #: contact_form.php:1157
256
+ #: contact_form.php:1212
257
+ #: contact_form.php:1214
258
  msgid "or"
259
  msgstr ""
260
 
261
+ #: contact_form.php:805
262
+ #: contact_form.php:810
263
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
264
  msgstr ""
265
 
266
+ #: contact_form.php:806
267
+ #: contact_form.php:811
268
  msgid "They work the same way."
269
  msgstr ""
270
 
271
+ #: contact_form.php:807
272
+ #: contact_form.php:812
273
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
274
  msgstr "Jos jätät kentät tyhjäksi, viestit lähetetään rekisteröinnin yhteydessä määriteltyyn sähköpostiin."
275
 
276
+ #: contact_form.php:817
277
  msgid "The user's email address:"
278
  msgstr "Käyttäjän sähköpostiosoite:"
279
 
280
+ #: contact_form.php:821
281
  msgid "Create a username"
282
  msgstr "Luo käyttäjänimi."
283
 
284
+ #: contact_form.php:828
285
  msgid "Enter a username of the person who should get the messages from the contact form."
286
  msgstr "Syötä käyttäjänimi, jolle viestit lähetetään lomakkeesta."
287
 
288
+ #: contact_form.php:832
289
  msgid "Use this email address:"
290
  msgstr "Käytä tätä sähköpostiosoitetta:"
291
 
292
+ #: contact_form.php:835
293
  msgid "Enter the email address you want the messages forwarded to."
294
  msgstr "Sähköpostiosoite, johon viestit ohjataan."
295
 
296
+ #: contact_form.php:844
297
  msgid "Add department selectbox to the contact form:"
298
  msgstr ""
299
 
300
+ #: contact_form.php:852
301
+ #: contact_form.php:1412
302
  msgid "If you upgrade to Pro version all your settings will be saved."
303
  msgstr ""
304
 
305
+ #: contact_form.php:859
306
+ #: contact_form.php:997
307
+ #: contact_form.php:1071
308
+ #: contact_form.php:1419
309
+ msgid "Unlock premium options by upgrading to a PRO version."
310
  msgstr ""
311
 
312
+ #: contact_form.php:860
313
+ #: contact_form.php:998
314
+ #: contact_form.php:1072
315
+ #: contact_form.php:1420
316
+ #: contact_form.php:2473
317
+ #: contact_form.php:2489
318
+ msgid "Learn More"
319
+ msgstr ""
320
 
321
+ #: contact_form.php:863
322
+ #: contact_form.php:1001
323
+ #: contact_form.php:1075
324
+ #: contact_form.php:1423
325
+ msgid "Go"
326
+ msgstr ""
327
+
328
+ #: contact_form.php:870
329
  msgid "Save emails to the database"
330
  msgstr ""
331
 
332
+ #: contact_form.php:876
333
  msgid "Using"
334
  msgstr ""
335
 
336
+ #: contact_form.php:876
337
+ #: contact_form.php:1048
338
+ #: contact_form.php:1051
339
+ #: contact_form.php:1055
340
  msgid "powered by"
341
  msgstr ""
342
 
343
+ #: contact_form.php:879
344
+ #: contact_form.php:883
345
  msgid "Using Contact Form to DB powered by"
346
  msgstr ""
347
 
348
+ #: contact_form.php:879
349
  #, fuzzy
350
  msgid "Activate Contact Form to DB"
351
  msgstr "Yhteydenottolomake"
352
 
353
+ #: contact_form.php:883
354
  #, fuzzy
355
  msgid "Download Contact Form to DB"
356
  msgstr "Yhteydenottolomake"
357
 
358
+ #: contact_form.php:888
359
  msgid "Additional options"
360
  msgstr "Lisäasetukset"
361
 
362
+ #: contact_form.php:890
363
  msgid "Show"
364
  msgstr ""
365
 
366
+ #: contact_form.php:891
367
  msgid "Hide"
368
  msgstr ""
369
 
370
+ #: contact_form.php:895
371
  msgid "What to use?"
372
  msgstr "Mitä käyttää?"
373
 
374
+ #: contact_form.php:898
375
  msgid "Wp-mail"
376
  msgstr "Wp-sähköposti"
377
 
378
+ #: contact_form.php:898
379
  msgid "You can use the wp_mail function for mailing"
380
  msgstr "Voit käyttää wp_mail funktiota sähköpostin lähettämiseen"
381
 
382
+ #: contact_form.php:900
383
  msgid "Mail"
384
  msgstr "Sähköposti"
385
 
386
+ #: contact_form.php:900
387
  msgid "To send mail you can use the php mail function"
388
  msgstr "Voit käyttää php sähköpostifunktiota lähettääksesi sähköpostia"
389
 
390
+ #: contact_form.php:904
391
  #, fuzzy
392
  msgid "The text in the 'From' field"
393
  msgstr "Vaihda teksti 'Lähettäjä'- kentästä"
394
 
395
+ #: contact_form.php:906
396
  msgid "User name"
397
  msgstr ""
398
 
399
+ #: contact_form.php:907
400
  #, fuzzy
401
  msgid "The name of the user who fills the form will be used in the field 'From'."
402
  msgstr "Lomakkeen täyttäjän sähköpostiosoitetta käytetään 'Lähettäjä'- kentässä."
403
 
404
+ #: contact_form.php:910
405
  #, fuzzy
406
  msgid "This text will be used in the 'FROM' field"
407
  msgstr "Tätä sähöpostiosoitetta käytetään 'Lähettäjä'- kentässä."
408
 
409
+ #: contact_form.php:914
410
  #, fuzzy
411
  msgid "The email address in the 'From' field"
412
  msgstr "Syötä sähköpostiosoite 'Lähettäjä'- kenttään"
413
 
414
+ #: contact_form.php:916
415
  msgid "User email"
416
  msgstr ""
417
 
418
+ #: contact_form.php:917
419
  msgid "The email address of the user who fills the form will be used in the field 'From'."
420
  msgstr "Lomakkeen täyttäjän sähköpostiosoitetta käytetään 'Lähettäjä'- kentässä."
421
 
422
+ #: contact_form.php:920
423
  msgid "This email address will be used in the 'From' field."
424
  msgstr "Tätä sähöpostiosoitetta käytetään 'Lähettäjä'- kentässä."
425
 
426
+ #: contact_form.php:924
427
  #, fuzzy
428
  msgid "Required symbol"
429
  msgstr "Vaaditut kentät"
430
 
431
+ #: contact_form.php:934
432
  msgid "Fields"
433
  msgstr ""
434
 
435
+ #: contact_form.php:935
436
  msgid "Used"
437
  msgstr ""
438
 
439
+ #: contact_form.php:936
440
  #, fuzzy
441
  msgid "Required"
442
  msgstr "Vaaditut kentät"
443
 
444
+ #: contact_form.php:937
445
  msgid "Visible"
446
  msgstr ""
447
 
448
+ #: contact_form.php:938
449
  msgid "Disabled for editing"
450
  msgstr ""
451
 
452
+ #: contact_form.php:939
453
  msgid "Field's default value"
454
  msgstr ""
455
 
456
+ #: contact_form.php:944
457
+ #: contact_form.php:1287
458
+ #: contact_form.php:2059
459
+ #: contact_form.php:2089
460
  msgid "Name"
461
  msgstr "Nimi"
462
 
463
+ #: contact_form.php:952
464
+ #: contact_form.php:1292
465
+ #: contact_form.php:2063
466
+ #: contact_form.php:2091
467
  #, fuzzy
468
  msgid "Address"
469
  msgstr "Sähköposti"
470
 
471
+ #: contact_form.php:960
472
  msgid "Email Address"
473
  msgstr "Sähköposti"
474
 
475
+ #: contact_form.php:968
476
  #, fuzzy
477
  msgid "Phone number"
478
  msgstr "Puhelinnumero:"
479
 
480
+ #: contact_form.php:976
481
+ #: contact_form.php:1307
482
+ #: contact_form.php:2073
483
+ #: contact_form.php:2095
484
  msgid "Subject"
485
  msgstr "Aihe"
486
 
487
+ #: contact_form.php:984
488
+ #: contact_form.php:1311
489
+ #: contact_form.php:2076
490
+ #: contact_form.php:2096
491
  msgid "Message"
492
  msgstr "Viesti"
493
 
494
+ #: contact_form.php:1008
495
  #, fuzzy
496
  msgid "Attachment block"
497
  msgstr "Näytä liitelaatikko."
498
 
499
+ #: contact_form.php:1010
500
  msgid "Users can attach the following file formats"
501
  msgstr "Käyttäjä voi lisätä seuraavia tiedostotyyppejä"
502
 
503
+ #: contact_form.php:1023
504
  msgid "Add to the form"
505
  msgstr ""
506
 
507
+ #: contact_form.php:1028
508
  #, fuzzy
509
  msgid "Tips below the Attachment"
510
  msgstr "Näytä liitelaatikon allaolevat vinkit."
511
 
512
+ #: contact_form.php:1037
513
  #, fuzzy
514
  msgid "'Send me a copy' block"
515
  msgstr "Näytä Lähetä minulle kopio- laatikko"
516
 
517
+ #: contact_form.php:1048
518
+ #: contact_form.php:1051
519
+ #: contact_form.php:1055
520
+ #: contact_form.php:1321
521
  msgid "Captcha"
522
  msgstr ""
523
 
524
+ #: contact_form.php:1051
525
  #, fuzzy
526
  msgid "Activate captcha"
527
  msgstr "Aktivoidut lisäosat"
528
 
529
+ #: contact_form.php:1055
530
  #, fuzzy
531
  msgid "Download captcha"
532
  msgstr "Lataa"
533
 
534
+ #: contact_form.php:1063
535
  msgid "Agreement checkbox"
536
  msgstr ""
537
 
538
+ #: contact_form.php:1063
539
  msgid "Required checkbox for submitting the form"
540
  msgstr ""
541
 
542
+ #: contact_form.php:1064
543
  msgid "Optional checkbox"
544
  msgstr ""
545
 
546
+ #: contact_form.php:1064
547
  msgid "Optional checkbox, the results of which will be displayed in email"
548
  msgstr ""
549
 
550
+ #: contact_form.php:1081
551
  msgid "Delete an attachment file from the server after the email is sent"
552
  msgstr ""
553
 
554
+ #: contact_form.php:1087
555
  msgid "Email in HTML format sending"
556
  msgstr ""
557
 
558
+ #: contact_form.php:1091
559
  msgid "Display additional info in the email"
560
  msgstr "Näytä lisätietoa sähköpostissa"
561
 
562
+ #: contact_form.php:1096
563
+ #: contact_form.php:2026
564
+ #: contact_form.php:2028
565
  msgid "Sent from (ip address)"
566
  msgstr "Lähetetty osoitteesta (ip-osoite)"
567
 
568
+ #: contact_form.php:1096
569
  #, fuzzy
570
  msgid "Example: Sent from (IP address):\t127.0.0.1"
571
  msgstr "Lähetetty osoitteesta (ip-osoite)"
572
 
573
+ #: contact_form.php:1097
574
+ #: contact_form.php:2032
575
+ #: contact_form.php:2034
576
  msgid "Date/Time"
577
  msgstr "Päivä/Aika"
578
 
579
+ #: contact_form.php:1097
580
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
581
  msgstr ""
582
 
583
+ #: contact_form.php:1098
584
+ #: contact_form.php:2038
585
+ #: contact_form.php:2040
586
  msgid "Sent from (referer)"
587
  msgstr "Lähetetty (referer)"
588
 
589
+ #: contact_form.php:1098
590
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
591
  msgstr ""
592
 
593
+ #: contact_form.php:1099
594
+ #: contact_form.php:2044
595
+ #: contact_form.php:2046
596
  msgid "Using (user agent)"
597
  msgstr "Käytetään (user agent)"
598
 
599
+ #: contact_form.php:1099
600
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
601
  msgstr ""
602
 
603
+ #: contact_form.php:1103
604
  msgid "Language settings for the field names in the form"
605
  msgstr "Kieliasetukset kenttien nimille lomakkeessa"
606
 
607
+ #: contact_form.php:1112
608
  msgid "Add a language"
609
  msgstr "Lisää kieli"
610
 
611
+ #: contact_form.php:1116
612
  msgid "Change the names of the contact form fields and error messages"
613
  msgstr ""
614
 
615
+ #: contact_form.php:1121
616
+ #: contact_form.php:1202
617
  msgid "English"
618
  msgstr "Englanti"
619
 
620
+ #: contact_form.php:1129
621
+ #: contact_form.php:1163
622
  msgid "click to expand/hide the list"
623
  msgstr ""
624
 
625
+ #: contact_form.php:1138
626
+ #: contact_form.php:1172
627
  #, fuzzy
628
  msgid "Tips below the Attachment block"
629
  msgstr "Näytä liitelaatikon allaolevat vinkit."
630
 
631
+ #: contact_form.php:1141
632
+ #: contact_form.php:1175
633
  msgid "Error message for the Name field"
634
  msgstr "Virheilmoitus nimikentälle"
635
 
636
+ #: contact_form.php:1142
637
+ #: contact_form.php:1176
638
  #, fuzzy
639
  msgid "Error message for the Address field"
640
  msgstr "Virheilmoitus viestikentälle"
641
 
642
+ #: contact_form.php:1143
643
+ #: contact_form.php:1177
644
  msgid "Error message for the Email field"
645
  msgstr "Virheilmoitus sähköpostikentälle"
646
 
647
+ #: contact_form.php:1144
648
+ #: contact_form.php:1178
649
  msgid "Error message for the Phone field"
650
  msgstr "Virheilmoitus puhelinnumerokentälle"
651
 
652
+ #: contact_form.php:1145
653
+ #: contact_form.php:1179
654
  msgid "Error message for the Subject field"
655
  msgstr "Virheilmoitus aihekentälle"
656
 
657
+ #: contact_form.php:1146
658
+ #: contact_form.php:1180
659
  msgid "Error message for the Message field"
660
  msgstr "Virheilmoitus viestikentälle"
661
 
662
+ #: contact_form.php:1147
663
+ #: contact_form.php:1181
664
  #, fuzzy
665
  msgid "Error message about the file type for the Attachment field"
666
  msgstr "Virheilmoitus liitekentälle"
667
 
668
+ #: contact_form.php:1148
669
+ #: contact_form.php:1182
670
  #, fuzzy
671
  msgid "Error message while uploading a file for the Attachment field to the server"
672
  msgstr "Virheilmoitus liitekentälle"
673
 
674
+ #: contact_form.php:1149
675
+ #: contact_form.php:1183
676
  #, fuzzy
677
  msgid "Error message while moving the file for the Attachment field"
678
  msgstr "Virheilmoitus liitekentälle"
679
 
680
+ #: contact_form.php:1150
681
+ #: contact_form.php:1184
682
  #, fuzzy
683
  msgid "Error message when file size limit for the Attachment field is exceeded"
684
  msgstr "Virheilmoitus liitekentälle"
685
 
686
+ #: contact_form.php:1151
687
+ #: contact_form.php:1185
688
  msgid "Error message for the Captcha field"
689
  msgstr "Virheilmoitus CAPTCHA:lle"
690
 
691
+ #: contact_form.php:1152
692
+ #: contact_form.php:1186
693
  msgid "Error message for the whole form"
694
  msgstr "Virheilmoitus koko lomakkeelle"
695
 
696
+ #: contact_form.php:1155
697
+ #: contact_form.php:1157
698
+ #: contact_form.php:1189
699
+ #: contact_form.php:1191
700
+ #: contact_form.php:1212
701
+ #: contact_form.php:1214
702
+ #: contact_form.php:1222
703
+ #: contact_form.php:1224
704
  msgid "Use shortcode"
705
  msgstr "Käytä shortcodea"
706
 
707
+ #: contact_form.php:1155
708
+ #: contact_form.php:1157
709
+ #: contact_form.php:1189
710
+ #: contact_form.php:1191
711
+ #: contact_form.php:1212
712
+ #: contact_form.php:1214
713
+ #: contact_form.php:1222
714
+ #: contact_form.php:1224
715
  msgid "for this language"
716
  msgstr "tälle kielelle"
717
 
718
+ #: contact_form.php:1199
719
  msgid "Action after email is sent"
720
  msgstr "Toiminta sähköpostin lähetyksen jälkeen"
721
 
722
+ #: contact_form.php:1201
723
  msgid "Display text"
724
  msgstr "Näytä teksti"
725
 
726
+ #: contact_form.php:1210
727
+ #: contact_form.php:1220
728
  msgid "Text"
729
  msgstr "Teksti"
730
 
731
+ #: contact_form.php:1231
732
  msgid "Redirect to the page"
733
  msgstr "Ohjaa sivulle"
734
 
735
+ #: contact_form.php:1232
736
  msgid "Url"
737
  msgstr "Url"
738
 
739
+ #: contact_form.php:1236
740
  msgid "The $_SERVER variable that is used to build a URL of the form"
741
  msgstr ""
742
 
743
+ #: contact_form.php:1240
744
  msgid "If you are not sure whether to change this setting or not, please do not do that."
745
  msgstr ""
746
 
747
+ #: contact_form.php:1246
748
+ #: contact_form.php:1430
749
  msgid "Save Changes"
750
  msgstr "Tallenna muutokset"
751
 
752
+ #: contact_form.php:1251
753
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
754
  msgstr ""
755
 
756
+ #: contact_form.php:1252
757
  #, fuzzy
758
  msgid "Rate the plugin"
759
  msgstr "Suositellut lisäosat"
760
 
761
+ #: contact_form.php:1255
762
  #, fuzzy
763
  msgid "If there is something wrong about it, please contact us"
764
  msgstr "Jos sinulla on kysyttävää, ota yhteyttä osoitteeseen plugin@bestwebsoft.com tai täytä yhteydenottolomake sivuillamme."
765
 
766
+ #: contact_form.php:1267
767
  msgid "Errors output"
768
  msgstr ""
769
 
770
+ #: contact_form.php:1270
771
  msgid "Display error messages"
772
  msgstr ""
773
 
774
+ #: contact_form.php:1271
775
  msgid "Color of the input field errors."
776
  msgstr ""
777
 
778
+ #: contact_form.php:1272
779
  #, fuzzy
780
  msgid "Display error messages & color of the input field errors"
781
  msgstr "Virheilmoitus aihekentälle"
782
 
783
+ #: contact_form.php:1277
784
  msgid "Add placeholder to the input blocks"
785
  msgstr ""
786
 
787
+ #: contact_form.php:1283
788
  #, fuzzy
789
  msgid "Add tooltips"
790
  msgstr "Lisäasetukset"
791
 
792
+ #: contact_form.php:1297
793
  #, fuzzy
794
  msgid "Email address"
795
  msgstr "Sähköposti"
796
 
797
+ #: contact_form.php:1302
798
  #, fuzzy
799
  msgid "Phone Number"
800
  msgstr "Puhelinnumero:"
801
 
802
+ #: contact_form.php:1316
803
  #, fuzzy
804
  msgid "Attachment"
805
  msgstr "Liite:"
806
 
807
+ #: contact_form.php:1321
808
  msgid "(powered by bestwebsoft.com)"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1326
812
  #, fuzzy
813
  msgid "Style options"
814
  msgstr "Lisäasetukset"
815
 
816
+ #: contact_form.php:1329
817
  msgid "Text color"
818
  msgstr ""
819
 
820
+ #: contact_form.php:1332
821
+ #: contact_form.php:1337
822
+ #: contact_form.php:1347
823
+ #: contact_form.php:1352
824
+ #: contact_form.php:1357
825
+ #: contact_form.php:1362
826
+ #: contact_form.php:1372
827
+ #: contact_form.php:1377
828
+ #: contact_form.php:1383
829
+ #: contact_form.php:1394
830
+ #: contact_form.php:1399
831
+ #: contact_form.php:1404
832
  msgid "Default"
833
  msgstr ""
834
 
835
+ #: contact_form.php:1334
836
  msgid "Label text color"
837
  msgstr ""
838
 
839
+ #: contact_form.php:1339
840
  msgid "Placeholder color"
841
  msgstr ""
842
 
843
+ #: contact_form.php:1344
844
  msgid "Errors color"
845
  msgstr ""
846
 
847
+ #: contact_form.php:1349
848
  msgid "Error text color"
849
  msgstr ""
850
 
851
+ #: contact_form.php:1354
852
  msgid "Background color of the input field errors"
853
  msgstr ""
854
 
855
+ #: contact_form.php:1359
856
  msgid "Border color of the input field errors"
857
  msgstr ""
858
 
859
+ #: contact_form.php:1364
860
  msgid "Placeholder color of the input field errors"
861
  msgstr ""
862
 
863
+ #: contact_form.php:1369
864
  msgid "Input fields"
865
  msgstr ""
866
 
867
+ #: contact_form.php:1374
868
  msgid "Input fields background color"
869
  msgstr ""
870
 
871
+ #: contact_form.php:1379
872
  msgid "Text fields color"
873
  msgstr ""
874
 
875
+ #: contact_form.php:1381
876
  msgid "Border width in px, numbers only"
877
  msgstr ""
878
 
879
+ #: contact_form.php:1385
880
+ #: contact_form.php:1406
881
  msgid "Border color"
882
  msgstr ""
883
 
884
+ #: contact_form.php:1390
885
  #, fuzzy
886
  msgid "Submit button"
887
  msgstr "Lähetä"
888
 
889
+ #: contact_form.php:1392
890
  msgid "Width in px, numbers only"
891
  msgstr ""
892
 
893
+ #: contact_form.php:1396
894
  msgid "Button color"
895
  msgstr ""
896
 
897
+ #: contact_form.php:1401
898
  msgid "Button text color"
899
  msgstr ""
900
 
901
+ #: contact_form.php:1434
902
  #, fuzzy
903
  msgid "Contact Form Pro | Preview"
904
  msgstr "Yhteydenottolomake"
905
 
906
+ #: contact_form.php:1437
907
  msgid "Show with errors"
908
  msgstr ""
909
 
910
+ #: contact_form.php:1445
911
+ #: contact_form.php:1447
912
  msgid "Please enter your full name..."
913
  msgstr ""
914
 
915
+ #: contact_form.php:1458
916
+ #: contact_form.php:1460
917
  msgid "Please enter your address..."
918
  msgstr ""
919
 
920
+ #: contact_form.php:1469
921
+ #: contact_form.php:1471
922
  #, fuzzy
923
  msgid "Please enter your email address..."
924
  msgstr "Käytä tätä sähköpostiosoitetta:"
925
 
926
+ #: contact_form.php:1480
927
+ #: contact_form.php:1482
928
  msgid "Please enter your phone number..."
929
  msgstr ""
930
 
931
+ #: contact_form.php:1491
932
+ #: contact_form.php:1493
933
  msgid "Please enter subject..."
934
  msgstr ""
935
 
936
+ #: contact_form.php:1501
937
+ #: contact_form.php:1503
938
  msgid "Please enter your message..."
939
  msgstr ""
940
 
941
+ #: contact_form.php:1545
942
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
943
  msgstr ""
944
 
945
+ #: contact_form.php:1547
946
  msgid "Please, go to"
947
  msgstr ""
948
 
949
+ #: contact_form.php:1547
950
  #, fuzzy
951
  msgid "the setting page"
952
  msgstr "Asetukset"
953
 
954
+ #: contact_form.php:1548
955
  msgid "You will be redirected automatically in 5 seconds."
956
  msgstr ""
957
 
958
+ #: contact_form.php:1553
959
  msgid "You can download and activate"
960
  msgstr ""
961
 
962
+ #: contact_form.php:1555
963
  msgid "version of this plugin by entering Your license key."
964
  msgstr ""
965
 
966
+ #: contact_form.php:1557
967
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
968
  msgstr ""
969
 
970
+ #: contact_form.php:1559
971
  msgid "(your username is the email you specify when purchasing the product)."
972
  msgstr ""
973
 
974
+ #: contact_form.php:1567
975
+ #: contact_form.php:1577
976
  msgid "Go!"
977
  msgstr ""
978
 
979
+ #: contact_form.php:1647
980
  msgid "Sorry, email message could not be delivered."
981
  msgstr "Anteeksi, sähköpostiviestiä ei voitu lähettää."
982
 
983
+ #: contact_form.php:2053
984
  msgid "Contact from"
985
  msgstr "Yhteydenottolomake"
986
 
987
+ #: contact_form.php:2066
988
+ #: contact_form.php:2092
989
  msgid "Email"
990
  msgstr "Sähköposti"
991
 
992
+ #: contact_form.php:2070
993
+ #: contact_form.php:2094
994
  msgid "Phone"
995
  msgstr "Puhelinnumero"
996
 
997
+ #: contact_form.php:2079
998
+ #: contact_form.php:2097
999
  msgid "Site"
1000
  msgstr "Sivu"
1001
 
1002
+ #: contact_form.php:2160
1003
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
1004
  msgstr "Jos näet tämän MIME:n, sen tyyppi ei ole tuettu sähköpostiohjelmassasi."
1005
 
1006
+ #: contact_form.php:2229
1007
  msgid "FAQ"
1008
  msgstr "FAQ"
1009
 
1010
+ #: contact_form.php:2230
1011
  msgid "Support"
1012
  msgstr "Tuki"
1013
 
1014
+ #: contact_form.php:2280
1015
  msgid "Are you sure that you want to delete this language data?"
1016
  msgstr "Oletko varma että haluat poistaa kielitiedot?"
1017
 
1018
+ #: contact_form.php:2476
1019
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
1020
  msgstr ""
1021
 
1022
+ #: contact_form.php:2477
1023
  msgid "Extend standard plugin functionality with new great options."
1024
  msgstr ""
1025
 
1026
+ #: contact_form.php:2492
1027
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1028
  msgstr ""
1029
 
1030
+ #: contact_form.php:2493
1031
  msgid "Manage messages that have been sent from your website."
1032
  msgstr ""
1033
 
1034
+ #, fuzzy
1035
+ #~ msgid "Contact Form Pro"
1036
+ #~ msgstr "Yhteydenottolomake"
1037
+
1038
  #, fuzzy
1039
  #~ msgid "Contact Form Pro Extra Settings"
1040
  #~ msgstr "Yhteydenottolomakeasetukset"
languages/contact_form-fr_FR.mo CHANGED
Binary file
languages/contact_form-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-06 12:49+0300\n"
6
- "PO-Revision-Date: 2014-03-06 12:49+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -17,950 +17,990 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:33
21
- #: contact_form.php:662
22
  msgid "Contact Form Settings"
23
  msgstr "Options du formulaire de Contact"
24
 
25
- #: contact_form.php:33
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:980
31
- #: contact_form.php:1010
32
  msgid "Name:"
33
  msgstr "Nom:"
34
 
35
- #: contact_form.php:81
36
- #: contact_form.php:981
37
- #: contact_form.php:1011
38
  msgid "Address:"
39
  msgstr "Adresse :"
40
 
41
- #: contact_form.php:82
42
- #: contact_form.php:982
43
- #: contact_form.php:1012
44
  msgid "Email Address:"
45
  msgstr "Adresse e-mail:"
46
 
47
- #: contact_form.php:83
48
- #: contact_form.php:983
49
- #: contact_form.php:1013
50
  msgid "Phone number:"
51
  msgstr "Téléphone:"
52
 
53
- #: contact_form.php:84
54
- #: contact_form.php:984
55
- #: contact_form.php:1014
56
  msgid "Subject:"
57
  msgstr "Sujet:"
58
 
59
- #: contact_form.php:85
60
- #: contact_form.php:985
61
- #: contact_form.php:1015
62
  msgid "Message:"
63
  msgstr "Message:"
64
 
65
- #: contact_form.php:86
66
- #: contact_form.php:986
67
- #: contact_form.php:1016
68
  msgid "Attachment:"
69
  msgstr "Pièce jointe:"
70
 
71
- #: contact_form.php:87
72
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
73
  msgstr "Types de fichiers autorisés: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Taille maximum 2MB"
74
 
75
- #: contact_form.php:88
76
- #: contact_form.php:988
77
- #: contact_form.php:1018
78
  msgid "Send me a copy"
79
  msgstr "M'envoyer une copie"
80
 
81
- #: contact_form.php:89
82
- #: contact_form.php:989
83
- #: contact_form.php:1019
84
  msgid "Submit"
85
  msgstr "Envoyer"
86
 
87
- #: contact_form.php:90
88
  msgid "Your name is required."
89
  msgstr "Un nom est obligatoire."
90
 
91
- #: contact_form.php:91
92
  msgid "Address is required."
93
  msgstr "Une adresse est obligatoire."
94
 
95
- #: contact_form.php:92
96
  msgid "A valid email address is required."
97
  msgstr "Une adresse e-mail valide est obligatoire."
98
 
99
- #: contact_form.php:93
100
  msgid "Phone number is required."
101
  msgstr "Le numéro de téléphone est obligatoire."
102
 
103
- #: contact_form.php:94
104
  msgid "Subject is required."
105
  msgstr "Le sujet est obligatoire."
106
 
107
- #: contact_form.php:95
108
  msgid "Message text is required."
109
  msgstr "Un message est obligatoire."
110
 
111
- #: contact_form.php:96
112
  msgid "File format is not valid."
113
  msgstr "Le type de pièce jointe n'est pas valide."
114
 
115
- #: contact_form.php:97
116
  msgid "File upload error."
117
  msgstr "Erreur de chargement du fichier."
118
 
119
- #: contact_form.php:98
120
  msgid "The file could not be uploaded."
121
  msgstr "Le fichier n'a pas pu être envoyé."
122
 
123
- #: contact_form.php:99
124
  msgid "This file is too large."
125
  msgstr "Le fichier est trop volumineux."
126
 
127
- #: contact_form.php:100
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Merci de compléter le CAPTCHA."
130
 
131
- #: contact_form.php:101
132
  msgid "Please make corrections below and try again."
133
  msgstr "Merci de faire les corrections suivantes et de réessayer."
134
 
135
- #: contact_form.php:103
136
  msgid "Thank you for contacting us."
137
  msgstr "Merci de nous avoir contacté."
138
 
139
- #: contact_form.php:203
140
  msgid "requires"
141
  msgstr "obligatoire"
142
 
143
- #: contact_form.php:203
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
146
 
147
- #: contact_form.php:203
148
  msgid "Back to the WordPress"
149
  msgstr "Retourner à WordPress"
150
 
151
- #: contact_form.php:203
152
  msgid "Plugins page"
153
  msgstr "Page des extensions"
154
 
155
- #: contact_form.php:496
156
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
157
  msgstr "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url doit être rempli avec le format suivant"
158
 
159
- #: contact_form.php:505
160
  msgid "Such user does not exist. Settings are not saved."
161
  msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas enregistrées."
162
 
163
- #: contact_form.php:509
164
- #: contact_form.php:515
165
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
166
  msgstr "Merci de saisir une adresse e-mail valide pour le 'FROM'. Les modifications ne sont pas enregistrées."
167
 
168
- #: contact_form.php:520
169
  msgid "Settings saved."
170
  msgstr "Options enregistrées."
171
 
172
- #: contact_form.php:556
173
- #: contact_form.php:595
174
  msgid "Wrong license key"
175
  msgstr "Clé de licence incorrecte"
176
 
177
- #: contact_form.php:588
178
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
179
  msgstr "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
180
 
181
- #: contact_form.php:597
182
  msgid "This license key is bind to another site"
183
  msgstr "La clé de licence correspond à un autre site."
184
 
185
- #: contact_form.php:599
186
- #: contact_form.php:1394
187
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
188
  msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
189
 
190
- #: contact_form.php:617
191
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
192
  msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
193
 
194
- #: contact_form.php:623
195
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
196
  msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
197
 
198
- #: contact_form.php:627
199
- #: contact_form.php:636
200
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
201
  msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
202
 
203
- #: contact_form.php:640
204
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
205
  msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l'extension manuellement.Nous sommes désolés pour le désagrément."
206
 
207
- #: contact_form.php:655
208
  msgid "Please, enter Your license key"
209
  msgstr "Merci de saisir votre clé de liecence"
210
 
211
- #: contact_form.php:664
212
- msgid "Notice:"
213
- msgstr "Avertissement :"
214
-
215
- #: contact_form.php:664
216
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
217
- msgstr "Les paramètres de l'extension ont été changés. Afin de pouvoir les enregistrer, merci de cliquer sur le bouton 'Enregistrer les modifications'."
218
-
219
- #: contact_form.php:667
220
- #: contact_form.php:1999
221
- #: contact_form.php:2010
222
  msgid "Settings"
223
  msgstr "Réglages"
224
 
225
- #: contact_form.php:668
226
  msgid "Extra settings"
227
  msgstr "Options supplémentaires"
228
 
229
- #: contact_form.php:669
230
  msgid "Go PRO"
231
  msgstr "Choisir la version PRO"
232
 
233
- #: contact_form.php:675
234
- #: contact_form.php:1353
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  msgid "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:"
236
  msgstr "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget:"
237
 
238
- #: contact_form.php:675
239
- #: contact_form.php:676
240
- #: contact_form.php:1003
241
- #: contact_form.php:1052
 
 
 
 
242
  msgid "or"
243
  msgstr "ou"
244
 
245
- #: contact_form.php:676
 
246
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
247
  msgstr "Si vous avez un soucis avec le code court standard [contact_form], vous pouvez utilisez le code court "
248
 
249
- #: contact_form.php:677
 
250
  msgid "They work the same way."
251
  msgstr "Ils fonctionnent de la même manière."
252
 
253
- #: contact_form.php:678
 
254
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
255
  msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
256
 
257
- #: contact_form.php:682
258
  msgid "The user's email address:"
259
  msgstr "Utiliser l'e-mail du compte WordPress :"
260
 
261
- #: contact_form.php:686
262
  msgid "Create a username"
263
  msgstr "Choisir un nom d'utilisateur"
264
 
265
- #: contact_form.php:691
266
  msgid "Enter a username of the person who should get the messages from the contact form."
267
  msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
268
 
269
- #: contact_form.php:695
270
  msgid "Use this email address:"
271
  msgstr "Utiliser cette adresse e-mail:"
272
 
273
- #: contact_form.php:698
274
  msgid "Enter the email address you want the messages forwarded to."
275
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
276
 
277
- #: contact_form.php:704
278
  msgid "Add department selectbox to the contact form:"
279
  msgstr "Ajouter la liste déroulante pour le département dans le formulaire de contact :"
280
 
281
- #: contact_form.php:712
282
- #: contact_form.php:1248
283
  msgid "If you upgrade to Pro version all your settings will be saved."
284
  msgstr "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
285
 
286
- #: contact_form.php:717
287
- #: contact_form.php:854
288
- #: contact_form.php:925
289
- #: contact_form.php:1098
290
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
291
- msgstr "Cette fonctionalité est disponible dans le version Pro de cette extension. Pour plus de détails, merci de suivre ce lien"
292
 
293
- #: contact_form.php:718
294
- #: contact_form.php:855
295
- #: contact_form.php:926
296
- #: contact_form.php:1099
297
- msgid "Contact Form Pro"
298
- msgstr "Formulaire Pro de Contact"
 
 
 
299
 
300
- #: contact_form.php:724
 
 
 
 
 
 
 
301
  msgid "Save emails to the database"
302
  msgstr "Enregistrer les e-mails dans la base de données"
303
 
304
- #: contact_form.php:734
305
  msgid "Using"
306
  msgstr "Utilisant"
307
 
308
- #: contact_form.php:734
309
- #: contact_form.php:903
310
- #: contact_form.php:906
311
- #: contact_form.php:910
312
  msgid "powered by"
313
  msgstr "fournis par"
314
 
315
- #: contact_form.php:737
316
- #: contact_form.php:741
317
  msgid "Using Contact Form to DB powered by"
318
  msgstr "Utilisant le formulaire de contact avec base de données fourni par"
319
 
320
- #: contact_form.php:737
321
  msgid "Activate Contact Form to DB"
322
  msgstr "Activer le formulaire de contact avec base de données"
323
 
324
- #: contact_form.php:741
325
  msgid "Download Contact Form to DB"
326
  msgstr "Télécharger le formulaire de contact avec base de données"
327
 
328
- #: contact_form.php:746
329
  msgid "Additional options"
330
  msgstr "Options supplémentaires"
331
 
332
- #: contact_form.php:748
333
  msgid "Show"
334
  msgstr "Montrer"
335
 
336
- #: contact_form.php:749
337
  msgid "Hide"
338
  msgstr "Cacher"
339
 
340
- #: contact_form.php:753
341
  msgid "What to use?"
342
  msgstr "Quelle méthode d'envoie ?"
343
 
344
- #: contact_form.php:756
345
  msgid "Wp-mail"
346
  msgstr "Wp-mail"
347
 
348
- #: contact_form.php:756
349
  msgid "You can use the wp_mail function for mailing"
350
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de WordPress "
351
 
352
- #: contact_form.php:758
353
  msgid "Mail"
354
  msgstr "E-mail"
355
 
356
- #: contact_form.php:758
357
  msgid "To send mail you can use the php mail function"
358
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
359
 
360
- #: contact_form.php:762
361
  msgid "The text in the 'From' field"
362
  msgstr "Modifier le texte pour le champ 'FROM' du courriel"
363
 
364
- #: contact_form.php:764
365
  msgid "User name"
366
  msgstr "Nom de l'utlisateur"
367
 
368
- #: contact_form.php:765
369
  msgid "The name of the user who fills the form will be used in the field 'From'."
370
  msgstr "Dans le champ 'From' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
371
 
372
- #: contact_form.php:768
373
  msgid "This text will be used in the 'FROM' field"
374
  msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
375
 
376
- #: contact_form.php:772
377
  msgid "The email address in the 'From' field"
378
  msgstr "Sélectionner l'adresse e-mail pour le champ 'FROM' du courriel"
379
 
380
- #: contact_form.php:774
381
  msgid "User email"
382
  msgstr "E-mail de l'utlisateur"
383
 
384
- #: contact_form.php:775
385
  msgid "The email address of the user who fills the form will be used in the field 'From'."
386
  msgstr "Dans le champ 'From' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
387
 
388
- #: contact_form.php:778
389
  msgid "This email address will be used in the 'From' field."
390
  msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
391
 
392
- #: contact_form.php:782
393
  msgid "Required symbol"
394
  msgstr "Symbol obligatoire"
395
 
396
- #: contact_form.php:792
397
  msgid "Fields"
398
  msgstr "Champs"
399
 
400
- #: contact_form.php:793
401
  msgid "Used"
402
  msgstr "Utilisé"
403
 
404
- #: contact_form.php:794
405
  msgid "Required"
406
  msgstr "Obligatoire"
407
 
408
- #: contact_form.php:795
409
  msgid "Visible"
410
  msgstr "Visible"
411
 
412
- #: contact_form.php:796
413
  msgid "Disabled for editing"
414
  msgstr "Non actif pour l'édition"
415
 
416
- #: contact_form.php:797
417
  msgid "Field's default value"
418
  msgstr "Valeur par défaut du champ"
419
 
420
- #: contact_form.php:802
421
- #: contact_form.php:1123
422
- #: contact_form.php:1843
423
- #: contact_form.php:1873
424
  msgid "Name"
425
  msgstr "Nom"
426
 
427
- #: contact_form.php:810
428
- #: contact_form.php:1128
429
- #: contact_form.php:1847
430
- #: contact_form.php:1875
431
  msgid "Address"
432
  msgstr "Adresse"
433
 
434
- #: contact_form.php:818
435
  msgid "Email Address"
436
  msgstr "Adresse e-mail"
437
 
438
- #: contact_form.php:826
439
  msgid "Phone number"
440
  msgstr "Téléphone"
441
 
442
- #: contact_form.php:834
443
- #: contact_form.php:1143
444
- #: contact_form.php:1857
445
- #: contact_form.php:1879
446
  msgid "Subject"
447
  msgstr "Sujet"
448
 
449
- #: contact_form.php:842
450
- #: contact_form.php:1147
451
- #: contact_form.php:1860
452
- #: contact_form.php:1880
453
  msgid "Message"
454
  msgstr "Message"
455
 
456
- #: contact_form.php:860
457
  msgid "Attachment block"
458
  msgstr "Bloc pièce jointe"
459
 
460
- #: contact_form.php:862
461
  msgid "Users can attach the following file formats"
462
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
463
 
464
- #: contact_form.php:876
465
  msgid "Add to the form"
466
  msgstr "Ajouter au formulaire"
467
 
468
- #: contact_form.php:881
469
  msgid "Tips below the Attachment"
470
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
471
 
472
- #: contact_form.php:890
473
  msgid "'Send me a copy' block"
474
  msgstr "Afficher le bloc \"M'envoyer une copie\""
475
 
476
- #: contact_form.php:903
477
- #: contact_form.php:906
478
- #: contact_form.php:910
479
- #: contact_form.php:1157
480
  msgid "Captcha"
481
  msgstr "Captcha"
482
 
483
- #: contact_form.php:906
484
  msgid "Activate captcha"
485
  msgstr "Activé le captcha"
486
 
487
- #: contact_form.php:910
488
  msgid "Download captcha"
489
  msgstr "Télécharger le captcha"
490
 
491
- #: contact_form.php:918
492
  msgid "Agreement checkbox"
493
  msgstr "Case à cocher pour valider le formulaire"
494
 
495
- #: contact_form.php:918
496
  msgid "Required checkbox for submitting the form"
497
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
498
 
499
- #: contact_form.php:919
500
  msgid "Optional checkbox"
501
  msgstr "Boite à cocher optionnelle"
502
 
503
- #: contact_form.php:919
504
  msgid "Optional checkbox, the results of which will be displayed in email"
505
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans l'e-mail"
506
 
507
- #: contact_form.php:930
508
  msgid "Delete an attachment file from the server after the email is sent"
509
  msgstr "Supprimer le fichier joint sur le serveur après l'envoie de l'e-mail"
510
 
511
- #: contact_form.php:936
512
  msgid "Email in HTML format sending"
513
  msgstr "E-mail au format HTML"
514
 
515
- #: contact_form.php:940
516
  msgid "Display additional info in the email"
517
  msgstr "Afficher les informations complémentaires dans le courriel"
518
 
519
- #: contact_form.php:945
520
- #: contact_form.php:1810
521
- #: contact_form.php:1812
522
  msgid "Sent from (ip address)"
523
  msgstr "Envoyé de (adresse IP)"
524
 
525
- #: contact_form.php:945
526
  msgid "Example: Sent from (IP address):\t127.0.0.1"
527
  msgstr "Exemple: Envoyé de (addresse IP):\t127.0.0.1"
528
 
529
- #: contact_form.php:946
530
- #: contact_form.php:1816
531
- #: contact_form.php:1818
532
  msgid "Date/Time"
533
  msgstr "Date/Heure"
534
 
535
- #: contact_form.php:946
536
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
537
  msgstr "Exemple: Date/Heure:\tAoût 19, 2013 8:50pm"
538
 
539
- #: contact_form.php:947
540
- #: contact_form.php:1822
541
- #: contact_form.php:1824
542
  msgid "Sent from (referer)"
543
  msgstr "Envoyer de (référence)"
544
 
545
- #: contact_form.php:947
546
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
547
  msgstr "Exemple: Envoyer de (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
548
 
549
- #: contact_form.php:948
550
- #: contact_form.php:1828
551
- #: contact_form.php:1830
552
  msgid "Using (user agent)"
553
  msgstr "Depuis (navigateur)"
554
 
555
- #: contact_form.php:948
556
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
557
  msgstr "Exemple: En utilisant (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
558
 
559
- #: contact_form.php:952
560
  msgid "Language settings for the field names in the form"
561
  msgstr "Définition des langues pour les titres des champs"
562
 
563
- #: contact_form.php:961
564
  msgid "Add a language"
565
  msgstr "Ajouter une langue"
566
 
567
- #: contact_form.php:965
568
  msgid "Change the names of the contact form fields and error messages"
569
  msgstr "Modifier le texte pour les champs du formulaire de contact et les messages d'erreur"
570
 
571
- #: contact_form.php:970
572
- #: contact_form.php:1043
573
  msgid "English"
574
  msgstr "Anglais"
575
 
576
- #: contact_form.php:978
577
- #: contact_form.php:1008
578
  msgid "click to expand/hide the list"
579
  msgstr "cliquer pour voir/cacher la liste"
580
 
581
- #: contact_form.php:987
582
- #: contact_form.php:1017
583
  msgid "Tips below the Attachment block"
584
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
585
 
586
- #: contact_form.php:990
587
- #: contact_form.php:1020
588
  msgid "Error message for the Name field"
589
  msgstr "Message d'erreur pour le champ nom"
590
 
591
- #: contact_form.php:991
592
- #: contact_form.php:1021
593
  msgid "Error message for the Address field"
594
  msgstr "Message d'erreur pour le champ Adresse"
595
 
596
- #: contact_form.php:992
597
- #: contact_form.php:1022
598
  msgid "Error message for the Email field"
599
  msgstr "Message d'erreur pour le champ e-mail"
600
 
601
- #: contact_form.php:993
602
- #: contact_form.php:1023
603
  msgid "Error message for the Phone field"
604
  msgstr "Message d'erreur pour le champ téléphone"
605
 
606
- #: contact_form.php:994
607
- #: contact_form.php:1024
608
  msgid "Error message for the Subject field"
609
  msgstr "Message d'erreur pour le champ sujet"
610
 
611
- #: contact_form.php:995
612
- #: contact_form.php:1025
613
  msgid "Error message for the Message field"
614
  msgstr "Message d'erreur pour le champ message"
615
 
616
- #: contact_form.php:996
617
- #: contact_form.php:1026
618
  msgid "Error message about the file type for the Attachment field"
619
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
620
 
621
- #: contact_form.php:997
622
- #: contact_form.php:1027
623
  msgid "Error message while uploading a file for the Attachment field to the server"
624
  msgstr "Message d'erreur pour le champ fichier joint (problème d'envoie vers le serveur)"
625
 
626
- #: contact_form.php:998
627
- #: contact_form.php:1028
628
  msgid "Error message while moving the file for the Attachment field"
629
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
630
 
631
- #: contact_form.php:999
632
- #: contact_form.php:1029
633
  msgid "Error message when file size limit for the Attachment field is exceeded"
634
  msgstr "Message d'erreur pour le champ fichier joint (taille limite du fichier atteinte)"
635
 
636
- #: contact_form.php:1000
637
- #: contact_form.php:1030
638
  msgid "Error message for the Captcha field"
639
  msgstr "Message d'erreur pour le captcha"
640
 
641
- #: contact_form.php:1001
642
- #: contact_form.php:1031
643
  msgid "Error message for the whole form"
644
  msgstr "Message d'erreur demandant à compléter les champs manquants"
645
 
646
- #: contact_form.php:1003
647
- #: contact_form.php:1033
648
- #: contact_form.php:1052
649
- #: contact_form.php:1058
 
 
 
 
650
  msgid "Use shortcode"
651
  msgstr "Utiliser le code court"
652
 
653
- #: contact_form.php:1003
654
- #: contact_form.php:1033
655
- #: contact_form.php:1052
656
- #: contact_form.php:1058
 
 
 
 
657
  msgid "for this language"
658
  msgstr "pour cette langue"
659
 
660
- #: contact_form.php:1040
661
  msgid "Action after email is sent"
662
  msgstr "Action après l'envoie de l'e-mail"
663
 
664
- #: contact_form.php:1042
665
  msgid "Display text"
666
  msgstr "Afficher le texte"
667
 
668
- #: contact_form.php:1051
669
- #: contact_form.php:1057
670
  msgid "Text"
671
  msgstr "Texte"
672
 
673
- #: contact_form.php:1064
674
  msgid "Redirect to the page"
675
  msgstr "Rediriger vers la page"
676
 
677
- #: contact_form.php:1065
678
  msgid "Url"
679
  msgstr "Url"
680
 
681
- #: contact_form.php:1069
682
  msgid "The $_SERVER variable that is used to build a URL of the form"
683
  msgstr "La variable $_SERVER qui est utilisée pour construire l'URL du formulaire"
684
 
685
- #: contact_form.php:1073
686
  msgid "If you are not sure whether to change this setting or not, please do not do that."
687
  msgstr "Si vous n'êtes pas sûr de ce que vous faites, merci de ne pas toucher ce paramètre."
688
 
689
- #: contact_form.php:1079
690
- #: contact_form.php:1254
691
  msgid "Save Changes"
692
  msgstr "Enregistrer les modifications"
693
 
694
- #: contact_form.php:1084
695
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
696
  msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
697
 
698
- #: contact_form.php:1085
699
  msgid "Rate the plugin"
700
  msgstr "Noter l'extension"
701
 
702
- #: contact_form.php:1088
703
  msgid "If there is something wrong about it, please contact us"
704
  msgstr "Si quelque chose ne fonctionne pas correctement, merci de nous contacter"
705
 
706
- #: contact_form.php:1103
707
  msgid "Errors output"
708
  msgstr "Affichage des erreurs"
709
 
710
- #: contact_form.php:1106
711
  msgid "Display error messages"
712
  msgstr "Aficher les messages d'erreur"
713
 
714
- #: contact_form.php:1107
715
  msgid "Color of the input field errors."
716
  msgstr "Mettre en couleur les champs ayant des erreurs"
717
 
718
- #: contact_form.php:1108
719
  msgid "Display error messages & color of the input field errors"
720
  msgstr "Afficher les messages d'erreur et mettre en couleur les champs ayant des erreurs"
721
 
722
- #: contact_form.php:1113
723
  msgid "Add placeholder to the input blocks"
724
  msgstr "Ajouter la localisation dans le bloc de saisie"
725
 
726
- #: contact_form.php:1119
727
  msgid "Add tooltips"
728
  msgstr "Ajouter les conseils"
729
 
730
- #: contact_form.php:1133
731
  msgid "Email address"
732
  msgstr "Adresse e-mail"
733
 
734
- #: contact_form.php:1138
735
  msgid "Phone Number"
736
  msgstr "Téléphone"
737
 
738
- #: contact_form.php:1152
739
  msgid "Attachment"
740
  msgstr "Pièce jointe"
741
 
742
- #: contact_form.php:1157
743
  msgid "(powered by bestwebsoft.com)"
744
  msgstr "(fourni par bestwebsoft.com)"
745
 
746
- #: contact_form.php:1162
747
  msgid "Style options"
748
  msgstr "Options de style"
749
 
750
- #: contact_form.php:1165
751
  msgid "Text color"
752
  msgstr "Couleur du texte"
753
 
754
- #: contact_form.php:1168
755
- #: contact_form.php:1173
756
- #: contact_form.php:1183
757
- #: contact_form.php:1188
758
- #: contact_form.php:1193
759
- #: contact_form.php:1198
760
- #: contact_form.php:1208
761
- #: contact_form.php:1213
762
- #: contact_form.php:1219
763
- #: contact_form.php:1230
764
- #: contact_form.php:1235
765
- #: contact_form.php:1240
766
  msgid "Default"
767
  msgstr "Défaut"
768
 
769
- #: contact_form.php:1170
770
  msgid "Label text color"
771
  msgstr "Couleur des textes des intitulés"
772
 
773
- #: contact_form.php:1175
774
  msgid "Placeholder color"
775
  msgstr "Couleur pour la localisation"
776
 
777
- #: contact_form.php:1180
778
  msgid "Errors color"
779
  msgstr "Couleur pour les erreurs"
780
 
781
- #: contact_form.php:1185
782
  msgid "Error text color"
783
  msgstr "Couleur pour le texte des erreurs"
784
 
785
- #: contact_form.php:1190
786
  msgid "Background color of the input field errors"
787
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
788
 
789
- #: contact_form.php:1195
790
  msgid "Border color of the input field errors"
791
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
792
 
793
- #: contact_form.php:1200
794
  msgid "Placeholder color of the input field errors"
795
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
796
 
797
- #: contact_form.php:1205
798
  msgid "Input fields"
799
  msgstr "Champs de saisie"
800
 
801
- #: contact_form.php:1210
802
  msgid "Input fields background color"
803
  msgstr "Couleur de fond pour les champs de saisie"
804
 
805
- #: contact_form.php:1215
806
  msgid "Text fields color"
807
  msgstr "Couleur pour les textes des champs de saisie"
808
 
809
- #: contact_form.php:1217
810
  msgid "Border width in px, numbers only"
811
  msgstr "Largeur des bordures en px, nombre seulement"
812
 
813
- #: contact_form.php:1221
814
- #: contact_form.php:1242
815
  msgid "Border color"
816
  msgstr "Couleur des bordures"
817
 
818
- #: contact_form.php:1226
819
  msgid "Submit button"
820
  msgstr "Bouton Envoyer"
821
 
822
- #: contact_form.php:1228
823
  msgid "Width in px, numbers only"
824
  msgstr "Largeur en px, nombre seulement"
825
 
826
- #: contact_form.php:1232
827
  msgid "Button color"
828
  msgstr "Couleur du bouton"
829
 
830
- #: contact_form.php:1237
831
  msgid "Button text color"
832
  msgstr "Couleur du texte du bouton"
833
 
834
- #: contact_form.php:1258
835
  msgid "Contact Form Pro | Preview"
836
  msgstr "Formulaire Pro de Contact | Prévisualisation"
837
 
838
- #: contact_form.php:1261
839
  msgid "Show with errors"
840
  msgstr "Afficher avec les erreurs"
841
 
842
- #: contact_form.php:1269
843
- #: contact_form.php:1271
844
  msgid "Please enter your full name..."
845
  msgstr "Merci de saisir votre nom..."
846
 
847
- #: contact_form.php:1282
848
- #: contact_form.php:1284
849
  msgid "Please enter your address..."
850
  msgstr "Merci de saisir votre adresse..."
851
 
852
- #: contact_form.php:1293
853
- #: contact_form.php:1295
854
  msgid "Please enter your email address..."
855
  msgstr "Merci de saisir votre adresse e-mail..."
856
 
857
- #: contact_form.php:1304
858
- #: contact_form.php:1306
859
  msgid "Please enter your phone number..."
860
  msgstr "Merci de saisir votre numéro de téléphone..."
861
 
862
- #: contact_form.php:1315
863
- #: contact_form.php:1317
864
  msgid "Please enter subject..."
865
  msgstr "Merci de saisir le sujet..."
866
 
867
- #: contact_form.php:1325
868
- #: contact_form.php:1327
869
  msgid "Please enter your message..."
870
  msgstr "Merci de saisir votre message..."
871
 
872
- #: contact_form.php:1369
873
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
874
  msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
875
 
876
- #: contact_form.php:1371
877
  msgid "Please, go to"
878
  msgstr "Merci d'allez à"
879
 
880
- #: contact_form.php:1371
881
  msgid "the setting page"
882
  msgstr "Options supplémentaires"
883
 
884
- #: contact_form.php:1372
885
  msgid "You will be redirected automatically in 5 seconds."
886
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
887
 
888
- #: contact_form.php:1377
889
  msgid "You can download and activate"
890
  msgstr "Vous pouvez la télécharger et l'activer"
891
 
892
- #: contact_form.php:1379
893
  msgid "version of this plugin by entering Your license key."
894
  msgstr "version de cette extension en donnant votre clé de licence."
895
 
896
- #: contact_form.php:1381
897
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
898
  msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
899
 
900
- #: contact_form.php:1383
901
  msgid "(your username is the email you specify when purchasing the product)."
902
  msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
903
 
904
- #: contact_form.php:1391
905
- #: contact_form.php:1401
906
  msgid "Go!"
907
  msgstr "Allez!"
908
 
909
- #: contact_form.php:1451
910
  msgid "Sorry, email message could not be delivered."
911
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
912
 
913
- #: contact_form.php:1837
914
  msgid "Contact from"
915
  msgstr "Contact de"
916
 
917
- #: contact_form.php:1850
918
- #: contact_form.php:1876
919
  msgid "Email"
920
  msgstr "E-mail"
921
 
922
- #: contact_form.php:1854
923
- #: contact_form.php:1878
924
  msgid "Phone"
925
  msgstr "Téléphone"
926
 
927
- #: contact_form.php:1863
928
- #: contact_form.php:1881
929
  msgid "Site"
930
  msgstr "Site"
931
 
932
- #: contact_form.php:1943
933
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
934
  msgstr "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de MIME !"
935
 
936
- #: contact_form.php:2011
937
  msgid "FAQ"
938
  msgstr "FAQ"
939
 
940
- #: contact_form.php:2012
941
  msgid "Support"
942
  msgstr "Support"
943
 
944
- #: contact_form.php:2070
945
  msgid "Are you sure that you want to delete this language data?"
946
  msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
947
 
948
- #: contact_form.php:2225
949
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
950
  msgstr "Le moment est venu de mettre à jour votre <strong>extension Contact Form</strong> vers la version <strong>PRO</strong>"
951
 
952
- #: contact_form.php:2226
953
  msgid "Extend standard plugin functionality with new great options."
954
  msgstr "Etend les fonctionalités de base de l'extension avec de nouvelles options."
955
 
956
- #: contact_form.php:2235
957
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
958
  msgstr "<strong>Contact Form to DB</strong> permet d'enregistrer les messages dans la base de données."
959
 
960
- #: contact_form.php:2236
961
  msgid "Manage messages that have been sent from your website."
962
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
963
 
 
 
 
 
 
 
 
 
 
 
964
  #~ msgid "Not set"
965
  #~ msgstr "Not set"
966
 
@@ -1141,12 +1181,6 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
1141
  #~ msgid "Recommended"
1142
  #~ msgstr "Recommandés"
1143
 
1144
- #~ msgid "Learn more"
1145
- #~ msgstr "Lire la suite"
1146
-
1147
- #~ msgid "Go"
1148
- #~ msgstr "Allez"
1149
-
1150
  #~ msgid "DONATE"
1151
  #~ msgstr "Faire un don"
1152
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:38+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:38+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:73
21
+ #: contact_form.php:785
22
  msgid "Contact Form Settings"
23
  msgstr "Options du formulaire de Contact"
24
 
25
+ #: contact_form.php:73
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
+ #: contact_form.php:149
30
+ #: contact_form.php:1131
31
+ #: contact_form.php:1165
32
  msgid "Name:"
33
  msgstr "Nom:"
34
 
35
+ #: contact_form.php:150
36
+ #: contact_form.php:1132
37
+ #: contact_form.php:1166
38
  msgid "Address:"
39
  msgstr "Adresse :"
40
 
41
+ #: contact_form.php:151
42
+ #: contact_form.php:1133
43
+ #: contact_form.php:1167
44
  msgid "Email Address:"
45
  msgstr "Adresse e-mail:"
46
 
47
+ #: contact_form.php:152
48
+ #: contact_form.php:1134
49
+ #: contact_form.php:1168
50
  msgid "Phone number:"
51
  msgstr "Téléphone:"
52
 
53
+ #: contact_form.php:153
54
+ #: contact_form.php:1135
55
+ #: contact_form.php:1169
56
  msgid "Subject:"
57
  msgstr "Sujet:"
58
 
59
+ #: contact_form.php:154
60
+ #: contact_form.php:1136
61
+ #: contact_form.php:1170
62
  msgid "Message:"
63
  msgstr "Message:"
64
 
65
+ #: contact_form.php:155
66
+ #: contact_form.php:1137
67
+ #: contact_form.php:1171
68
  msgid "Attachment:"
69
  msgstr "Pièce jointe:"
70
 
71
+ #: contact_form.php:156
72
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
73
  msgstr "Types de fichiers autorisés: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Taille maximum 2MB"
74
 
75
+ #: contact_form.php:157
76
+ #: contact_form.php:1139
77
+ #: contact_form.php:1173
78
  msgid "Send me a copy"
79
  msgstr "M'envoyer une copie"
80
 
81
+ #: contact_form.php:158
82
+ #: contact_form.php:1140
83
+ #: contact_form.php:1174
84
  msgid "Submit"
85
  msgstr "Envoyer"
86
 
87
+ #: contact_form.php:159
88
  msgid "Your name is required."
89
  msgstr "Un nom est obligatoire."
90
 
91
+ #: contact_form.php:160
92
  msgid "Address is required."
93
  msgstr "Une adresse est obligatoire."
94
 
95
+ #: contact_form.php:161
96
  msgid "A valid email address is required."
97
  msgstr "Une adresse e-mail valide est obligatoire."
98
 
99
+ #: contact_form.php:162
100
  msgid "Phone number is required."
101
  msgstr "Le numéro de téléphone est obligatoire."
102
 
103
+ #: contact_form.php:163
104
  msgid "Subject is required."
105
  msgstr "Le sujet est obligatoire."
106
 
107
+ #: contact_form.php:164
108
  msgid "Message text is required."
109
  msgstr "Un message est obligatoire."
110
 
111
+ #: contact_form.php:165
112
  msgid "File format is not valid."
113
  msgstr "Le type de pièce jointe n'est pas valide."
114
 
115
+ #: contact_form.php:166
116
  msgid "File upload error."
117
  msgstr "Erreur de chargement du fichier."
118
 
119
+ #: contact_form.php:167
120
  msgid "The file could not be uploaded."
121
  msgstr "Le fichier n'a pas pu être envoyé."
122
 
123
+ #: contact_form.php:168
124
  msgid "This file is too large."
125
  msgstr "Le fichier est trop volumineux."
126
 
127
+ #: contact_form.php:169
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Merci de compléter le CAPTCHA."
130
 
131
+ #: contact_form.php:170
132
  msgid "Please make corrections below and try again."
133
  msgstr "Merci de faire les corrections suivantes et de réessayer."
134
 
135
+ #: contact_form.php:172
136
  msgid "Thank you for contacting us."
137
  msgstr "Merci de nous avoir contacté."
138
 
139
+ #: contact_form.php:322
140
  msgid "requires"
141
  msgstr "obligatoire"
142
 
143
+ #: contact_form.php:322
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
146
 
147
+ #: contact_form.php:322
148
  msgid "Back to the WordPress"
149
  msgstr "Retourner à WordPress"
150
 
151
+ #: contact_form.php:322
152
  msgid "Plugins page"
153
  msgstr "Page des extensions"
154
 
155
+ #: contact_form.php:626
156
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
157
  msgstr "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url doit être rempli avec le format suivant"
158
 
159
+ #: contact_form.php:635
160
  msgid "Such user does not exist. Settings are not saved."
161
  msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas enregistrées."
162
 
163
+ #: contact_form.php:639
164
+ #: contact_form.php:645
165
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
166
  msgstr "Merci de saisir une adresse e-mail valide pour le 'FROM'. Les modifications ne sont pas enregistrées."
167
 
168
+ #: contact_form.php:661
169
  msgid "Settings saved."
170
  msgstr "Options enregistrées."
171
 
172
+ #: contact_form.php:688
173
+ #: contact_form.php:720
174
  msgid "Wrong license key"
175
  msgstr "Clé de licence incorrecte"
176
 
177
+ #: contact_form.php:713
178
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
179
  msgstr "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
180
 
181
+ #: contact_form.php:722
182
  msgid "This license key is bind to another site"
183
  msgstr "La clé de licence correspond à un autre site."
184
 
185
+ #: contact_form.php:724
186
+ #: contact_form.php:1570
187
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
188
  msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
189
 
190
+ #: contact_form.php:741
191
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
192
  msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
193
 
194
+ #: contact_form.php:747
195
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
196
  msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
197
 
198
+ #: contact_form.php:751
199
+ #: contact_form.php:760
200
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
201
  msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
202
 
203
+ #: contact_form.php:764
204
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
205
  msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l'extension manuellement.Nous sommes désolés pour le désagrément."
206
 
207
+ #: contact_form.php:779
208
  msgid "Please, enter Your license key"
209
  msgstr "Merci de saisir votre clé de liecence"
210
 
211
+ #: contact_form.php:787
212
+ #: contact_form.php:2216
213
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
214
  msgid "Settings"
215
  msgstr "Réglages"
216
 
217
+ #: contact_form.php:788
218
  msgid "Extra settings"
219
  msgstr "Options supplémentaires"
220
 
221
+ #: contact_form.php:789
222
  msgid "Go PRO"
223
  msgstr "Choisir la version PRO"
224
 
225
+ #: contact_form.php:792
226
+ msgid "Notice:"
227
+ msgstr "Avertissement :"
228
+
229
+ #: contact_form.php:792
230
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
231
+ msgstr "Les paramètres de l'extension ont été changés. Afin de pouvoir les enregistrer, merci de cliquer sur le bouton 'Enregistrer les modifications'."
232
+
233
+ #: contact_form.php:798
234
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
235
+ msgstr ""
236
+
237
+ #: contact_form.php:804
238
+ #: contact_form.php:809
239
+ #: contact_form.php:1529
240
  msgid "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:"
241
  msgstr "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget:"
242
 
243
+ #: contact_form.php:804
244
+ #: contact_form.php:805
245
+ #: contact_form.php:809
246
+ #: contact_form.php:810
247
+ #: contact_form.php:1155
248
+ #: contact_form.php:1157
249
+ #: contact_form.php:1212
250
+ #: contact_form.php:1214
251
  msgid "or"
252
  msgstr "ou"
253
 
254
+ #: contact_form.php:805
255
+ #: contact_form.php:810
256
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
257
  msgstr "Si vous avez un soucis avec le code court standard [contact_form], vous pouvez utilisez le code court "
258
 
259
+ #: contact_form.php:806
260
+ #: contact_form.php:811
261
  msgid "They work the same way."
262
  msgstr "Ils fonctionnent de la même manière."
263
 
264
+ #: contact_form.php:807
265
+ #: contact_form.php:812
266
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
267
  msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
268
 
269
+ #: contact_form.php:817
270
  msgid "The user's email address:"
271
  msgstr "Utiliser l'e-mail du compte WordPress :"
272
 
273
+ #: contact_form.php:821
274
  msgid "Create a username"
275
  msgstr "Choisir un nom d'utilisateur"
276
 
277
+ #: contact_form.php:828
278
  msgid "Enter a username of the person who should get the messages from the contact form."
279
  msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
280
 
281
+ #: contact_form.php:832
282
  msgid "Use this email address:"
283
  msgstr "Utiliser cette adresse e-mail:"
284
 
285
+ #: contact_form.php:835
286
  msgid "Enter the email address you want the messages forwarded to."
287
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
288
 
289
+ #: contact_form.php:844
290
  msgid "Add department selectbox to the contact form:"
291
  msgstr "Ajouter la liste déroulante pour le département dans le formulaire de contact :"
292
 
293
+ #: contact_form.php:852
294
+ #: contact_form.php:1412
295
  msgid "If you upgrade to Pro version all your settings will be saved."
296
  msgstr "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
297
 
298
+ #: contact_form.php:859
299
+ #: contact_form.php:997
300
+ #: contact_form.php:1071
301
+ #: contact_form.php:1419
302
+ msgid "Unlock premium options by upgrading to a PRO version."
303
+ msgstr ""
304
 
305
+ #: contact_form.php:860
306
+ #: contact_form.php:998
307
+ #: contact_form.php:1072
308
+ #: contact_form.php:1420
309
+ #: contact_form.php:2473
310
+ #: contact_form.php:2489
311
+ #, fuzzy
312
+ msgid "Learn More"
313
+ msgstr "Lire la suite"
314
 
315
+ #: contact_form.php:863
316
+ #: contact_form.php:1001
317
+ #: contact_form.php:1075
318
+ #: contact_form.php:1423
319
+ msgid "Go"
320
+ msgstr "Allez"
321
+
322
+ #: contact_form.php:870
323
  msgid "Save emails to the database"
324
  msgstr "Enregistrer les e-mails dans la base de données"
325
 
326
+ #: contact_form.php:876
327
  msgid "Using"
328
  msgstr "Utilisant"
329
 
330
+ #: contact_form.php:876
331
+ #: contact_form.php:1048
332
+ #: contact_form.php:1051
333
+ #: contact_form.php:1055
334
  msgid "powered by"
335
  msgstr "fournis par"
336
 
337
+ #: contact_form.php:879
338
+ #: contact_form.php:883
339
  msgid "Using Contact Form to DB powered by"
340
  msgstr "Utilisant le formulaire de contact avec base de données fourni par"
341
 
342
+ #: contact_form.php:879
343
  msgid "Activate Contact Form to DB"
344
  msgstr "Activer le formulaire de contact avec base de données"
345
 
346
+ #: contact_form.php:883
347
  msgid "Download Contact Form to DB"
348
  msgstr "Télécharger le formulaire de contact avec base de données"
349
 
350
+ #: contact_form.php:888
351
  msgid "Additional options"
352
  msgstr "Options supplémentaires"
353
 
354
+ #: contact_form.php:890
355
  msgid "Show"
356
  msgstr "Montrer"
357
 
358
+ #: contact_form.php:891
359
  msgid "Hide"
360
  msgstr "Cacher"
361
 
362
+ #: contact_form.php:895
363
  msgid "What to use?"
364
  msgstr "Quelle méthode d'envoie ?"
365
 
366
+ #: contact_form.php:898
367
  msgid "Wp-mail"
368
  msgstr "Wp-mail"
369
 
370
+ #: contact_form.php:898
371
  msgid "You can use the wp_mail function for mailing"
372
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de WordPress "
373
 
374
+ #: contact_form.php:900
375
  msgid "Mail"
376
  msgstr "E-mail"
377
 
378
+ #: contact_form.php:900
379
  msgid "To send mail you can use the php mail function"
380
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
381
 
382
+ #: contact_form.php:904
383
  msgid "The text in the 'From' field"
384
  msgstr "Modifier le texte pour le champ 'FROM' du courriel"
385
 
386
+ #: contact_form.php:906
387
  msgid "User name"
388
  msgstr "Nom de l'utlisateur"
389
 
390
+ #: contact_form.php:907
391
  msgid "The name of the user who fills the form will be used in the field 'From'."
392
  msgstr "Dans le champ 'From' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
393
 
394
+ #: contact_form.php:910
395
  msgid "This text will be used in the 'FROM' field"
396
  msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
397
 
398
+ #: contact_form.php:914
399
  msgid "The email address in the 'From' field"
400
  msgstr "Sélectionner l'adresse e-mail pour le champ 'FROM' du courriel"
401
 
402
+ #: contact_form.php:916
403
  msgid "User email"
404
  msgstr "E-mail de l'utlisateur"
405
 
406
+ #: contact_form.php:917
407
  msgid "The email address of the user who fills the form will be used in the field 'From'."
408
  msgstr "Dans le champ 'From' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
409
 
410
+ #: contact_form.php:920
411
  msgid "This email address will be used in the 'From' field."
412
  msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
413
 
414
+ #: contact_form.php:924
415
  msgid "Required symbol"
416
  msgstr "Symbol obligatoire"
417
 
418
+ #: contact_form.php:934
419
  msgid "Fields"
420
  msgstr "Champs"
421
 
422
+ #: contact_form.php:935
423
  msgid "Used"
424
  msgstr "Utilisé"
425
 
426
+ #: contact_form.php:936
427
  msgid "Required"
428
  msgstr "Obligatoire"
429
 
430
+ #: contact_form.php:937
431
  msgid "Visible"
432
  msgstr "Visible"
433
 
434
+ #: contact_form.php:938
435
  msgid "Disabled for editing"
436
  msgstr "Non actif pour l'édition"
437
 
438
+ #: contact_form.php:939
439
  msgid "Field's default value"
440
  msgstr "Valeur par défaut du champ"
441
 
442
+ #: contact_form.php:944
443
+ #: contact_form.php:1287
444
+ #: contact_form.php:2059
445
+ #: contact_form.php:2089
446
  msgid "Name"
447
  msgstr "Nom"
448
 
449
+ #: contact_form.php:952
450
+ #: contact_form.php:1292
451
+ #: contact_form.php:2063
452
+ #: contact_form.php:2091
453
  msgid "Address"
454
  msgstr "Adresse"
455
 
456
+ #: contact_form.php:960
457
  msgid "Email Address"
458
  msgstr "Adresse e-mail"
459
 
460
+ #: contact_form.php:968
461
  msgid "Phone number"
462
  msgstr "Téléphone"
463
 
464
+ #: contact_form.php:976
465
+ #: contact_form.php:1307
466
+ #: contact_form.php:2073
467
+ #: contact_form.php:2095
468
  msgid "Subject"
469
  msgstr "Sujet"
470
 
471
+ #: contact_form.php:984
472
+ #: contact_form.php:1311
473
+ #: contact_form.php:2076
474
+ #: contact_form.php:2096
475
  msgid "Message"
476
  msgstr "Message"
477
 
478
+ #: contact_form.php:1008
479
  msgid "Attachment block"
480
  msgstr "Bloc pièce jointe"
481
 
482
+ #: contact_form.php:1010
483
  msgid "Users can attach the following file formats"
484
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
485
 
486
+ #: contact_form.php:1023
487
  msgid "Add to the form"
488
  msgstr "Ajouter au formulaire"
489
 
490
+ #: contact_form.php:1028
491
  msgid "Tips below the Attachment"
492
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
493
 
494
+ #: contact_form.php:1037
495
  msgid "'Send me a copy' block"
496
  msgstr "Afficher le bloc \"M'envoyer une copie\""
497
 
498
+ #: contact_form.php:1048
499
+ #: contact_form.php:1051
500
+ #: contact_form.php:1055
501
+ #: contact_form.php:1321
502
  msgid "Captcha"
503
  msgstr "Captcha"
504
 
505
+ #: contact_form.php:1051
506
  msgid "Activate captcha"
507
  msgstr "Activé le captcha"
508
 
509
+ #: contact_form.php:1055
510
  msgid "Download captcha"
511
  msgstr "Télécharger le captcha"
512
 
513
+ #: contact_form.php:1063
514
  msgid "Agreement checkbox"
515
  msgstr "Case à cocher pour valider le formulaire"
516
 
517
+ #: contact_form.php:1063
518
  msgid "Required checkbox for submitting the form"
519
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
520
 
521
+ #: contact_form.php:1064
522
  msgid "Optional checkbox"
523
  msgstr "Boite à cocher optionnelle"
524
 
525
+ #: contact_form.php:1064
526
  msgid "Optional checkbox, the results of which will be displayed in email"
527
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans l'e-mail"
528
 
529
+ #: contact_form.php:1081
530
  msgid "Delete an attachment file from the server after the email is sent"
531
  msgstr "Supprimer le fichier joint sur le serveur après l'envoie de l'e-mail"
532
 
533
+ #: contact_form.php:1087
534
  msgid "Email in HTML format sending"
535
  msgstr "E-mail au format HTML"
536
 
537
+ #: contact_form.php:1091
538
  msgid "Display additional info in the email"
539
  msgstr "Afficher les informations complémentaires dans le courriel"
540
 
541
+ #: contact_form.php:1096
542
+ #: contact_form.php:2026
543
+ #: contact_form.php:2028
544
  msgid "Sent from (ip address)"
545
  msgstr "Envoyé de (adresse IP)"
546
 
547
+ #: contact_form.php:1096
548
  msgid "Example: Sent from (IP address):\t127.0.0.1"
549
  msgstr "Exemple: Envoyé de (addresse IP):\t127.0.0.1"
550
 
551
+ #: contact_form.php:1097
552
+ #: contact_form.php:2032
553
+ #: contact_form.php:2034
554
  msgid "Date/Time"
555
  msgstr "Date/Heure"
556
 
557
+ #: contact_form.php:1097
558
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
559
  msgstr "Exemple: Date/Heure:\tAoût 19, 2013 8:50pm"
560
 
561
+ #: contact_form.php:1098
562
+ #: contact_form.php:2038
563
+ #: contact_form.php:2040
564
  msgid "Sent from (referer)"
565
  msgstr "Envoyer de (référence)"
566
 
567
+ #: contact_form.php:1098
568
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
569
  msgstr "Exemple: Envoyer de (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
570
 
571
+ #: contact_form.php:1099
572
+ #: contact_form.php:2044
573
+ #: contact_form.php:2046
574
  msgid "Using (user agent)"
575
  msgstr "Depuis (navigateur)"
576
 
577
+ #: contact_form.php:1099
578
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
579
  msgstr "Exemple: En utilisant (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
580
 
581
+ #: contact_form.php:1103
582
  msgid "Language settings for the field names in the form"
583
  msgstr "Définition des langues pour les titres des champs"
584
 
585
+ #: contact_form.php:1112
586
  msgid "Add a language"
587
  msgstr "Ajouter une langue"
588
 
589
+ #: contact_form.php:1116
590
  msgid "Change the names of the contact form fields and error messages"
591
  msgstr "Modifier le texte pour les champs du formulaire de contact et les messages d'erreur"
592
 
593
+ #: contact_form.php:1121
594
+ #: contact_form.php:1202
595
  msgid "English"
596
  msgstr "Anglais"
597
 
598
+ #: contact_form.php:1129
599
+ #: contact_form.php:1163
600
  msgid "click to expand/hide the list"
601
  msgstr "cliquer pour voir/cacher la liste"
602
 
603
+ #: contact_form.php:1138
604
+ #: contact_form.php:1172
605
  msgid "Tips below the Attachment block"
606
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
607
 
608
+ #: contact_form.php:1141
609
+ #: contact_form.php:1175
610
  msgid "Error message for the Name field"
611
  msgstr "Message d'erreur pour le champ nom"
612
 
613
+ #: contact_form.php:1142
614
+ #: contact_form.php:1176
615
  msgid "Error message for the Address field"
616
  msgstr "Message d'erreur pour le champ Adresse"
617
 
618
+ #: contact_form.php:1143
619
+ #: contact_form.php:1177
620
  msgid "Error message for the Email field"
621
  msgstr "Message d'erreur pour le champ e-mail"
622
 
623
+ #: contact_form.php:1144
624
+ #: contact_form.php:1178
625
  msgid "Error message for the Phone field"
626
  msgstr "Message d'erreur pour le champ téléphone"
627
 
628
+ #: contact_form.php:1145
629
+ #: contact_form.php:1179
630
  msgid "Error message for the Subject field"
631
  msgstr "Message d'erreur pour le champ sujet"
632
 
633
+ #: contact_form.php:1146
634
+ #: contact_form.php:1180
635
  msgid "Error message for the Message field"
636
  msgstr "Message d'erreur pour le champ message"
637
 
638
+ #: contact_form.php:1147
639
+ #: contact_form.php:1181
640
  msgid "Error message about the file type for the Attachment field"
641
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
642
 
643
+ #: contact_form.php:1148
644
+ #: contact_form.php:1182
645
  msgid "Error message while uploading a file for the Attachment field to the server"
646
  msgstr "Message d'erreur pour le champ fichier joint (problème d'envoie vers le serveur)"
647
 
648
+ #: contact_form.php:1149
649
+ #: contact_form.php:1183
650
  msgid "Error message while moving the file for the Attachment field"
651
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
652
 
653
+ #: contact_form.php:1150
654
+ #: contact_form.php:1184
655
  msgid "Error message when file size limit for the Attachment field is exceeded"
656
  msgstr "Message d'erreur pour le champ fichier joint (taille limite du fichier atteinte)"
657
 
658
+ #: contact_form.php:1151
659
+ #: contact_form.php:1185
660
  msgid "Error message for the Captcha field"
661
  msgstr "Message d'erreur pour le captcha"
662
 
663
+ #: contact_form.php:1152
664
+ #: contact_form.php:1186
665
  msgid "Error message for the whole form"
666
  msgstr "Message d'erreur demandant à compléter les champs manquants"
667
 
668
+ #: contact_form.php:1155
669
+ #: contact_form.php:1157
670
+ #: contact_form.php:1189
671
+ #: contact_form.php:1191
672
+ #: contact_form.php:1212
673
+ #: contact_form.php:1214
674
+ #: contact_form.php:1222
675
+ #: contact_form.php:1224
676
  msgid "Use shortcode"
677
  msgstr "Utiliser le code court"
678
 
679
+ #: contact_form.php:1155
680
+ #: contact_form.php:1157
681
+ #: contact_form.php:1189
682
+ #: contact_form.php:1191
683
+ #: contact_form.php:1212
684
+ #: contact_form.php:1214
685
+ #: contact_form.php:1222
686
+ #: contact_form.php:1224
687
  msgid "for this language"
688
  msgstr "pour cette langue"
689
 
690
+ #: contact_form.php:1199
691
  msgid "Action after email is sent"
692
  msgstr "Action après l'envoie de l'e-mail"
693
 
694
+ #: contact_form.php:1201
695
  msgid "Display text"
696
  msgstr "Afficher le texte"
697
 
698
+ #: contact_form.php:1210
699
+ #: contact_form.php:1220
700
  msgid "Text"
701
  msgstr "Texte"
702
 
703
+ #: contact_form.php:1231
704
  msgid "Redirect to the page"
705
  msgstr "Rediriger vers la page"
706
 
707
+ #: contact_form.php:1232
708
  msgid "Url"
709
  msgstr "Url"
710
 
711
+ #: contact_form.php:1236
712
  msgid "The $_SERVER variable that is used to build a URL of the form"
713
  msgstr "La variable $_SERVER qui est utilisée pour construire l'URL du formulaire"
714
 
715
+ #: contact_form.php:1240
716
  msgid "If you are not sure whether to change this setting or not, please do not do that."
717
  msgstr "Si vous n'êtes pas sûr de ce que vous faites, merci de ne pas toucher ce paramètre."
718
 
719
+ #: contact_form.php:1246
720
+ #: contact_form.php:1430
721
  msgid "Save Changes"
722
  msgstr "Enregistrer les modifications"
723
 
724
+ #: contact_form.php:1251
725
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
726
  msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
727
 
728
+ #: contact_form.php:1252
729
  msgid "Rate the plugin"
730
  msgstr "Noter l'extension"
731
 
732
+ #: contact_form.php:1255
733
  msgid "If there is something wrong about it, please contact us"
734
  msgstr "Si quelque chose ne fonctionne pas correctement, merci de nous contacter"
735
 
736
+ #: contact_form.php:1267
737
  msgid "Errors output"
738
  msgstr "Affichage des erreurs"
739
 
740
+ #: contact_form.php:1270
741
  msgid "Display error messages"
742
  msgstr "Aficher les messages d'erreur"
743
 
744
+ #: contact_form.php:1271
745
  msgid "Color of the input field errors."
746
  msgstr "Mettre en couleur les champs ayant des erreurs"
747
 
748
+ #: contact_form.php:1272
749
  msgid "Display error messages & color of the input field errors"
750
  msgstr "Afficher les messages d'erreur et mettre en couleur les champs ayant des erreurs"
751
 
752
+ #: contact_form.php:1277
753
  msgid "Add placeholder to the input blocks"
754
  msgstr "Ajouter la localisation dans le bloc de saisie"
755
 
756
+ #: contact_form.php:1283
757
  msgid "Add tooltips"
758
  msgstr "Ajouter les conseils"
759
 
760
+ #: contact_form.php:1297
761
  msgid "Email address"
762
  msgstr "Adresse e-mail"
763
 
764
+ #: contact_form.php:1302
765
  msgid "Phone Number"
766
  msgstr "Téléphone"
767
 
768
+ #: contact_form.php:1316
769
  msgid "Attachment"
770
  msgstr "Pièce jointe"
771
 
772
+ #: contact_form.php:1321
773
  msgid "(powered by bestwebsoft.com)"
774
  msgstr "(fourni par bestwebsoft.com)"
775
 
776
+ #: contact_form.php:1326
777
  msgid "Style options"
778
  msgstr "Options de style"
779
 
780
+ #: contact_form.php:1329
781
  msgid "Text color"
782
  msgstr "Couleur du texte"
783
 
784
+ #: contact_form.php:1332
785
+ #: contact_form.php:1337
786
+ #: contact_form.php:1347
787
+ #: contact_form.php:1352
788
+ #: contact_form.php:1357
789
+ #: contact_form.php:1362
790
+ #: contact_form.php:1372
791
+ #: contact_form.php:1377
792
+ #: contact_form.php:1383
793
+ #: contact_form.php:1394
794
+ #: contact_form.php:1399
795
+ #: contact_form.php:1404
796
  msgid "Default"
797
  msgstr "Défaut"
798
 
799
+ #: contact_form.php:1334
800
  msgid "Label text color"
801
  msgstr "Couleur des textes des intitulés"
802
 
803
+ #: contact_form.php:1339
804
  msgid "Placeholder color"
805
  msgstr "Couleur pour la localisation"
806
 
807
+ #: contact_form.php:1344
808
  msgid "Errors color"
809
  msgstr "Couleur pour les erreurs"
810
 
811
+ #: contact_form.php:1349
812
  msgid "Error text color"
813
  msgstr "Couleur pour le texte des erreurs"
814
 
815
+ #: contact_form.php:1354
816
  msgid "Background color of the input field errors"
817
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
818
 
819
+ #: contact_form.php:1359
820
  msgid "Border color of the input field errors"
821
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
822
 
823
+ #: contact_form.php:1364
824
  msgid "Placeholder color of the input field errors"
825
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
826
 
827
+ #: contact_form.php:1369
828
  msgid "Input fields"
829
  msgstr "Champs de saisie"
830
 
831
+ #: contact_form.php:1374
832
  msgid "Input fields background color"
833
  msgstr "Couleur de fond pour les champs de saisie"
834
 
835
+ #: contact_form.php:1379
836
  msgid "Text fields color"
837
  msgstr "Couleur pour les textes des champs de saisie"
838
 
839
+ #: contact_form.php:1381
840
  msgid "Border width in px, numbers only"
841
  msgstr "Largeur des bordures en px, nombre seulement"
842
 
843
+ #: contact_form.php:1385
844
+ #: contact_form.php:1406
845
  msgid "Border color"
846
  msgstr "Couleur des bordures"
847
 
848
+ #: contact_form.php:1390
849
  msgid "Submit button"
850
  msgstr "Bouton Envoyer"
851
 
852
+ #: contact_form.php:1392
853
  msgid "Width in px, numbers only"
854
  msgstr "Largeur en px, nombre seulement"
855
 
856
+ #: contact_form.php:1396
857
  msgid "Button color"
858
  msgstr "Couleur du bouton"
859
 
860
+ #: contact_form.php:1401
861
  msgid "Button text color"
862
  msgstr "Couleur du texte du bouton"
863
 
864
+ #: contact_form.php:1434
865
  msgid "Contact Form Pro | Preview"
866
  msgstr "Formulaire Pro de Contact | Prévisualisation"
867
 
868
+ #: contact_form.php:1437
869
  msgid "Show with errors"
870
  msgstr "Afficher avec les erreurs"
871
 
872
+ #: contact_form.php:1445
873
+ #: contact_form.php:1447
874
  msgid "Please enter your full name..."
875
  msgstr "Merci de saisir votre nom..."
876
 
877
+ #: contact_form.php:1458
878
+ #: contact_form.php:1460
879
  msgid "Please enter your address..."
880
  msgstr "Merci de saisir votre adresse..."
881
 
882
+ #: contact_form.php:1469
883
+ #: contact_form.php:1471
884
  msgid "Please enter your email address..."
885
  msgstr "Merci de saisir votre adresse e-mail..."
886
 
887
+ #: contact_form.php:1480
888
+ #: contact_form.php:1482
889
  msgid "Please enter your phone number..."
890
  msgstr "Merci de saisir votre numéro de téléphone..."
891
 
892
+ #: contact_form.php:1491
893
+ #: contact_form.php:1493
894
  msgid "Please enter subject..."
895
  msgstr "Merci de saisir le sujet..."
896
 
897
+ #: contact_form.php:1501
898
+ #: contact_form.php:1503
899
  msgid "Please enter your message..."
900
  msgstr "Merci de saisir votre message..."
901
 
902
+ #: contact_form.php:1545
903
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
904
  msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
905
 
906
+ #: contact_form.php:1547
907
  msgid "Please, go to"
908
  msgstr "Merci d'allez à"
909
 
910
+ #: contact_form.php:1547
911
  msgid "the setting page"
912
  msgstr "Options supplémentaires"
913
 
914
+ #: contact_form.php:1548
915
  msgid "You will be redirected automatically in 5 seconds."
916
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
917
 
918
+ #: contact_form.php:1553
919
  msgid "You can download and activate"
920
  msgstr "Vous pouvez la télécharger et l'activer"
921
 
922
+ #: contact_form.php:1555
923
  msgid "version of this plugin by entering Your license key."
924
  msgstr "version de cette extension en donnant votre clé de licence."
925
 
926
+ #: contact_form.php:1557
927
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
928
  msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
929
 
930
+ #: contact_form.php:1559
931
  msgid "(your username is the email you specify when purchasing the product)."
932
  msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
933
 
934
+ #: contact_form.php:1567
935
+ #: contact_form.php:1577
936
  msgid "Go!"
937
  msgstr "Allez!"
938
 
939
+ #: contact_form.php:1647
940
  msgid "Sorry, email message could not be delivered."
941
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
942
 
943
+ #: contact_form.php:2053
944
  msgid "Contact from"
945
  msgstr "Contact de"
946
 
947
+ #: contact_form.php:2066
948
+ #: contact_form.php:2092
949
  msgid "Email"
950
  msgstr "E-mail"
951
 
952
+ #: contact_form.php:2070
953
+ #: contact_form.php:2094
954
  msgid "Phone"
955
  msgstr "Téléphone"
956
 
957
+ #: contact_form.php:2079
958
+ #: contact_form.php:2097
959
  msgid "Site"
960
  msgstr "Site"
961
 
962
+ #: contact_form.php:2160
963
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
964
  msgstr "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de MIME !"
965
 
966
+ #: contact_form.php:2229
967
  msgid "FAQ"
968
  msgstr "FAQ"
969
 
970
+ #: contact_form.php:2230
971
  msgid "Support"
972
  msgstr "Support"
973
 
974
+ #: contact_form.php:2280
975
  msgid "Are you sure that you want to delete this language data?"
976
  msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
977
 
978
+ #: contact_form.php:2476
979
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
980
  msgstr "Le moment est venu de mettre à jour votre <strong>extension Contact Form</strong> vers la version <strong>PRO</strong>"
981
 
982
+ #: contact_form.php:2477
983
  msgid "Extend standard plugin functionality with new great options."
984
  msgstr "Etend les fonctionalités de base de l'extension avec de nouvelles options."
985
 
986
+ #: contact_form.php:2492
987
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
988
  msgstr "<strong>Contact Form to DB</strong> permet d'enregistrer les messages dans la base de données."
989
 
990
+ #: contact_form.php:2493
991
  msgid "Manage messages that have been sent from your website."
992
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
993
 
994
+ #~ msgid ""
995
+ #~ "This functionality is available in the Pro version of the plugin. For "
996
+ #~ "more details, please follow the link"
997
+ #~ msgstr ""
998
+ #~ "Cette fonctionalité est disponible dans le version Pro de cette "
999
+ #~ "extension. Pour plus de détails, merci de suivre ce lien"
1000
+
1001
+ #~ msgid "Contact Form Pro"
1002
+ #~ msgstr "Formulaire Pro de Contact"
1003
+
1004
  #~ msgid "Not set"
1005
  #~ msgstr "Not set"
1006
 
1181
  #~ msgid "Recommended"
1182
  #~ msgstr "Recommandés"
1183
 
 
 
 
 
 
 
1184
  #~ msgid "DONATE"
1185
  #~ msgstr "Faire un don"
1186
 
languages/contact_form-hu_HU.mo CHANGED
Binary file
languages/contact_form-hu_HU.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: 2014-02-20 14:04+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Karoly Kovacs <karcsi1978@gmail.com>\n"
9
  "Language: hu_HU\n"
@@ -17,999 +17,1031 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:33
21
- #: contact_form.php:660
22
  #, fuzzy
23
  msgid "Contact Form Settings"
24
  msgstr "Kapcsolatfelvételi Ürlap Beállítások"
25
 
26
- #: contact_form.php:33
27
  msgid "Contact Form"
28
  msgstr "Kapcsolatfelvételi Ürlap"
29
 
30
- #: contact_form.php:80
31
- #: contact_form.php:978
32
- #: contact_form.php:1008
33
  msgid "Name:"
34
  msgstr "Noév:"
35
 
36
- #: contact_form.php:81
37
- #: contact_form.php:979
38
- #: contact_form.php:1009
39
  #, fuzzy
40
  msgid "Address:"
41
  msgstr "Email cím:"
42
 
43
- #: contact_form.php:82
44
- #: contact_form.php:980
45
- #: contact_form.php:1010
46
  msgid "Email Address:"
47
  msgstr "Email cím:"
48
 
49
- #: contact_form.php:83
50
- #: contact_form.php:981
51
- #: contact_form.php:1011
52
  msgid "Phone number:"
53
  msgstr "Telefonszám:"
54
 
55
- #: contact_form.php:84
56
- #: contact_form.php:982
57
- #: contact_form.php:1012
58
  msgid "Subject:"
59
  msgstr "Tárgy:"
60
 
61
- #: contact_form.php:85
62
- #: contact_form.php:983
63
- #: contact_form.php:1013
64
  msgid "Message:"
65
  msgstr "Üzenet:"
66
 
67
- #: contact_form.php:86
68
- #: contact_form.php:984
69
- #: contact_form.php:1014
70
  msgid "Attachment:"
71
  msgstr "Csatolmány:"
72
 
73
- #: contact_form.php:87
74
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
75
  msgstr ""
76
 
77
- #: contact_form.php:88
78
- #: contact_form.php:986
79
- #: contact_form.php:1016
80
  msgid "Send me a copy"
81
  msgstr "Kérek másolatot"
82
 
83
- #: contact_form.php:89
84
- #: contact_form.php:987
85
- #: contact_form.php:1017
86
  msgid "Submit"
87
  msgstr "Küldés"
88
 
89
- #: contact_form.php:90
90
  msgid "Your name is required."
91
  msgstr "Név megadása kötelező."
92
 
93
- #: contact_form.php:91
94
  #, fuzzy
95
  msgid "Address is required."
96
  msgstr "Valós email cím megadása kötelező."
97
 
98
- #: contact_form.php:92
99
  #, fuzzy
100
  msgid "A valid email address is required."
101
  msgstr "Valós email cím megadása kötelező."
102
 
103
- #: contact_form.php:93
104
  msgid "Phone number is required."
105
  msgstr "Le numéro de téléphone est obligatoire."
106
 
107
- #: contact_form.php:94
108
  msgid "Subject is required."
109
  msgstr "Tárgy megadása kötelező."
110
 
111
- #: contact_form.php:95
112
  msgid "Message text is required."
113
  msgstr "Üzenet megírása kötelező."
114
 
115
- #: contact_form.php:96
116
  msgid "File format is not valid."
117
  msgstr "Fájl formátuma nem megengedett."
118
 
119
- #: contact_form.php:97
120
  msgid "File upload error."
121
  msgstr ""
122
 
123
- #: contact_form.php:98
124
  msgid "The file could not be uploaded."
125
  msgstr ""
126
 
127
- #: contact_form.php:99
128
  msgid "This file is too large."
129
  msgstr ""
130
 
131
- #: contact_form.php:100
132
  msgid "Please fill out the CAPTCHA."
133
  msgstr "Kérem töltse ki a CAPTCHA mezőt."
134
 
135
- #: contact_form.php:101
136
  msgid "Please make corrections below and try again."
137
  msgstr "Kérem javítsa ki a szükséges mezőket és próbálja újra."
138
 
139
- #: contact_form.php:103
140
  msgid "Thank you for contacting us."
141
  msgstr "Köszönjük az üzenetét."
142
 
143
- #: contact_form.php:203
144
  #, fuzzy
145
  msgid "requires"
146
  msgstr "Kötelező mező"
147
 
148
- #: contact_form.php:203
149
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
150
  msgstr ""
151
 
152
- #: contact_form.php:203
153
  msgid "Back to the WordPress"
154
  msgstr ""
155
 
156
- #: contact_form.php:203
157
  #, fuzzy
158
  msgid "Plugins page"
159
  msgstr "Ajánlott pluginok"
160
 
161
- #: contact_form.php:494
162
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
163
  msgstr "Amennyiben az 'Átirányítás egy oldalra' opció kiválasztásra kerül, az URL-t az alábbi formátumban kell megadni"
164
 
165
- #: contact_form.php:503
166
  msgid "Such user does not exist. Settings are not saved."
167
  msgstr "Nincs ilyen felhasználó. Beállítások nem kerültek mentésre."
168
 
169
- #: contact_form.php:507
170
- #: contact_form.php:513
171
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
172
  msgstr "Kérem valós email címet adjon meg a 'FKITÖL' mezőben. Beállítások nem kerültek mentésre."
173
 
174
- #: contact_form.php:518
175
  #, fuzzy
176
  msgid "Settings saved."
177
  msgstr "Opciók elmentve."
178
 
179
- #: contact_form.php:554
180
- #: contact_form.php:593
181
  msgid "Wrong license key"
182
  msgstr ""
183
 
184
- #: contact_form.php:586
185
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
186
  msgstr ""
187
 
188
- #: contact_form.php:595
189
  msgid "This license key is bind to another site"
190
  msgstr ""
191
 
192
- #: contact_form.php:597
193
- #: contact_form.php:1392
194
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
195
  msgstr ""
196
 
197
- #: contact_form.php:615
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
 
201
- #: contact_form.php:621
202
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
203
  msgstr ""
204
 
205
- #: contact_form.php:625
206
- #: contact_form.php:634
207
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
208
  msgstr ""
209
 
210
- #: contact_form.php:638
211
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
212
  msgstr ""
213
 
214
- #: contact_form.php:653
215
  #, fuzzy
216
  msgid "Please, enter Your license key"
217
  msgstr "Ezen email cím használata:"
218
 
219
- #: contact_form.php:662
220
- msgid "Notice:"
221
- msgstr ""
222
-
223
- #: contact_form.php:662
224
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
225
- msgstr ""
226
-
227
- #: contact_form.php:665
228
- #: contact_form.php:1997
229
- #: contact_form.php:2008
230
  msgid "Settings"
231
  msgstr "Beállítások"
232
 
233
- #: contact_form.php:666
234
  #, fuzzy
235
  msgid "Extra settings"
236
  msgstr "Beállítások"
237
 
238
- #: contact_form.php:667
239
  msgid "Go PRO"
240
  msgstr ""
241
 
242
- #: contact_form.php:673
243
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgid "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:"
245
  msgstr "Amennyiben szeretné hozzáadni a Kapcsolatfelvételi Ürlapot a weboldalához, másolja ki és illessze be az alábbi kódot egy bejegyzésbe, oldalba vagy widgetbe:"
246
 
247
- #: contact_form.php:673
248
- #: contact_form.php:674
249
- #: contact_form.php:1001
250
- #: contact_form.php:1050
 
 
 
 
251
  msgid "or"
252
  msgstr ""
253
 
254
- #: contact_form.php:674
 
255
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
256
  msgstr ""
257
 
258
- #: contact_form.php:675
 
259
  msgid "They work the same way."
260
  msgstr ""
261
 
262
- #: contact_form.php:676
 
263
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
264
  msgstr "Amennyiben ezeket a mezőket üresen hagyja, az üzenet a regisztráció során megadott email címre lesz elküldve."
265
 
266
- #: contact_form.php:680
267
  msgid "The user's email address:"
268
  msgstr "A felhasználó email címe:"
269
 
270
- #: contact_form.php:684
271
  msgid "Create a username"
272
  msgstr "felhasználónév létrehozása"
273
 
274
- #: contact_form.php:689
275
  msgid "Enter a username of the person who should get the messages from the contact form."
276
  msgstr "Adja meg azon személy felhasználónevét, akitől az üzeneteket szeretné kapni a Kapcsolatfelvételi Ürlap segítségével."
277
 
278
- #: contact_form.php:693
279
  msgid "Use this email address:"
280
  msgstr "Ezen email cím használata:"
281
 
282
- #: contact_form.php:696
283
  msgid "Enter the email address you want the messages forwarded to."
284
  msgstr "Adja meg az email címet, ahova az üzenetek érkezzenek."
285
 
286
- #: contact_form.php:702
287
  msgid "Add department selectbox to the contact form:"
288
  msgstr ""
289
 
290
- #: contact_form.php:710
291
- #: contact_form.php:1246
292
  msgid "If you upgrade to Pro version all your settings will be saved."
293
  msgstr ""
294
 
295
- #: contact_form.php:715
296
- #: contact_form.php:852
297
- #: contact_form.php:923
298
- #: contact_form.php:1096
299
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
300
  msgstr ""
301
 
302
- #: contact_form.php:716
303
- #: contact_form.php:853
304
- #: contact_form.php:924
305
- #: contact_form.php:1097
306
- #, fuzzy
307
- msgid "Contact Form Pro"
308
- msgstr "Kapcsolatfelvételi Ürlap"
 
309
 
310
- #: contact_form.php:722
 
 
 
 
 
 
 
311
  msgid "Save emails to the database"
312
  msgstr ""
313
 
314
- #: contact_form.php:732
315
  msgid "Using"
316
  msgstr ""
317
 
318
- #: contact_form.php:732
319
- #: contact_form.php:901
320
- #: contact_form.php:904
321
- #: contact_form.php:908
322
  msgid "powered by"
323
  msgstr ""
324
 
325
- #: contact_form.php:735
326
- #: contact_form.php:739
327
  msgid "Using Contact Form to DB powered by"
328
  msgstr ""
329
 
330
- #: contact_form.php:735
331
  #, fuzzy
332
  msgid "Activate Contact Form to DB"
333
  msgstr "Kapcsolatfelvételi Ürlap"
334
 
335
- #: contact_form.php:739
336
  #, fuzzy
337
  msgid "Download Contact Form to DB"
338
  msgstr "Kapcsolatfelvételi Ürlap"
339
 
340
- #: contact_form.php:744
341
  msgid "Additional options"
342
  msgstr "További opciók"
343
 
344
- #: contact_form.php:746
345
  msgid "Show"
346
  msgstr ""
347
 
348
- #: contact_form.php:747
349
  msgid "Hide"
350
  msgstr ""
351
 
352
- #: contact_form.php:751
353
  msgid "What to use?"
354
  msgstr "Mit szeretne használni?"
355
 
356
- #: contact_form.php:754
357
  msgid "Wp-mail"
358
  msgstr "Wp-mail"
359
 
360
- #: contact_form.php:754
361
  msgid "You can use the wp_mail function for mailing"
362
  msgstr "Használhatja a wp_mail funkciót a levelezéshez"
363
 
364
- #: contact_form.php:756
365
  msgid "Mail"
366
  msgstr "E-mail"
367
 
368
- #: contact_form.php:756
369
  msgid "To send mail you can use the php mail function"
370
  msgstr "Email küldéshez használhatja a php mail funkciót"
371
 
372
- #: contact_form.php:760
373
  #, fuzzy
374
  msgid "The text in the 'From' field"
375
  msgstr "A 'KITÖL' mező szövegének módosítása"
376
 
377
- #: contact_form.php:762
378
  msgid "User name"
379
  msgstr ""
380
 
381
- #: contact_form.php:763
382
  #, fuzzy
383
  msgid "The name of the user who fills the form will be used in the field 'From'."
384
  msgstr "A felhasználó e-mail címe, akinek az adatai szerepelnek a 'KITÖL' mezőben."
385
 
386
- #: contact_form.php:766
387
  #, fuzzy
388
  msgid "This text will be used in the 'FROM' field"
389
  msgstr "Ez az email cím szerepel a 'KITÖL' mezőben."
390
 
391
- #: contact_form.php:770
392
  #, fuzzy
393
  msgid "The email address in the 'From' field"
394
  msgstr "Adja meg a 'KITÖL' mező email címét"
395
 
396
- #: contact_form.php:772
397
  msgid "User email"
398
  msgstr ""
399
 
400
- #: contact_form.php:773
401
  #, fuzzy
402
  msgid "The email address of the user who fills the form will be used in the field 'From'."
403
  msgstr "A felhasználó e-mail címe, akinek az adatai szerepelnek a 'KITÖL' mezőben."
404
 
405
- #: contact_form.php:776
406
  msgid "This email address will be used in the 'From' field."
407
  msgstr "Ez az email cím szerepel a 'KITÖL' mezőben."
408
 
409
- #: contact_form.php:780
410
  #, fuzzy
411
  msgid "Required symbol"
412
  msgstr "Kötelező mező"
413
 
414
- #: contact_form.php:790
415
  msgid "Fields"
416
  msgstr ""
417
 
418
- #: contact_form.php:791
419
  msgid "Used"
420
  msgstr ""
421
 
422
- #: contact_form.php:792
423
  #, fuzzy
424
  msgid "Required"
425
  msgstr "Kötelező mező"
426
 
427
- #: contact_form.php:793
428
  msgid "Visible"
429
  msgstr ""
430
 
431
- #: contact_form.php:794
432
  msgid "Disabled for editing"
433
  msgstr ""
434
 
435
- #: contact_form.php:795
436
  msgid "Field's default value"
437
  msgstr ""
438
 
439
- #: contact_form.php:800
440
- #: contact_form.php:1121
441
- #: contact_form.php:1841
442
- #: contact_form.php:1871
443
  msgid "Name"
444
  msgstr "Név"
445
 
446
- #: contact_form.php:808
447
- #: contact_form.php:1126
448
- #: contact_form.php:1845
449
- #: contact_form.php:1873
450
  #, fuzzy
451
  msgid "Address"
452
  msgstr "Email cím:"
453
 
454
- #: contact_form.php:816
455
  #, fuzzy
456
  msgid "Email Address"
457
  msgstr "Email cím:"
458
 
459
- #: contact_form.php:824
460
  #, fuzzy
461
  msgid "Phone number"
462
  msgstr "Telefonszám:"
463
 
464
- #: contact_form.php:832
465
- #: contact_form.php:1141
466
- #: contact_form.php:1855
467
- #: contact_form.php:1877
468
  msgid "Subject"
469
  msgstr "Sujet"
470
 
471
- #: contact_form.php:840
472
- #: contact_form.php:1145
473
- #: contact_form.php:1858
474
- #: contact_form.php:1878
475
  msgid "Message"
476
  msgstr "Üzenet"
477
 
478
- #: contact_form.php:858
479
  #, fuzzy
480
  msgid "Attachment block"
481
  msgstr "Csatolmány doboz megjelenítése"
482
 
483
- #: contact_form.php:860
484
  msgid "Users can attach the following file formats"
485
  msgstr "A felhasználók a következő fájlformátumokat csatolhatják"
486
 
487
- #: contact_form.php:874
488
  msgid "Add to the form"
489
  msgstr ""
490
 
491
- #: contact_form.php:879
492
  #, fuzzy
493
  msgid "Tips below the Attachment"
494
  msgstr "Tippek megjelenítése a Csatolmányok doboz alatt"
495
 
496
- #: contact_form.php:888
497
  #, fuzzy
498
  msgid "'Send me a copy' block"
499
  msgstr "A 'Kérek másolatot' opció megjelenítése"
500
 
501
- #: contact_form.php:901
502
- #: contact_form.php:904
503
- #: contact_form.php:908
504
- #: contact_form.php:1155
505
  msgid "Captcha"
506
  msgstr ""
507
 
508
- #: contact_form.php:904
509
  #, fuzzy
510
  msgid "Activate captcha"
511
  msgstr "Aktivált pluginok"
512
 
513
- #: contact_form.php:908
514
  #, fuzzy
515
  msgid "Download captcha"
516
  msgstr "Letöltés"
517
 
518
- #: contact_form.php:916
519
  msgid "Agreement checkbox"
520
  msgstr ""
521
 
522
- #: contact_form.php:916
523
  msgid "Required checkbox for submitting the form"
524
  msgstr ""
525
 
526
- #: contact_form.php:917
527
  msgid "Optional checkbox"
528
  msgstr ""
529
 
530
- #: contact_form.php:917
531
  msgid "Optional checkbox, the results of which will be displayed in email"
532
  msgstr ""
533
 
534
- #: contact_form.php:928
535
  msgid "Delete an attachment file from the server after the email is sent"
536
  msgstr ""
537
 
538
- #: contact_form.php:934
539
  msgid "Email in HTML format sending"
540
  msgstr ""
541
 
542
- #: contact_form.php:938
543
  #, fuzzy
544
  msgid "Display additional info in the email"
545
  msgstr "További információk megjelenítése az emailben"
546
 
547
- #: contact_form.php:943
548
- #: contact_form.php:1808
549
- #: contact_form.php:1810
550
  msgid "Sent from (ip address)"
551
  msgstr "Küldő (IP cím)"
552
 
553
- #: contact_form.php:943
554
  #, fuzzy
555
  msgid "Example: Sent from (IP address):\t127.0.0.1"
556
  msgstr "Küldő (IP cím)"
557
 
558
- #: contact_form.php:944
559
- #: contact_form.php:1814
560
- #: contact_form.php:1816
561
  msgid "Date/Time"
562
  msgstr "Dátum/Idő"
563
 
564
- #: contact_form.php:944
565
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
566
  msgstr ""
567
 
568
- #: contact_form.php:945
569
- #: contact_form.php:1820
570
- #: contact_form.php:1822
571
  msgid "Sent from (referer)"
572
  msgstr "Envoyer de (référence)"
573
 
574
- #: contact_form.php:945
575
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
576
  msgstr ""
577
 
578
- #: contact_form.php:946
579
- #: contact_form.php:1826
580
- #: contact_form.php:1828
581
  msgid "Using (user agent)"
582
  msgstr "Alkalmazás (böngésző)"
583
 
584
- #: contact_form.php:946
585
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
586
  msgstr ""
587
 
588
- #: contact_form.php:950
589
  msgid "Language settings for the field names in the form"
590
  msgstr "Az ürlap mezőinek nyelvi beállítása"
591
 
592
- #: contact_form.php:959
593
  #, fuzzy
594
  msgid "Add a language"
595
  msgstr "Nyelv hozzáadása"
596
 
597
- #: contact_form.php:963
598
  msgid "Change the names of the contact form fields and error messages"
599
  msgstr "A Kapcsolatfelvételi Ürlap mező és hibaüzenet neveinek módosítása"
600
 
601
- #: contact_form.php:968
602
- #: contact_form.php:1041
603
  msgid "English"
604
  msgstr "Angol"
605
 
606
- #: contact_form.php:976
607
- #: contact_form.php:1006
608
  msgid "click to expand/hide the list"
609
  msgstr ""
610
 
611
- #: contact_form.php:985
612
- #: contact_form.php:1015
613
  #, fuzzy
614
  msgid "Tips below the Attachment block"
615
  msgstr "Tippek megjelenítése a Csatolmányok doboz alatt"
616
 
617
- #: contact_form.php:988
618
- #: contact_form.php:1018
619
  msgid "Error message for the Name field"
620
  msgstr "Név mező hibaüzenet"
621
 
622
- #: contact_form.php:989
623
- #: contact_form.php:1019
624
  #, fuzzy
625
  msgid "Error message for the Address field"
626
  msgstr "Üzenet mező hibaüzenet"
627
 
628
- #: contact_form.php:990
629
- #: contact_form.php:1020
630
  msgid "Error message for the Email field"
631
  msgstr "Email cím mező hibaüzenet"
632
 
633
- #: contact_form.php:991
634
- #: contact_form.php:1021
635
  msgid "Error message for the Phone field"
636
  msgstr "Telefonszám mező hibaüzenet"
637
 
638
- #: contact_form.php:992
639
- #: contact_form.php:1022
640
  msgid "Error message for the Subject field"
641
  msgstr "Tárgy mező hibaüzenet"
642
 
643
- #: contact_form.php:993
644
- #: contact_form.php:1023
645
  msgid "Error message for the Message field"
646
  msgstr "Üzenet mező hibaüzenet"
647
 
648
- #: contact_form.php:994
649
- #: contact_form.php:1024
650
  #, fuzzy
651
  msgid "Error message about the file type for the Attachment field"
652
  msgstr "Csatolmány doboz hibaüzenet"
653
 
654
- #: contact_form.php:995
655
- #: contact_form.php:1025
656
  #, fuzzy
657
  msgid "Error message while uploading a file for the Attachment field to the server"
658
  msgstr "Csatolmány doboz hibaüzenet"
659
 
660
- #: contact_form.php:996
661
- #: contact_form.php:1026
662
  #, fuzzy
663
  msgid "Error message while moving the file for the Attachment field"
664
  msgstr "Csatolmány doboz hibaüzenet"
665
 
666
- #: contact_form.php:997
667
- #: contact_form.php:1027
668
  #, fuzzy
669
  msgid "Error message when file size limit for the Attachment field is exceeded"
670
  msgstr "Csatolmány doboz hibaüzenet"
671
 
672
- #: contact_form.php:998
673
- #: contact_form.php:1028
674
  msgid "Error message for the Captcha field"
675
  msgstr "CAPTCHA mező hibaüzenet"
676
 
677
- #: contact_form.php:999
678
- #: contact_form.php:1029
679
  msgid "Error message for the whole form"
680
  msgstr "Hibaüzenet az egész form számára"
681
 
682
- #: contact_form.php:1001
683
- #: contact_form.php:1031
684
- #: contact_form.php:1050
685
- #: contact_form.php:1056
 
 
 
 
686
  msgid "Use shortcode"
687
  msgstr "Gyorskód használata"
688
 
689
- #: contact_form.php:1001
690
- #: contact_form.php:1031
691
- #: contact_form.php:1050
692
- #: contact_form.php:1056
 
 
 
 
693
  msgid "for this language"
694
  msgstr "ehhez a nyelvhez"
695
 
696
- #: contact_form.php:1038
697
  msgid "Action after email is sent"
698
  msgstr "Művelet az email elküldése után"
699
 
700
- #: contact_form.php:1040
701
  msgid "Display text"
702
  msgstr "Szöveg megjelenítése"
703
 
704
- #: contact_form.php:1049
705
- #: contact_form.php:1055
706
  msgid "Text"
707
  msgstr "Szöveg"
708
 
709
- #: contact_form.php:1062
710
  msgid "Redirect to the page"
711
  msgstr "Átirányítás egy weboldalra"
712
 
713
- #: contact_form.php:1063
714
  msgid "Url"
715
  msgstr "Url"
716
 
717
- #: contact_form.php:1067
718
  msgid "The $_SERVER variable that is used to build a URL of the form"
719
  msgstr ""
720
 
721
- #: contact_form.php:1071
722
  msgid "If you are not sure whether to change this setting or not, please do not do that."
723
  msgstr ""
724
 
725
- #: contact_form.php:1077
726
- #: contact_form.php:1252
727
  msgid "Save Changes"
728
  msgstr "Módosítások Mentése"
729
 
730
- #: contact_form.php:1082
731
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
732
  msgstr ""
733
 
734
- #: contact_form.php:1083
735
  #, fuzzy
736
  msgid "Rate the plugin"
737
  msgstr "Ajánlott pluginok"
738
 
739
- #: contact_form.php:1086
740
  #, fuzzy
741
  msgid "If there is something wrong about it, please contact us"
742
  msgstr "Amennyiben kérdése van, kérjük írjon nekünk a plugin@bestwebsoft.com címre vagy töltse ki a kapcsolatfelvételi lapot a weboldalon"
743
 
744
- #: contact_form.php:1101
745
  msgid "Errors output"
746
  msgstr ""
747
 
748
- #: contact_form.php:1104
749
  msgid "Display error messages"
750
  msgstr ""
751
 
752
- #: contact_form.php:1105
753
  msgid "Color of the input field errors."
754
  msgstr ""
755
 
756
- #: contact_form.php:1106
757
  #, fuzzy
758
  msgid "Display error messages & color of the input field errors"
759
  msgstr "Tárgy mező hibaüzenet"
760
 
761
- #: contact_form.php:1111
762
  msgid "Add placeholder to the input blocks"
763
  msgstr ""
764
 
765
- #: contact_form.php:1117
766
  #, fuzzy
767
  msgid "Add tooltips"
768
  msgstr "További opciók"
769
 
770
- #: contact_form.php:1131
771
  #, fuzzy
772
  msgid "Email address"
773
  msgstr "Email cím:"
774
 
775
- #: contact_form.php:1136
776
  #, fuzzy
777
  msgid "Phone Number"
778
  msgstr "Telefonszám:"
779
 
780
- #: contact_form.php:1150
781
  #, fuzzy
782
  msgid "Attachment"
783
  msgstr "Csatolmány:"
784
 
785
- #: contact_form.php:1155
786
  msgid "(powered by bestwebsoft.com)"
787
  msgstr ""
788
 
789
- #: contact_form.php:1160
790
  #, fuzzy
791
  msgid "Style options"
792
  msgstr "További opciók"
793
 
794
- #: contact_form.php:1163
795
  msgid "Text color"
796
  msgstr ""
797
 
798
- #: contact_form.php:1166
799
- #: contact_form.php:1171
800
- #: contact_form.php:1181
801
- #: contact_form.php:1186
802
- #: contact_form.php:1191
803
- #: contact_form.php:1196
804
- #: contact_form.php:1206
805
- #: contact_form.php:1211
806
- #: contact_form.php:1217
807
- #: contact_form.php:1228
808
- #: contact_form.php:1233
809
- #: contact_form.php:1238
810
  msgid "Default"
811
  msgstr ""
812
 
813
- #: contact_form.php:1168
814
  msgid "Label text color"
815
  msgstr ""
816
 
817
- #: contact_form.php:1173
818
  msgid "Placeholder color"
819
  msgstr ""
820
 
821
- #: contact_form.php:1178
822
  msgid "Errors color"
823
  msgstr ""
824
 
825
- #: contact_form.php:1183
826
  msgid "Error text color"
827
  msgstr ""
828
 
829
- #: contact_form.php:1188
830
  msgid "Background color of the input field errors"
831
  msgstr ""
832
 
833
- #: contact_form.php:1193
834
  msgid "Border color of the input field errors"
835
  msgstr ""
836
 
837
- #: contact_form.php:1198
838
  msgid "Placeholder color of the input field errors"
839
  msgstr ""
840
 
841
- #: contact_form.php:1203
842
  #, fuzzy
843
  msgid "Input fields"
844
  msgstr "Szöveg megjelenítése"
845
 
846
- #: contact_form.php:1208
847
  msgid "Input fields background color"
848
  msgstr ""
849
 
850
- #: contact_form.php:1213
851
  msgid "Text fields color"
852
  msgstr ""
853
 
854
- #: contact_form.php:1215
855
  msgid "Border width in px, numbers only"
856
  msgstr ""
857
 
858
- #: contact_form.php:1219
859
- #: contact_form.php:1240
860
  msgid "Border color"
861
  msgstr ""
862
 
863
- #: contact_form.php:1224
864
  #, fuzzy
865
  msgid "Submit button"
866
  msgstr "Küldés"
867
 
868
- #: contact_form.php:1226
869
  msgid "Width in px, numbers only"
870
  msgstr ""
871
 
872
- #: contact_form.php:1230
873
  msgid "Button color"
874
  msgstr ""
875
 
876
- #: contact_form.php:1235
877
  msgid "Button text color"
878
  msgstr ""
879
 
880
- #: contact_form.php:1256
881
  #, fuzzy
882
  msgid "Contact Form Pro | Preview"
883
  msgstr "Kapcsolatfelvételi Ürlap"
884
 
885
- #: contact_form.php:1259
886
  msgid "Show with errors"
887
  msgstr ""
888
 
889
- #: contact_form.php:1267
890
- #: contact_form.php:1269
891
  msgid "Please enter your full name..."
892
  msgstr ""
893
 
894
- #: contact_form.php:1280
895
- #: contact_form.php:1282
896
  msgid "Please enter your address..."
897
  msgstr ""
898
 
899
- #: contact_form.php:1291
900
- #: contact_form.php:1293
901
  #, fuzzy
902
  msgid "Please enter your email address..."
903
  msgstr "Ezen email cím használata:"
904
 
905
- #: contact_form.php:1302
906
- #: contact_form.php:1304
907
  msgid "Please enter your phone number..."
908
  msgstr ""
909
 
910
- #: contact_form.php:1313
911
- #: contact_form.php:1315
912
  msgid "Please enter subject..."
913
  msgstr ""
914
 
915
- #: contact_form.php:1323
916
- #: contact_form.php:1325
917
  msgid "Please enter your message..."
918
  msgstr ""
919
 
920
- #: contact_form.php:1367
921
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
922
  msgstr ""
923
 
924
- #: contact_form.php:1369
925
  msgid "Please, go to"
926
  msgstr ""
927
 
928
- #: contact_form.php:1369
929
  #, fuzzy
930
  msgid "the setting page"
931
  msgstr "Beállítások"
932
 
933
- #: contact_form.php:1370
934
  msgid "You will be redirected automatically in 5 seconds."
935
  msgstr ""
936
 
937
- #: contact_form.php:1375
938
  msgid "You can download and activate"
939
  msgstr ""
940
 
941
- #: contact_form.php:1377
942
  msgid "version of this plugin by entering Your license key."
943
  msgstr ""
944
 
945
- #: contact_form.php:1379
946
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
947
  msgstr ""
948
 
949
- #: contact_form.php:1381
950
  msgid "(your username is the email you specify when purchasing the product)."
951
  msgstr ""
952
 
953
- #: contact_form.php:1389
954
- #: contact_form.php:1399
955
  msgid "Go!"
956
  msgstr ""
957
 
958
- #: contact_form.php:1449
959
  msgid "Sorry, email message could not be delivered."
960
  msgstr "Sajnáljuk, az email üzenet nem továbbítható."
961
 
962
- #: contact_form.php:1835
963
  msgid "Contact from"
964
  msgstr "Üzenet küldött"
965
 
966
- #: contact_form.php:1848
967
- #: contact_form.php:1874
968
  msgid "Email"
969
  msgstr "E-mail"
970
 
971
- #: contact_form.php:1852
972
- #: contact_form.php:1876
973
  msgid "Phone"
974
  msgstr "Telefonszám"
975
 
976
- #: contact_form.php:1861
977
- #: contact_form.php:1879
978
  msgid "Site"
979
  msgstr "Oldal"
980
 
981
- #: contact_form.php:1941
982
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
983
  msgstr "Amennyiben ez a MIME nem jelenik meg, akkör az ön Levelezője nem támogatja ezt a MIME típust !"
984
 
985
- #: contact_form.php:2009
986
  msgid "FAQ"
987
  msgstr "GYIK (FAQ)"
988
 
989
- #: contact_form.php:2010
990
  msgid "Support"
991
  msgstr "Támogatás"
992
 
993
- #: contact_form.php:2068
994
  msgid "Are you sure that you want to delete this language data?"
995
  msgstr "Biztosan törölni szeretné ezt a nyelvi adatot ?"
996
 
997
- #: contact_form.php:2223
998
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
999
  msgstr ""
1000
 
1001
- #: contact_form.php:2224
1002
  msgid "Extend standard plugin functionality with new great options."
1003
  msgstr ""
1004
 
1005
- #: contact_form.php:2233
1006
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1007
  msgstr ""
1008
 
1009
- #: contact_form.php:2234
1010
  msgid "Manage messages that have been sent from your website."
1011
  msgstr ""
1012
 
 
 
 
 
1013
  #, fuzzy
1014
  #~ msgid "Contact Form Pro Extra Settings"
1015
  #~ msgstr "Kapcsolatfelvételi Ürlap Beállítások"
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:38+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:38+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Karoly Kovacs <karcsi1978@gmail.com>\n"
9
  "Language: hu_HU\n"
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:73
21
+ #: contact_form.php:785
22
  #, fuzzy
23
  msgid "Contact Form Settings"
24
  msgstr "Kapcsolatfelvételi Ürlap Beállítások"
25
 
26
+ #: contact_form.php:73
27
  msgid "Contact Form"
28
  msgstr "Kapcsolatfelvételi Ürlap"
29
 
30
+ #: contact_form.php:149
31
+ #: contact_form.php:1131
32
+ #: contact_form.php:1165
33
  msgid "Name:"
34
  msgstr "Noév:"
35
 
36
+ #: contact_form.php:150
37
+ #: contact_form.php:1132
38
+ #: contact_form.php:1166
39
  #, fuzzy
40
  msgid "Address:"
41
  msgstr "Email cím:"
42
 
43
+ #: contact_form.php:151
44
+ #: contact_form.php:1133
45
+ #: contact_form.php:1167
46
  msgid "Email Address:"
47
  msgstr "Email cím:"
48
 
49
+ #: contact_form.php:152
50
+ #: contact_form.php:1134
51
+ #: contact_form.php:1168
52
  msgid "Phone number:"
53
  msgstr "Telefonszám:"
54
 
55
+ #: contact_form.php:153
56
+ #: contact_form.php:1135
57
+ #: contact_form.php:1169
58
  msgid "Subject:"
59
  msgstr "Tárgy:"
60
 
61
+ #: contact_form.php:154
62
+ #: contact_form.php:1136
63
+ #: contact_form.php:1170
64
  msgid "Message:"
65
  msgstr "Üzenet:"
66
 
67
+ #: contact_form.php:155
68
+ #: contact_form.php:1137
69
+ #: contact_form.php:1171
70
  msgid "Attachment:"
71
  msgstr "Csatolmány:"
72
 
73
+ #: contact_form.php:156
74
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
75
  msgstr ""
76
 
77
+ #: contact_form.php:157
78
+ #: contact_form.php:1139
79
+ #: contact_form.php:1173
80
  msgid "Send me a copy"
81
  msgstr "Kérek másolatot"
82
 
83
+ #: contact_form.php:158
84
+ #: contact_form.php:1140
85
+ #: contact_form.php:1174
86
  msgid "Submit"
87
  msgstr "Küldés"
88
 
89
+ #: contact_form.php:159
90
  msgid "Your name is required."
91
  msgstr "Név megadása kötelező."
92
 
93
+ #: contact_form.php:160
94
  #, fuzzy
95
  msgid "Address is required."
96
  msgstr "Valós email cím megadása kötelező."
97
 
98
+ #: contact_form.php:161
99
  #, fuzzy
100
  msgid "A valid email address is required."
101
  msgstr "Valós email cím megadása kötelező."
102
 
103
+ #: contact_form.php:162
104
  msgid "Phone number is required."
105
  msgstr "Le numéro de téléphone est obligatoire."
106
 
107
+ #: contact_form.php:163
108
  msgid "Subject is required."
109
  msgstr "Tárgy megadása kötelező."
110
 
111
+ #: contact_form.php:164
112
  msgid "Message text is required."
113
  msgstr "Üzenet megírása kötelező."
114
 
115
+ #: contact_form.php:165
116
  msgid "File format is not valid."
117
  msgstr "Fájl formátuma nem megengedett."
118
 
119
+ #: contact_form.php:166
120
  msgid "File upload error."
121
  msgstr ""
122
 
123
+ #: contact_form.php:167
124
  msgid "The file could not be uploaded."
125
  msgstr ""
126
 
127
+ #: contact_form.php:168
128
  msgid "This file is too large."
129
  msgstr ""
130
 
131
+ #: contact_form.php:169
132
  msgid "Please fill out the CAPTCHA."
133
  msgstr "Kérem töltse ki a CAPTCHA mezőt."
134
 
135
+ #: contact_form.php:170
136
  msgid "Please make corrections below and try again."
137
  msgstr "Kérem javítsa ki a szükséges mezőket és próbálja újra."
138
 
139
+ #: contact_form.php:172
140
  msgid "Thank you for contacting us."
141
  msgstr "Köszönjük az üzenetét."
142
 
143
+ #: contact_form.php:322
144
  #, fuzzy
145
  msgid "requires"
146
  msgstr "Kötelező mező"
147
 
148
+ #: contact_form.php:322
149
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
150
  msgstr ""
151
 
152
+ #: contact_form.php:322
153
  msgid "Back to the WordPress"
154
  msgstr ""
155
 
156
+ #: contact_form.php:322
157
  #, fuzzy
158
  msgid "Plugins page"
159
  msgstr "Ajánlott pluginok"
160
 
161
+ #: contact_form.php:626
162
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
163
  msgstr "Amennyiben az 'Átirányítás egy oldalra' opció kiválasztásra kerül, az URL-t az alábbi formátumban kell megadni"
164
 
165
+ #: contact_form.php:635
166
  msgid "Such user does not exist. Settings are not saved."
167
  msgstr "Nincs ilyen felhasználó. Beállítások nem kerültek mentésre."
168
 
169
+ #: contact_form.php:639
170
+ #: contact_form.php:645
171
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
172
  msgstr "Kérem valós email címet adjon meg a 'FKITÖL' mezőben. Beállítások nem kerültek mentésre."
173
 
174
+ #: contact_form.php:661
175
  #, fuzzy
176
  msgid "Settings saved."
177
  msgstr "Opciók elmentve."
178
 
179
+ #: contact_form.php:688
180
+ #: contact_form.php:720
181
  msgid "Wrong license key"
182
  msgstr ""
183
 
184
+ #: contact_form.php:713
185
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
186
  msgstr ""
187
 
188
+ #: contact_form.php:722
189
  msgid "This license key is bind to another site"
190
  msgstr ""
191
 
192
+ #: contact_form.php:724
193
+ #: contact_form.php:1570
194
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
195
  msgstr ""
196
 
197
+ #: contact_form.php:741
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
 
201
+ #: contact_form.php:747
202
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
203
  msgstr ""
204
 
205
+ #: contact_form.php:751
206
+ #: contact_form.php:760
207
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
208
  msgstr ""
209
 
210
+ #: contact_form.php:764
211
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
212
  msgstr ""
213
 
214
+ #: contact_form.php:779
215
  #, fuzzy
216
  msgid "Please, enter Your license key"
217
  msgstr "Ezen email cím használata:"
218
 
219
+ #: contact_form.php:787
220
+ #: contact_form.php:2216
221
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
222
  msgid "Settings"
223
  msgstr "Beállítások"
224
 
225
+ #: contact_form.php:788
226
  #, fuzzy
227
  msgid "Extra settings"
228
  msgstr "Beállítások"
229
 
230
+ #: contact_form.php:789
231
  msgid "Go PRO"
232
  msgstr ""
233
 
234
+ #: contact_form.php:792
235
+ msgid "Notice:"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:792
239
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
240
+ msgstr ""
241
+
242
+ #: contact_form.php:798
243
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
244
+ msgstr ""
245
+
246
+ #: contact_form.php:804
247
+ #: contact_form.php:809
248
+ #: contact_form.php:1529
249
  msgid "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:"
250
  msgstr "Amennyiben szeretné hozzáadni a Kapcsolatfelvételi Ürlapot a weboldalához, másolja ki és illessze be az alábbi kódot egy bejegyzésbe, oldalba vagy widgetbe:"
251
 
252
+ #: contact_form.php:804
253
+ #: contact_form.php:805
254
+ #: contact_form.php:809
255
+ #: contact_form.php:810
256
+ #: contact_form.php:1155
257
+ #: contact_form.php:1157
258
+ #: contact_form.php:1212
259
+ #: contact_form.php:1214
260
  msgid "or"
261
  msgstr ""
262
 
263
+ #: contact_form.php:805
264
+ #: contact_form.php:810
265
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
266
  msgstr ""
267
 
268
+ #: contact_form.php:806
269
+ #: contact_form.php:811
270
  msgid "They work the same way."
271
  msgstr ""
272
 
273
+ #: contact_form.php:807
274
+ #: contact_form.php:812
275
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
276
  msgstr "Amennyiben ezeket a mezőket üresen hagyja, az üzenet a regisztráció során megadott email címre lesz elküldve."
277
 
278
+ #: contact_form.php:817
279
  msgid "The user's email address:"
280
  msgstr "A felhasználó email címe:"
281
 
282
+ #: contact_form.php:821
283
  msgid "Create a username"
284
  msgstr "felhasználónév létrehozása"
285
 
286
+ #: contact_form.php:828
287
  msgid "Enter a username of the person who should get the messages from the contact form."
288
  msgstr "Adja meg azon személy felhasználónevét, akitől az üzeneteket szeretné kapni a Kapcsolatfelvételi Ürlap segítségével."
289
 
290
+ #: contact_form.php:832
291
  msgid "Use this email address:"
292
  msgstr "Ezen email cím használata:"
293
 
294
+ #: contact_form.php:835
295
  msgid "Enter the email address you want the messages forwarded to."
296
  msgstr "Adja meg az email címet, ahova az üzenetek érkezzenek."
297
 
298
+ #: contact_form.php:844
299
  msgid "Add department selectbox to the contact form:"
300
  msgstr ""
301
 
302
+ #: contact_form.php:852
303
+ #: contact_form.php:1412
304
  msgid "If you upgrade to Pro version all your settings will be saved."
305
  msgstr ""
306
 
307
+ #: contact_form.php:859
308
+ #: contact_form.php:997
309
+ #: contact_form.php:1071
310
+ #: contact_form.php:1419
311
+ msgid "Unlock premium options by upgrading to a PRO version."
312
  msgstr ""
313
 
314
+ #: contact_form.php:860
315
+ #: contact_form.php:998
316
+ #: contact_form.php:1072
317
+ #: contact_form.php:1420
318
+ #: contact_form.php:2473
319
+ #: contact_form.php:2489
320
+ msgid "Learn More"
321
+ msgstr ""
322
 
323
+ #: contact_form.php:863
324
+ #: contact_form.php:1001
325
+ #: contact_form.php:1075
326
+ #: contact_form.php:1423
327
+ msgid "Go"
328
+ msgstr ""
329
+
330
+ #: contact_form.php:870
331
  msgid "Save emails to the database"
332
  msgstr ""
333
 
334
+ #: contact_form.php:876
335
  msgid "Using"
336
  msgstr ""
337
 
338
+ #: contact_form.php:876
339
+ #: contact_form.php:1048
340
+ #: contact_form.php:1051
341
+ #: contact_form.php:1055
342
  msgid "powered by"
343
  msgstr ""
344
 
345
+ #: contact_form.php:879
346
+ #: contact_form.php:883
347
  msgid "Using Contact Form to DB powered by"
348
  msgstr ""
349
 
350
+ #: contact_form.php:879
351
  #, fuzzy
352
  msgid "Activate Contact Form to DB"
353
  msgstr "Kapcsolatfelvételi Ürlap"
354
 
355
+ #: contact_form.php:883
356
  #, fuzzy
357
  msgid "Download Contact Form to DB"
358
  msgstr "Kapcsolatfelvételi Ürlap"
359
 
360
+ #: contact_form.php:888
361
  msgid "Additional options"
362
  msgstr "További opciók"
363
 
364
+ #: contact_form.php:890
365
  msgid "Show"
366
  msgstr ""
367
 
368
+ #: contact_form.php:891
369
  msgid "Hide"
370
  msgstr ""
371
 
372
+ #: contact_form.php:895
373
  msgid "What to use?"
374
  msgstr "Mit szeretne használni?"
375
 
376
+ #: contact_form.php:898
377
  msgid "Wp-mail"
378
  msgstr "Wp-mail"
379
 
380
+ #: contact_form.php:898
381
  msgid "You can use the wp_mail function for mailing"
382
  msgstr "Használhatja a wp_mail funkciót a levelezéshez"
383
 
384
+ #: contact_form.php:900
385
  msgid "Mail"
386
  msgstr "E-mail"
387
 
388
+ #: contact_form.php:900
389
  msgid "To send mail you can use the php mail function"
390
  msgstr "Email küldéshez használhatja a php mail funkciót"
391
 
392
+ #: contact_form.php:904
393
  #, fuzzy
394
  msgid "The text in the 'From' field"
395
  msgstr "A 'KITÖL' mező szövegének módosítása"
396
 
397
+ #: contact_form.php:906
398
  msgid "User name"
399
  msgstr ""
400
 
401
+ #: contact_form.php:907
402
  #, fuzzy
403
  msgid "The name of the user who fills the form will be used in the field 'From'."
404
  msgstr "A felhasználó e-mail címe, akinek az adatai szerepelnek a 'KITÖL' mezőben."
405
 
406
+ #: contact_form.php:910
407
  #, fuzzy
408
  msgid "This text will be used in the 'FROM' field"
409
  msgstr "Ez az email cím szerepel a 'KITÖL' mezőben."
410
 
411
+ #: contact_form.php:914
412
  #, fuzzy
413
  msgid "The email address in the 'From' field"
414
  msgstr "Adja meg a 'KITÖL' mező email címét"
415
 
416
+ #: contact_form.php:916
417
  msgid "User email"
418
  msgstr ""
419
 
420
+ #: contact_form.php:917
421
  #, fuzzy
422
  msgid "The email address of the user who fills the form will be used in the field 'From'."
423
  msgstr "A felhasználó e-mail címe, akinek az adatai szerepelnek a 'KITÖL' mezőben."
424
 
425
+ #: contact_form.php:920
426
  msgid "This email address will be used in the 'From' field."
427
  msgstr "Ez az email cím szerepel a 'KITÖL' mezőben."
428
 
429
+ #: contact_form.php:924
430
  #, fuzzy
431
  msgid "Required symbol"
432
  msgstr "Kötelező mező"
433
 
434
+ #: contact_form.php:934
435
  msgid "Fields"
436
  msgstr ""
437
 
438
+ #: contact_form.php:935
439
  msgid "Used"
440
  msgstr ""
441
 
442
+ #: contact_form.php:936
443
  #, fuzzy
444
  msgid "Required"
445
  msgstr "Kötelező mező"
446
 
447
+ #: contact_form.php:937
448
  msgid "Visible"
449
  msgstr ""
450
 
451
+ #: contact_form.php:938
452
  msgid "Disabled for editing"
453
  msgstr ""
454
 
455
+ #: contact_form.php:939
456
  msgid "Field's default value"
457
  msgstr ""
458
 
459
+ #: contact_form.php:944
460
+ #: contact_form.php:1287
461
+ #: contact_form.php:2059
462
+ #: contact_form.php:2089
463
  msgid "Name"
464
  msgstr "Név"
465
 
466
+ #: contact_form.php:952
467
+ #: contact_form.php:1292
468
+ #: contact_form.php:2063
469
+ #: contact_form.php:2091
470
  #, fuzzy
471
  msgid "Address"
472
  msgstr "Email cím:"
473
 
474
+ #: contact_form.php:960
475
  #, fuzzy
476
  msgid "Email Address"
477
  msgstr "Email cím:"
478
 
479
+ #: contact_form.php:968
480
  #, fuzzy
481
  msgid "Phone number"
482
  msgstr "Telefonszám:"
483
 
484
+ #: contact_form.php:976
485
+ #: contact_form.php:1307
486
+ #: contact_form.php:2073
487
+ #: contact_form.php:2095
488
  msgid "Subject"
489
  msgstr "Sujet"
490
 
491
+ #: contact_form.php:984
492
+ #: contact_form.php:1311
493
+ #: contact_form.php:2076
494
+ #: contact_form.php:2096
495
  msgid "Message"
496
  msgstr "Üzenet"
497
 
498
+ #: contact_form.php:1008
499
  #, fuzzy
500
  msgid "Attachment block"
501
  msgstr "Csatolmány doboz megjelenítése"
502
 
503
+ #: contact_form.php:1010
504
  msgid "Users can attach the following file formats"
505
  msgstr "A felhasználók a következő fájlformátumokat csatolhatják"
506
 
507
+ #: contact_form.php:1023
508
  msgid "Add to the form"
509
  msgstr ""
510
 
511
+ #: contact_form.php:1028
512
  #, fuzzy
513
  msgid "Tips below the Attachment"
514
  msgstr "Tippek megjelenítése a Csatolmányok doboz alatt"
515
 
516
+ #: contact_form.php:1037
517
  #, fuzzy
518
  msgid "'Send me a copy' block"
519
  msgstr "A 'Kérek másolatot' opció megjelenítése"
520
 
521
+ #: contact_form.php:1048
522
+ #: contact_form.php:1051
523
+ #: contact_form.php:1055
524
+ #: contact_form.php:1321
525
  msgid "Captcha"
526
  msgstr ""
527
 
528
+ #: contact_form.php:1051
529
  #, fuzzy
530
  msgid "Activate captcha"
531
  msgstr "Aktivált pluginok"
532
 
533
+ #: contact_form.php:1055
534
  #, fuzzy
535
  msgid "Download captcha"
536
  msgstr "Letöltés"
537
 
538
+ #: contact_form.php:1063
539
  msgid "Agreement checkbox"
540
  msgstr ""
541
 
542
+ #: contact_form.php:1063
543
  msgid "Required checkbox for submitting the form"
544
  msgstr ""
545
 
546
+ #: contact_form.php:1064
547
  msgid "Optional checkbox"
548
  msgstr ""
549
 
550
+ #: contact_form.php:1064
551
  msgid "Optional checkbox, the results of which will be displayed in email"
552
  msgstr ""
553
 
554
+ #: contact_form.php:1081
555
  msgid "Delete an attachment file from the server after the email is sent"
556
  msgstr ""
557
 
558
+ #: contact_form.php:1087
559
  msgid "Email in HTML format sending"
560
  msgstr ""
561
 
562
+ #: contact_form.php:1091
563
  #, fuzzy
564
  msgid "Display additional info in the email"
565
  msgstr "További információk megjelenítése az emailben"
566
 
567
+ #: contact_form.php:1096
568
+ #: contact_form.php:2026
569
+ #: contact_form.php:2028
570
  msgid "Sent from (ip address)"
571
  msgstr "Küldő (IP cím)"
572
 
573
+ #: contact_form.php:1096
574
  #, fuzzy
575
  msgid "Example: Sent from (IP address):\t127.0.0.1"
576
  msgstr "Küldő (IP cím)"
577
 
578
+ #: contact_form.php:1097
579
+ #: contact_form.php:2032
580
+ #: contact_form.php:2034
581
  msgid "Date/Time"
582
  msgstr "Dátum/Idő"
583
 
584
+ #: contact_form.php:1097
585
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
586
  msgstr ""
587
 
588
+ #: contact_form.php:1098
589
+ #: contact_form.php:2038
590
+ #: contact_form.php:2040
591
  msgid "Sent from (referer)"
592
  msgstr "Envoyer de (référence)"
593
 
594
+ #: contact_form.php:1098
595
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
596
  msgstr ""
597
 
598
+ #: contact_form.php:1099
599
+ #: contact_form.php:2044
600
+ #: contact_form.php:2046
601
  msgid "Using (user agent)"
602
  msgstr "Alkalmazás (böngésző)"
603
 
604
+ #: contact_form.php:1099
605
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
606
  msgstr ""
607
 
608
+ #: contact_form.php:1103
609
  msgid "Language settings for the field names in the form"
610
  msgstr "Az ürlap mezőinek nyelvi beállítása"
611
 
612
+ #: contact_form.php:1112
613
  #, fuzzy
614
  msgid "Add a language"
615
  msgstr "Nyelv hozzáadása"
616
 
617
+ #: contact_form.php:1116
618
  msgid "Change the names of the contact form fields and error messages"
619
  msgstr "A Kapcsolatfelvételi Ürlap mező és hibaüzenet neveinek módosítása"
620
 
621
+ #: contact_form.php:1121
622
+ #: contact_form.php:1202
623
  msgid "English"
624
  msgstr "Angol"
625
 
626
+ #: contact_form.php:1129
627
+ #: contact_form.php:1163
628
  msgid "click to expand/hide the list"
629
  msgstr ""
630
 
631
+ #: contact_form.php:1138
632
+ #: contact_form.php:1172
633
  #, fuzzy
634
  msgid "Tips below the Attachment block"
635
  msgstr "Tippek megjelenítése a Csatolmányok doboz alatt"
636
 
637
+ #: contact_form.php:1141
638
+ #: contact_form.php:1175
639
  msgid "Error message for the Name field"
640
  msgstr "Név mező hibaüzenet"
641
 
642
+ #: contact_form.php:1142
643
+ #: contact_form.php:1176
644
  #, fuzzy
645
  msgid "Error message for the Address field"
646
  msgstr "Üzenet mező hibaüzenet"
647
 
648
+ #: contact_form.php:1143
649
+ #: contact_form.php:1177
650
  msgid "Error message for the Email field"
651
  msgstr "Email cím mező hibaüzenet"
652
 
653
+ #: contact_form.php:1144
654
+ #: contact_form.php:1178
655
  msgid "Error message for the Phone field"
656
  msgstr "Telefonszám mező hibaüzenet"
657
 
658
+ #: contact_form.php:1145
659
+ #: contact_form.php:1179
660
  msgid "Error message for the Subject field"
661
  msgstr "Tárgy mező hibaüzenet"
662
 
663
+ #: contact_form.php:1146
664
+ #: contact_form.php:1180
665
  msgid "Error message for the Message field"
666
  msgstr "Üzenet mező hibaüzenet"
667
 
668
+ #: contact_form.php:1147
669
+ #: contact_form.php:1181
670
  #, fuzzy
671
  msgid "Error message about the file type for the Attachment field"
672
  msgstr "Csatolmány doboz hibaüzenet"
673
 
674
+ #: contact_form.php:1148
675
+ #: contact_form.php:1182
676
  #, fuzzy
677
  msgid "Error message while uploading a file for the Attachment field to the server"
678
  msgstr "Csatolmány doboz hibaüzenet"
679
 
680
+ #: contact_form.php:1149
681
+ #: contact_form.php:1183
682
  #, fuzzy
683
  msgid "Error message while moving the file for the Attachment field"
684
  msgstr "Csatolmány doboz hibaüzenet"
685
 
686
+ #: contact_form.php:1150
687
+ #: contact_form.php:1184
688
  #, fuzzy
689
  msgid "Error message when file size limit for the Attachment field is exceeded"
690
  msgstr "Csatolmány doboz hibaüzenet"
691
 
692
+ #: contact_form.php:1151
693
+ #: contact_form.php:1185
694
  msgid "Error message for the Captcha field"
695
  msgstr "CAPTCHA mező hibaüzenet"
696
 
697
+ #: contact_form.php:1152
698
+ #: contact_form.php:1186
699
  msgid "Error message for the whole form"
700
  msgstr "Hibaüzenet az egész form számára"
701
 
702
+ #: contact_form.php:1155
703
+ #: contact_form.php:1157
704
+ #: contact_form.php:1189
705
+ #: contact_form.php:1191
706
+ #: contact_form.php:1212
707
+ #: contact_form.php:1214
708
+ #: contact_form.php:1222
709
+ #: contact_form.php:1224
710
  msgid "Use shortcode"
711
  msgstr "Gyorskód használata"
712
 
713
+ #: contact_form.php:1155
714
+ #: contact_form.php:1157
715
+ #: contact_form.php:1189
716
+ #: contact_form.php:1191
717
+ #: contact_form.php:1212
718
+ #: contact_form.php:1214
719
+ #: contact_form.php:1222
720
+ #: contact_form.php:1224
721
  msgid "for this language"
722
  msgstr "ehhez a nyelvhez"
723
 
724
+ #: contact_form.php:1199
725
  msgid "Action after email is sent"
726
  msgstr "Művelet az email elküldése után"
727
 
728
+ #: contact_form.php:1201
729
  msgid "Display text"
730
  msgstr "Szöveg megjelenítése"
731
 
732
+ #: contact_form.php:1210
733
+ #: contact_form.php:1220
734
  msgid "Text"
735
  msgstr "Szöveg"
736
 
737
+ #: contact_form.php:1231
738
  msgid "Redirect to the page"
739
  msgstr "Átirányítás egy weboldalra"
740
 
741
+ #: contact_form.php:1232
742
  msgid "Url"
743
  msgstr "Url"
744
 
745
+ #: contact_form.php:1236
746
  msgid "The $_SERVER variable that is used to build a URL of the form"
747
  msgstr ""
748
 
749
+ #: contact_form.php:1240
750
  msgid "If you are not sure whether to change this setting or not, please do not do that."
751
  msgstr ""
752
 
753
+ #: contact_form.php:1246
754
+ #: contact_form.php:1430
755
  msgid "Save Changes"
756
  msgstr "Módosítások Mentése"
757
 
758
+ #: contact_form.php:1251
759
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
760
  msgstr ""
761
 
762
+ #: contact_form.php:1252
763
  #, fuzzy
764
  msgid "Rate the plugin"
765
  msgstr "Ajánlott pluginok"
766
 
767
+ #: contact_form.php:1255
768
  #, fuzzy
769
  msgid "If there is something wrong about it, please contact us"
770
  msgstr "Amennyiben kérdése van, kérjük írjon nekünk a plugin@bestwebsoft.com címre vagy töltse ki a kapcsolatfelvételi lapot a weboldalon"
771
 
772
+ #: contact_form.php:1267
773
  msgid "Errors output"
774
  msgstr ""
775
 
776
+ #: contact_form.php:1270
777
  msgid "Display error messages"
778
  msgstr ""
779
 
780
+ #: contact_form.php:1271
781
  msgid "Color of the input field errors."
782
  msgstr ""
783
 
784
+ #: contact_form.php:1272
785
  #, fuzzy
786
  msgid "Display error messages & color of the input field errors"
787
  msgstr "Tárgy mező hibaüzenet"
788
 
789
+ #: contact_form.php:1277
790
  msgid "Add placeholder to the input blocks"
791
  msgstr ""
792
 
793
+ #: contact_form.php:1283
794
  #, fuzzy
795
  msgid "Add tooltips"
796
  msgstr "További opciók"
797
 
798
+ #: contact_form.php:1297
799
  #, fuzzy
800
  msgid "Email address"
801
  msgstr "Email cím:"
802
 
803
+ #: contact_form.php:1302
804
  #, fuzzy
805
  msgid "Phone Number"
806
  msgstr "Telefonszám:"
807
 
808
+ #: contact_form.php:1316
809
  #, fuzzy
810
  msgid "Attachment"
811
  msgstr "Csatolmány:"
812
 
813
+ #: contact_form.php:1321
814
  msgid "(powered by bestwebsoft.com)"
815
  msgstr ""
816
 
817
+ #: contact_form.php:1326
818
  #, fuzzy
819
  msgid "Style options"
820
  msgstr "További opciók"
821
 
822
+ #: contact_form.php:1329
823
  msgid "Text color"
824
  msgstr ""
825
 
826
+ #: contact_form.php:1332
827
+ #: contact_form.php:1337
828
+ #: contact_form.php:1347
829
+ #: contact_form.php:1352
830
+ #: contact_form.php:1357
831
+ #: contact_form.php:1362
832
+ #: contact_form.php:1372
833
+ #: contact_form.php:1377
834
+ #: contact_form.php:1383
835
+ #: contact_form.php:1394
836
+ #: contact_form.php:1399
837
+ #: contact_form.php:1404
838
  msgid "Default"
839
  msgstr ""
840
 
841
+ #: contact_form.php:1334
842
  msgid "Label text color"
843
  msgstr ""
844
 
845
+ #: contact_form.php:1339
846
  msgid "Placeholder color"
847
  msgstr ""
848
 
849
+ #: contact_form.php:1344
850
  msgid "Errors color"
851
  msgstr ""
852
 
853
+ #: contact_form.php:1349
854
  msgid "Error text color"
855
  msgstr ""
856
 
857
+ #: contact_form.php:1354
858
  msgid "Background color of the input field errors"
859
  msgstr ""
860
 
861
+ #: contact_form.php:1359
862
  msgid "Border color of the input field errors"
863
  msgstr ""
864
 
865
+ #: contact_form.php:1364
866
  msgid "Placeholder color of the input field errors"
867
  msgstr ""
868
 
869
+ #: contact_form.php:1369
870
  #, fuzzy
871
  msgid "Input fields"
872
  msgstr "Szöveg megjelenítése"
873
 
874
+ #: contact_form.php:1374
875
  msgid "Input fields background color"
876
  msgstr ""
877
 
878
+ #: contact_form.php:1379
879
  msgid "Text fields color"
880
  msgstr ""
881
 
882
+ #: contact_form.php:1381
883
  msgid "Border width in px, numbers only"
884
  msgstr ""
885
 
886
+ #: contact_form.php:1385
887
+ #: contact_form.php:1406
888
  msgid "Border color"
889
  msgstr ""
890
 
891
+ #: contact_form.php:1390
892
  #, fuzzy
893
  msgid "Submit button"
894
  msgstr "Küldés"
895
 
896
+ #: contact_form.php:1392
897
  msgid "Width in px, numbers only"
898
  msgstr ""
899
 
900
+ #: contact_form.php:1396
901
  msgid "Button color"
902
  msgstr ""
903
 
904
+ #: contact_form.php:1401
905
  msgid "Button text color"
906
  msgstr ""
907
 
908
+ #: contact_form.php:1434
909
  #, fuzzy
910
  msgid "Contact Form Pro | Preview"
911
  msgstr "Kapcsolatfelvételi Ürlap"
912
 
913
+ #: contact_form.php:1437
914
  msgid "Show with errors"
915
  msgstr ""
916
 
917
+ #: contact_form.php:1445
918
+ #: contact_form.php:1447
919
  msgid "Please enter your full name..."
920
  msgstr ""
921
 
922
+ #: contact_form.php:1458
923
+ #: contact_form.php:1460
924
  msgid "Please enter your address..."
925
  msgstr ""
926
 
927
+ #: contact_form.php:1469
928
+ #: contact_form.php:1471
929
  #, fuzzy
930
  msgid "Please enter your email address..."
931
  msgstr "Ezen email cím használata:"
932
 
933
+ #: contact_form.php:1480
934
+ #: contact_form.php:1482
935
  msgid "Please enter your phone number..."
936
  msgstr ""
937
 
938
+ #: contact_form.php:1491
939
+ #: contact_form.php:1493
940
  msgid "Please enter subject..."
941
  msgstr ""
942
 
943
+ #: contact_form.php:1501
944
+ #: contact_form.php:1503
945
  msgid "Please enter your message..."
946
  msgstr ""
947
 
948
+ #: contact_form.php:1545
949
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
950
  msgstr ""
951
 
952
+ #: contact_form.php:1547
953
  msgid "Please, go to"
954
  msgstr ""
955
 
956
+ #: contact_form.php:1547
957
  #, fuzzy
958
  msgid "the setting page"
959
  msgstr "Beállítások"
960
 
961
+ #: contact_form.php:1548
962
  msgid "You will be redirected automatically in 5 seconds."
963
  msgstr ""
964
 
965
+ #: contact_form.php:1553
966
  msgid "You can download and activate"
967
  msgstr ""
968
 
969
+ #: contact_form.php:1555
970
  msgid "version of this plugin by entering Your license key."
971
  msgstr ""
972
 
973
+ #: contact_form.php:1557
974
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
975
  msgstr ""
976
 
977
+ #: contact_form.php:1559
978
  msgid "(your username is the email you specify when purchasing the product)."
979
  msgstr ""
980
 
981
+ #: contact_form.php:1567
982
+ #: contact_form.php:1577
983
  msgid "Go!"
984
  msgstr ""
985
 
986
+ #: contact_form.php:1647
987
  msgid "Sorry, email message could not be delivered."
988
  msgstr "Sajnáljuk, az email üzenet nem továbbítható."
989
 
990
+ #: contact_form.php:2053
991
  msgid "Contact from"
992
  msgstr "Üzenet küldött"
993
 
994
+ #: contact_form.php:2066
995
+ #: contact_form.php:2092
996
  msgid "Email"
997
  msgstr "E-mail"
998
 
999
+ #: contact_form.php:2070
1000
+ #: contact_form.php:2094
1001
  msgid "Phone"
1002
  msgstr "Telefonszám"
1003
 
1004
+ #: contact_form.php:2079
1005
+ #: contact_form.php:2097
1006
  msgid "Site"
1007
  msgstr "Oldal"
1008
 
1009
+ #: contact_form.php:2160
1010
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
1011
  msgstr "Amennyiben ez a MIME nem jelenik meg, akkör az ön Levelezője nem támogatja ezt a MIME típust !"
1012
 
1013
+ #: contact_form.php:2229
1014
  msgid "FAQ"
1015
  msgstr "GYIK (FAQ)"
1016
 
1017
+ #: contact_form.php:2230
1018
  msgid "Support"
1019
  msgstr "Támogatás"
1020
 
1021
+ #: contact_form.php:2280
1022
  msgid "Are you sure that you want to delete this language data?"
1023
  msgstr "Biztosan törölni szeretné ezt a nyelvi adatot ?"
1024
 
1025
+ #: contact_form.php:2476
1026
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
1027
  msgstr ""
1028
 
1029
+ #: contact_form.php:2477
1030
  msgid "Extend standard plugin functionality with new great options."
1031
  msgstr ""
1032
 
1033
+ #: contact_form.php:2492
1034
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1035
  msgstr ""
1036
 
1037
+ #: contact_form.php:2493
1038
  msgid "Manage messages that have been sent from your website."
1039
  msgstr ""
1040
 
1041
+ #, fuzzy
1042
+ #~ msgid "Contact Form Pro"
1043
+ #~ msgstr "Kapcsolatfelvételi Ürlap"
1044
+
1045
  #, fuzzy
1046
  #~ msgid "Contact Form Pro Extra Settings"
1047
  #~ msgstr "Kapcsolatfelvételi Ürlap Beállítások"
languages/contact_form-it_IT.mo CHANGED
Binary file
languages/contact_form-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-20 14:04+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Ilian Gagliardi <ilian@ultra-violet.it>\n"
9
  "Language: it_IT\n"
@@ -16,994 +16,1026 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Opzioni Contact Form"
24
 
25
- #: contact_form.php:33
26
  msgid "Contact Form"
27
  msgstr "Contact Form"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:978
31
- #: contact_form.php:1008
32
  msgid "Name:"
33
  msgstr "Nome:"
34
 
35
- #: contact_form.php:81
36
- #: contact_form.php:979
37
- #: contact_form.php:1009
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "Indirizzo e-mail:"
41
 
42
- #: contact_form.php:82
43
- #: contact_form.php:980
44
- #: contact_form.php:1010
45
  msgid "Email Address:"
46
  msgstr "Indirizzo e-mail:"
47
 
48
- #: contact_form.php:83
49
- #: contact_form.php:981
50
- #: contact_form.php:1011
51
  msgid "Phone number:"
52
  msgstr "Numero di telefono:"
53
 
54
- #: contact_form.php:84
55
- #: contact_form.php:982
56
- #: contact_form.php:1012
57
  msgid "Subject:"
58
  msgstr "Oggetto:"
59
 
60
- #: contact_form.php:85
61
- #: contact_form.php:983
62
- #: contact_form.php:1013
63
  msgid "Message:"
64
  msgstr "Messaggio:"
65
 
66
- #: contact_form.php:86
67
- #: contact_form.php:984
68
- #: contact_form.php:1014
69
  msgid "Attachment:"
70
  msgstr "Attachment:"
71
 
72
- #: contact_form.php:87
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
- #: contact_form.php:88
77
- #: contact_form.php:986
78
- #: contact_form.php:1016
79
  msgid "Send me a copy"
80
  msgstr "Inviami una copia"
81
 
82
- #: contact_form.php:89
83
- #: contact_form.php:987
84
- #: contact_form.php:1017
85
  msgid "Submit"
86
  msgstr "Invia"
87
 
88
- #: contact_form.php:90
89
  msgid "Your name is required."
90
  msgstr "Il nome è obbligatorio"
91
 
92
- #: contact_form.php:91
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "È richiesto un indirizzo e-mail valido."
96
 
97
- #: contact_form.php:92
98
  msgid "A valid email address is required."
99
  msgstr "È richiesto un indirizzo e-mail valido."
100
 
101
- #: contact_form.php:93
102
  msgid "Phone number is required."
103
  msgstr "Il numero di telefono è obbligatorio"
104
 
105
- #: contact_form.php:94
106
  msgid "Subject is required."
107
  msgstr "L'oggetto è obbligatorio"
108
 
109
- #: contact_form.php:95
110
  msgid "Message text is required."
111
  msgstr "Il campo messaggio è obbligatorio"
112
 
113
- #: contact_form.php:96
114
  msgid "File format is not valid."
115
  msgstr "L'attachment non è corretto"
116
 
117
- #: contact_form.php:97
118
  msgid "File upload error."
119
  msgstr ""
120
 
121
- #: contact_form.php:98
122
  msgid "The file could not be uploaded."
123
  msgstr ""
124
 
125
- #: contact_form.php:99
126
  msgid "This file is too large."
127
  msgstr ""
128
 
129
- #: contact_form.php:100
130
  msgid "Please fill out the CAPTCHA."
131
  msgstr "Completa il CAPTCHA"
132
 
133
- #: contact_form.php:101
134
  msgid "Please make corrections below and try again."
135
  msgstr "Controlla i dati del modulo e riprova!"
136
 
137
- #: contact_form.php:103
138
  msgid "Thank you for contacting us."
139
  msgstr "Grazie per averci contattato."
140
 
141
- #: contact_form.php:203
142
  #, fuzzy
143
  msgid "requires"
144
  msgstr "Campi richiesti"
145
 
146
- #: contact_form.php:203
147
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
148
  msgstr ""
149
 
150
- #: contact_form.php:203
151
  msgid "Back to the WordPress"
152
  msgstr ""
153
 
154
- #: contact_form.php:203
155
  #, fuzzy
156
  msgid "Plugins page"
157
  msgstr "BWS Plugins"
158
 
159
- #: contact_form.php:494
160
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
161
  msgstr "se l'opzione 'Reindirizza a pagina' è impostata, allora il campo URL deve essere nel seguente formato"
162
 
163
- #: contact_form.php:503
164
  msgid "Such user does not exist. Settings are not saved."
165
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
166
 
167
- #: contact_form.php:507
168
- #: contact_form.php:513
169
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
170
  msgstr "Perfavore inserisci una e-mail corretta nel campo 'DA'. Opzioni non salvate."
171
 
172
- #: contact_form.php:518
173
  #, fuzzy
174
  msgid "Settings saved."
175
  msgstr "Opzioni salvate."
176
 
177
- #: contact_form.php:554
178
- #: contact_form.php:593
179
  msgid "Wrong license key"
180
  msgstr ""
181
 
182
- #: contact_form.php:586
183
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
184
  msgstr ""
185
 
186
- #: contact_form.php:595
187
  msgid "This license key is bind to another site"
188
  msgstr ""
189
 
190
- #: contact_form.php:597
191
- #: contact_form.php:1392
192
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
193
  msgstr ""
194
 
195
- #: contact_form.php:615
196
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
- #: contact_form.php:621
200
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
201
  msgstr ""
202
 
203
- #: contact_form.php:625
204
- #: contact_form.php:634
205
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
206
  msgstr ""
207
 
208
- #: contact_form.php:638
209
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
210
  msgstr ""
211
 
212
- #: contact_form.php:653
213
  #, fuzzy
214
  msgid "Please, enter Your license key"
215
  msgstr "Utilizza questa e-mail:"
216
 
217
- #: contact_form.php:662
218
- msgid "Notice:"
219
- msgstr ""
220
-
221
- #: contact_form.php:662
222
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
223
- msgstr ""
224
-
225
- #: contact_form.php:665
226
- #: contact_form.php:1997
227
- #: contact_form.php:2008
228
  msgid "Settings"
229
  msgstr "Settaggi"
230
 
231
- #: contact_form.php:666
232
  #, fuzzy
233
  msgid "Extra settings"
234
  msgstr "Settaggi"
235
 
236
- #: contact_form.php:667
237
  msgid "Go PRO"
238
  msgstr ""
239
 
240
- #: contact_form.php:673
241
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  msgid "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:"
243
  msgstr "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine o widget:"
244
 
245
- #: contact_form.php:673
246
- #: contact_form.php:674
247
- #: contact_form.php:1001
248
- #: contact_form.php:1050
 
 
 
 
249
  msgid "or"
250
  msgstr ""
251
 
252
- #: contact_form.php:674
 
253
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
254
  msgstr ""
255
 
256
- #: contact_form.php:675
 
257
  msgid "They work the same way."
258
  msgstr ""
259
 
260
- #: contact_form.php:676
 
261
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
262
  msgstr "Se le informazioni nei campi sottostanti sono vuote allora il messaggio sarà inviato ad un indirizzo che è stato specificato durante la fase di registrazione. "
263
 
264
- #: contact_form.php:680
265
  msgid "The user's email address:"
266
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
267
 
268
- #: contact_form.php:684
269
  msgid "Create a username"
270
  msgstr "Seleziona nome utente"
271
 
272
- #: contact_form.php:689
273
  msgid "Enter a username of the person who should get the messages from the contact form."
274
  msgstr "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
275
 
276
- #: contact_form.php:693
277
  msgid "Use this email address:"
278
  msgstr "Utilizza questa e-mail:"
279
 
280
- #: contact_form.php:696
281
  msgid "Enter the email address you want the messages forwarded to."
282
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
283
 
284
- #: contact_form.php:702
285
  msgid "Add department selectbox to the contact form:"
286
  msgstr ""
287
 
288
- #: contact_form.php:710
289
- #: contact_form.php:1246
290
  msgid "If you upgrade to Pro version all your settings will be saved."
291
  msgstr ""
292
 
293
- #: contact_form.php:715
294
- #: contact_form.php:852
295
- #: contact_form.php:923
296
- #: contact_form.php:1096
297
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
298
  msgstr ""
299
 
300
- #: contact_form.php:716
301
- #: contact_form.php:853
302
- #: contact_form.php:924
303
- #: contact_form.php:1097
304
- #, fuzzy
305
- msgid "Contact Form Pro"
306
- msgstr "Contact Form"
 
307
 
308
- #: contact_form.php:722
 
 
 
 
 
 
 
309
  msgid "Save emails to the database"
310
  msgstr ""
311
 
312
- #: contact_form.php:732
313
  msgid "Using"
314
  msgstr ""
315
 
316
- #: contact_form.php:732
317
- #: contact_form.php:901
318
- #: contact_form.php:904
319
- #: contact_form.php:908
320
  msgid "powered by"
321
  msgstr ""
322
 
323
- #: contact_form.php:735
324
- #: contact_form.php:739
325
  msgid "Using Contact Form to DB powered by"
326
  msgstr ""
327
 
328
- #: contact_form.php:735
329
  #, fuzzy
330
  msgid "Activate Contact Form to DB"
331
  msgstr "Contact Form"
332
 
333
- #: contact_form.php:739
334
  #, fuzzy
335
  msgid "Download Contact Form to DB"
336
  msgstr "Contact Form"
337
 
338
- #: contact_form.php:744
339
  msgid "Additional options"
340
  msgstr "Impostazioni aggiuntive"
341
 
342
- #: contact_form.php:746
343
  msgid "Show"
344
  msgstr ""
345
 
346
- #: contact_form.php:747
347
  msgid "Hide"
348
  msgstr ""
349
 
350
- #: contact_form.php:751
351
  msgid "What to use?"
352
  msgstr "Cosa utilizzare?"
353
 
354
- #: contact_form.php:754
355
  msgid "Wp-mail"
356
  msgstr "Wp-mail"
357
 
358
- #: contact_form.php:754
359
  msgid "You can use the wp_mail function for mailing"
360
  msgstr "Per inviare e-mail puoi utilizzare la funzione wp_mail"
361
 
362
- #: contact_form.php:756
363
  msgid "Mail"
364
  msgstr "Mail"
365
 
366
- #: contact_form.php:756
367
  msgid "To send mail you can use the php mail function"
368
  msgstr "Per inviare e-mail puoi utilizzare la funzione mail di php"
369
 
370
- #: contact_form.php:760
371
  #, fuzzy
372
  msgid "The text in the 'From' field"
373
  msgstr "Modifica il contenuto del campo 'DA'"
374
 
375
- #: contact_form.php:762
376
  msgid "User name"
377
  msgstr ""
378
 
379
- #: contact_form.php:763
380
  #, fuzzy
381
  msgid "The name of the user who fills the form will be used in the field 'From'."
382
  msgstr "L'indirizzo e-mail dell'utente che compila il form verrà usato nel campo 'DA'"
383
 
384
- #: contact_form.php:766
385
  #, fuzzy
386
  msgid "This text will be used in the 'FROM' field"
387
  msgstr "Questo indirizzo e-mail verrà utilizzato nel campo 'DA'"
388
 
389
- #: contact_form.php:770
390
  #, fuzzy
391
  msgid "The email address in the 'From' field"
392
  msgstr "Inserisci l'indirizzo e-mail nel campo 'DA'"
393
 
394
- #: contact_form.php:772
395
  msgid "User email"
396
  msgstr ""
397
 
398
- #: contact_form.php:773
399
  msgid "The email address of the user who fills the form will be used in the field 'From'."
400
  msgstr "L'indirizzo e-mail dell'utente che compila il form verrà usato nel campo 'DA'"
401
 
402
- #: contact_form.php:776
403
  msgid "This email address will be used in the 'From' field."
404
  msgstr "Questo indirizzo e-mail verrà utilizzato nel campo 'DA'"
405
 
406
- #: contact_form.php:780
407
  #, fuzzy
408
  msgid "Required symbol"
409
  msgstr "Campi richiesti"
410
 
411
- #: contact_form.php:790
412
  msgid "Fields"
413
  msgstr ""
414
 
415
- #: contact_form.php:791
416
  msgid "Used"
417
  msgstr ""
418
 
419
- #: contact_form.php:792
420
  #, fuzzy
421
  msgid "Required"
422
  msgstr "Campi richiesti"
423
 
424
- #: contact_form.php:793
425
  msgid "Visible"
426
  msgstr ""
427
 
428
- #: contact_form.php:794
429
  msgid "Disabled for editing"
430
  msgstr ""
431
 
432
- #: contact_form.php:795
433
  msgid "Field's default value"
434
  msgstr ""
435
 
436
- #: contact_form.php:800
437
- #: contact_form.php:1121
438
- #: contact_form.php:1841
439
- #: contact_form.php:1871
440
  msgid "Name"
441
  msgstr "Nome"
442
 
443
- #: contact_form.php:808
444
- #: contact_form.php:1126
445
- #: contact_form.php:1845
446
- #: contact_form.php:1873
447
  #, fuzzy
448
  msgid "Address"
449
  msgstr "Indirizzo e-mail"
450
 
451
- #: contact_form.php:816
452
  msgid "Email Address"
453
  msgstr "Indirizzo e-mail"
454
 
455
- #: contact_form.php:824
456
  #, fuzzy
457
  msgid "Phone number"
458
  msgstr "Numero di telefono:"
459
 
460
- #: contact_form.php:832
461
- #: contact_form.php:1141
462
- #: contact_form.php:1855
463
- #: contact_form.php:1877
464
  msgid "Subject"
465
  msgstr "Oggetto"
466
 
467
- #: contact_form.php:840
468
- #: contact_form.php:1145
469
- #: contact_form.php:1858
470
- #: contact_form.php:1878
471
  msgid "Message"
472
  msgstr "Messaggio"
473
 
474
- #: contact_form.php:858
475
  #, fuzzy
476
  msgid "Attachment block"
477
  msgstr "Visualizza l'attachment"
478
 
479
- #: contact_form.php:860
480
  msgid "Users can attach the following file formats"
481
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
482
 
483
- #: contact_form.php:874
484
  msgid "Add to the form"
485
  msgstr ""
486
 
487
- #: contact_form.php:879
488
  #, fuzzy
489
  msgid "Tips below the Attachment"
490
  msgstr "Visualizza suggeriementi sotto il blocco Allegato"
491
 
492
- #: contact_form.php:888
493
  #, fuzzy
494
  msgid "'Send me a copy' block"
495
  msgstr "Visualizza il blocco \"Inviami una copia\" "
496
 
497
- #: contact_form.php:901
498
- #: contact_form.php:904
499
- #: contact_form.php:908
500
- #: contact_form.php:1155
501
  msgid "Captcha"
502
  msgstr ""
503
 
504
- #: contact_form.php:904
505
  #, fuzzy
506
  msgid "Activate captcha"
507
  msgstr "Plugin attivati"
508
 
509
- #: contact_form.php:908
510
  #, fuzzy
511
  msgid "Download captcha"
512
  msgstr "Download"
513
 
514
- #: contact_form.php:916
515
  msgid "Agreement checkbox"
516
  msgstr ""
517
 
518
- #: contact_form.php:916
519
  msgid "Required checkbox for submitting the form"
520
  msgstr ""
521
 
522
- #: contact_form.php:917
523
  msgid "Optional checkbox"
524
  msgstr ""
525
 
526
- #: contact_form.php:917
527
  msgid "Optional checkbox, the results of which will be displayed in email"
528
  msgstr ""
529
 
530
- #: contact_form.php:928
531
  msgid "Delete an attachment file from the server after the email is sent"
532
  msgstr ""
533
 
534
- #: contact_form.php:934
535
  msgid "Email in HTML format sending"
536
  msgstr ""
537
 
538
- #: contact_form.php:938
539
  msgid "Display additional info in the email"
540
  msgstr "Visualizza informazioni aggiuntive nella e-mail"
541
 
542
- #: contact_form.php:943
543
- #: contact_form.php:1808
544
- #: contact_form.php:1810
545
  msgid "Sent from (ip address)"
546
  msgstr "Inviato da (indirizzi IP)"
547
 
548
- #: contact_form.php:943
549
  #, fuzzy
550
  msgid "Example: Sent from (IP address):\t127.0.0.1"
551
  msgstr "Inviato da (indirizzi IP)"
552
 
553
- #: contact_form.php:944
554
- #: contact_form.php:1814
555
- #: contact_form.php:1816
556
  msgid "Date/Time"
557
  msgstr "Data/Ora"
558
 
559
- #: contact_form.php:944
560
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
561
  msgstr ""
562
 
563
- #: contact_form.php:945
564
- #: contact_form.php:1820
565
- #: contact_form.php:1822
566
  msgid "Sent from (referer)"
567
  msgstr "Da (referente)"
568
 
569
- #: contact_form.php:945
570
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
571
  msgstr ""
572
 
573
- #: contact_form.php:946
574
- #: contact_form.php:1826
575
- #: contact_form.php:1828
576
  msgid "Using (user agent)"
577
  msgstr "Utilizza (user agent)"
578
 
579
- #: contact_form.php:946
580
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
581
  msgstr ""
582
 
583
- #: contact_form.php:950
584
  msgid "Language settings for the field names in the form"
585
  msgstr "Impostazione della lingua per i nomi dei campi del form"
586
 
587
- #: contact_form.php:959
588
  msgid "Add a language"
589
  msgstr "Aggiungi un linguaggio"
590
 
591
- #: contact_form.php:963
592
  msgid "Change the names of the contact form fields and error messages"
593
  msgstr "Modifica le etichette dei campi del contact form"
594
 
595
- #: contact_form.php:968
596
- #: contact_form.php:1041
597
  msgid "English"
598
  msgstr "Inglese"
599
 
600
- #: contact_form.php:976
601
- #: contact_form.php:1006
602
  msgid "click to expand/hide the list"
603
  msgstr ""
604
 
605
- #: contact_form.php:985
606
- #: contact_form.php:1015
607
  #, fuzzy
608
  msgid "Tips below the Attachment block"
609
  msgstr "Visualizza suggeriementi sotto il blocco Allegato"
610
 
611
- #: contact_form.php:988
612
- #: contact_form.php:1018
613
  msgid "Error message for the Name field"
614
  msgstr "Messaggio d'errore per il campo Nome"
615
 
616
- #: contact_form.php:989
617
- #: contact_form.php:1019
618
  #, fuzzy
619
  msgid "Error message for the Address field"
620
  msgstr "Messaggio d'errore per il campo Testo del Messaggio"
621
 
622
- #: contact_form.php:990
623
- #: contact_form.php:1020
624
  msgid "Error message for the Email field"
625
  msgstr "Messaggio d'errore per il campo e-mail"
626
 
627
- #: contact_form.php:991
628
- #: contact_form.php:1021
629
  msgid "Error message for the Phone field"
630
  msgstr "Messaggio d'errore per il campo Telefono"
631
 
632
- #: contact_form.php:992
633
- #: contact_form.php:1022
634
  msgid "Error message for the Subject field"
635
  msgstr "Messaggio d'errore per il campo Soggetto"
636
 
637
- #: contact_form.php:993
638
- #: contact_form.php:1023
639
  msgid "Error message for the Message field"
640
  msgstr "Messaggio d'errore per il campo Testo del Messaggio"
641
 
642
- #: contact_form.php:994
643
- #: contact_form.php:1024
644
  #, fuzzy
645
  msgid "Error message about the file type for the Attachment field"
646
  msgstr "Messaggio d'errore per il campo Allegato"
647
 
648
- #: contact_form.php:995
649
- #: contact_form.php:1025
650
  #, fuzzy
651
  msgid "Error message while uploading a file for the Attachment field to the server"
652
  msgstr "Messaggio d'errore per il campo Allegato"
653
 
654
- #: contact_form.php:996
655
- #: contact_form.php:1026
656
  #, fuzzy
657
  msgid "Error message while moving the file for the Attachment field"
658
  msgstr "Messaggio d'errore per il campo Allegato"
659
 
660
- #: contact_form.php:997
661
- #: contact_form.php:1027
662
  #, fuzzy
663
  msgid "Error message when file size limit for the Attachment field is exceeded"
664
  msgstr "Messaggio d'errore per il campo Allegato"
665
 
666
- #: contact_form.php:998
667
- #: contact_form.php:1028
668
  msgid "Error message for the Captcha field"
669
  msgstr "Messaggio d'errore per il campo Captcha"
670
 
671
- #: contact_form.php:999
672
- #: contact_form.php:1029
673
  msgid "Error message for the whole form"
674
  msgstr "Messaggio d'errore per l'intero modulo"
675
 
676
- #: contact_form.php:1001
677
- #: contact_form.php:1031
678
- #: contact_form.php:1050
679
- #: contact_form.php:1056
 
 
 
 
680
  msgid "Use shortcode"
681
  msgstr "usa lo shortcode"
682
 
683
- #: contact_form.php:1001
684
- #: contact_form.php:1031
685
- #: contact_form.php:1050
686
- #: contact_form.php:1056
 
 
 
 
687
  msgid "for this language"
688
  msgstr "per questa lingua"
689
 
690
- #: contact_form.php:1038
691
  msgid "Action after email is sent"
692
  msgstr "Azione successiva all'invio dell'e-mail"
693
 
694
- #: contact_form.php:1040
695
  msgid "Display text"
696
  msgstr "Visualizza il testo"
697
 
698
- #: contact_form.php:1049
699
- #: contact_form.php:1055
700
  msgid "Text"
701
  msgstr "Testo"
702
 
703
- #: contact_form.php:1062
704
  msgid "Redirect to the page"
705
  msgstr "Reindirizza alla pagina"
706
 
707
- #: contact_form.php:1063
708
  msgid "Url"
709
  msgstr "Url"
710
 
711
- #: contact_form.php:1067
712
  msgid "The $_SERVER variable that is used to build a URL of the form"
713
  msgstr ""
714
 
715
- #: contact_form.php:1071
716
  msgid "If you are not sure whether to change this setting or not, please do not do that."
717
  msgstr ""
718
 
719
- #: contact_form.php:1077
720
- #: contact_form.php:1252
721
  msgid "Save Changes"
722
  msgstr "Salva le modifiche"
723
 
724
- #: contact_form.php:1082
725
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
726
  msgstr ""
727
 
728
- #: contact_form.php:1083
729
  #, fuzzy
730
  msgid "Rate the plugin"
731
  msgstr "Plugin raccomandati"
732
 
733
- #: contact_form.php:1086
734
  #, fuzzy
735
  msgid "If there is something wrong about it, please contact us"
736
  msgstr "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
737
 
738
- #: contact_form.php:1101
739
  msgid "Errors output"
740
  msgstr ""
741
 
742
- #: contact_form.php:1104
743
  msgid "Display error messages"
744
  msgstr ""
745
 
746
- #: contact_form.php:1105
747
  msgid "Color of the input field errors."
748
  msgstr ""
749
 
750
- #: contact_form.php:1106
751
  #, fuzzy
752
  msgid "Display error messages & color of the input field errors"
753
  msgstr "Messaggio d'errore per il campo Soggetto"
754
 
755
- #: contact_form.php:1111
756
  msgid "Add placeholder to the input blocks"
757
  msgstr ""
758
 
759
- #: contact_form.php:1117
760
  #, fuzzy
761
  msgid "Add tooltips"
762
  msgstr "Impostazioni aggiuntive"
763
 
764
- #: contact_form.php:1131
765
  #, fuzzy
766
  msgid "Email address"
767
  msgstr "Indirizzo e-mail"
768
 
769
- #: contact_form.php:1136
770
  #, fuzzy
771
  msgid "Phone Number"
772
  msgstr "Numero di telefono:"
773
 
774
- #: contact_form.php:1150
775
  #, fuzzy
776
  msgid "Attachment"
777
  msgstr "Attachment:"
778
 
779
- #: contact_form.php:1155
780
  msgid "(powered by bestwebsoft.com)"
781
  msgstr ""
782
 
783
- #: contact_form.php:1160
784
  #, fuzzy
785
  msgid "Style options"
786
  msgstr "Impostazioni aggiuntive"
787
 
788
- #: contact_form.php:1163
789
  msgid "Text color"
790
  msgstr ""
791
 
792
- #: contact_form.php:1166
793
- #: contact_form.php:1171
794
- #: contact_form.php:1181
795
- #: contact_form.php:1186
796
- #: contact_form.php:1191
797
- #: contact_form.php:1196
798
- #: contact_form.php:1206
799
- #: contact_form.php:1211
800
- #: contact_form.php:1217
801
- #: contact_form.php:1228
802
- #: contact_form.php:1233
803
- #: contact_form.php:1238
804
  msgid "Default"
805
  msgstr ""
806
 
807
- #: contact_form.php:1168
808
  msgid "Label text color"
809
  msgstr ""
810
 
811
- #: contact_form.php:1173
812
  msgid "Placeholder color"
813
  msgstr ""
814
 
815
- #: contact_form.php:1178
816
  msgid "Errors color"
817
  msgstr ""
818
 
819
- #: contact_form.php:1183
820
  msgid "Error text color"
821
  msgstr ""
822
 
823
- #: contact_form.php:1188
824
  msgid "Background color of the input field errors"
825
  msgstr ""
826
 
827
- #: contact_form.php:1193
828
  msgid "Border color of the input field errors"
829
  msgstr ""
830
 
831
- #: contact_form.php:1198
832
  msgid "Placeholder color of the input field errors"
833
  msgstr ""
834
 
835
- #: contact_form.php:1203
836
  #, fuzzy
837
  msgid "Input fields"
838
  msgstr "Visualizza il testo"
839
 
840
- #: contact_form.php:1208
841
  msgid "Input fields background color"
842
  msgstr ""
843
 
844
- #: contact_form.php:1213
845
  msgid "Text fields color"
846
  msgstr ""
847
 
848
- #: contact_form.php:1215
849
  msgid "Border width in px, numbers only"
850
  msgstr ""
851
 
852
- #: contact_form.php:1219
853
- #: contact_form.php:1240
854
  msgid "Border color"
855
  msgstr ""
856
 
857
- #: contact_form.php:1224
858
  #, fuzzy
859
  msgid "Submit button"
860
  msgstr "Invia"
861
 
862
- #: contact_form.php:1226
863
  msgid "Width in px, numbers only"
864
  msgstr ""
865
 
866
- #: contact_form.php:1230
867
  msgid "Button color"
868
  msgstr ""
869
 
870
- #: contact_form.php:1235
871
  msgid "Button text color"
872
  msgstr ""
873
 
874
- #: contact_form.php:1256
875
  #, fuzzy
876
  msgid "Contact Form Pro | Preview"
877
  msgstr "Contact Form"
878
 
879
- #: contact_form.php:1259
880
  msgid "Show with errors"
881
  msgstr ""
882
 
883
- #: contact_form.php:1267
884
- #: contact_form.php:1269
885
  msgid "Please enter your full name..."
886
  msgstr ""
887
 
888
- #: contact_form.php:1280
889
- #: contact_form.php:1282
890
  msgid "Please enter your address..."
891
  msgstr ""
892
 
893
- #: contact_form.php:1291
894
- #: contact_form.php:1293
895
  #, fuzzy
896
  msgid "Please enter your email address..."
897
  msgstr "Utilizza questa e-mail:"
898
 
899
- #: contact_form.php:1302
900
- #: contact_form.php:1304
901
  msgid "Please enter your phone number..."
902
  msgstr ""
903
 
904
- #: contact_form.php:1313
905
- #: contact_form.php:1315
906
  msgid "Please enter subject..."
907
  msgstr ""
908
 
909
- #: contact_form.php:1323
910
- #: contact_form.php:1325
911
  msgid "Please enter your message..."
912
  msgstr ""
913
 
914
- #: contact_form.php:1367
915
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
916
  msgstr ""
917
 
918
- #: contact_form.php:1369
919
  msgid "Please, go to"
920
  msgstr ""
921
 
922
- #: contact_form.php:1369
923
  #, fuzzy
924
  msgid "the setting page"
925
  msgstr "Settaggi"
926
 
927
- #: contact_form.php:1370
928
  msgid "You will be redirected automatically in 5 seconds."
929
  msgstr ""
930
 
931
- #: contact_form.php:1375
932
  msgid "You can download and activate"
933
  msgstr ""
934
 
935
- #: contact_form.php:1377
936
  msgid "version of this plugin by entering Your license key."
937
  msgstr ""
938
 
939
- #: contact_form.php:1379
940
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
941
  msgstr ""
942
 
943
- #: contact_form.php:1381
944
  msgid "(your username is the email you specify when purchasing the product)."
945
  msgstr ""
946
 
947
- #: contact_form.php:1389
948
- #: contact_form.php:1399
949
  msgid "Go!"
950
  msgstr ""
951
 
952
- #: contact_form.php:1449
953
  msgid "Sorry, email message could not be delivered."
954
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
955
 
956
- #: contact_form.php:1835
957
  msgid "Contact from"
958
  msgstr "Contact from"
959
 
960
- #: contact_form.php:1848
961
- #: contact_form.php:1874
962
  msgid "Email"
963
  msgstr "e-mail"
964
 
965
- #: contact_form.php:1852
966
- #: contact_form.php:1876
967
  msgid "Phone"
968
  msgstr "Telefono"
969
 
970
- #: contact_form.php:1861
971
- #: contact_form.php:1879
972
  msgid "Site"
973
  msgstr "Sito"
974
 
975
- #: contact_form.php:1941
976
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
977
  msgstr "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
978
 
979
- #: contact_form.php:2009
980
  msgid "FAQ"
981
  msgstr "FAQ"
982
 
983
- #: contact_form.php:2010
984
  msgid "Support"
985
  msgstr "Supporto"
986
 
987
- #: contact_form.php:2068
988
  msgid "Are you sure that you want to delete this language data?"
989
  msgstr "Sei sicuro di voler cancellare questo linguaggio?"
990
 
991
- #: contact_form.php:2223
992
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
993
  msgstr ""
994
 
995
- #: contact_form.php:2224
996
  msgid "Extend standard plugin functionality with new great options."
997
  msgstr ""
998
 
999
- #: contact_form.php:2233
1000
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1001
  msgstr ""
1002
 
1003
- #: contact_form.php:2234
1004
  msgid "Manage messages that have been sent from your website."
1005
  msgstr ""
1006
 
 
 
 
 
1007
  #, fuzzy
1008
  #~ msgid "Contact Form Pro Extra Settings"
1009
  #~ msgstr "Opzioni Contact Form"
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:38+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:38+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Ilian Gagliardi <ilian@ultra-violet.it>\n"
9
  "Language: it_IT\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Opzioni Contact Form"
24
 
25
+ #: contact_form.php:73
26
  msgid "Contact Form"
27
  msgstr "Contact Form"
28
 
29
+ #: contact_form.php:149
30
+ #: contact_form.php:1131
31
+ #: contact_form.php:1165
32
  msgid "Name:"
33
  msgstr "Nome:"
34
 
35
+ #: contact_form.php:150
36
+ #: contact_form.php:1132
37
+ #: contact_form.php:1166
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "Indirizzo e-mail:"
41
 
42
+ #: contact_form.php:151
43
+ #: contact_form.php:1133
44
+ #: contact_form.php:1167
45
  msgid "Email Address:"
46
  msgstr "Indirizzo e-mail:"
47
 
48
+ #: contact_form.php:152
49
+ #: contact_form.php:1134
50
+ #: contact_form.php:1168
51
  msgid "Phone number:"
52
  msgstr "Numero di telefono:"
53
 
54
+ #: contact_form.php:153
55
+ #: contact_form.php:1135
56
+ #: contact_form.php:1169
57
  msgid "Subject:"
58
  msgstr "Oggetto:"
59
 
60
+ #: contact_form.php:154
61
+ #: contact_form.php:1136
62
+ #: contact_form.php:1170
63
  msgid "Message:"
64
  msgstr "Messaggio:"
65
 
66
+ #: contact_form.php:155
67
+ #: contact_form.php:1137
68
+ #: contact_form.php:1171
69
  msgid "Attachment:"
70
  msgstr "Attachment:"
71
 
72
+ #: contact_form.php:156
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
+ #: contact_form.php:157
77
+ #: contact_form.php:1139
78
+ #: contact_form.php:1173
79
  msgid "Send me a copy"
80
  msgstr "Inviami una copia"
81
 
82
+ #: contact_form.php:158
83
+ #: contact_form.php:1140
84
+ #: contact_form.php:1174
85
  msgid "Submit"
86
  msgstr "Invia"
87
 
88
+ #: contact_form.php:159
89
  msgid "Your name is required."
90
  msgstr "Il nome è obbligatorio"
91
 
92
+ #: contact_form.php:160
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "È richiesto un indirizzo e-mail valido."
96
 
97
+ #: contact_form.php:161
98
  msgid "A valid email address is required."
99
  msgstr "È richiesto un indirizzo e-mail valido."
100
 
101
+ #: contact_form.php:162
102
  msgid "Phone number is required."
103
  msgstr "Il numero di telefono è obbligatorio"
104
 
105
+ #: contact_form.php:163
106
  msgid "Subject is required."
107
  msgstr "L'oggetto è obbligatorio"
108
 
109
+ #: contact_form.php:164
110
  msgid "Message text is required."
111
  msgstr "Il campo messaggio è obbligatorio"
112
 
113
+ #: contact_form.php:165
114
  msgid "File format is not valid."
115
  msgstr "L'attachment non è corretto"
116
 
117
+ #: contact_form.php:166
118
  msgid "File upload error."
119
  msgstr ""
120
 
121
+ #: contact_form.php:167
122
  msgid "The file could not be uploaded."
123
  msgstr ""
124
 
125
+ #: contact_form.php:168
126
  msgid "This file is too large."
127
  msgstr ""
128
 
129
+ #: contact_form.php:169
130
  msgid "Please fill out the CAPTCHA."
131
  msgstr "Completa il CAPTCHA"
132
 
133
+ #: contact_form.php:170
134
  msgid "Please make corrections below and try again."
135
  msgstr "Controlla i dati del modulo e riprova!"
136
 
137
+ #: contact_form.php:172
138
  msgid "Thank you for contacting us."
139
  msgstr "Grazie per averci contattato."
140
 
141
+ #: contact_form.php:322
142
  #, fuzzy
143
  msgid "requires"
144
  msgstr "Campi richiesti"
145
 
146
+ #: contact_form.php:322
147
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
148
  msgstr ""
149
 
150
+ #: contact_form.php:322
151
  msgid "Back to the WordPress"
152
  msgstr ""
153
 
154
+ #: contact_form.php:322
155
  #, fuzzy
156
  msgid "Plugins page"
157
  msgstr "BWS Plugins"
158
 
159
+ #: contact_form.php:626
160
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
161
  msgstr "se l'opzione 'Reindirizza a pagina' è impostata, allora il campo URL deve essere nel seguente formato"
162
 
163
+ #: contact_form.php:635
164
  msgid "Such user does not exist. Settings are not saved."
165
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
166
 
167
+ #: contact_form.php:639
168
+ #: contact_form.php:645
169
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
170
  msgstr "Perfavore inserisci una e-mail corretta nel campo 'DA'. Opzioni non salvate."
171
 
172
+ #: contact_form.php:661
173
  #, fuzzy
174
  msgid "Settings saved."
175
  msgstr "Opzioni salvate."
176
 
177
+ #: contact_form.php:688
178
+ #: contact_form.php:720
179
  msgid "Wrong license key"
180
  msgstr ""
181
 
182
+ #: contact_form.php:713
183
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
184
  msgstr ""
185
 
186
+ #: contact_form.php:722
187
  msgid "This license key is bind to another site"
188
  msgstr ""
189
 
190
+ #: contact_form.php:724
191
+ #: contact_form.php:1570
192
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
193
  msgstr ""
194
 
195
+ #: contact_form.php:741
196
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
+ #: contact_form.php:747
200
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
201
  msgstr ""
202
 
203
+ #: contact_form.php:751
204
+ #: contact_form.php:760
205
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
206
  msgstr ""
207
 
208
+ #: contact_form.php:764
209
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
210
  msgstr ""
211
 
212
+ #: contact_form.php:779
213
  #, fuzzy
214
  msgid "Please, enter Your license key"
215
  msgstr "Utilizza questa e-mail:"
216
 
217
+ #: contact_form.php:787
218
+ #: contact_form.php:2216
219
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
220
  msgid "Settings"
221
  msgstr "Settaggi"
222
 
223
+ #: contact_form.php:788
224
  #, fuzzy
225
  msgid "Extra settings"
226
  msgstr "Settaggi"
227
 
228
+ #: contact_form.php:789
229
  msgid "Go PRO"
230
  msgstr ""
231
 
232
+ #: contact_form.php:792
233
+ msgid "Notice:"
234
+ msgstr ""
235
+
236
+ #: contact_form.php:792
237
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
238
+ msgstr ""
239
+
240
+ #: contact_form.php:798
241
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
242
+ msgstr ""
243
+
244
+ #: contact_form.php:804
245
+ #: contact_form.php:809
246
+ #: contact_form.php:1529
247
  msgid "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:"
248
  msgstr "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine o widget:"
249
 
250
+ #: contact_form.php:804
251
+ #: contact_form.php:805
252
+ #: contact_form.php:809
253
+ #: contact_form.php:810
254
+ #: contact_form.php:1155
255
+ #: contact_form.php:1157
256
+ #: contact_form.php:1212
257
+ #: contact_form.php:1214
258
  msgid "or"
259
  msgstr ""
260
 
261
+ #: contact_form.php:805
262
+ #: contact_form.php:810
263
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
264
  msgstr ""
265
 
266
+ #: contact_form.php:806
267
+ #: contact_form.php:811
268
  msgid "They work the same way."
269
  msgstr ""
270
 
271
+ #: contact_form.php:807
272
+ #: contact_form.php:812
273
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
274
  msgstr "Se le informazioni nei campi sottostanti sono vuote allora il messaggio sarà inviato ad un indirizzo che è stato specificato durante la fase di registrazione. "
275
 
276
+ #: contact_form.php:817
277
  msgid "The user's email address:"
278
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
279
 
280
+ #: contact_form.php:821
281
  msgid "Create a username"
282
  msgstr "Seleziona nome utente"
283
 
284
+ #: contact_form.php:828
285
  msgid "Enter a username of the person who should get the messages from the contact form."
286
  msgstr "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
287
 
288
+ #: contact_form.php:832
289
  msgid "Use this email address:"
290
  msgstr "Utilizza questa e-mail:"
291
 
292
+ #: contact_form.php:835
293
  msgid "Enter the email address you want the messages forwarded to."
294
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
295
 
296
+ #: contact_form.php:844
297
  msgid "Add department selectbox to the contact form:"
298
  msgstr ""
299
 
300
+ #: contact_form.php:852
301
+ #: contact_form.php:1412
302
  msgid "If you upgrade to Pro version all your settings will be saved."
303
  msgstr ""
304
 
305
+ #: contact_form.php:859
306
+ #: contact_form.php:997
307
+ #: contact_form.php:1071
308
+ #: contact_form.php:1419
309
+ msgid "Unlock premium options by upgrading to a PRO version."
310
  msgstr ""
311
 
312
+ #: contact_form.php:860
313
+ #: contact_form.php:998
314
+ #: contact_form.php:1072
315
+ #: contact_form.php:1420
316
+ #: contact_form.php:2473
317
+ #: contact_form.php:2489
318
+ msgid "Learn More"
319
+ msgstr ""
320
 
321
+ #: contact_form.php:863
322
+ #: contact_form.php:1001
323
+ #: contact_form.php:1075
324
+ #: contact_form.php:1423
325
+ msgid "Go"
326
+ msgstr ""
327
+
328
+ #: contact_form.php:870
329
  msgid "Save emails to the database"
330
  msgstr ""
331
 
332
+ #: contact_form.php:876
333
  msgid "Using"
334
  msgstr ""
335
 
336
+ #: contact_form.php:876
337
+ #: contact_form.php:1048
338
+ #: contact_form.php:1051
339
+ #: contact_form.php:1055
340
  msgid "powered by"
341
  msgstr ""
342
 
343
+ #: contact_form.php:879
344
+ #: contact_form.php:883
345
  msgid "Using Contact Form to DB powered by"
346
  msgstr ""
347
 
348
+ #: contact_form.php:879
349
  #, fuzzy
350
  msgid "Activate Contact Form to DB"
351
  msgstr "Contact Form"
352
 
353
+ #: contact_form.php:883
354
  #, fuzzy
355
  msgid "Download Contact Form to DB"
356
  msgstr "Contact Form"
357
 
358
+ #: contact_form.php:888
359
  msgid "Additional options"
360
  msgstr "Impostazioni aggiuntive"
361
 
362
+ #: contact_form.php:890
363
  msgid "Show"
364
  msgstr ""
365
 
366
+ #: contact_form.php:891
367
  msgid "Hide"
368
  msgstr ""
369
 
370
+ #: contact_form.php:895
371
  msgid "What to use?"
372
  msgstr "Cosa utilizzare?"
373
 
374
+ #: contact_form.php:898
375
  msgid "Wp-mail"
376
  msgstr "Wp-mail"
377
 
378
+ #: contact_form.php:898
379
  msgid "You can use the wp_mail function for mailing"
380
  msgstr "Per inviare e-mail puoi utilizzare la funzione wp_mail"
381
 
382
+ #: contact_form.php:900
383
  msgid "Mail"
384
  msgstr "Mail"
385
 
386
+ #: contact_form.php:900
387
  msgid "To send mail you can use the php mail function"
388
  msgstr "Per inviare e-mail puoi utilizzare la funzione mail di php"
389
 
390
+ #: contact_form.php:904
391
  #, fuzzy
392
  msgid "The text in the 'From' field"
393
  msgstr "Modifica il contenuto del campo 'DA'"
394
 
395
+ #: contact_form.php:906
396
  msgid "User name"
397
  msgstr ""
398
 
399
+ #: contact_form.php:907
400
  #, fuzzy
401
  msgid "The name of the user who fills the form will be used in the field 'From'."
402
  msgstr "L'indirizzo e-mail dell'utente che compila il form verrà usato nel campo 'DA'"
403
 
404
+ #: contact_form.php:910
405
  #, fuzzy
406
  msgid "This text will be used in the 'FROM' field"
407
  msgstr "Questo indirizzo e-mail verrà utilizzato nel campo 'DA'"
408
 
409
+ #: contact_form.php:914
410
  #, fuzzy
411
  msgid "The email address in the 'From' field"
412
  msgstr "Inserisci l'indirizzo e-mail nel campo 'DA'"
413
 
414
+ #: contact_form.php:916
415
  msgid "User email"
416
  msgstr ""
417
 
418
+ #: contact_form.php:917
419
  msgid "The email address of the user who fills the form will be used in the field 'From'."
420
  msgstr "L'indirizzo e-mail dell'utente che compila il form verrà usato nel campo 'DA'"
421
 
422
+ #: contact_form.php:920
423
  msgid "This email address will be used in the 'From' field."
424
  msgstr "Questo indirizzo e-mail verrà utilizzato nel campo 'DA'"
425
 
426
+ #: contact_form.php:924
427
  #, fuzzy
428
  msgid "Required symbol"
429
  msgstr "Campi richiesti"
430
 
431
+ #: contact_form.php:934
432
  msgid "Fields"
433
  msgstr ""
434
 
435
+ #: contact_form.php:935
436
  msgid "Used"
437
  msgstr ""
438
 
439
+ #: contact_form.php:936
440
  #, fuzzy
441
  msgid "Required"
442
  msgstr "Campi richiesti"
443
 
444
+ #: contact_form.php:937
445
  msgid "Visible"
446
  msgstr ""
447
 
448
+ #: contact_form.php:938
449
  msgid "Disabled for editing"
450
  msgstr ""
451
 
452
+ #: contact_form.php:939
453
  msgid "Field's default value"
454
  msgstr ""
455
 
456
+ #: contact_form.php:944
457
+ #: contact_form.php:1287
458
+ #: contact_form.php:2059
459
+ #: contact_form.php:2089
460
  msgid "Name"
461
  msgstr "Nome"
462
 
463
+ #: contact_form.php:952
464
+ #: contact_form.php:1292
465
+ #: contact_form.php:2063
466
+ #: contact_form.php:2091
467
  #, fuzzy
468
  msgid "Address"
469
  msgstr "Indirizzo e-mail"
470
 
471
+ #: contact_form.php:960
472
  msgid "Email Address"
473
  msgstr "Indirizzo e-mail"
474
 
475
+ #: contact_form.php:968
476
  #, fuzzy
477
  msgid "Phone number"
478
  msgstr "Numero di telefono:"
479
 
480
+ #: contact_form.php:976
481
+ #: contact_form.php:1307
482
+ #: contact_form.php:2073
483
+ #: contact_form.php:2095
484
  msgid "Subject"
485
  msgstr "Oggetto"
486
 
487
+ #: contact_form.php:984
488
+ #: contact_form.php:1311
489
+ #: contact_form.php:2076
490
+ #: contact_form.php:2096
491
  msgid "Message"
492
  msgstr "Messaggio"
493
 
494
+ #: contact_form.php:1008
495
  #, fuzzy
496
  msgid "Attachment block"
497
  msgstr "Visualizza l'attachment"
498
 
499
+ #: contact_form.php:1010
500
  msgid "Users can attach the following file formats"
501
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
502
 
503
+ #: contact_form.php:1023
504
  msgid "Add to the form"
505
  msgstr ""
506
 
507
+ #: contact_form.php:1028
508
  #, fuzzy
509
  msgid "Tips below the Attachment"
510
  msgstr "Visualizza suggeriementi sotto il blocco Allegato"
511
 
512
+ #: contact_form.php:1037
513
  #, fuzzy
514
  msgid "'Send me a copy' block"
515
  msgstr "Visualizza il blocco \"Inviami una copia\" "
516
 
517
+ #: contact_form.php:1048
518
+ #: contact_form.php:1051
519
+ #: contact_form.php:1055
520
+ #: contact_form.php:1321
521
  msgid "Captcha"
522
  msgstr ""
523
 
524
+ #: contact_form.php:1051
525
  #, fuzzy
526
  msgid "Activate captcha"
527
  msgstr "Plugin attivati"
528
 
529
+ #: contact_form.php:1055
530
  #, fuzzy
531
  msgid "Download captcha"
532
  msgstr "Download"
533
 
534
+ #: contact_form.php:1063
535
  msgid "Agreement checkbox"
536
  msgstr ""
537
 
538
+ #: contact_form.php:1063
539
  msgid "Required checkbox for submitting the form"
540
  msgstr ""
541
 
542
+ #: contact_form.php:1064
543
  msgid "Optional checkbox"
544
  msgstr ""
545
 
546
+ #: contact_form.php:1064
547
  msgid "Optional checkbox, the results of which will be displayed in email"
548
  msgstr ""
549
 
550
+ #: contact_form.php:1081
551
  msgid "Delete an attachment file from the server after the email is sent"
552
  msgstr ""
553
 
554
+ #: contact_form.php:1087
555
  msgid "Email in HTML format sending"
556
  msgstr ""
557
 
558
+ #: contact_form.php:1091
559
  msgid "Display additional info in the email"
560
  msgstr "Visualizza informazioni aggiuntive nella e-mail"
561
 
562
+ #: contact_form.php:1096
563
+ #: contact_form.php:2026
564
+ #: contact_form.php:2028
565
  msgid "Sent from (ip address)"
566
  msgstr "Inviato da (indirizzi IP)"
567
 
568
+ #: contact_form.php:1096
569
  #, fuzzy
570
  msgid "Example: Sent from (IP address):\t127.0.0.1"
571
  msgstr "Inviato da (indirizzi IP)"
572
 
573
+ #: contact_form.php:1097
574
+ #: contact_form.php:2032
575
+ #: contact_form.php:2034
576
  msgid "Date/Time"
577
  msgstr "Data/Ora"
578
 
579
+ #: contact_form.php:1097
580
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
581
  msgstr ""
582
 
583
+ #: contact_form.php:1098
584
+ #: contact_form.php:2038
585
+ #: contact_form.php:2040
586
  msgid "Sent from (referer)"
587
  msgstr "Da (referente)"
588
 
589
+ #: contact_form.php:1098
590
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
591
  msgstr ""
592
 
593
+ #: contact_form.php:1099
594
+ #: contact_form.php:2044
595
+ #: contact_form.php:2046
596
  msgid "Using (user agent)"
597
  msgstr "Utilizza (user agent)"
598
 
599
+ #: contact_form.php:1099
600
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
601
  msgstr ""
602
 
603
+ #: contact_form.php:1103
604
  msgid "Language settings for the field names in the form"
605
  msgstr "Impostazione della lingua per i nomi dei campi del form"
606
 
607
+ #: contact_form.php:1112
608
  msgid "Add a language"
609
  msgstr "Aggiungi un linguaggio"
610
 
611
+ #: contact_form.php:1116
612
  msgid "Change the names of the contact form fields and error messages"
613
  msgstr "Modifica le etichette dei campi del contact form"
614
 
615
+ #: contact_form.php:1121
616
+ #: contact_form.php:1202
617
  msgid "English"
618
  msgstr "Inglese"
619
 
620
+ #: contact_form.php:1129
621
+ #: contact_form.php:1163
622
  msgid "click to expand/hide the list"
623
  msgstr ""
624
 
625
+ #: contact_form.php:1138
626
+ #: contact_form.php:1172
627
  #, fuzzy
628
  msgid "Tips below the Attachment block"
629
  msgstr "Visualizza suggeriementi sotto il blocco Allegato"
630
 
631
+ #: contact_form.php:1141
632
+ #: contact_form.php:1175
633
  msgid "Error message for the Name field"
634
  msgstr "Messaggio d'errore per il campo Nome"
635
 
636
+ #: contact_form.php:1142
637
+ #: contact_form.php:1176
638
  #, fuzzy
639
  msgid "Error message for the Address field"
640
  msgstr "Messaggio d'errore per il campo Testo del Messaggio"
641
 
642
+ #: contact_form.php:1143
643
+ #: contact_form.php:1177
644
  msgid "Error message for the Email field"
645
  msgstr "Messaggio d'errore per il campo e-mail"
646
 
647
+ #: contact_form.php:1144
648
+ #: contact_form.php:1178
649
  msgid "Error message for the Phone field"
650
  msgstr "Messaggio d'errore per il campo Telefono"
651
 
652
+ #: contact_form.php:1145
653
+ #: contact_form.php:1179
654
  msgid "Error message for the Subject field"
655
  msgstr "Messaggio d'errore per il campo Soggetto"
656
 
657
+ #: contact_form.php:1146
658
+ #: contact_form.php:1180
659
  msgid "Error message for the Message field"
660
  msgstr "Messaggio d'errore per il campo Testo del Messaggio"
661
 
662
+ #: contact_form.php:1147
663
+ #: contact_form.php:1181
664
  #, fuzzy
665
  msgid "Error message about the file type for the Attachment field"
666
  msgstr "Messaggio d'errore per il campo Allegato"
667
 
668
+ #: contact_form.php:1148
669
+ #: contact_form.php:1182
670
  #, fuzzy
671
  msgid "Error message while uploading a file for the Attachment field to the server"
672
  msgstr "Messaggio d'errore per il campo Allegato"
673
 
674
+ #: contact_form.php:1149
675
+ #: contact_form.php:1183
676
  #, fuzzy
677
  msgid "Error message while moving the file for the Attachment field"
678
  msgstr "Messaggio d'errore per il campo Allegato"
679
 
680
+ #: contact_form.php:1150
681
+ #: contact_form.php:1184
682
  #, fuzzy
683
  msgid "Error message when file size limit for the Attachment field is exceeded"
684
  msgstr "Messaggio d'errore per il campo Allegato"
685
 
686
+ #: contact_form.php:1151
687
+ #: contact_form.php:1185
688
  msgid "Error message for the Captcha field"
689
  msgstr "Messaggio d'errore per il campo Captcha"
690
 
691
+ #: contact_form.php:1152
692
+ #: contact_form.php:1186
693
  msgid "Error message for the whole form"
694
  msgstr "Messaggio d'errore per l'intero modulo"
695
 
696
+ #: contact_form.php:1155
697
+ #: contact_form.php:1157
698
+ #: contact_form.php:1189
699
+ #: contact_form.php:1191
700
+ #: contact_form.php:1212
701
+ #: contact_form.php:1214
702
+ #: contact_form.php:1222
703
+ #: contact_form.php:1224
704
  msgid "Use shortcode"
705
  msgstr "usa lo shortcode"
706
 
707
+ #: contact_form.php:1155
708
+ #: contact_form.php:1157
709
+ #: contact_form.php:1189
710
+ #: contact_form.php:1191
711
+ #: contact_form.php:1212
712
+ #: contact_form.php:1214
713
+ #: contact_form.php:1222
714
+ #: contact_form.php:1224
715
  msgid "for this language"
716
  msgstr "per questa lingua"
717
 
718
+ #: contact_form.php:1199
719
  msgid "Action after email is sent"
720
  msgstr "Azione successiva all'invio dell'e-mail"
721
 
722
+ #: contact_form.php:1201
723
  msgid "Display text"
724
  msgstr "Visualizza il testo"
725
 
726
+ #: contact_form.php:1210
727
+ #: contact_form.php:1220
728
  msgid "Text"
729
  msgstr "Testo"
730
 
731
+ #: contact_form.php:1231
732
  msgid "Redirect to the page"
733
  msgstr "Reindirizza alla pagina"
734
 
735
+ #: contact_form.php:1232
736
  msgid "Url"
737
  msgstr "Url"
738
 
739
+ #: contact_form.php:1236
740
  msgid "The $_SERVER variable that is used to build a URL of the form"
741
  msgstr ""
742
 
743
+ #: contact_form.php:1240
744
  msgid "If you are not sure whether to change this setting or not, please do not do that."
745
  msgstr ""
746
 
747
+ #: contact_form.php:1246
748
+ #: contact_form.php:1430
749
  msgid "Save Changes"
750
  msgstr "Salva le modifiche"
751
 
752
+ #: contact_form.php:1251
753
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
754
  msgstr ""
755
 
756
+ #: contact_form.php:1252
757
  #, fuzzy
758
  msgid "Rate the plugin"
759
  msgstr "Plugin raccomandati"
760
 
761
+ #: contact_form.php:1255
762
  #, fuzzy
763
  msgid "If there is something wrong about it, please contact us"
764
  msgstr "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
765
 
766
+ #: contact_form.php:1267
767
  msgid "Errors output"
768
  msgstr ""
769
 
770
+ #: contact_form.php:1270
771
  msgid "Display error messages"
772
  msgstr ""
773
 
774
+ #: contact_form.php:1271
775
  msgid "Color of the input field errors."
776
  msgstr ""
777
 
778
+ #: contact_form.php:1272
779
  #, fuzzy
780
  msgid "Display error messages & color of the input field errors"
781
  msgstr "Messaggio d'errore per il campo Soggetto"
782
 
783
+ #: contact_form.php:1277
784
  msgid "Add placeholder to the input blocks"
785
  msgstr ""
786
 
787
+ #: contact_form.php:1283
788
  #, fuzzy
789
  msgid "Add tooltips"
790
  msgstr "Impostazioni aggiuntive"
791
 
792
+ #: contact_form.php:1297
793
  #, fuzzy
794
  msgid "Email address"
795
  msgstr "Indirizzo e-mail"
796
 
797
+ #: contact_form.php:1302
798
  #, fuzzy
799
  msgid "Phone Number"
800
  msgstr "Numero di telefono:"
801
 
802
+ #: contact_form.php:1316
803
  #, fuzzy
804
  msgid "Attachment"
805
  msgstr "Attachment:"
806
 
807
+ #: contact_form.php:1321
808
  msgid "(powered by bestwebsoft.com)"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1326
812
  #, fuzzy
813
  msgid "Style options"
814
  msgstr "Impostazioni aggiuntive"
815
 
816
+ #: contact_form.php:1329
817
  msgid "Text color"
818
  msgstr ""
819
 
820
+ #: contact_form.php:1332
821
+ #: contact_form.php:1337
822
+ #: contact_form.php:1347
823
+ #: contact_form.php:1352
824
+ #: contact_form.php:1357
825
+ #: contact_form.php:1362
826
+ #: contact_form.php:1372
827
+ #: contact_form.php:1377
828
+ #: contact_form.php:1383
829
+ #: contact_form.php:1394
830
+ #: contact_form.php:1399
831
+ #: contact_form.php:1404
832
  msgid "Default"
833
  msgstr ""
834
 
835
+ #: contact_form.php:1334
836
  msgid "Label text color"
837
  msgstr ""
838
 
839
+ #: contact_form.php:1339
840
  msgid "Placeholder color"
841
  msgstr ""
842
 
843
+ #: contact_form.php:1344
844
  msgid "Errors color"
845
  msgstr ""
846
 
847
+ #: contact_form.php:1349
848
  msgid "Error text color"
849
  msgstr ""
850
 
851
+ #: contact_form.php:1354
852
  msgid "Background color of the input field errors"
853
  msgstr ""
854
 
855
+ #: contact_form.php:1359
856
  msgid "Border color of the input field errors"
857
  msgstr ""
858
 
859
+ #: contact_form.php:1364
860
  msgid "Placeholder color of the input field errors"
861
  msgstr ""
862
 
863
+ #: contact_form.php:1369
864
  #, fuzzy
865
  msgid "Input fields"
866
  msgstr "Visualizza il testo"
867
 
868
+ #: contact_form.php:1374
869
  msgid "Input fields background color"
870
  msgstr ""
871
 
872
+ #: contact_form.php:1379
873
  msgid "Text fields color"
874
  msgstr ""
875
 
876
+ #: contact_form.php:1381
877
  msgid "Border width in px, numbers only"
878
  msgstr ""
879
 
880
+ #: contact_form.php:1385
881
+ #: contact_form.php:1406
882
  msgid "Border color"
883
  msgstr ""
884
 
885
+ #: contact_form.php:1390
886
  #, fuzzy
887
  msgid "Submit button"
888
  msgstr "Invia"
889
 
890
+ #: contact_form.php:1392
891
  msgid "Width in px, numbers only"
892
  msgstr ""
893
 
894
+ #: contact_form.php:1396
895
  msgid "Button color"
896
  msgstr ""
897
 
898
+ #: contact_form.php:1401
899
  msgid "Button text color"
900
  msgstr ""
901
 
902
+ #: contact_form.php:1434
903
  #, fuzzy
904
  msgid "Contact Form Pro | Preview"
905
  msgstr "Contact Form"
906
 
907
+ #: contact_form.php:1437
908
  msgid "Show with errors"
909
  msgstr ""
910
 
911
+ #: contact_form.php:1445
912
+ #: contact_form.php:1447
913
  msgid "Please enter your full name..."
914
  msgstr ""
915
 
916
+ #: contact_form.php:1458
917
+ #: contact_form.php:1460
918
  msgid "Please enter your address..."
919
  msgstr ""
920
 
921
+ #: contact_form.php:1469
922
+ #: contact_form.php:1471
923
  #, fuzzy
924
  msgid "Please enter your email address..."
925
  msgstr "Utilizza questa e-mail:"
926
 
927
+ #: contact_form.php:1480
928
+ #: contact_form.php:1482
929
  msgid "Please enter your phone number..."
930
  msgstr ""
931
 
932
+ #: contact_form.php:1491
933
+ #: contact_form.php:1493
934
  msgid "Please enter subject..."
935
  msgstr ""
936
 
937
+ #: contact_form.php:1501
938
+ #: contact_form.php:1503
939
  msgid "Please enter your message..."
940
  msgstr ""
941
 
942
+ #: contact_form.php:1545
943
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
944
  msgstr ""
945
 
946
+ #: contact_form.php:1547
947
  msgid "Please, go to"
948
  msgstr ""
949
 
950
+ #: contact_form.php:1547
951
  #, fuzzy
952
  msgid "the setting page"
953
  msgstr "Settaggi"
954
 
955
+ #: contact_form.php:1548
956
  msgid "You will be redirected automatically in 5 seconds."
957
  msgstr ""
958
 
959
+ #: contact_form.php:1553
960
  msgid "You can download and activate"
961
  msgstr ""
962
 
963
+ #: contact_form.php:1555
964
  msgid "version of this plugin by entering Your license key."
965
  msgstr ""
966
 
967
+ #: contact_form.php:1557
968
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
969
  msgstr ""
970
 
971
+ #: contact_form.php:1559
972
  msgid "(your username is the email you specify when purchasing the product)."
973
  msgstr ""
974
 
975
+ #: contact_form.php:1567
976
+ #: contact_form.php:1577
977
  msgid "Go!"
978
  msgstr ""
979
 
980
+ #: contact_form.php:1647
981
  msgid "Sorry, email message could not be delivered."
982
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
983
 
984
+ #: contact_form.php:2053
985
  msgid "Contact from"
986
  msgstr "Contact from"
987
 
988
+ #: contact_form.php:2066
989
+ #: contact_form.php:2092
990
  msgid "Email"
991
  msgstr "e-mail"
992
 
993
+ #: contact_form.php:2070
994
+ #: contact_form.php:2094
995
  msgid "Phone"
996
  msgstr "Telefono"
997
 
998
+ #: contact_form.php:2079
999
+ #: contact_form.php:2097
1000
  msgid "Site"
1001
  msgstr "Sito"
1002
 
1003
+ #: contact_form.php:2160
1004
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
1005
  msgstr "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
1006
 
1007
+ #: contact_form.php:2229
1008
  msgid "FAQ"
1009
  msgstr "FAQ"
1010
 
1011
+ #: contact_form.php:2230
1012
  msgid "Support"
1013
  msgstr "Supporto"
1014
 
1015
+ #: contact_form.php:2280
1016
  msgid "Are you sure that you want to delete this language data?"
1017
  msgstr "Sei sicuro di voler cancellare questo linguaggio?"
1018
 
1019
+ #: contact_form.php:2476
1020
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
1021
  msgstr ""
1022
 
1023
+ #: contact_form.php:2477
1024
  msgid "Extend standard plugin functionality with new great options."
1025
  msgstr ""
1026
 
1027
+ #: contact_form.php:2492
1028
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1029
  msgstr ""
1030
 
1031
+ #: contact_form.php:2493
1032
  msgid "Manage messages that have been sent from your website."
1033
  msgstr ""
1034
 
1035
+ #, fuzzy
1036
+ #~ msgid "Contact Form Pro"
1037
+ #~ msgstr "Contact Form"
1038
+
1039
  #, fuzzy
1040
  #~ msgid "Contact Form Pro Extra Settings"
1041
  #~ msgstr "Opzioni Contact Form"
languages/contact_form-ja.mo CHANGED
Binary file
languages/contact_form-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: 2014-02-20 14:04+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
@@ -16,970 +16,1009 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  msgid "Contact Form Settings"
22
  msgstr "コンタクトフォーム設定"
23
 
24
- #: contact_form.php:33
25
  msgid "Contact Form"
26
  msgstr "コンタクトフォーム"
27
 
28
- #: contact_form.php:80
29
- #: contact_form.php:978
30
- #: contact_form.php:1008
31
  msgid "Name:"
32
  msgstr "名前:"
33
 
34
- #: contact_form.php:81
35
- #: contact_form.php:979
36
- #: contact_form.php:1009
37
  msgid "Address:"
38
  msgstr "住所:"
39
 
40
- #: contact_form.php:82
41
- #: contact_form.php:980
42
- #: contact_form.php:1010
43
  msgid "Email Address:"
44
  msgstr "Eメール:"
45
 
46
- #: contact_form.php:83
47
- #: contact_form.php:981
48
- #: contact_form.php:1011
49
  msgid "Phone number:"
50
  msgstr "電話番号:"
51
 
52
- #: contact_form.php:84
53
- #: contact_form.php:982
54
- #: contact_form.php:1012
55
  msgid "Subject:"
56
  msgstr "件名:"
57
 
58
- #: contact_form.php:85
59
- #: contact_form.php:983
60
- #: contact_form.php:1013
61
  msgid "Message:"
62
  msgstr "メッセージ:"
63
 
64
- #: contact_form.php:86
65
- #: contact_form.php:984
66
- #: contact_form.php:1014
67
  msgid "Attachment:"
68
  msgstr "添付:"
69
 
70
- #: contact_form.php:87
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "サポートしてるファイル形式: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. 最大ファイルサイズ: 2MB"
73
 
74
- #: contact_form.php:88
75
- #: contact_form.php:986
76
- #: contact_form.php:1016
77
  msgid "Send me a copy"
78
  msgstr "コピーを自分に送る"
79
 
80
- #: contact_form.php:89
81
- #: contact_form.php:987
82
- #: contact_form.php:1017
83
  msgid "Submit"
84
  msgstr "送信"
85
 
86
- #: contact_form.php:90
87
  msgid "Your name is required."
88
  msgstr "名前は必須です。"
89
 
90
- #: contact_form.php:91
91
  msgid "Address is required."
92
  msgstr "住所が必要です。"
93
 
94
- #: contact_form.php:92
95
  msgid "A valid email address is required."
96
  msgstr "有効なEメールアドレスlが必須です。"
97
 
98
- #: contact_form.php:93
99
  msgid "Phone number is required."
100
  msgstr "電話番号は必須です。"
101
 
102
- #: contact_form.php:94
103
  msgid "Subject is required."
104
  msgstr "件名は必須です。"
105
 
106
- #: contact_form.php:95
107
  msgid "Message text is required."
108
  msgstr "メッセージ本文は必須です。"
109
 
110
- #: contact_form.php:96
111
  msgid "File format is not valid."
112
  msgstr "添付が壊れています。"
113
 
114
- #: contact_form.php:97
115
  msgid "File upload error."
116
  msgstr "ファイル・アップロード・エラー。"
117
 
118
- #: contact_form.php:98
119
  msgid "The file could not be uploaded."
120
  msgstr "ファイルは、アップロード出来ませんでした。"
121
 
122
- #: contact_form.php:99
123
  msgid "This file is too large."
124
  msgstr "このファイルは大きすぎます。"
125
 
126
- #: contact_form.php:100
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "CAPTCHAを入力して下さい。"
129
 
130
- #: contact_form.php:101
131
  msgid "Please make corrections below and try again."
132
  msgstr "以下を修正し、再度試して下さい。"
133
 
134
- #: contact_form.php:103
135
  msgid "Thank you for contacting us."
136
  msgstr "ご連絡ありがとうございます"
137
 
138
- #: contact_form.php:203
139
  #, fuzzy
140
  msgid "requires"
141
  msgstr "必須フィールド"
142
 
143
- #: contact_form.php:203
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr ""
146
 
147
- #: contact_form.php:203
148
  msgid "Back to the WordPress"
149
  msgstr ""
150
 
151
- #: contact_form.php:203
152
  #, fuzzy
153
  msgid "Plugins page"
154
  msgstr "Pro Plugins"
155
 
156
- #: contact_form.php:494
157
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
158
  msgstr "’ページに転送’オプションを選択した場合は、URLフィールドが、以下の形式になります"
159
 
160
- #: contact_form.php:503
161
  msgid "Such user does not exist. Settings are not saved."
162
  msgstr "このようなユーザは存在しません。設定は保存されません。"
163
 
164
- #: contact_form.php:507
165
- #: contact_form.php:513
166
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
167
  msgstr "'送信者'フィールドに正確なEメール・アドレスを入力して下さい。設定は保存されません。"
168
 
169
- #: contact_form.php:518
170
  msgid "Settings saved."
171
  msgstr "設定保存."
172
 
173
- #: contact_form.php:554
174
- #: contact_form.php:593
175
  msgid "Wrong license key"
176
  msgstr ""
177
 
178
- #: contact_form.php:586
179
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
180
  msgstr ""
181
 
182
- #: contact_form.php:595
183
  msgid "This license key is bind to another site"
184
  msgstr ""
185
 
186
- #: contact_form.php:597
187
- #: contact_form.php:1392
188
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
189
  msgstr ""
190
 
191
- #: contact_form.php:615
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
 
195
- #: contact_form.php:621
196
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
- #: contact_form.php:625
200
- #: contact_form.php:634
201
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
- #: contact_form.php:638
205
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
206
  msgstr ""
207
 
208
- #: contact_form.php:653
209
  #, fuzzy
210
  msgid "Please, enter Your license key"
211
  msgstr "メッセージを入力して下さい..."
212
 
213
- #: contact_form.php:662
214
- msgid "Notice:"
215
- msgstr ""
216
-
217
- #: contact_form.php:662
218
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
219
- msgstr ""
220
-
221
- #: contact_form.php:665
222
- #: contact_form.php:1997
223
- #: contact_form.php:2008
224
  msgid "Settings"
225
  msgstr "設定"
226
 
227
- #: contact_form.php:666
228
  msgid "Extra settings"
229
  msgstr "追加設定"
230
 
231
- #: contact_form.php:667
232
  msgid "Go PRO"
233
  msgstr ""
234
 
235
- #: contact_form.php:673
236
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  msgid "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:"
238
  msgstr "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを投稿、ページ又はウェジットにコピーして貼り付けるだけです:"
239
 
240
- #: contact_form.php:673
241
- #: contact_form.php:674
242
- #: contact_form.php:1001
243
- #: contact_form.php:1050
 
 
 
 
244
  msgid "or"
245
  msgstr "又は"
246
 
247
- #: contact_form.php:674
 
248
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
249
  msgstr "標準的な短いコード [contact_form]に問題がある場合は、この短いコードをご利用下さい"
250
 
251
- #: contact_form.php:675
 
252
  msgid "They work the same way."
253
  msgstr "同様に動作します。"
254
 
255
- #: contact_form.php:676
 
256
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
257
  msgstr "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られます。"
258
 
259
- #: contact_form.php:680
260
  msgid "The user's email address:"
261
  msgstr "wordpressユーザのemailを利用r:"
262
 
263
- #: contact_form.php:684
264
  msgid "Create a username"
265
  msgstr "ユーザ名の選択"
266
 
267
- #: contact_form.php:689
268
  msgid "Enter a username of the person who should get the messages from the contact form."
269
  msgstr "コンタクトフォームからメッセージを受け取る方のユーザ名を入力。"
270
 
271
- #: contact_form.php:693
272
  msgid "Use this email address:"
273
  msgstr "このemailを利用:"
274
 
275
- #: contact_form.php:696
276
  msgid "Enter the email address you want the messages forwarded to."
277
  msgstr "メッセージ受信用のemailを設定。"
278
 
279
- #: contact_form.php:702
280
  msgid "Add department selectbox to the contact form:"
281
  msgstr ""
282
 
283
- #: contact_form.php:710
284
- #: contact_form.php:1246
285
  msgid "If you upgrade to Pro version all your settings will be saved."
286
  msgstr ""
287
 
288
- #: contact_form.php:715
289
- #: contact_form.php:852
290
- #: contact_form.php:923
291
- #: contact_form.php:1096
292
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
293
- msgstr "この機能は、プラグインのProバージョンで利用できます。詳細は、リンクを参照して下さい。"
294
 
295
- #: contact_form.php:716
296
- #: contact_form.php:853
297
- #: contact_form.php:924
298
- #: contact_form.php:1097
299
- msgid "Contact Form Pro"
300
- msgstr "Contact Form Pro"
 
 
301
 
302
- #: contact_form.php:722
 
 
 
 
 
 
 
303
  msgid "Save emails to the database"
304
  msgstr ""
305
 
306
- #: contact_form.php:732
307
  msgid "Using"
308
  msgstr ""
309
 
310
- #: contact_form.php:732
311
- #: contact_form.php:901
312
- #: contact_form.php:904
313
- #: contact_form.php:908
314
  msgid "powered by"
315
  msgstr ""
316
 
317
- #: contact_form.php:735
318
- #: contact_form.php:739
319
  msgid "Using Contact Form to DB powered by"
320
  msgstr ""
321
 
322
- #: contact_form.php:735
323
  #, fuzzy
324
  msgid "Activate Contact Form to DB"
325
  msgstr "Contact Form Pro"
326
 
327
- #: contact_form.php:739
328
  #, fuzzy
329
  msgid "Download Contact Form to DB"
330
  msgstr "Contact Form Pro"
331
 
332
- #: contact_form.php:744
333
  msgid "Additional options"
334
  msgstr "追加オプション"
335
 
336
- #: contact_form.php:746
337
  msgid "Show"
338
  msgstr ""
339
 
340
- #: contact_form.php:747
341
  msgid "Hide"
342
  msgstr ""
343
 
344
- #: contact_form.php:751
345
  msgid "What to use?"
346
  msgstr "何用途?"
347
 
348
- #: contact_form.php:754
349
  msgid "Wp-mail"
350
  msgstr "WPメール"
351
 
352
- #: contact_form.php:754
353
  msgid "You can use the wp_mail function for mailing"
354
  msgstr "メールにwp_mali機能が利用できます"
355
 
356
- #: contact_form.php:756
357
  msgid "Mail"
358
  msgstr "メール"
359
 
360
- #: contact_form.php:756
361
  msgid "To send mail you can use the php mail function"
362
  msgstr "メールを送信するには、phpメール機能が利用できます"
363
 
364
- #: contact_form.php:760
365
  #, fuzzy
366
  msgid "The text in the 'From' field"
367
  msgstr "'送信者' フィールドのテキストを変更"
368
 
369
- #: contact_form.php:762
370
  #, fuzzy
371
  msgid "User name"
372
  msgstr "ユーザ・Eメール"
373
 
374
- #: contact_form.php:763
375
  #, fuzzy
376
  msgid "The name of the user who fills the form will be used in the field 'From'."
377
  msgstr "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用されます。"
378
 
379
- #: contact_form.php:766
380
  #, fuzzy
381
  msgid "This text will be used in the 'FROM' field"
382
  msgstr "このEメール・アドレスは、'送信者'フィールドに使用されます。"
383
 
384
- #: contact_form.php:770
385
  #, fuzzy
386
  msgid "The email address in the 'From' field"
387
  msgstr "'送信者' フィールドにメールアドレスを入力して下さい"
388
 
389
- #: contact_form.php:772
390
  msgid "User email"
391
  msgstr "ユーザ・Eメール"
392
 
393
- #: contact_form.php:773
394
  msgid "The email address of the user who fills the form will be used in the field 'From'."
395
  msgstr "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用されます。"
396
 
397
- #: contact_form.php:776
398
  msgid "This email address will be used in the 'From' field."
399
  msgstr "このEメール・アドレスは、'送信者'フィールドに使用されます。"
400
 
401
- #: contact_form.php:780
402
  #, fuzzy
403
  msgid "Required symbol"
404
  msgstr "必須フィールド"
405
 
406
- #: contact_form.php:790
407
  msgid "Fields"
408
  msgstr ""
409
 
410
- #: contact_form.php:791
411
  msgid "Used"
412
  msgstr ""
413
 
414
- #: contact_form.php:792
415
  #, fuzzy
416
  msgid "Required"
417
  msgstr "必須フィールド"
418
 
419
- #: contact_form.php:793
420
  msgid "Visible"
421
  msgstr ""
422
 
423
- #: contact_form.php:794
424
  msgid "Disabled for editing"
425
  msgstr ""
426
 
427
- #: contact_form.php:795
428
  msgid "Field's default value"
429
  msgstr ""
430
 
431
- #: contact_form.php:800
432
- #: contact_form.php:1121
433
- #: contact_form.php:1841
434
- #: contact_form.php:1871
435
  msgid "Name"
436
  msgstr "名前"
437
 
438
- #: contact_form.php:808
439
- #: contact_form.php:1126
440
- #: contact_form.php:1845
441
- #: contact_form.php:1873
442
  msgid "Address"
443
  msgstr "住所"
444
 
445
- #: contact_form.php:816
446
  msgid "Email Address"
447
  msgstr "Eメール・アドレス"
448
 
449
- #: contact_form.php:824
450
  #, fuzzy
451
  msgid "Phone number"
452
  msgstr "電話番号:"
453
 
454
- #: contact_form.php:832
455
- #: contact_form.php:1141
456
- #: contact_form.php:1855
457
- #: contact_form.php:1877
458
  msgid "Subject"
459
  msgstr "件名"
460
 
461
- #: contact_form.php:840
462
- #: contact_form.php:1145
463
- #: contact_form.php:1858
464
- #: contact_form.php:1878
465
  msgid "Message"
466
  msgstr "メッセージ"
467
 
468
- #: contact_form.php:858
469
  msgid "Attachment block"
470
  msgstr "添付ブロック"
471
 
472
- #: contact_form.php:860
473
  msgid "Users can attach the following file formats"
474
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
475
 
476
- #: contact_form.php:874
477
  msgid "Add to the form"
478
  msgstr ""
479
 
480
- #: contact_form.php:879
481
  #, fuzzy
482
  msgid "Tips below the Attachment"
483
  msgstr "添付ブロックの下のチップス"
484
 
485
- #: contact_form.php:888
486
  #, fuzzy
487
  msgid "'Send me a copy' block"
488
  msgstr "コピーブロックを自分に送る"
489
 
490
- #: contact_form.php:901
491
- #: contact_form.php:904
492
- #: contact_form.php:908
493
- #: contact_form.php:1155
494
  msgid "Captcha"
495
  msgstr "Captcha"
496
 
497
- #: contact_form.php:904
498
  msgid "Activate captcha"
499
  msgstr "有効なcaptcha"
500
 
501
- #: contact_form.php:908
502
  msgid "Download captcha"
503
  msgstr "captchaをダウンロード"
504
 
505
- #: contact_form.php:916
506
  msgid "Agreement checkbox"
507
  msgstr ""
508
 
509
- #: contact_form.php:916
510
  msgid "Required checkbox for submitting the form"
511
  msgstr ""
512
 
513
- #: contact_form.php:917
514
  msgid "Optional checkbox"
515
  msgstr ""
516
 
517
- #: contact_form.php:917
518
  msgid "Optional checkbox, the results of which will be displayed in email"
519
  msgstr ""
520
 
521
- #: contact_form.php:928
522
  msgid "Delete an attachment file from the server after the email is sent"
523
  msgstr ""
524
 
525
- #: contact_form.php:934
526
  msgid "Email in HTML format sending"
527
  msgstr ""
528
 
529
- #: contact_form.php:938
530
  msgid "Display additional info in the email"
531
  msgstr "メール中に追加情報を表示"
532
 
533
- #: contact_form.php:943
534
- #: contact_form.php:1808
535
- #: contact_form.php:1810
536
  msgid "Sent from (ip address)"
537
  msgstr "(IP-Adresse)から送られた"
538
 
539
- #: contact_form.php:943
540
  #, fuzzy
541
  msgid "Example: Sent from (IP address):\t127.0.0.1"
542
  msgstr "(IP-Adresse)から送られた"
543
 
544
- #: contact_form.php:944
545
- #: contact_form.php:1814
546
- #: contact_form.php:1816
547
  msgid "Date/Time"
548
  msgstr "日時"
549
 
550
- #: contact_form.php:944
551
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
552
  msgstr ""
553
 
554
- #: contact_form.php:945
555
- #: contact_form.php:1820
556
- #: contact_form.php:1822
557
  msgid "Sent from (referer)"
558
  msgstr "(referer)から送られている"
559
 
560
- #: contact_form.php:945
561
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
562
  msgstr ""
563
 
564
- #: contact_form.php:946
565
- #: contact_form.php:1826
566
- #: contact_form.php:1828
567
  msgid "Using (user agent)"
568
  msgstr "(user agent)使用"
569
 
570
- #: contact_form.php:946
571
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
572
  msgstr ""
573
 
574
- #: contact_form.php:950
575
  msgid "Language settings for the field names in the form"
576
  msgstr "フォームのフィールド名用の言語設定"
577
 
578
- #: contact_form.php:959
579
  msgid "Add a language"
580
  msgstr "言語の追加"
581
 
582
- #: contact_form.php:963
583
  msgid "Change the names of the contact form fields and error messages"
584
  msgstr "コンタクト・フォームのフィールドの名前及びエラーメッセージを変更"
585
 
586
- #: contact_form.php:968
587
- #: contact_form.php:1041
588
  msgid "English"
589
  msgstr "英語"
590
 
591
- #: contact_form.php:976
592
- #: contact_form.php:1006
593
  msgid "click to expand/hide the list"
594
  msgstr ""
595
 
596
- #: contact_form.php:985
597
- #: contact_form.php:1015
598
  #, fuzzy
599
  msgid "Tips below the Attachment block"
600
  msgstr "添付ブロックの下のチップス"
601
 
602
- #: contact_form.php:988
603
- #: contact_form.php:1018
604
  msgid "Error message for the Name field"
605
  msgstr "名前フィールド用のエラーメッセージ"
606
 
607
- #: contact_form.php:989
608
- #: contact_form.php:1019
609
  msgid "Error message for the Address field"
610
  msgstr "住所フィールド用のエラーメッセージ"
611
 
612
- #: contact_form.php:990
613
- #: contact_form.php:1020
614
  msgid "Error message for the Email field"
615
  msgstr "Eメール・フィールド用のエラーメッセージ"
616
 
617
- #: contact_form.php:991
618
- #: contact_form.php:1021
619
  msgid "Error message for the Phone field"
620
  msgstr "電話フィールド用のエラーメッセージ"
621
 
622
- #: contact_form.php:992
623
- #: contact_form.php:1022
624
  msgid "Error message for the Subject field"
625
  msgstr "件名フィールド用のエラーメッセージ"
626
 
627
- #: contact_form.php:993
628
- #: contact_form.php:1023
629
  msgid "Error message for the Message field"
630
  msgstr "メッセージ・フィールド用のエラーメッセージ"
631
 
632
- #: contact_form.php:994
633
- #: contact_form.php:1024
634
  msgid "Error message about the file type for the Attachment field"
635
  msgstr "添付フィールド用の拡張子タイプに関するエラーメッセージ"
636
 
637
- #: contact_form.php:995
638
- #: contact_form.php:1025
639
  msgid "Error message while uploading a file for the Attachment field to the server"
640
  msgstr "添付フィールド用のファイルをサーバにアップロード中のエラーメッセージ"
641
 
642
- #: contact_form.php:996
643
- #: contact_form.php:1026
644
  msgid "Error message while moving the file for the Attachment field"
645
  msgstr "添付フィールド用のファイルを移動中のエラーメッセージ"
646
 
647
- #: contact_form.php:997
648
- #: contact_form.php:1027
649
  msgid "Error message when file size limit for the Attachment field is exceeded"
650
  msgstr "添付フィールド用のファイルサイズ制限を超した場合のエラーメッセージ"
651
 
652
- #: contact_form.php:998
653
- #: contact_form.php:1028
654
  msgid "Error message for the Captcha field"
655
  msgstr "Captcha フィールド用のエラーメッセージ"
656
 
657
- #: contact_form.php:999
658
- #: contact_form.php:1029
659
  msgid "Error message for the whole form"
660
  msgstr "全体フォーム用のエラーメッセージ"
661
 
662
- #: contact_form.php:1001
663
- #: contact_form.php:1031
664
- #: contact_form.php:1050
665
- #: contact_form.php:1056
 
 
 
 
666
  msgid "Use shortcode"
667
  msgstr "短いコードの利用"
668
 
669
- #: contact_form.php:1001
670
- #: contact_form.php:1031
671
- #: contact_form.php:1050
672
- #: contact_form.php:1056
 
 
 
 
673
  msgid "for this language"
674
  msgstr "この言語用"
675
 
676
- #: contact_form.php:1038
677
  msgid "Action after email is sent"
678
  msgstr "メール送信後の行動"
679
 
680
- #: contact_form.php:1040
681
  msgid "Display text"
682
  msgstr "テキストを表示"
683
 
684
- #: contact_form.php:1049
685
- #: contact_form.php:1055
686
  msgid "Text"
687
  msgstr "文字"
688
 
689
- #: contact_form.php:1062
690
  msgid "Redirect to the page"
691
  msgstr "ページに転送"
692
 
693
- #: contact_form.php:1063
694
  msgid "Url"
695
  msgstr "Url"
696
 
697
- #: contact_form.php:1067
698
  msgid "The $_SERVER variable that is used to build a URL of the form"
699
  msgstr ""
700
 
701
- #: contact_form.php:1071
702
  msgid "If you are not sure whether to change this setting or not, please do not do that."
703
  msgstr ""
704
 
705
- #: contact_form.php:1077
706
- #: contact_form.php:1252
707
  msgid "Save Changes"
708
  msgstr "変更を保存"
709
 
710
- #: contact_form.php:1082
711
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
712
  msgstr ""
713
 
714
- #: contact_form.php:1083
715
  #, fuzzy
716
  msgid "Rate the plugin"
717
  msgstr "無料プラグイン"
718
 
719
- #: contact_form.php:1086
720
  #, fuzzy
721
  msgid "If there is something wrong about it, please contact us"
722
  msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
723
 
724
- #: contact_form.php:1101
725
  msgid "Errors output"
726
  msgstr "エラー出力"
727
 
728
- #: contact_form.php:1104
729
  msgid "Display error messages"
730
  msgstr "エラーメッセージの表示"
731
 
732
- #: contact_form.php:1105
733
  msgid "Color of the input field errors."
734
  msgstr "入力フィールド・エラーの色"
735
 
736
- #: contact_form.php:1106
737
  msgid "Display error messages & color of the input field errors"
738
  msgstr "エラーメッセージと入力フィールド・エラーの色を表示"
739
 
740
- #: contact_form.php:1111
741
  msgid "Add placeholder to the input blocks"
742
  msgstr "プレースホルダーを入力ブロックに追加"
743
 
744
- #: contact_form.php:1117
745
  msgid "Add tooltips"
746
  msgstr "ツールチップの追加"
747
 
748
- #: contact_form.php:1131
749
  msgid "Email address"
750
  msgstr "Eメール・アドレス"
751
 
752
- #: contact_form.php:1136
753
  msgid "Phone Number"
754
  msgstr "電話番号"
755
 
756
- #: contact_form.php:1150
757
  msgid "Attachment"
758
  msgstr "添付"
759
 
760
- #: contact_form.php:1155
761
  msgid "(powered by bestwebsoft.com)"
762
  msgstr "(powered by bestwebsoft.com)"
763
 
764
- #: contact_form.php:1160
765
  msgid "Style options"
766
  msgstr "スタイル・オプション"
767
 
768
- #: contact_form.php:1163
769
  msgid "Text color"
770
  msgstr "文字色"
771
 
772
- #: contact_form.php:1166
773
- #: contact_form.php:1171
774
- #: contact_form.php:1181
775
- #: contact_form.php:1186
776
- #: contact_form.php:1191
777
- #: contact_form.php:1196
778
- #: contact_form.php:1206
779
- #: contact_form.php:1211
780
- #: contact_form.php:1217
781
- #: contact_form.php:1228
782
- #: contact_form.php:1233
783
- #: contact_form.php:1238
784
  msgid "Default"
785
  msgstr "標準"
786
 
787
- #: contact_form.php:1168
788
  msgid "Label text color"
789
  msgstr "ラベル文字色"
790
 
791
- #: contact_form.php:1173
792
  msgid "Placeholder color"
793
  msgstr "プレースホルダ色"
794
 
795
- #: contact_form.php:1178
796
  msgid "Errors color"
797
  msgstr "エラーの色"
798
 
799
- #: contact_form.php:1183
800
  msgid "Error text color"
801
  msgstr "エラーテキストの色"
802
 
803
- #: contact_form.php:1188
804
  msgid "Background color of the input field errors"
805
  msgstr "入力フィールド・エラーの背景色"
806
 
807
- #: contact_form.php:1193
808
  msgid "Border color of the input field errors"
809
  msgstr "入力フィールド・エラーの罫線色"
810
 
811
- #: contact_form.php:1198
812
  msgid "Placeholder color of the input field errors"
813
  msgstr "入力フィールド・エラー用のプレースホルダ色"
814
 
815
- #: contact_form.php:1203
816
  msgid "Input fields"
817
  msgstr "フィールドを入力"
818
 
819
- #: contact_form.php:1208
820
  msgid "Input fields background color"
821
  msgstr "フィールドの背景色の入力"
822
 
823
- #: contact_form.php:1213
824
  msgid "Text fields color"
825
  msgstr "文字フィールド色"
826
 
827
- #: contact_form.php:1215
828
  msgid "Border width in px, numbers only"
829
  msgstr "罫線幅(px単位)、数値のみ"
830
 
831
- #: contact_form.php:1219
832
- #: contact_form.php:1240
833
  msgid "Border color"
834
  msgstr "罫線色"
835
 
836
- #: contact_form.php:1224
837
  msgid "Submit button"
838
  msgstr "送信ボタン"
839
 
840
- #: contact_form.php:1226
841
  msgid "Width in px, numbers only"
842
  msgstr "px単位の幅、数字のみ"
843
 
844
- #: contact_form.php:1230
845
  msgid "Button color"
846
  msgstr "ボタンの色"
847
 
848
- #: contact_form.php:1235
849
  msgid "Button text color"
850
  msgstr "ボタン文字の色"
851
 
852
- #: contact_form.php:1256
853
  msgid "Contact Form Pro | Preview"
854
  msgstr "Contact Form Pro | プレビュー"
855
 
856
- #: contact_form.php:1259
857
  msgid "Show with errors"
858
  msgstr "エラーで表示"
859
 
860
- #: contact_form.php:1267
861
- #: contact_form.php:1269
862
  msgid "Please enter your full name..."
863
  msgstr "貴方の氏名を入力して下さい..."
864
 
865
- #: contact_form.php:1280
866
- #: contact_form.php:1282
867
  msgid "Please enter your address..."
868
  msgstr "貴方の住所を入力して下さい..."
869
 
870
- #: contact_form.php:1291
871
- #: contact_form.php:1293
872
  msgid "Please enter your email address..."
873
  msgstr "貴方のEメール・アドレスを入力して下さい..."
874
 
875
- #: contact_form.php:1302
876
- #: contact_form.php:1304
877
  msgid "Please enter your phone number..."
878
  msgstr "貴方の電話番号を入力して下さい..."
879
 
880
- #: contact_form.php:1313
881
- #: contact_form.php:1315
882
  msgid "Please enter subject..."
883
  msgstr "件名を入力して下さい..."
884
 
885
- #: contact_form.php:1323
886
- #: contact_form.php:1325
887
  msgid "Please enter your message..."
888
  msgstr "メッセージを入力して下さい..."
889
 
890
- #: contact_form.php:1367
891
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
892
  msgstr ""
893
 
894
- #: contact_form.php:1369
895
  msgid "Please, go to"
896
  msgstr ""
897
 
898
- #: contact_form.php:1369
899
  #, fuzzy
900
  msgid "the setting page"
901
  msgstr "追加設定"
902
 
903
- #: contact_form.php:1370
904
  msgid "You will be redirected automatically in 5 seconds."
905
  msgstr ""
906
 
907
- #: contact_form.php:1375
908
  msgid "You can download and activate"
909
  msgstr ""
910
 
911
- #: contact_form.php:1377
912
  msgid "version of this plugin by entering Your license key."
913
  msgstr ""
914
 
915
- #: contact_form.php:1379
916
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
917
  msgstr ""
918
 
919
- #: contact_form.php:1381
920
  msgid "(your username is the email you specify when purchasing the product)."
921
  msgstr ""
922
 
923
- #: contact_form.php:1389
924
- #: contact_form.php:1399
925
  msgid "Go!"
926
  msgstr ""
927
 
928
- #: contact_form.php:1449
929
  msgid "Sorry, email message could not be delivered."
930
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
931
 
932
- #: contact_form.php:1835
933
  msgid "Contact from"
934
  msgstr "コンタクトフォーム"
935
 
936
- #: contact_form.php:1848
937
- #: contact_form.php:1874
938
  msgid "Email"
939
  msgstr "Eメール"
940
 
941
- #: contact_form.php:1852
942
- #: contact_form.php:1876
943
  msgid "Phone"
944
  msgstr "電話"
945
 
946
- #: contact_form.php:1861
947
- #: contact_form.php:1879
948
  msgid "Site"
949
  msgstr "サイト"
950
 
951
- #: contact_form.php:1941
952
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
953
  msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
954
 
955
- #: contact_form.php:2009
956
  msgid "FAQ"
957
  msgstr "FAQ"
958
 
959
- #: contact_form.php:2010
960
  msgid "Support"
961
  msgstr "サポート"
962
 
963
- #: contact_form.php:2068
964
  msgid "Are you sure that you want to delete this language data?"
965
  msgstr "本当に、この言語データを削除しますか?"
966
 
967
- #: contact_form.php:2223
968
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
969
  msgstr ""
970
 
971
- #: contact_form.php:2224
972
  msgid "Extend standard plugin functionality with new great options."
973
  msgstr ""
974
 
975
- #: contact_form.php:2233
976
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
977
  msgstr ""
978
 
979
- #: contact_form.php:2234
980
  msgid "Manage messages that have been sent from your website."
981
  msgstr ""
982
 
 
 
 
 
 
 
 
 
 
 
983
  #~ msgid "Contact Form Pro Extra Settings"
984
  #~ msgstr "Contact Form Pro 用設定"
985
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:38+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:38+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  msgid "Contact Form Settings"
22
  msgstr "コンタクトフォーム設定"
23
 
24
+ #: contact_form.php:73
25
  msgid "Contact Form"
26
  msgstr "コンタクトフォーム"
27
 
28
+ #: contact_form.php:149
29
+ #: contact_form.php:1131
30
+ #: contact_form.php:1165
31
  msgid "Name:"
32
  msgstr "名前:"
33
 
34
+ #: contact_form.php:150
35
+ #: contact_form.php:1132
36
+ #: contact_form.php:1166
37
  msgid "Address:"
38
  msgstr "住所:"
39
 
40
+ #: contact_form.php:151
41
+ #: contact_form.php:1133
42
+ #: contact_form.php:1167
43
  msgid "Email Address:"
44
  msgstr "Eメール:"
45
 
46
+ #: contact_form.php:152
47
+ #: contact_form.php:1134
48
+ #: contact_form.php:1168
49
  msgid "Phone number:"
50
  msgstr "電話番号:"
51
 
52
+ #: contact_form.php:153
53
+ #: contact_form.php:1135
54
+ #: contact_form.php:1169
55
  msgid "Subject:"
56
  msgstr "件名:"
57
 
58
+ #: contact_form.php:154
59
+ #: contact_form.php:1136
60
+ #: contact_form.php:1170
61
  msgid "Message:"
62
  msgstr "メッセージ:"
63
 
64
+ #: contact_form.php:155
65
+ #: contact_form.php:1137
66
+ #: contact_form.php:1171
67
  msgid "Attachment:"
68
  msgstr "添付:"
69
 
70
+ #: contact_form.php:156
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "サポートしてるファイル形式: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. 最大ファイルサイズ: 2MB"
73
 
74
+ #: contact_form.php:157
75
+ #: contact_form.php:1139
76
+ #: contact_form.php:1173
77
  msgid "Send me a copy"
78
  msgstr "コピーを自分に送る"
79
 
80
+ #: contact_form.php:158
81
+ #: contact_form.php:1140
82
+ #: contact_form.php:1174
83
  msgid "Submit"
84
  msgstr "送信"
85
 
86
+ #: contact_form.php:159
87
  msgid "Your name is required."
88
  msgstr "名前は必須です。"
89
 
90
+ #: contact_form.php:160
91
  msgid "Address is required."
92
  msgstr "住所が必要です。"
93
 
94
+ #: contact_form.php:161
95
  msgid "A valid email address is required."
96
  msgstr "有効なEメールアドレスlが必須です。"
97
 
98
+ #: contact_form.php:162
99
  msgid "Phone number is required."
100
  msgstr "電話番号は必須です。"
101
 
102
+ #: contact_form.php:163
103
  msgid "Subject is required."
104
  msgstr "件名は必須です。"
105
 
106
+ #: contact_form.php:164
107
  msgid "Message text is required."
108
  msgstr "メッセージ本文は必須です。"
109
 
110
+ #: contact_form.php:165
111
  msgid "File format is not valid."
112
  msgstr "添付が壊れています。"
113
 
114
+ #: contact_form.php:166
115
  msgid "File upload error."
116
  msgstr "ファイル・アップロード・エラー。"
117
 
118
+ #: contact_form.php:167
119
  msgid "The file could not be uploaded."
120
  msgstr "ファイルは、アップロード出来ませんでした。"
121
 
122
+ #: contact_form.php:168
123
  msgid "This file is too large."
124
  msgstr "このファイルは大きすぎます。"
125
 
126
+ #: contact_form.php:169
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "CAPTCHAを入力して下さい。"
129
 
130
+ #: contact_form.php:170
131
  msgid "Please make corrections below and try again."
132
  msgstr "以下を修正し、再度試して下さい。"
133
 
134
+ #: contact_form.php:172
135
  msgid "Thank you for contacting us."
136
  msgstr "ご連絡ありがとうございます"
137
 
138
+ #: contact_form.php:322
139
  #, fuzzy
140
  msgid "requires"
141
  msgstr "必須フィールド"
142
 
143
+ #: contact_form.php:322
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr ""
146
 
147
+ #: contact_form.php:322
148
  msgid "Back to the WordPress"
149
  msgstr ""
150
 
151
+ #: contact_form.php:322
152
  #, fuzzy
153
  msgid "Plugins page"
154
  msgstr "Pro Plugins"
155
 
156
+ #: contact_form.php:626
157
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
158
  msgstr "’ページに転送’オプションを選択した場合は、URLフィールドが、以下の形式になります"
159
 
160
+ #: contact_form.php:635
161
  msgid "Such user does not exist. Settings are not saved."
162
  msgstr "このようなユーザは存在しません。設定は保存されません。"
163
 
164
+ #: contact_form.php:639
165
+ #: contact_form.php:645
166
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
167
  msgstr "'送信者'フィールドに正確なEメール・アドレスを入力して下さい。設定は保存されません。"
168
 
169
+ #: contact_form.php:661
170
  msgid "Settings saved."
171
  msgstr "設定保存."
172
 
173
+ #: contact_form.php:688
174
+ #: contact_form.php:720
175
  msgid "Wrong license key"
176
  msgstr ""
177
 
178
+ #: contact_form.php:713
179
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
180
  msgstr ""
181
 
182
+ #: contact_form.php:722
183
  msgid "This license key is bind to another site"
184
  msgstr ""
185
 
186
+ #: contact_form.php:724
187
+ #: contact_form.php:1570
188
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
189
  msgstr ""
190
 
191
+ #: contact_form.php:741
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
 
195
+ #: contact_form.php:747
196
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
+ #: contact_form.php:751
200
+ #: contact_form.php:760
201
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
+ #: contact_form.php:764
205
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
206
  msgstr ""
207
 
208
+ #: contact_form.php:779
209
  #, fuzzy
210
  msgid "Please, enter Your license key"
211
  msgstr "メッセージを入力して下さい..."
212
 
213
+ #: contact_form.php:787
214
+ #: contact_form.php:2216
215
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
216
  msgid "Settings"
217
  msgstr "設定"
218
 
219
+ #: contact_form.php:788
220
  msgid "Extra settings"
221
  msgstr "追加設定"
222
 
223
+ #: contact_form.php:789
224
  msgid "Go PRO"
225
  msgstr ""
226
 
227
+ #: contact_form.php:792
228
+ msgid "Notice:"
229
+ msgstr ""
230
+
231
+ #: contact_form.php:792
232
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
233
+ msgstr ""
234
+
235
+ #: contact_form.php:798
236
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
237
+ msgstr ""
238
+
239
+ #: contact_form.php:804
240
+ #: contact_form.php:809
241
+ #: contact_form.php:1529
242
  msgid "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:"
243
  msgstr "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを投稿、ページ又はウェジットにコピーして貼り付けるだけです:"
244
 
245
+ #: contact_form.php:804
246
+ #: contact_form.php:805
247
+ #: contact_form.php:809
248
+ #: contact_form.php:810
249
+ #: contact_form.php:1155
250
+ #: contact_form.php:1157
251
+ #: contact_form.php:1212
252
+ #: contact_form.php:1214
253
  msgid "or"
254
  msgstr "又は"
255
 
256
+ #: contact_form.php:805
257
+ #: contact_form.php:810
258
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
259
  msgstr "標準的な短いコード [contact_form]に問題がある場合は、この短いコードをご利用下さい"
260
 
261
+ #: contact_form.php:806
262
+ #: contact_form.php:811
263
  msgid "They work the same way."
264
  msgstr "同様に動作します。"
265
 
266
+ #: contact_form.php:807
267
+ #: contact_form.php:812
268
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
269
  msgstr "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られます。"
270
 
271
+ #: contact_form.php:817
272
  msgid "The user's email address:"
273
  msgstr "wordpressユーザのemailを利用r:"
274
 
275
+ #: contact_form.php:821
276
  msgid "Create a username"
277
  msgstr "ユーザ名の選択"
278
 
279
+ #: contact_form.php:828
280
  msgid "Enter a username of the person who should get the messages from the contact form."
281
  msgstr "コンタクトフォームからメッセージを受け取る方のユーザ名を入力。"
282
 
283
+ #: contact_form.php:832
284
  msgid "Use this email address:"
285
  msgstr "このemailを利用:"
286
 
287
+ #: contact_form.php:835
288
  msgid "Enter the email address you want the messages forwarded to."
289
  msgstr "メッセージ受信用のemailを設定。"
290
 
291
+ #: contact_form.php:844
292
  msgid "Add department selectbox to the contact form:"
293
  msgstr ""
294
 
295
+ #: contact_form.php:852
296
+ #: contact_form.php:1412
297
  msgid "If you upgrade to Pro version all your settings will be saved."
298
  msgstr ""
299
 
300
+ #: contact_form.php:859
301
+ #: contact_form.php:997
302
+ #: contact_form.php:1071
303
+ #: contact_form.php:1419
304
+ msgid "Unlock premium options by upgrading to a PRO version."
305
+ msgstr ""
306
 
307
+ #: contact_form.php:860
308
+ #: contact_form.php:998
309
+ #: contact_form.php:1072
310
+ #: contact_form.php:1420
311
+ #: contact_form.php:2473
312
+ #: contact_form.php:2489
313
+ msgid "Learn More"
314
+ msgstr ""
315
 
316
+ #: contact_form.php:863
317
+ #: contact_form.php:1001
318
+ #: contact_form.php:1075
319
+ #: contact_form.php:1423
320
+ msgid "Go"
321
+ msgstr ""
322
+
323
+ #: contact_form.php:870
324
  msgid "Save emails to the database"
325
  msgstr ""
326
 
327
+ #: contact_form.php:876
328
  msgid "Using"
329
  msgstr ""
330
 
331
+ #: contact_form.php:876
332
+ #: contact_form.php:1048
333
+ #: contact_form.php:1051
334
+ #: contact_form.php:1055
335
  msgid "powered by"
336
  msgstr ""
337
 
338
+ #: contact_form.php:879
339
+ #: contact_form.php:883
340
  msgid "Using Contact Form to DB powered by"
341
  msgstr ""
342
 
343
+ #: contact_form.php:879
344
  #, fuzzy
345
  msgid "Activate Contact Form to DB"
346
  msgstr "Contact Form Pro"
347
 
348
+ #: contact_form.php:883
349
  #, fuzzy
350
  msgid "Download Contact Form to DB"
351
  msgstr "Contact Form Pro"
352
 
353
+ #: contact_form.php:888
354
  msgid "Additional options"
355
  msgstr "追加オプション"
356
 
357
+ #: contact_form.php:890
358
  msgid "Show"
359
  msgstr ""
360
 
361
+ #: contact_form.php:891
362
  msgid "Hide"
363
  msgstr ""
364
 
365
+ #: contact_form.php:895
366
  msgid "What to use?"
367
  msgstr "何用途?"
368
 
369
+ #: contact_form.php:898
370
  msgid "Wp-mail"
371
  msgstr "WPメール"
372
 
373
+ #: contact_form.php:898
374
  msgid "You can use the wp_mail function for mailing"
375
  msgstr "メールにwp_mali機能が利用できます"
376
 
377
+ #: contact_form.php:900
378
  msgid "Mail"
379
  msgstr "メール"
380
 
381
+ #: contact_form.php:900
382
  msgid "To send mail you can use the php mail function"
383
  msgstr "メールを送信するには、phpメール機能が利用できます"
384
 
385
+ #: contact_form.php:904
386
  #, fuzzy
387
  msgid "The text in the 'From' field"
388
  msgstr "'送信者' フィールドのテキストを変更"
389
 
390
+ #: contact_form.php:906
391
  #, fuzzy
392
  msgid "User name"
393
  msgstr "ユーザ・Eメール"
394
 
395
+ #: contact_form.php:907
396
  #, fuzzy
397
  msgid "The name of the user who fills the form will be used in the field 'From'."
398
  msgstr "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用されます。"
399
 
400
+ #: contact_form.php:910
401
  #, fuzzy
402
  msgid "This text will be used in the 'FROM' field"
403
  msgstr "このEメール・アドレスは、'送信者'フィールドに使用されます。"
404
 
405
+ #: contact_form.php:914
406
  #, fuzzy
407
  msgid "The email address in the 'From' field"
408
  msgstr "'送信者' フィールドにメールアドレスを入力して下さい"
409
 
410
+ #: contact_form.php:916
411
  msgid "User email"
412
  msgstr "ユーザ・Eメール"
413
 
414
+ #: contact_form.php:917
415
  msgid "The email address of the user who fills the form will be used in the field 'From'."
416
  msgstr "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用されます。"
417
 
418
+ #: contact_form.php:920
419
  msgid "This email address will be used in the 'From' field."
420
  msgstr "このEメール・アドレスは、'送信者'フィールドに使用されます。"
421
 
422
+ #: contact_form.php:924
423
  #, fuzzy
424
  msgid "Required symbol"
425
  msgstr "必須フィールド"
426
 
427
+ #: contact_form.php:934
428
  msgid "Fields"
429
  msgstr ""
430
 
431
+ #: contact_form.php:935
432
  msgid "Used"
433
  msgstr ""
434
 
435
+ #: contact_form.php:936
436
  #, fuzzy
437
  msgid "Required"
438
  msgstr "必須フィールド"
439
 
440
+ #: contact_form.php:937
441
  msgid "Visible"
442
  msgstr ""
443
 
444
+ #: contact_form.php:938
445
  msgid "Disabled for editing"
446
  msgstr ""
447
 
448
+ #: contact_form.php:939
449
  msgid "Field's default value"
450
  msgstr ""
451
 
452
+ #: contact_form.php:944
453
+ #: contact_form.php:1287
454
+ #: contact_form.php:2059
455
+ #: contact_form.php:2089
456
  msgid "Name"
457
  msgstr "名前"
458
 
459
+ #: contact_form.php:952
460
+ #: contact_form.php:1292
461
+ #: contact_form.php:2063
462
+ #: contact_form.php:2091
463
  msgid "Address"
464
  msgstr "住所"
465
 
466
+ #: contact_form.php:960
467
  msgid "Email Address"
468
  msgstr "Eメール・アドレス"
469
 
470
+ #: contact_form.php:968
471
  #, fuzzy
472
  msgid "Phone number"
473
  msgstr "電話番号:"
474
 
475
+ #: contact_form.php:976
476
+ #: contact_form.php:1307
477
+ #: contact_form.php:2073
478
+ #: contact_form.php:2095
479
  msgid "Subject"
480
  msgstr "件名"
481
 
482
+ #: contact_form.php:984
483
+ #: contact_form.php:1311
484
+ #: contact_form.php:2076
485
+ #: contact_form.php:2096
486
  msgid "Message"
487
  msgstr "メッセージ"
488
 
489
+ #: contact_form.php:1008
490
  msgid "Attachment block"
491
  msgstr "添付ブロック"
492
 
493
+ #: contact_form.php:1010
494
  msgid "Users can attach the following file formats"
495
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
496
 
497
+ #: contact_form.php:1023
498
  msgid "Add to the form"
499
  msgstr ""
500
 
501
+ #: contact_form.php:1028
502
  #, fuzzy
503
  msgid "Tips below the Attachment"
504
  msgstr "添付ブロックの下のチップス"
505
 
506
+ #: contact_form.php:1037
507
  #, fuzzy
508
  msgid "'Send me a copy' block"
509
  msgstr "コピーブロックを自分に送る"
510
 
511
+ #: contact_form.php:1048
512
+ #: contact_form.php:1051
513
+ #: contact_form.php:1055
514
+ #: contact_form.php:1321
515
  msgid "Captcha"
516
  msgstr "Captcha"
517
 
518
+ #: contact_form.php:1051
519
  msgid "Activate captcha"
520
  msgstr "有効なcaptcha"
521
 
522
+ #: contact_form.php:1055
523
  msgid "Download captcha"
524
  msgstr "captchaをダウンロード"
525
 
526
+ #: contact_form.php:1063
527
  msgid "Agreement checkbox"
528
  msgstr ""
529
 
530
+ #: contact_form.php:1063
531
  msgid "Required checkbox for submitting the form"
532
  msgstr ""
533
 
534
+ #: contact_form.php:1064
535
  msgid "Optional checkbox"
536
  msgstr ""
537
 
538
+ #: contact_form.php:1064
539
  msgid "Optional checkbox, the results of which will be displayed in email"
540
  msgstr ""
541
 
542
+ #: contact_form.php:1081
543
  msgid "Delete an attachment file from the server after the email is sent"
544
  msgstr ""
545
 
546
+ #: contact_form.php:1087
547
  msgid "Email in HTML format sending"
548
  msgstr ""
549
 
550
+ #: contact_form.php:1091
551
  msgid "Display additional info in the email"
552
  msgstr "メール中に追加情報を表示"
553
 
554
+ #: contact_form.php:1096
555
+ #: contact_form.php:2026
556
+ #: contact_form.php:2028
557
  msgid "Sent from (ip address)"
558
  msgstr "(IP-Adresse)から送られた"
559
 
560
+ #: contact_form.php:1096
561
  #, fuzzy
562
  msgid "Example: Sent from (IP address):\t127.0.0.1"
563
  msgstr "(IP-Adresse)から送られた"
564
 
565
+ #: contact_form.php:1097
566
+ #: contact_form.php:2032
567
+ #: contact_form.php:2034
568
  msgid "Date/Time"
569
  msgstr "日時"
570
 
571
+ #: contact_form.php:1097
572
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
573
  msgstr ""
574
 
575
+ #: contact_form.php:1098
576
+ #: contact_form.php:2038
577
+ #: contact_form.php:2040
578
  msgid "Sent from (referer)"
579
  msgstr "(referer)から送られている"
580
 
581
+ #: contact_form.php:1098
582
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
583
  msgstr ""
584
 
585
+ #: contact_form.php:1099
586
+ #: contact_form.php:2044
587
+ #: contact_form.php:2046
588
  msgid "Using (user agent)"
589
  msgstr "(user agent)使用"
590
 
591
+ #: contact_form.php:1099
592
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
593
  msgstr ""
594
 
595
+ #: contact_form.php:1103
596
  msgid "Language settings for the field names in the form"
597
  msgstr "フォームのフィールド名用の言語設定"
598
 
599
+ #: contact_form.php:1112
600
  msgid "Add a language"
601
  msgstr "言語の追加"
602
 
603
+ #: contact_form.php:1116
604
  msgid "Change the names of the contact form fields and error messages"
605
  msgstr "コンタクト・フォームのフィールドの名前及びエラーメッセージを変更"
606
 
607
+ #: contact_form.php:1121
608
+ #: contact_form.php:1202
609
  msgid "English"
610
  msgstr "英語"
611
 
612
+ #: contact_form.php:1129
613
+ #: contact_form.php:1163
614
  msgid "click to expand/hide the list"
615
  msgstr ""
616
 
617
+ #: contact_form.php:1138
618
+ #: contact_form.php:1172
619
  #, fuzzy
620
  msgid "Tips below the Attachment block"
621
  msgstr "添付ブロックの下のチップス"
622
 
623
+ #: contact_form.php:1141
624
+ #: contact_form.php:1175
625
  msgid "Error message for the Name field"
626
  msgstr "名前フィールド用のエラーメッセージ"
627
 
628
+ #: contact_form.php:1142
629
+ #: contact_form.php:1176
630
  msgid "Error message for the Address field"
631
  msgstr "住所フィールド用のエラーメッセージ"
632
 
633
+ #: contact_form.php:1143
634
+ #: contact_form.php:1177
635
  msgid "Error message for the Email field"
636
  msgstr "Eメール・フィールド用のエラーメッセージ"
637
 
638
+ #: contact_form.php:1144
639
+ #: contact_form.php:1178
640
  msgid "Error message for the Phone field"
641
  msgstr "電話フィールド用のエラーメッセージ"
642
 
643
+ #: contact_form.php:1145
644
+ #: contact_form.php:1179
645
  msgid "Error message for the Subject field"
646
  msgstr "件名フィールド用のエラーメッセージ"
647
 
648
+ #: contact_form.php:1146
649
+ #: contact_form.php:1180
650
  msgid "Error message for the Message field"
651
  msgstr "メッセージ・フィールド用のエラーメッセージ"
652
 
653
+ #: contact_form.php:1147
654
+ #: contact_form.php:1181
655
  msgid "Error message about the file type for the Attachment field"
656
  msgstr "添付フィールド用の拡張子タイプに関するエラーメッセージ"
657
 
658
+ #: contact_form.php:1148
659
+ #: contact_form.php:1182
660
  msgid "Error message while uploading a file for the Attachment field to the server"
661
  msgstr "添付フィールド用のファイルをサーバにアップロード中のエラーメッセージ"
662
 
663
+ #: contact_form.php:1149
664
+ #: contact_form.php:1183
665
  msgid "Error message while moving the file for the Attachment field"
666
  msgstr "添付フィールド用のファイルを移動中のエラーメッセージ"
667
 
668
+ #: contact_form.php:1150
669
+ #: contact_form.php:1184
670
  msgid "Error message when file size limit for the Attachment field is exceeded"
671
  msgstr "添付フィールド用のファイルサイズ制限を超した場合のエラーメッセージ"
672
 
673
+ #: contact_form.php:1151
674
+ #: contact_form.php:1185
675
  msgid "Error message for the Captcha field"
676
  msgstr "Captcha フィールド用のエラーメッセージ"
677
 
678
+ #: contact_form.php:1152
679
+ #: contact_form.php:1186
680
  msgid "Error message for the whole form"
681
  msgstr "全体フォーム用のエラーメッセージ"
682
 
683
+ #: contact_form.php:1155
684
+ #: contact_form.php:1157
685
+ #: contact_form.php:1189
686
+ #: contact_form.php:1191
687
+ #: contact_form.php:1212
688
+ #: contact_form.php:1214
689
+ #: contact_form.php:1222
690
+ #: contact_form.php:1224
691
  msgid "Use shortcode"
692
  msgstr "短いコードの利用"
693
 
694
+ #: contact_form.php:1155
695
+ #: contact_form.php:1157
696
+ #: contact_form.php:1189
697
+ #: contact_form.php:1191
698
+ #: contact_form.php:1212
699
+ #: contact_form.php:1214
700
+ #: contact_form.php:1222
701
+ #: contact_form.php:1224
702
  msgid "for this language"
703
  msgstr "この言語用"
704
 
705
+ #: contact_form.php:1199
706
  msgid "Action after email is sent"
707
  msgstr "メール送信後の行動"
708
 
709
+ #: contact_form.php:1201
710
  msgid "Display text"
711
  msgstr "テキストを表示"
712
 
713
+ #: contact_form.php:1210
714
+ #: contact_form.php:1220
715
  msgid "Text"
716
  msgstr "文字"
717
 
718
+ #: contact_form.php:1231
719
  msgid "Redirect to the page"
720
  msgstr "ページに転送"
721
 
722
+ #: contact_form.php:1232
723
  msgid "Url"
724
  msgstr "Url"
725
 
726
+ #: contact_form.php:1236
727
  msgid "The $_SERVER variable that is used to build a URL of the form"
728
  msgstr ""
729
 
730
+ #: contact_form.php:1240
731
  msgid "If you are not sure whether to change this setting or not, please do not do that."
732
  msgstr ""
733
 
734
+ #: contact_form.php:1246
735
+ #: contact_form.php:1430
736
  msgid "Save Changes"
737
  msgstr "変更を保存"
738
 
739
+ #: contact_form.php:1251
740
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
741
  msgstr ""
742
 
743
+ #: contact_form.php:1252
744
  #, fuzzy
745
  msgid "Rate the plugin"
746
  msgstr "無料プラグイン"
747
 
748
+ #: contact_form.php:1255
749
  #, fuzzy
750
  msgid "If there is something wrong about it, please contact us"
751
  msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
752
 
753
+ #: contact_form.php:1267
754
  msgid "Errors output"
755
  msgstr "エラー出力"
756
 
757
+ #: contact_form.php:1270
758
  msgid "Display error messages"
759
  msgstr "エラーメッセージの表示"
760
 
761
+ #: contact_form.php:1271
762
  msgid "Color of the input field errors."
763
  msgstr "入力フィールド・エラーの色"
764
 
765
+ #: contact_form.php:1272
766
  msgid "Display error messages & color of the input field errors"
767
  msgstr "エラーメッセージと入力フィールド・エラーの色を表示"
768
 
769
+ #: contact_form.php:1277
770
  msgid "Add placeholder to the input blocks"
771
  msgstr "プレースホルダーを入力ブロックに追加"
772
 
773
+ #: contact_form.php:1283
774
  msgid "Add tooltips"
775
  msgstr "ツールチップの追加"
776
 
777
+ #: contact_form.php:1297
778
  msgid "Email address"
779
  msgstr "Eメール・アドレス"
780
 
781
+ #: contact_form.php:1302
782
  msgid "Phone Number"
783
  msgstr "電話番号"
784
 
785
+ #: contact_form.php:1316
786
  msgid "Attachment"
787
  msgstr "添付"
788
 
789
+ #: contact_form.php:1321
790
  msgid "(powered by bestwebsoft.com)"
791
  msgstr "(powered by bestwebsoft.com)"
792
 
793
+ #: contact_form.php:1326
794
  msgid "Style options"
795
  msgstr "スタイル・オプション"
796
 
797
+ #: contact_form.php:1329
798
  msgid "Text color"
799
  msgstr "文字色"
800
 
801
+ #: contact_form.php:1332
802
+ #: contact_form.php:1337
803
+ #: contact_form.php:1347
804
+ #: contact_form.php:1352
805
+ #: contact_form.php:1357
806
+ #: contact_form.php:1362
807
+ #: contact_form.php:1372
808
+ #: contact_form.php:1377
809
+ #: contact_form.php:1383
810
+ #: contact_form.php:1394
811
+ #: contact_form.php:1399
812
+ #: contact_form.php:1404
813
  msgid "Default"
814
  msgstr "標準"
815
 
816
+ #: contact_form.php:1334
817
  msgid "Label text color"
818
  msgstr "ラベル文字色"
819
 
820
+ #: contact_form.php:1339
821
  msgid "Placeholder color"
822
  msgstr "プレースホルダ色"
823
 
824
+ #: contact_form.php:1344
825
  msgid "Errors color"
826
  msgstr "エラーの色"
827
 
828
+ #: contact_form.php:1349
829
  msgid "Error text color"
830
  msgstr "エラーテキストの色"
831
 
832
+ #: contact_form.php:1354
833
  msgid "Background color of the input field errors"
834
  msgstr "入力フィールド・エラーの背景色"
835
 
836
+ #: contact_form.php:1359
837
  msgid "Border color of the input field errors"
838
  msgstr "入力フィールド・エラーの罫線色"
839
 
840
+ #: contact_form.php:1364
841
  msgid "Placeholder color of the input field errors"
842
  msgstr "入力フィールド・エラー用のプレースホルダ色"
843
 
844
+ #: contact_form.php:1369
845
  msgid "Input fields"
846
  msgstr "フィールドを入力"
847
 
848
+ #: contact_form.php:1374
849
  msgid "Input fields background color"
850
  msgstr "フィールドの背景色の入力"
851
 
852
+ #: contact_form.php:1379
853
  msgid "Text fields color"
854
  msgstr "文字フィールド色"
855
 
856
+ #: contact_form.php:1381
857
  msgid "Border width in px, numbers only"
858
  msgstr "罫線幅(px単位)、数値のみ"
859
 
860
+ #: contact_form.php:1385
861
+ #: contact_form.php:1406
862
  msgid "Border color"
863
  msgstr "罫線色"
864
 
865
+ #: contact_form.php:1390
866
  msgid "Submit button"
867
  msgstr "送信ボタン"
868
 
869
+ #: contact_form.php:1392
870
  msgid "Width in px, numbers only"
871
  msgstr "px単位の幅、数字のみ"
872
 
873
+ #: contact_form.php:1396
874
  msgid "Button color"
875
  msgstr "ボタンの色"
876
 
877
+ #: contact_form.php:1401
878
  msgid "Button text color"
879
  msgstr "ボタン文字の色"
880
 
881
+ #: contact_form.php:1434
882
  msgid "Contact Form Pro | Preview"
883
  msgstr "Contact Form Pro | プレビュー"
884
 
885
+ #: contact_form.php:1437
886
  msgid "Show with errors"
887
  msgstr "エラーで表示"
888
 
889
+ #: contact_form.php:1445
890
+ #: contact_form.php:1447
891
  msgid "Please enter your full name..."
892
  msgstr "貴方の氏名を入力して下さい..."
893
 
894
+ #: contact_form.php:1458
895
+ #: contact_form.php:1460
896
  msgid "Please enter your address..."
897
  msgstr "貴方の住所を入力して下さい..."
898
 
899
+ #: contact_form.php:1469
900
+ #: contact_form.php:1471
901
  msgid "Please enter your email address..."
902
  msgstr "貴方のEメール・アドレスを入力して下さい..."
903
 
904
+ #: contact_form.php:1480
905
+ #: contact_form.php:1482
906
  msgid "Please enter your phone number..."
907
  msgstr "貴方の電話番号を入力して下さい..."
908
 
909
+ #: contact_form.php:1491
910
+ #: contact_form.php:1493
911
  msgid "Please enter subject..."
912
  msgstr "件名を入力して下さい..."
913
 
914
+ #: contact_form.php:1501
915
+ #: contact_form.php:1503
916
  msgid "Please enter your message..."
917
  msgstr "メッセージを入力して下さい..."
918
 
919
+ #: contact_form.php:1545
920
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
921
  msgstr ""
922
 
923
+ #: contact_form.php:1547
924
  msgid "Please, go to"
925
  msgstr ""
926
 
927
+ #: contact_form.php:1547
928
  #, fuzzy
929
  msgid "the setting page"
930
  msgstr "追加設定"
931
 
932
+ #: contact_form.php:1548
933
  msgid "You will be redirected automatically in 5 seconds."
934
  msgstr ""
935
 
936
+ #: contact_form.php:1553
937
  msgid "You can download and activate"
938
  msgstr ""
939
 
940
+ #: contact_form.php:1555
941
  msgid "version of this plugin by entering Your license key."
942
  msgstr ""
943
 
944
+ #: contact_form.php:1557
945
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
946
  msgstr ""
947
 
948
+ #: contact_form.php:1559
949
  msgid "(your username is the email you specify when purchasing the product)."
950
  msgstr ""
951
 
952
+ #: contact_form.php:1567
953
+ #: contact_form.php:1577
954
  msgid "Go!"
955
  msgstr ""
956
 
957
+ #: contact_form.php:1647
958
  msgid "Sorry, email message could not be delivered."
959
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
960
 
961
+ #: contact_form.php:2053
962
  msgid "Contact from"
963
  msgstr "コンタクトフォーム"
964
 
965
+ #: contact_form.php:2066
966
+ #: contact_form.php:2092
967
  msgid "Email"
968
  msgstr "Eメール"
969
 
970
+ #: contact_form.php:2070
971
+ #: contact_form.php:2094
972
  msgid "Phone"
973
  msgstr "電話"
974
 
975
+ #: contact_form.php:2079
976
+ #: contact_form.php:2097
977
  msgid "Site"
978
  msgstr "サイト"
979
 
980
+ #: contact_form.php:2160
981
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
982
  msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
983
 
984
+ #: contact_form.php:2229
985
  msgid "FAQ"
986
  msgstr "FAQ"
987
 
988
+ #: contact_form.php:2230
989
  msgid "Support"
990
  msgstr "サポート"
991
 
992
+ #: contact_form.php:2280
993
  msgid "Are you sure that you want to delete this language data?"
994
  msgstr "本当に、この言語データを削除しますか?"
995
 
996
+ #: contact_form.php:2476
997
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
998
  msgstr ""
999
 
1000
+ #: contact_form.php:2477
1001
  msgid "Extend standard plugin functionality with new great options."
1002
  msgstr ""
1003
 
1004
+ #: contact_form.php:2492
1005
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1006
  msgstr ""
1007
 
1008
+ #: contact_form.php:2493
1009
  msgid "Manage messages that have been sent from your website."
1010
  msgstr ""
1011
 
1012
+ #~ msgid ""
1013
+ #~ "This functionality is available in the Pro version of the plugin. For "
1014
+ #~ "more details, please follow the link"
1015
+ #~ msgstr ""
1016
+ #~ "この機能は、プラグインのProバージョンで利用できます。詳細は、リンクを参照"
1017
+ #~ "して下さい。"
1018
+
1019
+ #~ msgid "Contact Form Pro"
1020
+ #~ msgstr "Contact Form Pro"
1021
+
1022
  #~ msgid "Contact Form Pro Extra Settings"
1023
  #~ msgstr "Contact Form Pro 用設定"
1024
 
languages/contact_form-nl_NL.mo CHANGED
Binary file
languages/contact_form-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-06 12:50+0300\n"
6
- "PO-Revision-Date: 2014-03-06 12:50+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung, Dorine Kat-Stronck <thartung@adipositas-mm.de, info@katchy.nl>\n"
9
  "Language: nl_NL\n"
@@ -16,999 +16,1031 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:662
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Contact Form Opties"
24
 
25
- #: contact_form.php:33
26
  msgid "Contact Form"
27
  msgstr "Contact Form"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:980
31
- #: contact_form.php:1010
32
  msgid "Name:"
33
  msgstr "Naam:"
34
 
35
- #: contact_form.php:81
36
- #: contact_form.php:981
37
- #: contact_form.php:1011
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "Email adres:"
41
 
42
- #: contact_form.php:82
43
- #: contact_form.php:982
44
- #: contact_form.php:1012
45
  msgid "Email Address:"
46
  msgstr "E-mailadres:"
47
 
48
- #: contact_form.php:83
49
- #: contact_form.php:983
50
- #: contact_form.php:1013
51
  msgid "Phone number:"
52
  msgstr "Telefoonnummer:"
53
 
54
- #: contact_form.php:84
55
- #: contact_form.php:984
56
- #: contact_form.php:1014
57
  msgid "Subject:"
58
  msgstr "Onderwerp:"
59
 
60
- #: contact_form.php:85
61
- #: contact_form.php:985
62
- #: contact_form.php:1015
63
  msgid "Message:"
64
  msgstr "Bericht:"
65
 
66
- #: contact_form.php:86
67
- #: contact_form.php:986
68
- #: contact_form.php:1016
69
  msgid "Attachment:"
70
  msgstr "Bijlage:"
71
 
72
- #: contact_form.php:87
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
- #: contact_form.php:88
77
- #: contact_form.php:988
78
- #: contact_form.php:1018
79
  msgid "Send me a copy"
80
  msgstr "Kopie aan mij sturen"
81
 
82
- #: contact_form.php:89
83
- #: contact_form.php:989
84
- #: contact_form.php:1019
85
  msgid "Submit"
86
  msgstr "Versturen"
87
 
88
- #: contact_form.php:90
89
  msgid "Your name is required."
90
  msgstr "Uw naam is verplicht."
91
 
92
- #: contact_form.php:91
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "Een correct email adres is vereist."
96
 
97
- #: contact_form.php:92
98
  #, fuzzy
99
  msgid "A valid email address is required."
100
  msgstr "Een correct email adres is vereist."
101
 
102
- #: contact_form.php:93
103
  msgid "Phone number is required."
104
  msgstr "Telefoonnummer verplicht"
105
 
106
- #: contact_form.php:94
107
  msgid "Subject is required."
108
  msgstr "Onderwerp tekst is verplicht."
109
 
110
- #: contact_form.php:95
111
  msgid "Message text is required."
112
  msgstr "Bericht tekst is verplicht."
113
 
114
- #: contact_form.php:96
115
  msgid "File format is not valid."
116
  msgstr "Bijlage is beschadigd."
117
 
118
- #: contact_form.php:97
119
  msgid "File upload error."
120
  msgstr ""
121
 
122
- #: contact_form.php:98
123
  msgid "The file could not be uploaded."
124
  msgstr ""
125
 
126
- #: contact_form.php:99
127
  msgid "This file is too large."
128
  msgstr ""
129
 
130
- #: contact_form.php:100
131
  msgid "Please fill out the CAPTCHA."
132
  msgstr "Vul de CAPTCHA in."
133
 
134
- #: contact_form.php:101
135
  msgid "Please make corrections below and try again."
136
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
137
 
138
- #: contact_form.php:103
139
  msgid "Thank you for contacting us."
140
  msgstr "Bedankt voor uw bericht."
141
 
142
- #: contact_form.php:203
143
  #, fuzzy
144
  msgid "requires"
145
  msgstr "Verplicht veld"
146
 
147
- #: contact_form.php:203
148
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
149
  msgstr ""
150
 
151
- #: contact_form.php:203
152
  msgid "Back to the WordPress"
153
  msgstr ""
154
 
155
- #: contact_form.php:203
156
  #, fuzzy
157
  msgid "Plugins page"
158
  msgstr "BWS Plugins"
159
 
160
- #: contact_form.php:496
161
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
162
  msgstr "Als de optie 'Doorsturen naar pagina' is geselecteerd, dient u het url veld in te vullen in de volgende format"
163
 
164
- #: contact_form.php:505
165
  msgid "Such user does not exist. Settings are not saved."
166
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
167
 
168
- #: contact_form.php:509
169
- #: contact_form.php:515
170
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
171
  msgstr "Geef een geldig e-mailadres op. Instellingen zijn niet opgeslagen."
172
 
173
- #: contact_form.php:520
174
  #, fuzzy
175
  msgid "Settings saved."
176
  msgstr "Instellingen opgeslagen."
177
 
178
- #: contact_form.php:556
179
- #: contact_form.php:595
180
  msgid "Wrong license key"
181
  msgstr ""
182
 
183
- #: contact_form.php:588
184
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
185
  msgstr ""
186
 
187
- #: contact_form.php:597
188
  msgid "This license key is bind to another site"
189
  msgstr ""
190
 
191
- #: contact_form.php:599
192
- #: contact_form.php:1394
193
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
194
  msgstr ""
195
 
196
- #: contact_form.php:617
197
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
198
  msgstr ""
199
 
200
- #: contact_form.php:623
201
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
- #: contact_form.php:627
205
- #: contact_form.php:636
206
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
207
  msgstr ""
208
 
209
- #: contact_form.php:640
210
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
211
  msgstr ""
212
 
213
- #: contact_form.php:655
214
  #, fuzzy
215
  msgid "Please, enter Your license key"
216
  msgstr "Gebruik dit email adres:"
217
 
218
- #: contact_form.php:664
219
- msgid "Notice:"
220
- msgstr ""
221
-
222
- #: contact_form.php:664
223
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
224
- msgstr ""
225
-
226
- #: contact_form.php:667
227
- #: contact_form.php:1999
228
- #: contact_form.php:2010
229
  msgid "Settings"
230
  msgstr "Instellingen"
231
 
232
- #: contact_form.php:668
233
  #, fuzzy
234
  msgid "Extra settings"
235
  msgstr "Instellingen"
236
 
237
- #: contact_form.php:669
238
  msgid "Go PRO"
239
  msgstr ""
240
 
241
- #: contact_form.php:675
242
- #: contact_form.php:1353
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  msgid "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:"
244
  msgstr "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht, op je pagina of widget:"
245
 
246
- #: contact_form.php:675
247
- #: contact_form.php:676
248
- #: contact_form.php:1003
249
- #: contact_form.php:1052
 
 
 
 
250
  msgid "or"
251
  msgstr ""
252
 
253
- #: contact_form.php:676
 
254
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
255
  msgstr ""
256
 
257
- #: contact_form.php:677
 
258
  msgid "They work the same way."
259
  msgstr ""
260
 
261
- #: contact_form.php:678
 
262
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
263
  msgstr "Als onderstaande velden leeg blijven, zal het bericht gestuurd worden aan het adres dat is gespecificeerd tijdens de registratie."
264
 
265
- #: contact_form.php:682
266
  msgid "The user's email address:"
267
  msgstr "Gebruik het e-mailadres van de Wordpress gebruiker:"
268
 
269
- #: contact_form.php:686
270
  msgid "Create a username"
271
  msgstr "Kies gebruikersnaam"
272
 
273
- #: contact_form.php:691
274
  msgid "Enter a username of the person who should get the messages from the contact form."
275
  msgstr "Voer de naam in van de gebruiker die berichten van dit contact formulier moet ontvangen."
276
 
277
- #: contact_form.php:695
278
  msgid "Use this email address:"
279
  msgstr "Gebruik dit e-mailadres:"
280
 
281
- #: contact_form.php:698
282
  msgid "Enter the email address you want the messages forwarded to."
283
  msgstr "Geef een e-mailadres op waar de berichten naar verstuurd moeten worden."
284
 
285
- #: contact_form.php:704
286
  msgid "Add department selectbox to the contact form:"
287
  msgstr ""
288
 
289
- #: contact_form.php:712
290
- #: contact_form.php:1248
291
  msgid "If you upgrade to Pro version all your settings will be saved."
292
  msgstr ""
293
 
294
- #: contact_form.php:717
295
- #: contact_form.php:854
296
- #: contact_form.php:925
297
- #: contact_form.php:1098
298
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
299
  msgstr ""
300
 
301
- #: contact_form.php:718
302
- #: contact_form.php:855
303
- #: contact_form.php:926
304
- #: contact_form.php:1099
305
- #, fuzzy
306
- msgid "Contact Form Pro"
307
- msgstr "Contact Form"
 
308
 
309
- #: contact_form.php:724
 
 
 
 
 
 
 
310
  msgid "Save emails to the database"
311
  msgstr ""
312
 
313
- #: contact_form.php:734
314
  msgid "Using"
315
  msgstr ""
316
 
317
- #: contact_form.php:734
318
- #: contact_form.php:903
319
- #: contact_form.php:906
320
- #: contact_form.php:910
321
  msgid "powered by"
322
  msgstr ""
323
 
324
- #: contact_form.php:737
325
- #: contact_form.php:741
326
  msgid "Using Contact Form to DB powered by"
327
  msgstr ""
328
 
329
- #: contact_form.php:737
330
  #, fuzzy
331
  msgid "Activate Contact Form to DB"
332
  msgstr "Contact Form"
333
 
334
- #: contact_form.php:741
335
  #, fuzzy
336
  msgid "Download Contact Form to DB"
337
  msgstr "Contact Form"
338
 
339
- #: contact_form.php:746
340
  msgid "Additional options"
341
  msgstr "Extra opties"
342
 
343
- #: contact_form.php:748
344
  msgid "Show"
345
  msgstr ""
346
 
347
- #: contact_form.php:749
348
  msgid "Hide"
349
  msgstr ""
350
 
351
- #: contact_form.php:753
352
  msgid "What to use?"
353
  msgstr "Voor welk gebruik?"
354
 
355
- #: contact_form.php:756
356
  msgid "Wp-mail"
357
  msgstr "Wp-mail"
358
 
359
- #: contact_form.php:756
360
  msgid "You can use the wp_mail function for mailing"
361
  msgstr "Om emails te verzenden kunt u the wordpress wp-mail functie gebruiken"
362
 
363
- #: contact_form.php:758
364
  msgid "Mail"
365
  msgstr "Mail"
366
 
367
- #: contact_form.php:758
368
  msgid "To send mail you can use the php mail function"
369
  msgstr "Om emails te verzenden kunt e de php mail functie gebruiken"
370
 
371
- #: contact_form.php:762
372
  #, fuzzy
373
  msgid "The text in the 'From' field"
374
  msgstr "Verander de tekst voor 'VAN' veld van het email adres"
375
 
376
- #: contact_form.php:764
377
  msgid "User name"
378
  msgstr ""
379
 
380
- #: contact_form.php:765
381
  #, fuzzy
382
  msgid "The name of the user who fills the form will be used in the field 'From'."
383
  msgstr "In het veld 'Van' in de email zal het email adres van degene die het formulier invult gebruikt worden."
384
 
385
- #: contact_form.php:768
386
  #, fuzzy
387
  msgid "This text will be used in the 'FROM' field"
388
  msgstr "In het veld 'Van' dit email adres zal worden gebruikt."
389
 
390
- #: contact_form.php:772
391
  #, fuzzy
392
  msgid "The email address in the 'From' field"
393
  msgstr "Kies het email adres voor 'Van' veld voor het versturen van de mail"
394
 
395
- #: contact_form.php:774
396
  msgid "User email"
397
  msgstr ""
398
 
399
- #: contact_form.php:775
400
  #, fuzzy
401
  msgid "The email address of the user who fills the form will be used in the field 'From'."
402
  msgstr "In het veld 'Van' in de email zal het email adres van degene die het formulier invult gebruikt worden."
403
 
404
- #: contact_form.php:778
405
  msgid "This email address will be used in the 'From' field."
406
  msgstr "In het veld 'Van' dit e-mailadres zal worden gebruikt."
407
 
408
- #: contact_form.php:782
409
  #, fuzzy
410
  msgid "Required symbol"
411
  msgstr "Verplicht veld"
412
 
413
- #: contact_form.php:792
414
  msgid "Fields"
415
  msgstr ""
416
 
417
- #: contact_form.php:793
418
  msgid "Used"
419
  msgstr ""
420
 
421
- #: contact_form.php:794
422
  #, fuzzy
423
  msgid "Required"
424
  msgstr "Verplicht veld"
425
 
426
- #: contact_form.php:795
427
  msgid "Visible"
428
  msgstr ""
429
 
430
- #: contact_form.php:796
431
  msgid "Disabled for editing"
432
  msgstr ""
433
 
434
- #: contact_form.php:797
435
  msgid "Field's default value"
436
  msgstr ""
437
 
438
- #: contact_form.php:802
439
- #: contact_form.php:1123
440
- #: contact_form.php:1843
441
- #: contact_form.php:1873
442
  msgid "Name"
443
  msgstr "Naam"
444
 
445
- #: contact_form.php:810
446
- #: contact_form.php:1128
447
- #: contact_form.php:1847
448
- #: contact_form.php:1875
449
  #, fuzzy
450
  msgid "Address"
451
  msgstr "Email adres:"
452
 
453
- #: contact_form.php:818
454
  #, fuzzy
455
  msgid "Email Address"
456
  msgstr "Email adres:"
457
 
458
- #: contact_form.php:826
459
  #, fuzzy
460
  msgid "Phone number"
461
  msgstr "Telefoonnummer:"
462
 
463
- #: contact_form.php:834
464
- #: contact_form.php:1143
465
- #: contact_form.php:1857
466
- #: contact_form.php:1879
467
  msgid "Subject"
468
  msgstr "Onderwerp"
469
 
470
- #: contact_form.php:842
471
- #: contact_form.php:1147
472
- #: contact_form.php:1860
473
- #: contact_form.php:1880
474
  msgid "Message"
475
  msgstr "Bericht"
476
 
477
- #: contact_form.php:860
478
  #, fuzzy
479
  msgid "Attachment block"
480
  msgstr "Toon de bijlage knop"
481
 
482
- #: contact_form.php:862
483
  msgid "Users can attach the following file formats"
484
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
485
 
486
- #: contact_form.php:876
487
  msgid "Add to the form"
488
  msgstr ""
489
 
490
- #: contact_form.php:881
491
  #, fuzzy
492
  msgid "Tips below the Attachment"
493
  msgstr "Toon uitleg na Bijlage knop"
494
 
495
- #: contact_form.php:890
496
  #, fuzzy
497
  msgid "'Send me a copy' block"
498
  msgstr "Geef 'Kopie aan mij sturen' weer"
499
 
500
- #: contact_form.php:903
501
- #: contact_form.php:906
502
- #: contact_form.php:910
503
- #: contact_form.php:1157
504
  msgid "Captcha"
505
  msgstr ""
506
 
507
- #: contact_form.php:906
508
  #, fuzzy
509
  msgid "Activate captcha"
510
  msgstr "Geactiveerde plugins"
511
 
512
- #: contact_form.php:910
513
  #, fuzzy
514
  msgid "Download captcha"
515
  msgstr "Download"
516
 
517
- #: contact_form.php:918
518
  msgid "Agreement checkbox"
519
  msgstr ""
520
 
521
- #: contact_form.php:918
522
  msgid "Required checkbox for submitting the form"
523
  msgstr ""
524
 
525
- #: contact_form.php:919
526
  msgid "Optional checkbox"
527
  msgstr ""
528
 
529
- #: contact_form.php:919
530
  msgid "Optional checkbox, the results of which will be displayed in email"
531
  msgstr ""
532
 
533
- #: contact_form.php:930
534
  msgid "Delete an attachment file from the server after the email is sent"
535
  msgstr ""
536
 
537
- #: contact_form.php:936
538
  msgid "Email in HTML format sending"
539
  msgstr ""
540
 
541
- #: contact_form.php:940
542
  #, fuzzy
543
  msgid "Display additional info in the email"
544
  msgstr "Toon aanvullende informatie in de email"
545
 
546
- #: contact_form.php:945
547
- #: contact_form.php:1810
548
- #: contact_form.php:1812
549
  msgid "Sent from (ip address)"
550
  msgstr "Verstuurd van (IP-adres)"
551
 
552
- #: contact_form.php:945
553
  #, fuzzy
554
  msgid "Example: Sent from (IP address):\t127.0.0.1"
555
  msgstr "Verstuurd van (IP-adres)"
556
 
557
- #: contact_form.php:946
558
- #: contact_form.php:1816
559
- #: contact_form.php:1818
560
  msgid "Date/Time"
561
  msgstr "Datum/Tijd"
562
 
563
- #: contact_form.php:946
564
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
565
  msgstr ""
566
 
567
- #: contact_form.php:947
568
- #: contact_form.php:1822
569
- #: contact_form.php:1824
570
  msgid "Sent from (referer)"
571
  msgstr "Verstuurd vanaf (referer)"
572
 
573
- #: contact_form.php:947
574
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
575
  msgstr ""
576
 
577
- #: contact_form.php:948
578
- #: contact_form.php:1828
579
- #: contact_form.php:1830
580
  msgid "Using (user agent)"
581
  msgstr "Met (user agent)"
582
 
583
- #: contact_form.php:948
584
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
585
  msgstr ""
586
 
587
- #: contact_form.php:952
588
  msgid "Language settings for the field names in the form"
589
  msgstr "Taal instellingen voor velden met een label"
590
 
591
- #: contact_form.php:961
592
  #, fuzzy
593
  msgid "Add a language"
594
  msgstr "Voeg een taal toe"
595
 
596
- #: contact_form.php:965
597
  msgid "Change the names of the contact form fields and error messages"
598
  msgstr "Verander de namen van de labels en de foutmeldingen"
599
 
600
- #: contact_form.php:970
601
- #: contact_form.php:1043
602
  msgid "English"
603
  msgstr "Engels"
604
 
605
- #: contact_form.php:978
606
- #: contact_form.php:1008
607
  msgid "click to expand/hide the list"
608
  msgstr ""
609
 
610
- #: contact_form.php:987
611
- #: contact_form.php:1017
612
  #, fuzzy
613
  msgid "Tips below the Attachment block"
614
  msgstr "Toon uitleg na Bijlage knop"
615
 
616
- #: contact_form.php:990
617
- #: contact_form.php:1020
618
  msgid "Error message for the Name field"
619
  msgstr "Foutmelding voor naam veld"
620
 
621
- #: contact_form.php:991
622
- #: contact_form.php:1021
623
  #, fuzzy
624
  msgid "Error message for the Address field"
625
  msgstr "Foutmelding voor bericht veld"
626
 
627
- #: contact_form.php:992
628
- #: contact_form.php:1022
629
  msgid "Error message for the Email field"
630
  msgstr "Foutmelding voor email veld"
631
 
632
- #: contact_form.php:993
633
- #: contact_form.php:1023
634
  msgid "Error message for the Phone field"
635
  msgstr "Foutmelding voor telefoonnummer veld"
636
 
637
- #: contact_form.php:994
638
- #: contact_form.php:1024
639
  msgid "Error message for the Subject field"
640
  msgstr "Foutmelding voor onderwerp veld"
641
 
642
- #: contact_form.php:995
643
- #: contact_form.php:1025
644
  msgid "Error message for the Message field"
645
  msgstr "Foutmelding voor bericht veld"
646
 
647
- #: contact_form.php:996
648
- #: contact_form.php:1026
649
  #, fuzzy
650
  msgid "Error message about the file type for the Attachment field"
651
  msgstr "Foutmelding voor bijlage veld"
652
 
653
- #: contact_form.php:997
654
- #: contact_form.php:1027
655
  #, fuzzy
656
  msgid "Error message while uploading a file for the Attachment field to the server"
657
  msgstr "Foutmelding voor bijlage veld"
658
 
659
- #: contact_form.php:998
660
- #: contact_form.php:1028
661
  #, fuzzy
662
  msgid "Error message while moving the file for the Attachment field"
663
  msgstr "Foutmelding voor bijlage veld"
664
 
665
- #: contact_form.php:999
666
- #: contact_form.php:1029
667
  #, fuzzy
668
  msgid "Error message when file size limit for the Attachment field is exceeded"
669
  msgstr "Foutmelding voor bijlage veld"
670
 
671
- #: contact_form.php:1000
672
- #: contact_form.php:1030
673
  msgid "Error message for the Captcha field"
674
  msgstr "Foutmelding voor captcha"
675
 
676
- #: contact_form.php:1001
677
- #: contact_form.php:1031
678
  msgid "Error message for the whole form"
679
  msgstr "Foutmelding voor het gehele formulier"
680
 
681
- #: contact_form.php:1003
682
- #: contact_form.php:1033
683
- #: contact_form.php:1052
684
- #: contact_form.php:1058
 
 
 
 
685
  msgid "Use shortcode"
686
  msgstr "Gebruik shortcode"
687
 
688
- #: contact_form.php:1003
689
- #: contact_form.php:1033
690
- #: contact_form.php:1052
691
- #: contact_form.php:1058
 
 
 
 
692
  msgid "for this language"
693
  msgstr "voor deze taal"
694
 
695
- #: contact_form.php:1040
696
  msgid "Action after email is sent"
697
  msgstr "Actie na het verzenden van de email"
698
 
699
- #: contact_form.php:1042
700
  msgid "Display text"
701
  msgstr "Toon tekst"
702
 
703
- #: contact_form.php:1051
704
- #: contact_form.php:1057
705
  msgid "Text"
706
  msgstr "Tekst"
707
 
708
- #: contact_form.php:1064
709
  msgid "Redirect to the page"
710
  msgstr "Dooorsturen naar pagina"
711
 
712
- #: contact_form.php:1065
713
  msgid "Url"
714
  msgstr "Url"
715
 
716
- #: contact_form.php:1069
717
  msgid "The $_SERVER variable that is used to build a URL of the form"
718
  msgstr ""
719
 
720
- #: contact_form.php:1073
721
  msgid "If you are not sure whether to change this setting or not, please do not do that."
722
  msgstr ""
723
 
724
- #: contact_form.php:1079
725
- #: contact_form.php:1254
726
  msgid "Save Changes"
727
  msgstr "Bewaar veranderingen"
728
 
729
- #: contact_form.php:1084
730
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
731
  msgstr ""
732
 
733
- #: contact_form.php:1085
734
  #, fuzzy
735
  msgid "Rate the plugin"
736
  msgstr "Aanbevolen Plugins"
737
 
738
- #: contact_form.php:1088
739
  #, fuzzy
740
  msgid "If there is something wrong about it, please contact us"
741
  msgstr "Mocht u nog vragen hebben, stuur dan een email naar plugin@bestwebsoft.com of vul het contactformulier op onze website in."
742
 
743
- #: contact_form.php:1103
744
  msgid "Errors output"
745
  msgstr ""
746
 
747
- #: contact_form.php:1106
748
  msgid "Display error messages"
749
  msgstr ""
750
 
751
- #: contact_form.php:1107
752
  msgid "Color of the input field errors."
753
  msgstr ""
754
 
755
- #: contact_form.php:1108
756
  #, fuzzy
757
  msgid "Display error messages & color of the input field errors"
758
  msgstr "Foutmelding voor onderwerp veld"
759
 
760
- #: contact_form.php:1113
761
  msgid "Add placeholder to the input blocks"
762
  msgstr ""
763
 
764
- #: contact_form.php:1119
765
  #, fuzzy
766
  msgid "Add tooltips"
767
  msgstr "Extra opties"
768
 
769
- #: contact_form.php:1133
770
  #, fuzzy
771
  msgid "Email address"
772
  msgstr "Email adres:"
773
 
774
- #: contact_form.php:1138
775
  #, fuzzy
776
  msgid "Phone Number"
777
  msgstr "Telefoonnummer:"
778
 
779
- #: contact_form.php:1152
780
  #, fuzzy
781
  msgid "Attachment"
782
  msgstr "Bijlage:"
783
 
784
- #: contact_form.php:1157
785
  msgid "(powered by bestwebsoft.com)"
786
  msgstr ""
787
 
788
- #: contact_form.php:1162
789
  #, fuzzy
790
  msgid "Style options"
791
  msgstr "Extra opties"
792
 
793
- #: contact_form.php:1165
794
  msgid "Text color"
795
  msgstr ""
796
 
797
- #: contact_form.php:1168
798
- #: contact_form.php:1173
799
- #: contact_form.php:1183
800
- #: contact_form.php:1188
801
- #: contact_form.php:1193
802
- #: contact_form.php:1198
803
- #: contact_form.php:1208
804
- #: contact_form.php:1213
805
- #: contact_form.php:1219
806
- #: contact_form.php:1230
807
- #: contact_form.php:1235
808
- #: contact_form.php:1240
809
  msgid "Default"
810
  msgstr ""
811
 
812
- #: contact_form.php:1170
813
  msgid "Label text color"
814
  msgstr ""
815
 
816
- #: contact_form.php:1175
817
  msgid "Placeholder color"
818
  msgstr ""
819
 
820
- #: contact_form.php:1180
821
  msgid "Errors color"
822
  msgstr ""
823
 
824
- #: contact_form.php:1185
825
  msgid "Error text color"
826
  msgstr ""
827
 
828
- #: contact_form.php:1190
829
  msgid "Background color of the input field errors"
830
  msgstr ""
831
 
832
- #: contact_form.php:1195
833
  msgid "Border color of the input field errors"
834
  msgstr ""
835
 
836
- #: contact_form.php:1200
837
  msgid "Placeholder color of the input field errors"
838
  msgstr ""
839
 
840
- #: contact_form.php:1205
841
  #, fuzzy
842
  msgid "Input fields"
843
  msgstr "Toon tekst"
844
 
845
- #: contact_form.php:1210
846
  msgid "Input fields background color"
847
  msgstr ""
848
 
849
- #: contact_form.php:1215
850
  msgid "Text fields color"
851
  msgstr ""
852
 
853
- #: contact_form.php:1217
854
  msgid "Border width in px, numbers only"
855
  msgstr ""
856
 
857
- #: contact_form.php:1221
858
- #: contact_form.php:1242
859
  msgid "Border color"
860
  msgstr ""
861
 
862
- #: contact_form.php:1226
863
  #, fuzzy
864
  msgid "Submit button"
865
  msgstr "Versturen"
866
 
867
- #: contact_form.php:1228
868
  msgid "Width in px, numbers only"
869
  msgstr ""
870
 
871
- #: contact_form.php:1232
872
  msgid "Button color"
873
  msgstr ""
874
 
875
- #: contact_form.php:1237
876
  msgid "Button text color"
877
  msgstr ""
878
 
879
- #: contact_form.php:1258
880
  #, fuzzy
881
  msgid "Contact Form Pro | Preview"
882
  msgstr "Contact Form"
883
 
884
- #: contact_form.php:1261
885
  msgid "Show with errors"
886
  msgstr ""
887
 
888
- #: contact_form.php:1269
889
- #: contact_form.php:1271
890
  msgid "Please enter your full name..."
891
  msgstr ""
892
 
893
- #: contact_form.php:1282
894
- #: contact_form.php:1284
895
  msgid "Please enter your address..."
896
  msgstr ""
897
 
898
- #: contact_form.php:1293
899
- #: contact_form.php:1295
900
  #, fuzzy
901
  msgid "Please enter your email address..."
902
  msgstr "Gebruik dit email adres:"
903
 
904
- #: contact_form.php:1304
905
- #: contact_form.php:1306
906
  msgid "Please enter your phone number..."
907
  msgstr ""
908
 
909
- #: contact_form.php:1315
910
- #: contact_form.php:1317
911
  msgid "Please enter subject..."
912
  msgstr ""
913
 
914
- #: contact_form.php:1325
915
- #: contact_form.php:1327
916
  msgid "Please enter your message..."
917
  msgstr ""
918
 
919
- #: contact_form.php:1369
920
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
921
  msgstr ""
922
 
923
- #: contact_form.php:1371
924
  msgid "Please, go to"
925
  msgstr ""
926
 
927
- #: contact_form.php:1371
928
  #, fuzzy
929
  msgid "the setting page"
930
  msgstr "Instellingen"
931
 
932
- #: contact_form.php:1372
933
  msgid "You will be redirected automatically in 5 seconds."
934
  msgstr ""
935
 
936
- #: contact_form.php:1377
937
  msgid "You can download and activate"
938
  msgstr ""
939
 
940
- #: contact_form.php:1379
941
  msgid "version of this plugin by entering Your license key."
942
  msgstr ""
943
 
944
- #: contact_form.php:1381
945
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
946
  msgstr ""
947
 
948
- #: contact_form.php:1383
949
  msgid "(your username is the email you specify when purchasing the product)."
950
  msgstr ""
951
 
952
- #: contact_form.php:1391
953
- #: contact_form.php:1401
954
  msgid "Go!"
955
  msgstr ""
956
 
957
- #: contact_form.php:1451
958
  msgid "Sorry, email message could not be delivered."
959
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
960
 
961
- #: contact_form.php:1837
962
  msgid "Contact from"
963
  msgstr "Contact van"
964
 
965
- #: contact_form.php:1850
966
- #: contact_form.php:1876
967
  msgid "Email"
968
  msgstr "Email"
969
 
970
- #: contact_form.php:1854
971
- #: contact_form.php:1878
972
  msgid "Phone"
973
  msgstr "Telefoonnummer"
974
 
975
- #: contact_form.php:1863
976
- #: contact_form.php:1881
977
  msgid "Site"
978
  msgstr "Website"
979
 
980
- #: contact_form.php:1943
981
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
982
  msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
983
 
984
- #: contact_form.php:2011
985
  msgid "FAQ"
986
  msgstr "Veel gestelde vragen (FAQ)"
987
 
988
- #: contact_form.php:2012
989
  msgid "Support"
990
  msgstr "Ondersteuning"
991
 
992
- #: contact_form.php:2070
993
  msgid "Are you sure that you want to delete this language data?"
994
  msgstr "Weet u zeker dat u deze taal wilt verwijderen?"
995
 
996
- #: contact_form.php:2225
997
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
998
  msgstr ""
999
 
1000
- #: contact_form.php:2226
1001
  msgid "Extend standard plugin functionality with new great options."
1002
  msgstr ""
1003
 
1004
- #: contact_form.php:2235
1005
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1006
  msgstr ""
1007
 
1008
- #: contact_form.php:2236
1009
  msgid "Manage messages that have been sent from your website."
1010
  msgstr ""
1011
 
 
 
 
 
1012
  #, fuzzy
1013
  #~ msgid "Contact Form Pro Extra Settings"
1014
  #~ msgstr "Contact Form Opties"
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:38+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:38+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung, Dorine Kat-Stronck <thartung@adipositas-mm.de, info@katchy.nl>\n"
9
  "Language: nl_NL\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Contact Form Opties"
24
 
25
+ #: contact_form.php:73
26
  msgid "Contact Form"
27
  msgstr "Contact Form"
28
 
29
+ #: contact_form.php:149
30
+ #: contact_form.php:1131
31
+ #: contact_form.php:1165
32
  msgid "Name:"
33
  msgstr "Naam:"
34
 
35
+ #: contact_form.php:150
36
+ #: contact_form.php:1132
37
+ #: contact_form.php:1166
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "Email adres:"
41
 
42
+ #: contact_form.php:151
43
+ #: contact_form.php:1133
44
+ #: contact_form.php:1167
45
  msgid "Email Address:"
46
  msgstr "E-mailadres:"
47
 
48
+ #: contact_form.php:152
49
+ #: contact_form.php:1134
50
+ #: contact_form.php:1168
51
  msgid "Phone number:"
52
  msgstr "Telefoonnummer:"
53
 
54
+ #: contact_form.php:153
55
+ #: contact_form.php:1135
56
+ #: contact_form.php:1169
57
  msgid "Subject:"
58
  msgstr "Onderwerp:"
59
 
60
+ #: contact_form.php:154
61
+ #: contact_form.php:1136
62
+ #: contact_form.php:1170
63
  msgid "Message:"
64
  msgstr "Bericht:"
65
 
66
+ #: contact_form.php:155
67
+ #: contact_form.php:1137
68
+ #: contact_form.php:1171
69
  msgid "Attachment:"
70
  msgstr "Bijlage:"
71
 
72
+ #: contact_form.php:156
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
+ #: contact_form.php:157
77
+ #: contact_form.php:1139
78
+ #: contact_form.php:1173
79
  msgid "Send me a copy"
80
  msgstr "Kopie aan mij sturen"
81
 
82
+ #: contact_form.php:158
83
+ #: contact_form.php:1140
84
+ #: contact_form.php:1174
85
  msgid "Submit"
86
  msgstr "Versturen"
87
 
88
+ #: contact_form.php:159
89
  msgid "Your name is required."
90
  msgstr "Uw naam is verplicht."
91
 
92
+ #: contact_form.php:160
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "Een correct email adres is vereist."
96
 
97
+ #: contact_form.php:161
98
  #, fuzzy
99
  msgid "A valid email address is required."
100
  msgstr "Een correct email adres is vereist."
101
 
102
+ #: contact_form.php:162
103
  msgid "Phone number is required."
104
  msgstr "Telefoonnummer verplicht"
105
 
106
+ #: contact_form.php:163
107
  msgid "Subject is required."
108
  msgstr "Onderwerp tekst is verplicht."
109
 
110
+ #: contact_form.php:164
111
  msgid "Message text is required."
112
  msgstr "Bericht tekst is verplicht."
113
 
114
+ #: contact_form.php:165
115
  msgid "File format is not valid."
116
  msgstr "Bijlage is beschadigd."
117
 
118
+ #: contact_form.php:166
119
  msgid "File upload error."
120
  msgstr ""
121
 
122
+ #: contact_form.php:167
123
  msgid "The file could not be uploaded."
124
  msgstr ""
125
 
126
+ #: contact_form.php:168
127
  msgid "This file is too large."
128
  msgstr ""
129
 
130
+ #: contact_form.php:169
131
  msgid "Please fill out the CAPTCHA."
132
  msgstr "Vul de CAPTCHA in."
133
 
134
+ #: contact_form.php:170
135
  msgid "Please make corrections below and try again."
136
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
137
 
138
+ #: contact_form.php:172
139
  msgid "Thank you for contacting us."
140
  msgstr "Bedankt voor uw bericht."
141
 
142
+ #: contact_form.php:322
143
  #, fuzzy
144
  msgid "requires"
145
  msgstr "Verplicht veld"
146
 
147
+ #: contact_form.php:322
148
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
149
  msgstr ""
150
 
151
+ #: contact_form.php:322
152
  msgid "Back to the WordPress"
153
  msgstr ""
154
 
155
+ #: contact_form.php:322
156
  #, fuzzy
157
  msgid "Plugins page"
158
  msgstr "BWS Plugins"
159
 
160
+ #: contact_form.php:626
161
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
162
  msgstr "Als de optie 'Doorsturen naar pagina' is geselecteerd, dient u het url veld in te vullen in de volgende format"
163
 
164
+ #: contact_form.php:635
165
  msgid "Such user does not exist. Settings are not saved."
166
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
167
 
168
+ #: contact_form.php:639
169
+ #: contact_form.php:645
170
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
171
  msgstr "Geef een geldig e-mailadres op. Instellingen zijn niet opgeslagen."
172
 
173
+ #: contact_form.php:661
174
  #, fuzzy
175
  msgid "Settings saved."
176
  msgstr "Instellingen opgeslagen."
177
 
178
+ #: contact_form.php:688
179
+ #: contact_form.php:720
180
  msgid "Wrong license key"
181
  msgstr ""
182
 
183
+ #: contact_form.php:713
184
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
185
  msgstr ""
186
 
187
+ #: contact_form.php:722
188
  msgid "This license key is bind to another site"
189
  msgstr ""
190
 
191
+ #: contact_form.php:724
192
+ #: contact_form.php:1570
193
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
194
  msgstr ""
195
 
196
+ #: contact_form.php:741
197
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
198
  msgstr ""
199
 
200
+ #: contact_form.php:747
201
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
+ #: contact_form.php:751
205
+ #: contact_form.php:760
206
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
207
  msgstr ""
208
 
209
+ #: contact_form.php:764
210
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
211
  msgstr ""
212
 
213
+ #: contact_form.php:779
214
  #, fuzzy
215
  msgid "Please, enter Your license key"
216
  msgstr "Gebruik dit email adres:"
217
 
218
+ #: contact_form.php:787
219
+ #: contact_form.php:2216
220
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
221
  msgid "Settings"
222
  msgstr "Instellingen"
223
 
224
+ #: contact_form.php:788
225
  #, fuzzy
226
  msgid "Extra settings"
227
  msgstr "Instellingen"
228
 
229
+ #: contact_form.php:789
230
  msgid "Go PRO"
231
  msgstr ""
232
 
233
+ #: contact_form.php:792
234
+ msgid "Notice:"
235
+ msgstr ""
236
+
237
+ #: contact_form.php:792
238
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
239
+ msgstr ""
240
+
241
+ #: contact_form.php:798
242
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
243
+ msgstr ""
244
+
245
+ #: contact_form.php:804
246
+ #: contact_form.php:809
247
+ #: contact_form.php:1529
248
  msgid "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:"
249
  msgstr "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht, op je pagina of widget:"
250
 
251
+ #: contact_form.php:804
252
+ #: contact_form.php:805
253
+ #: contact_form.php:809
254
+ #: contact_form.php:810
255
+ #: contact_form.php:1155
256
+ #: contact_form.php:1157
257
+ #: contact_form.php:1212
258
+ #: contact_form.php:1214
259
  msgid "or"
260
  msgstr ""
261
 
262
+ #: contact_form.php:805
263
+ #: contact_form.php:810
264
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
265
  msgstr ""
266
 
267
+ #: contact_form.php:806
268
+ #: contact_form.php:811
269
  msgid "They work the same way."
270
  msgstr ""
271
 
272
+ #: contact_form.php:807
273
+ #: contact_form.php:812
274
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
275
  msgstr "Als onderstaande velden leeg blijven, zal het bericht gestuurd worden aan het adres dat is gespecificeerd tijdens de registratie."
276
 
277
+ #: contact_form.php:817
278
  msgid "The user's email address:"
279
  msgstr "Gebruik het e-mailadres van de Wordpress gebruiker:"
280
 
281
+ #: contact_form.php:821
282
  msgid "Create a username"
283
  msgstr "Kies gebruikersnaam"
284
 
285
+ #: contact_form.php:828
286
  msgid "Enter a username of the person who should get the messages from the contact form."
287
  msgstr "Voer de naam in van de gebruiker die berichten van dit contact formulier moet ontvangen."
288
 
289
+ #: contact_form.php:832
290
  msgid "Use this email address:"
291
  msgstr "Gebruik dit e-mailadres:"
292
 
293
+ #: contact_form.php:835
294
  msgid "Enter the email address you want the messages forwarded to."
295
  msgstr "Geef een e-mailadres op waar de berichten naar verstuurd moeten worden."
296
 
297
+ #: contact_form.php:844
298
  msgid "Add department selectbox to the contact form:"
299
  msgstr ""
300
 
301
+ #: contact_form.php:852
302
+ #: contact_form.php:1412
303
  msgid "If you upgrade to Pro version all your settings will be saved."
304
  msgstr ""
305
 
306
+ #: contact_form.php:859
307
+ #: contact_form.php:997
308
+ #: contact_form.php:1071
309
+ #: contact_form.php:1419
310
+ msgid "Unlock premium options by upgrading to a PRO version."
311
  msgstr ""
312
 
313
+ #: contact_form.php:860
314
+ #: contact_form.php:998
315
+ #: contact_form.php:1072
316
+ #: contact_form.php:1420
317
+ #: contact_form.php:2473
318
+ #: contact_form.php:2489
319
+ msgid "Learn More"
320
+ msgstr ""
321
 
322
+ #: contact_form.php:863
323
+ #: contact_form.php:1001
324
+ #: contact_form.php:1075
325
+ #: contact_form.php:1423
326
+ msgid "Go"
327
+ msgstr ""
328
+
329
+ #: contact_form.php:870
330
  msgid "Save emails to the database"
331
  msgstr ""
332
 
333
+ #: contact_form.php:876
334
  msgid "Using"
335
  msgstr ""
336
 
337
+ #: contact_form.php:876
338
+ #: contact_form.php:1048
339
+ #: contact_form.php:1051
340
+ #: contact_form.php:1055
341
  msgid "powered by"
342
  msgstr ""
343
 
344
+ #: contact_form.php:879
345
+ #: contact_form.php:883
346
  msgid "Using Contact Form to DB powered by"
347
  msgstr ""
348
 
349
+ #: contact_form.php:879
350
  #, fuzzy
351
  msgid "Activate Contact Form to DB"
352
  msgstr "Contact Form"
353
 
354
+ #: contact_form.php:883
355
  #, fuzzy
356
  msgid "Download Contact Form to DB"
357
  msgstr "Contact Form"
358
 
359
+ #: contact_form.php:888
360
  msgid "Additional options"
361
  msgstr "Extra opties"
362
 
363
+ #: contact_form.php:890
364
  msgid "Show"
365
  msgstr ""
366
 
367
+ #: contact_form.php:891
368
  msgid "Hide"
369
  msgstr ""
370
 
371
+ #: contact_form.php:895
372
  msgid "What to use?"
373
  msgstr "Voor welk gebruik?"
374
 
375
+ #: contact_form.php:898
376
  msgid "Wp-mail"
377
  msgstr "Wp-mail"
378
 
379
+ #: contact_form.php:898
380
  msgid "You can use the wp_mail function for mailing"
381
  msgstr "Om emails te verzenden kunt u the wordpress wp-mail functie gebruiken"
382
 
383
+ #: contact_form.php:900
384
  msgid "Mail"
385
  msgstr "Mail"
386
 
387
+ #: contact_form.php:900
388
  msgid "To send mail you can use the php mail function"
389
  msgstr "Om emails te verzenden kunt e de php mail functie gebruiken"
390
 
391
+ #: contact_form.php:904
392
  #, fuzzy
393
  msgid "The text in the 'From' field"
394
  msgstr "Verander de tekst voor 'VAN' veld van het email adres"
395
 
396
+ #: contact_form.php:906
397
  msgid "User name"
398
  msgstr ""
399
 
400
+ #: contact_form.php:907
401
  #, fuzzy
402
  msgid "The name of the user who fills the form will be used in the field 'From'."
403
  msgstr "In het veld 'Van' in de email zal het email adres van degene die het formulier invult gebruikt worden."
404
 
405
+ #: contact_form.php:910
406
  #, fuzzy
407
  msgid "This text will be used in the 'FROM' field"
408
  msgstr "In het veld 'Van' dit email adres zal worden gebruikt."
409
 
410
+ #: contact_form.php:914
411
  #, fuzzy
412
  msgid "The email address in the 'From' field"
413
  msgstr "Kies het email adres voor 'Van' veld voor het versturen van de mail"
414
 
415
+ #: contact_form.php:916
416
  msgid "User email"
417
  msgstr ""
418
 
419
+ #: contact_form.php:917
420
  #, fuzzy
421
  msgid "The email address of the user who fills the form will be used in the field 'From'."
422
  msgstr "In het veld 'Van' in de email zal het email adres van degene die het formulier invult gebruikt worden."
423
 
424
+ #: contact_form.php:920
425
  msgid "This email address will be used in the 'From' field."
426
  msgstr "In het veld 'Van' dit e-mailadres zal worden gebruikt."
427
 
428
+ #: contact_form.php:924
429
  #, fuzzy
430
  msgid "Required symbol"
431
  msgstr "Verplicht veld"
432
 
433
+ #: contact_form.php:934
434
  msgid "Fields"
435
  msgstr ""
436
 
437
+ #: contact_form.php:935
438
  msgid "Used"
439
  msgstr ""
440
 
441
+ #: contact_form.php:936
442
  #, fuzzy
443
  msgid "Required"
444
  msgstr "Verplicht veld"
445
 
446
+ #: contact_form.php:937
447
  msgid "Visible"
448
  msgstr ""
449
 
450
+ #: contact_form.php:938
451
  msgid "Disabled for editing"
452
  msgstr ""
453
 
454
+ #: contact_form.php:939
455
  msgid "Field's default value"
456
  msgstr ""
457
 
458
+ #: contact_form.php:944
459
+ #: contact_form.php:1287
460
+ #: contact_form.php:2059
461
+ #: contact_form.php:2089
462
  msgid "Name"
463
  msgstr "Naam"
464
 
465
+ #: contact_form.php:952
466
+ #: contact_form.php:1292
467
+ #: contact_form.php:2063
468
+ #: contact_form.php:2091
469
  #, fuzzy
470
  msgid "Address"
471
  msgstr "Email adres:"
472
 
473
+ #: contact_form.php:960
474
  #, fuzzy
475
  msgid "Email Address"
476
  msgstr "Email adres:"
477
 
478
+ #: contact_form.php:968
479
  #, fuzzy
480
  msgid "Phone number"
481
  msgstr "Telefoonnummer:"
482
 
483
+ #: contact_form.php:976
484
+ #: contact_form.php:1307
485
+ #: contact_form.php:2073
486
+ #: contact_form.php:2095
487
  msgid "Subject"
488
  msgstr "Onderwerp"
489
 
490
+ #: contact_form.php:984
491
+ #: contact_form.php:1311
492
+ #: contact_form.php:2076
493
+ #: contact_form.php:2096
494
  msgid "Message"
495
  msgstr "Bericht"
496
 
497
+ #: contact_form.php:1008
498
  #, fuzzy
499
  msgid "Attachment block"
500
  msgstr "Toon de bijlage knop"
501
 
502
+ #: contact_form.php:1010
503
  msgid "Users can attach the following file formats"
504
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
505
 
506
+ #: contact_form.php:1023
507
  msgid "Add to the form"
508
  msgstr ""
509
 
510
+ #: contact_form.php:1028
511
  #, fuzzy
512
  msgid "Tips below the Attachment"
513
  msgstr "Toon uitleg na Bijlage knop"
514
 
515
+ #: contact_form.php:1037
516
  #, fuzzy
517
  msgid "'Send me a copy' block"
518
  msgstr "Geef 'Kopie aan mij sturen' weer"
519
 
520
+ #: contact_form.php:1048
521
+ #: contact_form.php:1051
522
+ #: contact_form.php:1055
523
+ #: contact_form.php:1321
524
  msgid "Captcha"
525
  msgstr ""
526
 
527
+ #: contact_form.php:1051
528
  #, fuzzy
529
  msgid "Activate captcha"
530
  msgstr "Geactiveerde plugins"
531
 
532
+ #: contact_form.php:1055
533
  #, fuzzy
534
  msgid "Download captcha"
535
  msgstr "Download"
536
 
537
+ #: contact_form.php:1063
538
  msgid "Agreement checkbox"
539
  msgstr ""
540
 
541
+ #: contact_form.php:1063
542
  msgid "Required checkbox for submitting the form"
543
  msgstr ""
544
 
545
+ #: contact_form.php:1064
546
  msgid "Optional checkbox"
547
  msgstr ""
548
 
549
+ #: contact_form.php:1064
550
  msgid "Optional checkbox, the results of which will be displayed in email"
551
  msgstr ""
552
 
553
+ #: contact_form.php:1081
554
  msgid "Delete an attachment file from the server after the email is sent"
555
  msgstr ""
556
 
557
+ #: contact_form.php:1087
558
  msgid "Email in HTML format sending"
559
  msgstr ""
560
 
561
+ #: contact_form.php:1091
562
  #, fuzzy
563
  msgid "Display additional info in the email"
564
  msgstr "Toon aanvullende informatie in de email"
565
 
566
+ #: contact_form.php:1096
567
+ #: contact_form.php:2026
568
+ #: contact_form.php:2028
569
  msgid "Sent from (ip address)"
570
  msgstr "Verstuurd van (IP-adres)"
571
 
572
+ #: contact_form.php:1096
573
  #, fuzzy
574
  msgid "Example: Sent from (IP address):\t127.0.0.1"
575
  msgstr "Verstuurd van (IP-adres)"
576
 
577
+ #: contact_form.php:1097
578
+ #: contact_form.php:2032
579
+ #: contact_form.php:2034
580
  msgid "Date/Time"
581
  msgstr "Datum/Tijd"
582
 
583
+ #: contact_form.php:1097
584
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
585
  msgstr ""
586
 
587
+ #: contact_form.php:1098
588
+ #: contact_form.php:2038
589
+ #: contact_form.php:2040
590
  msgid "Sent from (referer)"
591
  msgstr "Verstuurd vanaf (referer)"
592
 
593
+ #: contact_form.php:1098
594
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
595
  msgstr ""
596
 
597
+ #: contact_form.php:1099
598
+ #: contact_form.php:2044
599
+ #: contact_form.php:2046
600
  msgid "Using (user agent)"
601
  msgstr "Met (user agent)"
602
 
603
+ #: contact_form.php:1099
604
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
605
  msgstr ""
606
 
607
+ #: contact_form.php:1103
608
  msgid "Language settings for the field names in the form"
609
  msgstr "Taal instellingen voor velden met een label"
610
 
611
+ #: contact_form.php:1112
612
  #, fuzzy
613
  msgid "Add a language"
614
  msgstr "Voeg een taal toe"
615
 
616
+ #: contact_form.php:1116
617
  msgid "Change the names of the contact form fields and error messages"
618
  msgstr "Verander de namen van de labels en de foutmeldingen"
619
 
620
+ #: contact_form.php:1121
621
+ #: contact_form.php:1202
622
  msgid "English"
623
  msgstr "Engels"
624
 
625
+ #: contact_form.php:1129
626
+ #: contact_form.php:1163
627
  msgid "click to expand/hide the list"
628
  msgstr ""
629
 
630
+ #: contact_form.php:1138
631
+ #: contact_form.php:1172
632
  #, fuzzy
633
  msgid "Tips below the Attachment block"
634
  msgstr "Toon uitleg na Bijlage knop"
635
 
636
+ #: contact_form.php:1141
637
+ #: contact_form.php:1175
638
  msgid "Error message for the Name field"
639
  msgstr "Foutmelding voor naam veld"
640
 
641
+ #: contact_form.php:1142
642
+ #: contact_form.php:1176
643
  #, fuzzy
644
  msgid "Error message for the Address field"
645
  msgstr "Foutmelding voor bericht veld"
646
 
647
+ #: contact_form.php:1143
648
+ #: contact_form.php:1177
649
  msgid "Error message for the Email field"
650
  msgstr "Foutmelding voor email veld"
651
 
652
+ #: contact_form.php:1144
653
+ #: contact_form.php:1178
654
  msgid "Error message for the Phone field"
655
  msgstr "Foutmelding voor telefoonnummer veld"
656
 
657
+ #: contact_form.php:1145
658
+ #: contact_form.php:1179
659
  msgid "Error message for the Subject field"
660
  msgstr "Foutmelding voor onderwerp veld"
661
 
662
+ #: contact_form.php:1146
663
+ #: contact_form.php:1180
664
  msgid "Error message for the Message field"
665
  msgstr "Foutmelding voor bericht veld"
666
 
667
+ #: contact_form.php:1147
668
+ #: contact_form.php:1181
669
  #, fuzzy
670
  msgid "Error message about the file type for the Attachment field"
671
  msgstr "Foutmelding voor bijlage veld"
672
 
673
+ #: contact_form.php:1148
674
+ #: contact_form.php:1182
675
  #, fuzzy
676
  msgid "Error message while uploading a file for the Attachment field to the server"
677
  msgstr "Foutmelding voor bijlage veld"
678
 
679
+ #: contact_form.php:1149
680
+ #: contact_form.php:1183
681
  #, fuzzy
682
  msgid "Error message while moving the file for the Attachment field"
683
  msgstr "Foutmelding voor bijlage veld"
684
 
685
+ #: contact_form.php:1150
686
+ #: contact_form.php:1184
687
  #, fuzzy
688
  msgid "Error message when file size limit for the Attachment field is exceeded"
689
  msgstr "Foutmelding voor bijlage veld"
690
 
691
+ #: contact_form.php:1151
692
+ #: contact_form.php:1185
693
  msgid "Error message for the Captcha field"
694
  msgstr "Foutmelding voor captcha"
695
 
696
+ #: contact_form.php:1152
697
+ #: contact_form.php:1186
698
  msgid "Error message for the whole form"
699
  msgstr "Foutmelding voor het gehele formulier"
700
 
701
+ #: contact_form.php:1155
702
+ #: contact_form.php:1157
703
+ #: contact_form.php:1189
704
+ #: contact_form.php:1191
705
+ #: contact_form.php:1212
706
+ #: contact_form.php:1214
707
+ #: contact_form.php:1222
708
+ #: contact_form.php:1224
709
  msgid "Use shortcode"
710
  msgstr "Gebruik shortcode"
711
 
712
+ #: contact_form.php:1155
713
+ #: contact_form.php:1157
714
+ #: contact_form.php:1189
715
+ #: contact_form.php:1191
716
+ #: contact_form.php:1212
717
+ #: contact_form.php:1214
718
+ #: contact_form.php:1222
719
+ #: contact_form.php:1224
720
  msgid "for this language"
721
  msgstr "voor deze taal"
722
 
723
+ #: contact_form.php:1199
724
  msgid "Action after email is sent"
725
  msgstr "Actie na het verzenden van de email"
726
 
727
+ #: contact_form.php:1201
728
  msgid "Display text"
729
  msgstr "Toon tekst"
730
 
731
+ #: contact_form.php:1210
732
+ #: contact_form.php:1220
733
  msgid "Text"
734
  msgstr "Tekst"
735
 
736
+ #: contact_form.php:1231
737
  msgid "Redirect to the page"
738
  msgstr "Dooorsturen naar pagina"
739
 
740
+ #: contact_form.php:1232
741
  msgid "Url"
742
  msgstr "Url"
743
 
744
+ #: contact_form.php:1236
745
  msgid "The $_SERVER variable that is used to build a URL of the form"
746
  msgstr ""
747
 
748
+ #: contact_form.php:1240
749
  msgid "If you are not sure whether to change this setting or not, please do not do that."
750
  msgstr ""
751
 
752
+ #: contact_form.php:1246
753
+ #: contact_form.php:1430
754
  msgid "Save Changes"
755
  msgstr "Bewaar veranderingen"
756
 
757
+ #: contact_form.php:1251
758
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
759
  msgstr ""
760
 
761
+ #: contact_form.php:1252
762
  #, fuzzy
763
  msgid "Rate the plugin"
764
  msgstr "Aanbevolen Plugins"
765
 
766
+ #: contact_form.php:1255
767
  #, fuzzy
768
  msgid "If there is something wrong about it, please contact us"
769
  msgstr "Mocht u nog vragen hebben, stuur dan een email naar plugin@bestwebsoft.com of vul het contactformulier op onze website in."
770
 
771
+ #: contact_form.php:1267
772
  msgid "Errors output"
773
  msgstr ""
774
 
775
+ #: contact_form.php:1270
776
  msgid "Display error messages"
777
  msgstr ""
778
 
779
+ #: contact_form.php:1271
780
  msgid "Color of the input field errors."
781
  msgstr ""
782
 
783
+ #: contact_form.php:1272
784
  #, fuzzy
785
  msgid "Display error messages & color of the input field errors"
786
  msgstr "Foutmelding voor onderwerp veld"
787
 
788
+ #: contact_form.php:1277
789
  msgid "Add placeholder to the input blocks"
790
  msgstr ""
791
 
792
+ #: contact_form.php:1283
793
  #, fuzzy
794
  msgid "Add tooltips"
795
  msgstr "Extra opties"
796
 
797
+ #: contact_form.php:1297
798
  #, fuzzy
799
  msgid "Email address"
800
  msgstr "Email adres:"
801
 
802
+ #: contact_form.php:1302
803
  #, fuzzy
804
  msgid "Phone Number"
805
  msgstr "Telefoonnummer:"
806
 
807
+ #: contact_form.php:1316
808
  #, fuzzy
809
  msgid "Attachment"
810
  msgstr "Bijlage:"
811
 
812
+ #: contact_form.php:1321
813
  msgid "(powered by bestwebsoft.com)"
814
  msgstr ""
815
 
816
+ #: contact_form.php:1326
817
  #, fuzzy
818
  msgid "Style options"
819
  msgstr "Extra opties"
820
 
821
+ #: contact_form.php:1329
822
  msgid "Text color"
823
  msgstr ""
824
 
825
+ #: contact_form.php:1332
826
+ #: contact_form.php:1337
827
+ #: contact_form.php:1347
828
+ #: contact_form.php:1352
829
+ #: contact_form.php:1357
830
+ #: contact_form.php:1362
831
+ #: contact_form.php:1372
832
+ #: contact_form.php:1377
833
+ #: contact_form.php:1383
834
+ #: contact_form.php:1394
835
+ #: contact_form.php:1399
836
+ #: contact_form.php:1404
837
  msgid "Default"
838
  msgstr ""
839
 
840
+ #: contact_form.php:1334
841
  msgid "Label text color"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1339
845
  msgid "Placeholder color"
846
  msgstr ""
847
 
848
+ #: contact_form.php:1344
849
  msgid "Errors color"
850
  msgstr ""
851
 
852
+ #: contact_form.php:1349
853
  msgid "Error text color"
854
  msgstr ""
855
 
856
+ #: contact_form.php:1354
857
  msgid "Background color of the input field errors"
858
  msgstr ""
859
 
860
+ #: contact_form.php:1359
861
  msgid "Border color of the input field errors"
862
  msgstr ""
863
 
864
+ #: contact_form.php:1364
865
  msgid "Placeholder color of the input field errors"
866
  msgstr ""
867
 
868
+ #: contact_form.php:1369
869
  #, fuzzy
870
  msgid "Input fields"
871
  msgstr "Toon tekst"
872
 
873
+ #: contact_form.php:1374
874
  msgid "Input fields background color"
875
  msgstr ""
876
 
877
+ #: contact_form.php:1379
878
  msgid "Text fields color"
879
  msgstr ""
880
 
881
+ #: contact_form.php:1381
882
  msgid "Border width in px, numbers only"
883
  msgstr ""
884
 
885
+ #: contact_form.php:1385
886
+ #: contact_form.php:1406
887
  msgid "Border color"
888
  msgstr ""
889
 
890
+ #: contact_form.php:1390
891
  #, fuzzy
892
  msgid "Submit button"
893
  msgstr "Versturen"
894
 
895
+ #: contact_form.php:1392
896
  msgid "Width in px, numbers only"
897
  msgstr ""
898
 
899
+ #: contact_form.php:1396
900
  msgid "Button color"
901
  msgstr ""
902
 
903
+ #: contact_form.php:1401
904
  msgid "Button text color"
905
  msgstr ""
906
 
907
+ #: contact_form.php:1434
908
  #, fuzzy
909
  msgid "Contact Form Pro | Preview"
910
  msgstr "Contact Form"
911
 
912
+ #: contact_form.php:1437
913
  msgid "Show with errors"
914
  msgstr ""
915
 
916
+ #: contact_form.php:1445
917
+ #: contact_form.php:1447
918
  msgid "Please enter your full name..."
919
  msgstr ""
920
 
921
+ #: contact_form.php:1458
922
+ #: contact_form.php:1460
923
  msgid "Please enter your address..."
924
  msgstr ""
925
 
926
+ #: contact_form.php:1469
927
+ #: contact_form.php:1471
928
  #, fuzzy
929
  msgid "Please enter your email address..."
930
  msgstr "Gebruik dit email adres:"
931
 
932
+ #: contact_form.php:1480
933
+ #: contact_form.php:1482
934
  msgid "Please enter your phone number..."
935
  msgstr ""
936
 
937
+ #: contact_form.php:1491
938
+ #: contact_form.php:1493
939
  msgid "Please enter subject..."
940
  msgstr ""
941
 
942
+ #: contact_form.php:1501
943
+ #: contact_form.php:1503
944
  msgid "Please enter your message..."
945
  msgstr ""
946
 
947
+ #: contact_form.php:1545
948
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
949
  msgstr ""
950
 
951
+ #: contact_form.php:1547
952
  msgid "Please, go to"
953
  msgstr ""
954
 
955
+ #: contact_form.php:1547
956
  #, fuzzy
957
  msgid "the setting page"
958
  msgstr "Instellingen"
959
 
960
+ #: contact_form.php:1548
961
  msgid "You will be redirected automatically in 5 seconds."
962
  msgstr ""
963
 
964
+ #: contact_form.php:1553
965
  msgid "You can download and activate"
966
  msgstr ""
967
 
968
+ #: contact_form.php:1555
969
  msgid "version of this plugin by entering Your license key."
970
  msgstr ""
971
 
972
+ #: contact_form.php:1557
973
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
974
  msgstr ""
975
 
976
+ #: contact_form.php:1559
977
  msgid "(your username is the email you specify when purchasing the product)."
978
  msgstr ""
979
 
980
+ #: contact_form.php:1567
981
+ #: contact_form.php:1577
982
  msgid "Go!"
983
  msgstr ""
984
 
985
+ #: contact_form.php:1647
986
  msgid "Sorry, email message could not be delivered."
987
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
988
 
989
+ #: contact_form.php:2053
990
  msgid "Contact from"
991
  msgstr "Contact van"
992
 
993
+ #: contact_form.php:2066
994
+ #: contact_form.php:2092
995
  msgid "Email"
996
  msgstr "Email"
997
 
998
+ #: contact_form.php:2070
999
+ #: contact_form.php:2094
1000
  msgid "Phone"
1001
  msgstr "Telefoonnummer"
1002
 
1003
+ #: contact_form.php:2079
1004
+ #: contact_form.php:2097
1005
  msgid "Site"
1006
  msgstr "Website"
1007
 
1008
+ #: contact_form.php:2160
1009
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
1010
  msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
1011
 
1012
+ #: contact_form.php:2229
1013
  msgid "FAQ"
1014
  msgstr "Veel gestelde vragen (FAQ)"
1015
 
1016
+ #: contact_form.php:2230
1017
  msgid "Support"
1018
  msgstr "Ondersteuning"
1019
 
1020
+ #: contact_form.php:2280
1021
  msgid "Are you sure that you want to delete this language data?"
1022
  msgstr "Weet u zeker dat u deze taal wilt verwijderen?"
1023
 
1024
+ #: contact_form.php:2476
1025
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
1026
  msgstr ""
1027
 
1028
+ #: contact_form.php:2477
1029
  msgid "Extend standard plugin functionality with new great options."
1030
  msgstr ""
1031
 
1032
+ #: contact_form.php:2492
1033
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1034
  msgstr ""
1035
 
1036
+ #: contact_form.php:2493
1037
  msgid "Manage messages that have been sent from your website."
1038
  msgstr ""
1039
 
1040
+ #, fuzzy
1041
+ #~ msgid "Contact Form Pro"
1042
+ #~ msgstr "Contact Form"
1043
+
1044
  #, fuzzy
1045
  #~ msgid "Contact Form Pro Extra Settings"
1046
  #~ msgstr "Contact Form Opties"
languages/contact_form-pt_BR.mo CHANGED
Binary file
languages/contact_form-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-20 14:05+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:05+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Breno Jacinto, DJIO | Dionizio Bonfim Bach <brenojac@gmail.com, wordpress@djio.com.br>\n"
9
  "Language: pt_BR\n"
@@ -19,1124 +19,1151 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ contact_form
22
- #: contact_form.php:33
23
- #: contact_form.php:660
24
  msgid "Contact Form Settings"
25
  msgstr "Configurações do Formulário de Contato"
26
 
27
  # @ contact_form
28
- #: contact_form.php:33
29
  msgid "Contact Form"
30
  msgstr "Formulário de contato"
31
 
32
  # @ contact_form
33
- #: contact_form.php:80
34
- #: contact_form.php:978
35
- #: contact_form.php:1008
36
  msgid "Name:"
37
  msgstr "Nome:"
38
 
39
  # @ contact_form
40
- #: contact_form.php:81
41
- #: contact_form.php:979
42
- #: contact_form.php:1009
43
  msgid "Address:"
44
  msgstr "Endereço:"
45
 
46
  # @ contact_form
47
- #: contact_form.php:82
48
- #: contact_form.php:980
49
- #: contact_form.php:1010
50
  msgid "Email Address:"
51
  msgstr "Endereço de E-mail:"
52
 
53
  # @ contact_form
54
- #: contact_form.php:83
55
- #: contact_form.php:981
56
- #: contact_form.php:1011
57
  msgid "Phone number:"
58
  msgstr "Número de Telefone:"
59
 
60
  # @ contact_form
61
- #: contact_form.php:84
62
- #: contact_form.php:982
63
- #: contact_form.php:1012
64
  msgid "Subject:"
65
  msgstr "Assunto:"
66
 
67
  # @ contact_form
68
- #: contact_form.php:85
69
- #: contact_form.php:983
70
- #: contact_form.php:1013
71
  msgid "Message:"
72
  msgstr "Mensagem:"
73
 
74
  # @ contact_form
75
- #: contact_form.php:86
76
- #: contact_form.php:984
77
- #: contact_form.php:1014
78
  msgid "Attachment:"
79
  msgstr "Anexo:"
80
 
81
  # @ contact_form
82
- #: contact_form.php:87
83
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
84
  msgstr "Tipos de arquivo suportados: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Tamanho máximo do arquivo: 2Mb"
85
 
86
  # @ contact_form
87
- #: contact_form.php:88
88
- #: contact_form.php:986
89
- #: contact_form.php:1016
90
  msgid "Send me a copy"
91
  msgstr "Envie-me uma cópia"
92
 
93
  # @ contact_form
94
- #: contact_form.php:89
95
- #: contact_form.php:987
96
- #: contact_form.php:1017
97
  msgid "Submit"
98
  msgstr "Enviar"
99
 
100
  # @ contact_form
101
- #: contact_form.php:90
102
  msgid "Your name is required."
103
  msgstr "Seu nome é obrigatório"
104
 
105
  # @ contact_form
106
- #: contact_form.php:91
107
  msgid "Address is required."
108
  msgstr "Endereço é obrigatório."
109
 
110
  # @ contact_form
111
- #: contact_form.php:92
112
  msgid "A valid email address is required."
113
  msgstr "Um e-mail válido é obrigatório."
114
 
115
  # @ contact_form
116
- #: contact_form.php:93
117
  msgid "Phone number is required."
118
  msgstr "Telefone é obrigatório."
119
 
120
  # @ contact_form
121
- #: contact_form.php:94
122
  msgid "Subject is required."
123
  msgstr "O Assunto da mensagem é obrigatório."
124
 
125
  # @ contact_form
126
- #: contact_form.php:95
127
  msgid "Message text is required."
128
  msgstr "O texto da Mensagem é obrigatório."
129
 
130
  # @ contact_form
131
- #: contact_form.php:96
132
  msgid "File format is not valid."
133
  msgstr "Impossível anexar arquivo. "
134
 
135
  # @ contact_form
136
- #: contact_form.php:97
137
  msgid "File upload error."
138
  msgstr "Erro no upload do arquivo."
139
 
140
  # @ contact_form
141
- #: contact_form.php:98
142
  msgid "The file could not be uploaded."
143
  msgstr "O foi possível fazer upload do arquivo."
144
 
145
  # @ contact_form
146
- #: contact_form.php:99
147
  msgid "This file is too large."
148
  msgstr "Este arquivo é muito grande."
149
 
150
  # @ contact_form
151
- #: contact_form.php:100
152
  msgid "Please fill out the CAPTCHA."
153
  msgstr "Por favor, complete a resposta da charada ."
154
 
155
  # @ contact_form
156
- #: contact_form.php:101
157
  msgid "Please make corrections below and try again."
158
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
159
 
160
  # @ bestwebsoft
161
  # @ contact_form
162
- #: contact_form.php:103
163
  msgid "Thank you for contacting us."
164
  msgstr "Obrigado por nos contatar"
165
 
166
  # @ contact_form
167
- #: contact_form.php:203
168
  #, fuzzy
169
  msgid "requires"
170
  msgstr "Campos obrigatórios"
171
 
172
- #: contact_form.php:203
173
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
174
  msgstr ""
175
 
176
- #: contact_form.php:203
177
  msgid "Back to the WordPress"
178
  msgstr ""
179
 
180
- #: contact_form.php:203
181
  msgid "Plugins page"
182
  msgstr ""
183
 
184
  # @ contact_form
185
- #: contact_form.php:494
186
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
187
  msgstr "Se a opção 'Redirecionar para a pagina' estiver selecionada, então o campo URL deve ser no seguinte formato"
188
 
189
  # @ contact_form
190
- #: contact_form.php:503
191
  msgid "Such user does not exist. Settings are not saved."
192
  msgstr "Tal usuário não existe. Configurações não foram salvas."
193
 
194
  # @ contact_form
195
- #: contact_form.php:507
196
- #: contact_form.php:513
197
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
198
  msgstr "Por favor informe um email válido no campo 'DE'. Configurações não foram salvas."
199
 
200
  # @ contact_form
201
- #: contact_form.php:518
202
  msgid "Settings saved."
203
  msgstr "As configurações foram salvas."
204
 
205
- #: contact_form.php:554
206
- #: contact_form.php:593
207
  msgid "Wrong license key"
208
  msgstr ""
209
 
210
- #: contact_form.php:586
211
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
212
  msgstr ""
213
 
214
- #: contact_form.php:595
215
  msgid "This license key is bind to another site"
216
  msgstr ""
217
 
218
- #: contact_form.php:597
219
- #: contact_form.php:1392
220
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
221
  msgstr ""
222
 
223
- #: contact_form.php:615
224
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
225
  msgstr ""
226
 
227
- #: contact_form.php:621
228
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
229
  msgstr ""
230
 
231
- #: contact_form.php:625
232
- #: contact_form.php:634
233
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
234
  msgstr ""
235
 
236
- #: contact_form.php:638
237
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
238
  msgstr ""
239
 
240
  # @ contact_form
241
- #: contact_form.php:653
242
  #, fuzzy
243
  msgid "Please, enter Your license key"
244
  msgstr "Informe sua mensagem…"
245
 
246
- #: contact_form.php:662
247
- msgid "Notice:"
248
- msgstr ""
249
-
250
- #: contact_form.php:662
251
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
252
- msgstr ""
253
-
254
  # @ bestwebsoft
255
  # @ contact_form
256
- #: contact_form.php:665
257
- #: contact_form.php:1997
258
- #: contact_form.php:2008
259
  msgid "Settings"
260
  msgstr "Configurações"
261
 
262
  # @ contact_form
263
- #: contact_form.php:666
264
  msgid "Extra settings"
265
  msgstr "Configurações extras"
266
 
267
- #: contact_form.php:667
268
  msgid "Go PRO"
269
  msgstr ""
270
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  # @ contact_form
272
- #: contact_form.php:673
273
- #: contact_form.php:1351
 
274
  msgid "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:"
275
  msgstr "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
276
 
277
  # @ contact_form
278
- #: contact_form.php:673
279
- #: contact_form.php:674
280
- #: contact_form.php:1001
281
- #: contact_form.php:1050
 
 
 
 
282
  msgid "or"
283
  msgstr "ou"
284
 
285
  # @ contact_form
286
- #: contact_form.php:674
 
287
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
288
  msgstr "Se tiver quaisquer problemas com o shortcode padrão [contact_form], você deve usar o shortcode"
289
 
290
  # @ contact_form
291
- #: contact_form.php:675
 
292
  msgid "They work the same way."
293
  msgstr "Eles funcionam da mesma forma."
294
 
295
  # @ contact_form
296
- #: contact_form.php:676
 
297
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
298
  msgstr "Se informações nos campos abaixo estiverem vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
299
 
300
  # @ contact_form
301
- #: contact_form.php:680
302
  msgid "The user's email address:"
303
  msgstr "Use o email de um usuário do wordpress:"
304
 
305
  # @ contact_form
306
- #: contact_form.php:684
307
  msgid "Create a username"
308
  msgstr "Selecione o nome do usuário"
309
 
310
  # @ contact_form
311
- #: contact_form.php:689
312
  msgid "Enter a username of the person who should get the messages from the contact form."
313
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
314
 
315
  # @ contact_form
316
- #: contact_form.php:693
317
  msgid "Use this email address:"
318
  msgstr "Use este email:"
319
 
320
  # @ contact_form
321
- #: contact_form.php:696
322
  msgid "Enter the email address you want the messages forwarded to."
323
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
324
 
325
- #: contact_form.php:702
326
  msgid "Add department selectbox to the contact form:"
327
  msgstr ""
328
 
329
- #: contact_form.php:710
330
- #: contact_form.php:1246
331
  msgid "If you upgrade to Pro version all your settings will be saved."
332
  msgstr ""
333
 
334
- # @ contact_form
335
- #: contact_form.php:715
336
- #: contact_form.php:852
337
- #: contact_form.php:923
338
- #: contact_form.php:1096
339
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
340
- msgstr "Esta função está disponível na versão Pro do plugin. Para saber mais detalhes, por favor siga o link"
341
 
342
- # @ contact_form
343
- #: contact_form.php:716
344
- #: contact_form.php:853
345
- #: contact_form.php:924
346
- #: contact_form.php:1097
347
- msgid "Contact Form Pro"
348
- msgstr "Formulário de Contato Pro"
 
349
 
350
- #: contact_form.php:722
 
 
 
 
 
 
 
351
  msgid "Save emails to the database"
352
  msgstr ""
353
 
354
- #: contact_form.php:732
355
  msgid "Using"
356
  msgstr ""
357
 
358
  # @ contact_form
359
- #: contact_form.php:732
360
- #: contact_form.php:901
361
- #: contact_form.php:904
362
- #: contact_form.php:908
363
  msgid "powered by"
364
  msgstr "movido a"
365
 
366
- #: contact_form.php:735
367
- #: contact_form.php:739
368
  msgid "Using Contact Form to DB powered by"
369
  msgstr ""
370
 
371
  # @ contact_form
372
- #: contact_form.php:735
373
  #, fuzzy
374
  msgid "Activate Contact Form to DB"
375
  msgstr "Formulário de Contato Pro"
376
 
377
  # @ contact_form
378
- #: contact_form.php:739
379
  #, fuzzy
380
  msgid "Download Contact Form to DB"
381
  msgstr "Formulário de Contato Pro"
382
 
383
  # @ contact_form
384
- #: contact_form.php:744
385
  msgid "Additional options"
386
  msgstr "Opções adicionais"
387
 
388
- #: contact_form.php:746
389
  msgid "Show"
390
  msgstr ""
391
 
392
- #: contact_form.php:747
393
  msgid "Hide"
394
  msgstr ""
395
 
396
  # @ contact_form
397
- #: contact_form.php:751
398
  msgid "What to use?"
399
  msgstr "O que usar?"
400
 
401
  # @ contact_form
402
- #: contact_form.php:754
403
  msgid "Wp-mail"
404
  msgstr "Wp-mail"
405
 
406
  # @ contact_form
407
- #: contact_form.php:754
408
  msgid "You can use the wp_mail function for mailing"
409
  msgstr "Você pode usar a função wp_mail para enviar emails"
410
 
411
  # @ contact_form
412
- #: contact_form.php:756
413
  msgid "Mail"
414
  msgstr "Mail"
415
 
416
  # @ contact_form
417
- #: contact_form.php:756
418
  msgid "To send mail you can use the php mail function"
419
  msgstr "Para enviar emails você pode usar a função mail() do php"
420
 
421
  # @ contact_form
422
- #: contact_form.php:760
423
  #, fuzzy
424
  msgid "The text in the 'From' field"
425
  msgstr "Mude o texto do campo 'DE'"
426
 
427
  # @ contact_form
428
- #: contact_form.php:762
429
  #, fuzzy
430
  msgid "User name"
431
  msgstr "Email do usuário"
432
 
433
  # @ contact_form
434
- #: contact_form.php:763
435
  #, fuzzy
436
  msgid "The name of the user who fills the form will be used in the field 'From'."
437
  msgstr "O endereço de email do usuário que preencher o formulário será usado no campo 'De'"
438
 
439
  # @ contact_form
440
- #: contact_form.php:766
441
  #, fuzzy
442
  msgid "This text will be used in the 'FROM' field"
443
  msgstr "Este endereço de email será usado no campo 'De'"
444
 
445
  # @ contact_form
446
- #: contact_form.php:770
447
  #, fuzzy
448
  msgid "The email address in the 'From' field"
449
  msgstr "Entre com o endereço de e-mail no campo 'De'"
450
 
451
  # @ contact_form
452
- #: contact_form.php:772
453
  msgid "User email"
454
  msgstr "Email do usuário"
455
 
456
  # @ contact_form
457
- #: contact_form.php:773
458
  msgid "The email address of the user who fills the form will be used in the field 'From'."
459
  msgstr "O endereço de email do usuário que preencher o formulário será usado no campo 'De'"
460
 
461
  # @ contact_form
462
- #: contact_form.php:776
463
  msgid "This email address will be used in the 'From' field."
464
  msgstr "Este endereço de email será usado no campo 'De'"
465
 
466
  # @ contact_form
467
- #: contact_form.php:780
468
  #, fuzzy
469
  msgid "Required symbol"
470
  msgstr "Campos obrigatórios"
471
 
472
- #: contact_form.php:790
473
  msgid "Fields"
474
  msgstr ""
475
 
476
- #: contact_form.php:791
477
  msgid "Used"
478
  msgstr ""
479
 
480
  # @ contact_form
481
- #: contact_form.php:792
482
  #, fuzzy
483
  msgid "Required"
484
  msgstr "Campos obrigatórios"
485
 
486
- #: contact_form.php:793
487
  msgid "Visible"
488
  msgstr ""
489
 
490
- #: contact_form.php:794
491
  msgid "Disabled for editing"
492
  msgstr ""
493
 
494
- #: contact_form.php:795
495
  msgid "Field's default value"
496
  msgstr ""
497
 
498
  # @ contact_form
499
- #: contact_form.php:800
500
- #: contact_form.php:1121
501
- #: contact_form.php:1841
502
- #: contact_form.php:1871
503
  msgid "Name"
504
  msgstr "Nome"
505
 
506
  # @ contact_form
507
- #: contact_form.php:808
508
- #: contact_form.php:1126
509
- #: contact_form.php:1845
510
- #: contact_form.php:1873
511
  msgid "Address"
512
  msgstr "Endereço"
513
 
514
  # @ contact_form
515
- #: contact_form.php:816
516
  msgid "Email Address"
517
  msgstr "Endereço de email"
518
 
519
  # @ contact_form
520
- #: contact_form.php:824
521
  #, fuzzy
522
  msgid "Phone number"
523
  msgstr "Número de Telefone:"
524
 
525
  # @ contact_form
526
- #: contact_form.php:832
527
- #: contact_form.php:1141
528
- #: contact_form.php:1855
529
- #: contact_form.php:1877
530
  msgid "Subject"
531
  msgstr "Assunto"
532
 
533
  # @ contact_form
534
- #: contact_form.php:840
535
- #: contact_form.php:1145
536
- #: contact_form.php:1858
537
- #: contact_form.php:1878
538
  msgid "Message"
539
  msgstr "Mensagem"
540
 
541
  # @ contact_form
542
- #: contact_form.php:858
543
  msgid "Attachment block"
544
  msgstr "Bloco de anexos"
545
 
546
  # @ contact_form
547
- #: contact_form.php:860
548
  msgid "Users can attach the following file formats"
549
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
550
 
551
- #: contact_form.php:874
552
  msgid "Add to the form"
553
  msgstr ""
554
 
555
  # @ contact_form
556
- #: contact_form.php:879
557
  #, fuzzy
558
  msgid "Tips below the Attachment"
559
  msgstr "Exibir dicas abaixo do bloco de Anexos"
560
 
561
  # @ contact_form
562
- #: contact_form.php:888
563
  #, fuzzy
564
  msgid "'Send me a copy' block"
565
  msgstr "Exibir bloco 'Enviar-me uma cópia'"
566
 
567
  # @ contact_form
568
- #: contact_form.php:901
569
- #: contact_form.php:904
570
- #: contact_form.php:908
571
- #: contact_form.php:1155
572
  msgid "Captcha"
573
  msgstr "Captcha"
574
 
575
  # @ contact_form
576
- #: contact_form.php:904
577
  msgid "Activate captcha"
578
  msgstr "Ativar captcha"
579
 
580
  # @ contact_form
581
- #: contact_form.php:908
582
  msgid "Download captcha"
583
  msgstr "Fazer Download do Captcha"
584
 
585
- #: contact_form.php:916
586
  msgid "Agreement checkbox"
587
  msgstr ""
588
 
589
- #: contact_form.php:916
590
  msgid "Required checkbox for submitting the form"
591
  msgstr ""
592
 
593
- #: contact_form.php:917
594
  msgid "Optional checkbox"
595
  msgstr ""
596
 
597
- #: contact_form.php:917
598
  msgid "Optional checkbox, the results of which will be displayed in email"
599
  msgstr ""
600
 
601
  # @ contact_form
602
- #: contact_form.php:928
603
  msgid "Delete an attachment file from the server after the email is sent"
604
  msgstr "Excluir um arquivo anexo do servidor depois que o e-mail for enviado"
605
 
606
- #: contact_form.php:934
607
  msgid "Email in HTML format sending"
608
  msgstr ""
609
 
610
  # @ contact_form
611
- #: contact_form.php:938
612
  msgid "Display additional info in the email"
613
  msgstr "Mostre informações adicionais no email"
614
 
615
  # @ contact_form
616
- #: contact_form.php:943
617
- #: contact_form.php:1808
618
- #: contact_form.php:1810
619
  msgid "Sent from (ip address)"
620
  msgstr "Enviado de (Endereço IP)"
621
 
622
  # @ contact_form
623
- #: contact_form.php:943
624
  msgid "Example: Sent from (IP address):\t127.0.0.1"
625
  msgstr "Examplo: Enviado de (endereço IP):\\\t127.0.0.1"
626
 
627
  # @ contact_form
628
- #: contact_form.php:944
629
- #: contact_form.php:1814
630
- #: contact_form.php:1816
631
  msgid "Date/Time"
632
  msgstr "Data / Hora"
633
 
634
  # @ contact_form
635
- #: contact_form.php:944
636
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
637
  msgstr "Exemplo: Data/Hora:\\\t19 de Agosto de 2013 20:50"
638
 
639
  # @ contact_form
640
- #: contact_form.php:945
641
- #: contact_form.php:1820
642
- #: contact_form.php:1822
643
  msgid "Sent from (referer)"
644
  msgstr "Vindo de (origem)"
645
 
646
  # @ contact_form
647
- #: contact_form.php:945
648
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
649
  msgstr "Exemplo: Enviado do (referer):\\\thttp://bestwebsoft.com/contacts/contact-us/"
650
 
651
  # @ contact_form
652
- #: contact_form.php:946
653
- #: contact_form.php:1826
654
- #: contact_form.php:1828
655
  msgid "Using (user agent)"
656
  msgstr "Usando (cliente de email)"
657
 
658
  # @ contact_form
659
- #: contact_form.php:946
660
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
661
  msgstr "Examplo: Usando (user agent):\\\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
662
 
663
  # @ contact_form
664
- #: contact_form.php:950
665
  msgid "Language settings for the field names in the form"
666
  msgstr "Configurações de idioma para os nomes dos campos no formulário"
667
 
668
  # @ contact_form
669
- #: contact_form.php:959
670
  msgid "Add a language"
671
  msgstr "Adicione um idioma"
672
 
673
  # @ contact_form
674
- #: contact_form.php:963
675
  msgid "Change the names of the contact form fields and error messages"
676
  msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
677
 
678
  # @ contact_form
679
- #: contact_form.php:968
680
- #: contact_form.php:1041
681
  msgid "English"
682
  msgstr "Inglês"
683
 
684
- #: contact_form.php:976
685
- #: contact_form.php:1006
686
  msgid "click to expand/hide the list"
687
  msgstr ""
688
 
689
  # @ contact_form
690
- #: contact_form.php:985
691
- #: contact_form.php:1015
692
  #, fuzzy
693
  msgid "Tips below the Attachment block"
694
  msgstr "Exibir dicas abaixo do bloco de Anexos"
695
 
696
  # @ contact_form
697
- #: contact_form.php:988
698
- #: contact_form.php:1018
699
  msgid "Error message for the Name field"
700
  msgstr "Mensagem de erro para o campo Nome"
701
 
702
  # @ contact_form
703
- #: contact_form.php:989
704
- #: contact_form.php:1019
705
  msgid "Error message for the Address field"
706
  msgstr "Mensagem de erro para o campo Endereço"
707
 
708
  # @ contact_form
709
- #: contact_form.php:990
710
- #: contact_form.php:1020
711
  msgid "Error message for the Email field"
712
  msgstr "Mensagem de erro para o campo Email"
713
 
714
  # @ contact_form
715
- #: contact_form.php:991
716
- #: contact_form.php:1021
717
  msgid "Error message for the Phone field"
718
  msgstr "Mensagem de erro para o campo Telefone"
719
 
720
  # @ contact_form
721
- #: contact_form.php:992
722
- #: contact_form.php:1022
723
  msgid "Error message for the Subject field"
724
  msgstr "Mensagem de erro para o campo Assunto"
725
 
726
  # @ contact_form
727
- #: contact_form.php:993
728
- #: contact_form.php:1023
729
  msgid "Error message for the Message field"
730
  msgstr "Mensagem de erro para o campo Mensagem"
731
 
732
  # @ contact_form
733
- #: contact_form.php:994
734
- #: contact_form.php:1024
735
  msgid "Error message about the file type for the Attachment field"
736
  msgstr "Mensagem de erro para o campo Anexo sobre o tipo de arquivo"
737
 
738
  # @ contact_form
739
- #: contact_form.php:995
740
- #: contact_form.php:1025
741
  msgid "Error message while uploading a file for the Attachment field to the server"
742
  msgstr "Mensagem de erro para o campo Anexo quando estiver fazendo upload para o servidor"
743
 
744
  # @ contact_form
745
- #: contact_form.php:996
746
- #: contact_form.php:1026
747
  msgid "Error message while moving the file for the Attachment field"
748
  msgstr "Mensagem de erro para o campo Anexo quando estiver movendo o arquivo"
749
 
750
  # @ contact_form
751
- #: contact_form.php:997
752
- #: contact_form.php:1027
753
  msgid "Error message when file size limit for the Attachment field is exceeded"
754
  msgstr "Mensagem de erro para o campo Anexo quando o tamanho máximo do arquivo for excedido"
755
 
756
  # @ contact_form
757
- #: contact_form.php:998
758
- #: contact_form.php:1028
759
  msgid "Error message for the Captcha field"
760
  msgstr "Mensagem de erro para o campo Captcha"
761
 
762
  # @ contact_form
763
- #: contact_form.php:999
764
- #: contact_form.php:1029
765
  msgid "Error message for the whole form"
766
  msgstr "Mensagem de erro para o formulário inteiro"
767
 
768
  # @ contact_form
769
- #: contact_form.php:1001
770
- #: contact_form.php:1031
771
- #: contact_form.php:1050
772
- #: contact_form.php:1056
 
 
 
 
773
  msgid "Use shortcode"
774
  msgstr "Use shortcode (abreviações)"
775
 
776
  # @ contact_form
777
- #: contact_form.php:1001
778
- #: contact_form.php:1031
779
- #: contact_form.php:1050
780
- #: contact_form.php:1056
 
 
 
 
781
  msgid "for this language"
782
  msgstr "para este idioma"
783
 
784
  # @ contact_form
785
- #: contact_form.php:1038
786
  msgid "Action after email is sent"
787
  msgstr "Ação após o email ser enviado"
788
 
789
  # @ contact_form
790
- #: contact_form.php:1040
791
  msgid "Display text"
792
  msgstr "Mostrar texto"
793
 
794
  # @ contact_form
795
- #: contact_form.php:1049
796
- #: contact_form.php:1055
797
  msgid "Text"
798
  msgstr "Texto"
799
 
800
  # @ contact_form
801
- #: contact_form.php:1062
802
  msgid "Redirect to the page"
803
  msgstr "Redirecione para a página"
804
 
805
  # @ contact_form
806
- #: contact_form.php:1063
807
  msgid "Url"
808
  msgstr "URL"
809
 
810
- #: contact_form.php:1067
811
  msgid "The $_SERVER variable that is used to build a URL of the form"
812
  msgstr ""
813
 
814
- #: contact_form.php:1071
815
  msgid "If you are not sure whether to change this setting or not, please do not do that."
816
  msgstr ""
817
 
818
  # @ default
819
- #: contact_form.php:1077
820
- #: contact_form.php:1252
821
  msgid "Save Changes"
822
  msgstr "Salvar Mudanças"
823
 
824
- #: contact_form.php:1082
825
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
826
  msgstr ""
827
 
828
- #: contact_form.php:1083
829
  msgid "Rate the plugin"
830
  msgstr ""
831
 
832
- #: contact_form.php:1086
833
  msgid "If there is something wrong about it, please contact us"
834
  msgstr ""
835
 
836
  # @ contact_form
837
- #: contact_form.php:1101
838
  msgid "Errors output"
839
  msgstr "Saída de erros."
840
 
841
  # @ contact_form
842
- #: contact_form.php:1104
843
  msgid "Display error messages"
844
  msgstr "Mostrar mensagens de erro"
845
 
846
  # @ contact_form
847
- #: contact_form.php:1105
848
  msgid "Color of the input field errors."
849
  msgstr "Cor do erro nos campos de formulário"
850
 
851
  # @ contact_form
852
- #: contact_form.php:1106
853
  msgid "Display error messages & color of the input field errors"
854
  msgstr "Mostrar mensagens de erro e cores para os campos com erro"
855
 
856
  # @ contact_form
857
- #: contact_form.php:1111
858
  msgid "Add placeholder to the input blocks"
859
  msgstr "Adicione reserva de espaço aos blocos de inserção"
860
 
861
  # @ contact_form
862
- #: contact_form.php:1117
863
  msgid "Add tooltips"
864
  msgstr "Adicionar mensagens de ajuda"
865
 
866
  # @ contact_form
867
- #: contact_form.php:1131
868
  msgid "Email address"
869
  msgstr "Endereço de email"
870
 
871
  # @ contact_form
872
- #: contact_form.php:1136
873
  msgid "Phone Number"
874
  msgstr "Telefone"
875
 
876
  # @ contact_form
877
- #: contact_form.php:1150
878
  msgid "Attachment"
879
  msgstr "Anexo"
880
 
881
  # @ contact_form
882
- #: contact_form.php:1155
883
  msgid "(powered by bestwebsoft.com)"
884
  msgstr "(produzido por bestwebsoft.com)"
885
 
886
  # @ contact_form
887
- #: contact_form.php:1160
888
  msgid "Style options"
889
  msgstr "Opções de estilo"
890
 
891
  # @ contact_form
892
- #: contact_form.php:1163
893
  msgid "Text color"
894
  msgstr "Cor do texto"
895
 
896
  # @ contact_form
897
- #: contact_form.php:1166
898
- #: contact_form.php:1171
899
- #: contact_form.php:1181
900
- #: contact_form.php:1186
901
- #: contact_form.php:1191
902
- #: contact_form.php:1196
903
- #: contact_form.php:1206
904
- #: contact_form.php:1211
905
- #: contact_form.php:1217
906
- #: contact_form.php:1228
907
- #: contact_form.php:1233
908
- #: contact_form.php:1238
909
  msgid "Default"
910
  msgstr "Padrão"
911
 
912
  # @ contact_form
913
- #: contact_form.php:1168
914
  msgid "Label text color"
915
  msgstr "Cor do texto descritivo"
916
 
917
  # @ contact_form
918
- #: contact_form.php:1173
919
  msgid "Placeholder color"
920
  msgstr "Cor da reserva de espaço"
921
 
922
  # @ contact_form
923
- #: contact_form.php:1178
924
  msgid "Errors color"
925
  msgstr "Cor dos erros"
926
 
927
  # @ contact_form
928
- #: contact_form.php:1183
929
  msgid "Error text color"
930
  msgstr "Cor de texto do erro"
931
 
932
  # @ contact_form
933
- #: contact_form.php:1188
934
  msgid "Background color of the input field errors"
935
  msgstr "Cor de fundo do campo de formulário com erros"
936
 
937
  # @ contact_form
938
- #: contact_form.php:1193
939
  msgid "Border color of the input field errors"
940
  msgstr "Cor de borda do campo de formulário com erros"
941
 
942
  # @ contact_form
943
- #: contact_form.php:1198
944
  msgid "Placeholder color of the input field errors"
945
  msgstr "Cor de reserva de espaço do campo de formulário com erros"
946
 
947
  # @ contact_form
948
- #: contact_form.php:1203
949
  msgid "Input fields"
950
  msgstr "Campos do folmulário"
951
 
952
  # @ contact_form
953
- #: contact_form.php:1208
954
  msgid "Input fields background color"
955
  msgstr "Cor de fundo dos campos de formulário"
956
 
957
  # @ contact_form
958
- #: contact_form.php:1213
959
  msgid "Text fields color"
960
  msgstr "Cor dos campos de texto"
961
 
962
  # @ contact_form
963
- #: contact_form.php:1215
964
  msgid "Border width in px, numbers only"
965
  msgstr "Largura da borda em px, somente o número"
966
 
967
  # @ contact_form
968
- #: contact_form.php:1219
969
- #: contact_form.php:1240
970
  msgid "Border color"
971
  msgstr "Cor da borda"
972
 
973
  # @ contact_form
974
- #: contact_form.php:1224
975
  msgid "Submit button"
976
  msgstr "Botão de Envio"
977
 
978
  # @ contact_form
979
- #: contact_form.php:1226
980
  msgid "Width in px, numbers only"
981
  msgstr "Largura em px, somente o número"
982
 
983
  # @ contact_form
984
- #: contact_form.php:1230
985
  msgid "Button color"
986
  msgstr "Cor do botão"
987
 
988
  # @ contact_form
989
- #: contact_form.php:1235
990
  msgid "Button text color"
991
  msgstr "Cor do texto do botão"
992
 
993
  # @ contact_form
994
- #: contact_form.php:1256
995
  msgid "Contact Form Pro | Preview"
996
  msgstr "Formulário de Contato Pro | Prévia"
997
 
998
  # @ contact_form
999
- #: contact_form.php:1259
1000
  msgid "Show with errors"
1001
  msgstr "Mostrar com erros"
1002
 
1003
  # @ contact_form
1004
- #: contact_form.php:1267
1005
- #: contact_form.php:1269
1006
  msgid "Please enter your full name..."
1007
  msgstr "Informe seu nome completo..."
1008
 
1009
  # @ contact_form
1010
- #: contact_form.php:1280
1011
- #: contact_form.php:1282
1012
  msgid "Please enter your address..."
1013
  msgstr "Informe seu endereço…"
1014
 
1015
  # @ contact_form
1016
- #: contact_form.php:1291
1017
- #: contact_form.php:1293
1018
  msgid "Please enter your email address..."
1019
  msgstr "Informe seu endereço de email…"
1020
 
1021
  # @ contact_form
1022
- #: contact_form.php:1302
1023
- #: contact_form.php:1304
1024
  msgid "Please enter your phone number..."
1025
  msgstr "Informe seu telefone..."
1026
 
1027
  # @ contact_form
1028
- #: contact_form.php:1313
1029
- #: contact_form.php:1315
1030
  msgid "Please enter subject..."
1031
  msgstr "Informe o assunto…"
1032
 
1033
  # @ contact_form
1034
- #: contact_form.php:1323
1035
- #: contact_form.php:1325
1036
  msgid "Please enter your message..."
1037
  msgstr "Informe sua mensagem…"
1038
 
1039
- #: contact_form.php:1367
1040
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
1041
  msgstr ""
1042
 
1043
- #: contact_form.php:1369
1044
  msgid "Please, go to"
1045
  msgstr ""
1046
 
1047
  # @ contact_form
1048
- #: contact_form.php:1369
1049
  #, fuzzy
1050
  msgid "the setting page"
1051
  msgstr "Configurações extras"
1052
 
1053
- #: contact_form.php:1370
1054
  msgid "You will be redirected automatically in 5 seconds."
1055
  msgstr ""
1056
 
1057
- #: contact_form.php:1375
1058
  msgid "You can download and activate"
1059
  msgstr ""
1060
 
1061
- #: contact_form.php:1377
1062
  msgid "version of this plugin by entering Your license key."
1063
  msgstr ""
1064
 
1065
- #: contact_form.php:1379
1066
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
1067
  msgstr ""
1068
 
1069
- #: contact_form.php:1381
1070
  msgid "(your username is the email you specify when purchasing the product)."
1071
  msgstr ""
1072
 
1073
- #: contact_form.php:1389
1074
- #: contact_form.php:1399
1075
  msgid "Go!"
1076
  msgstr ""
1077
 
1078
  # @ bestwebsoft
1079
  # @ contact_form
1080
- #: contact_form.php:1449
1081
  msgid "Sorry, email message could not be delivered."
1082
  msgstr "Desculpe, seu e-mail não pode ser entregue."
1083
 
1084
  # @ contact_form
1085
- #: contact_form.php:1835
1086
  msgid "Contact from"
1087
  msgstr "Formulário de Contato"
1088
 
1089
  # @ contact_form
1090
- #: contact_form.php:1848
1091
- #: contact_form.php:1874
1092
  msgid "Email"
1093
  msgstr "E-Mail"
1094
 
1095
  # @ contact_form
1096
- #: contact_form.php:1852
1097
- #: contact_form.php:1876
1098
  msgid "Phone"
1099
  msgstr "Telefone"
1100
 
1101
  # @ contact_form
1102
- #: contact_form.php:1861
1103
- #: contact_form.php:1879
1104
  msgid "Site"
1105
  msgstr "Site"
1106
 
1107
  # @ contact_form
1108
- #: contact_form.php:1941
1109
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
1110
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
1111
 
1112
  # @ contact_form
1113
- #: contact_form.php:2009
1114
  msgid "FAQ"
1115
  msgstr "Perguntas Frequentes"
1116
 
1117
  # @ contact_form
1118
- #: contact_form.php:2010
1119
  msgid "Support"
1120
  msgstr "Suporte"
1121
 
1122
  # @ contact_form
1123
- #: contact_form.php:2068
1124
  msgid "Are you sure that you want to delete this language data?"
1125
  msgstr "Tem certeza que você quer apagar estes dados de idioma?"
1126
 
1127
- #: contact_form.php:2223
1128
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
1129
  msgstr ""
1130
 
1131
- #: contact_form.php:2224
1132
  msgid "Extend standard plugin functionality with new great options."
1133
  msgstr ""
1134
 
1135
- #: contact_form.php:2233
1136
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1137
  msgstr ""
1138
 
1139
- #: contact_form.php:2234
1140
  msgid "Manage messages that have been sent from your website."
1141
  msgstr ""
1142
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:38+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:38+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Breno Jacinto, DJIO | Dionizio Bonfim Bach <brenojac@gmail.com, wordpress@djio.com.br>\n"
9
  "Language: pt_BR\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ contact_form
22
+ #: contact_form.php:73
23
+ #: contact_form.php:785
24
  msgid "Contact Form Settings"
25
  msgstr "Configurações do Formulário de Contato"
26
 
27
  # @ contact_form
28
+ #: contact_form.php:73
29
  msgid "Contact Form"
30
  msgstr "Formulário de contato"
31
 
32
  # @ contact_form
33
+ #: contact_form.php:149
34
+ #: contact_form.php:1131
35
+ #: contact_form.php:1165
36
  msgid "Name:"
37
  msgstr "Nome:"
38
 
39
  # @ contact_form
40
+ #: contact_form.php:150
41
+ #: contact_form.php:1132
42
+ #: contact_form.php:1166
43
  msgid "Address:"
44
  msgstr "Endereço:"
45
 
46
  # @ contact_form
47
+ #: contact_form.php:151
48
+ #: contact_form.php:1133
49
+ #: contact_form.php:1167
50
  msgid "Email Address:"
51
  msgstr "Endereço de E-mail:"
52
 
53
  # @ contact_form
54
+ #: contact_form.php:152
55
+ #: contact_form.php:1134
56
+ #: contact_form.php:1168
57
  msgid "Phone number:"
58
  msgstr "Número de Telefone:"
59
 
60
  # @ contact_form
61
+ #: contact_form.php:153
62
+ #: contact_form.php:1135
63
+ #: contact_form.php:1169
64
  msgid "Subject:"
65
  msgstr "Assunto:"
66
 
67
  # @ contact_form
68
+ #: contact_form.php:154
69
+ #: contact_form.php:1136
70
+ #: contact_form.php:1170
71
  msgid "Message:"
72
  msgstr "Mensagem:"
73
 
74
  # @ contact_form
75
+ #: contact_form.php:155
76
+ #: contact_form.php:1137
77
+ #: contact_form.php:1171
78
  msgid "Attachment:"
79
  msgstr "Anexo:"
80
 
81
  # @ contact_form
82
+ #: contact_form.php:156
83
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
84
  msgstr "Tipos de arquivo suportados: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Tamanho máximo do arquivo: 2Mb"
85
 
86
  # @ contact_form
87
+ #: contact_form.php:157
88
+ #: contact_form.php:1139
89
+ #: contact_form.php:1173
90
  msgid "Send me a copy"
91
  msgstr "Envie-me uma cópia"
92
 
93
  # @ contact_form
94
+ #: contact_form.php:158
95
+ #: contact_form.php:1140
96
+ #: contact_form.php:1174
97
  msgid "Submit"
98
  msgstr "Enviar"
99
 
100
  # @ contact_form
101
+ #: contact_form.php:159
102
  msgid "Your name is required."
103
  msgstr "Seu nome é obrigatório"
104
 
105
  # @ contact_form
106
+ #: contact_form.php:160
107
  msgid "Address is required."
108
  msgstr "Endereço é obrigatório."
109
 
110
  # @ contact_form
111
+ #: contact_form.php:161
112
  msgid "A valid email address is required."
113
  msgstr "Um e-mail válido é obrigatório."
114
 
115
  # @ contact_form
116
+ #: contact_form.php:162
117
  msgid "Phone number is required."
118
  msgstr "Telefone é obrigatório."
119
 
120
  # @ contact_form
121
+ #: contact_form.php:163
122
  msgid "Subject is required."
123
  msgstr "O Assunto da mensagem é obrigatório."
124
 
125
  # @ contact_form
126
+ #: contact_form.php:164
127
  msgid "Message text is required."
128
  msgstr "O texto da Mensagem é obrigatório."
129
 
130
  # @ contact_form
131
+ #: contact_form.php:165
132
  msgid "File format is not valid."
133
  msgstr "Impossível anexar arquivo. "
134
 
135
  # @ contact_form
136
+ #: contact_form.php:166
137
  msgid "File upload error."
138
  msgstr "Erro no upload do arquivo."
139
 
140
  # @ contact_form
141
+ #: contact_form.php:167
142
  msgid "The file could not be uploaded."
143
  msgstr "O foi possível fazer upload do arquivo."
144
 
145
  # @ contact_form
146
+ #: contact_form.php:168
147
  msgid "This file is too large."
148
  msgstr "Este arquivo é muito grande."
149
 
150
  # @ contact_form
151
+ #: contact_form.php:169
152
  msgid "Please fill out the CAPTCHA."
153
  msgstr "Por favor, complete a resposta da charada ."
154
 
155
  # @ contact_form
156
+ #: contact_form.php:170
157
  msgid "Please make corrections below and try again."
158
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
159
 
160
  # @ bestwebsoft
161
  # @ contact_form
162
+ #: contact_form.php:172
163
  msgid "Thank you for contacting us."
164
  msgstr "Obrigado por nos contatar"
165
 
166
  # @ contact_form
167
+ #: contact_form.php:322
168
  #, fuzzy
169
  msgid "requires"
170
  msgstr "Campos obrigatórios"
171
 
172
+ #: contact_form.php:322
173
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
174
  msgstr ""
175
 
176
+ #: contact_form.php:322
177
  msgid "Back to the WordPress"
178
  msgstr ""
179
 
180
+ #: contact_form.php:322
181
  msgid "Plugins page"
182
  msgstr ""
183
 
184
  # @ contact_form
185
+ #: contact_form.php:626
186
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
187
  msgstr "Se a opção 'Redirecionar para a pagina' estiver selecionada, então o campo URL deve ser no seguinte formato"
188
 
189
  # @ contact_form
190
+ #: contact_form.php:635
191
  msgid "Such user does not exist. Settings are not saved."
192
  msgstr "Tal usuário não existe. Configurações não foram salvas."
193
 
194
  # @ contact_form
195
+ #: contact_form.php:639
196
+ #: contact_form.php:645
197
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
198
  msgstr "Por favor informe um email válido no campo 'DE'. Configurações não foram salvas."
199
 
200
  # @ contact_form
201
+ #: contact_form.php:661
202
  msgid "Settings saved."
203
  msgstr "As configurações foram salvas."
204
 
205
+ #: contact_form.php:688
206
+ #: contact_form.php:720
207
  msgid "Wrong license key"
208
  msgstr ""
209
 
210
+ #: contact_form.php:713
211
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
212
  msgstr ""
213
 
214
+ #: contact_form.php:722
215
  msgid "This license key is bind to another site"
216
  msgstr ""
217
 
218
+ #: contact_form.php:724
219
+ #: contact_form.php:1570
220
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
221
  msgstr ""
222
 
223
+ #: contact_form.php:741
224
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
225
  msgstr ""
226
 
227
+ #: contact_form.php:747
228
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
229
  msgstr ""
230
 
231
+ #: contact_form.php:751
232
+ #: contact_form.php:760
233
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
234
  msgstr ""
235
 
236
+ #: contact_form.php:764
237
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
238
  msgstr ""
239
 
240
  # @ contact_form
241
+ #: contact_form.php:779
242
  #, fuzzy
243
  msgid "Please, enter Your license key"
244
  msgstr "Informe sua mensagem…"
245
 
 
 
 
 
 
 
 
 
246
  # @ bestwebsoft
247
  # @ contact_form
248
+ #: contact_form.php:787
249
+ #: contact_form.php:2216
250
+ #: contact_form.php:2228
251
  msgid "Settings"
252
  msgstr "Configurações"
253
 
254
  # @ contact_form
255
+ #: contact_form.php:788
256
  msgid "Extra settings"
257
  msgstr "Configurações extras"
258
 
259
+ #: contact_form.php:789
260
  msgid "Go PRO"
261
  msgstr ""
262
 
263
+ #: contact_form.php:792
264
+ msgid "Notice:"
265
+ msgstr ""
266
+
267
+ #: contact_form.php:792
268
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
269
+ msgstr ""
270
+
271
+ #: contact_form.php:798
272
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
273
+ msgstr ""
274
+
275
  # @ contact_form
276
+ #: contact_form.php:804
277
+ #: contact_form.php:809
278
+ #: contact_form.php:1529
279
  msgid "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:"
280
  msgstr "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
281
 
282
  # @ contact_form
283
+ #: contact_form.php:804
284
+ #: contact_form.php:805
285
+ #: contact_form.php:809
286
+ #: contact_form.php:810
287
+ #: contact_form.php:1155
288
+ #: contact_form.php:1157
289
+ #: contact_form.php:1212
290
+ #: contact_form.php:1214
291
  msgid "or"
292
  msgstr "ou"
293
 
294
  # @ contact_form
295
+ #: contact_form.php:805
296
+ #: contact_form.php:810
297
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
298
  msgstr "Se tiver quaisquer problemas com o shortcode padrão [contact_form], você deve usar o shortcode"
299
 
300
  # @ contact_form
301
+ #: contact_form.php:806
302
+ #: contact_form.php:811
303
  msgid "They work the same way."
304
  msgstr "Eles funcionam da mesma forma."
305
 
306
  # @ contact_form
307
+ #: contact_form.php:807
308
+ #: contact_form.php:812
309
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
310
  msgstr "Se informações nos campos abaixo estiverem vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
311
 
312
  # @ contact_form
313
+ #: contact_form.php:817
314
  msgid "The user's email address:"
315
  msgstr "Use o email de um usuário do wordpress:"
316
 
317
  # @ contact_form
318
+ #: contact_form.php:821
319
  msgid "Create a username"
320
  msgstr "Selecione o nome do usuário"
321
 
322
  # @ contact_form
323
+ #: contact_form.php:828
324
  msgid "Enter a username of the person who should get the messages from the contact form."
325
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
326
 
327
  # @ contact_form
328
+ #: contact_form.php:832
329
  msgid "Use this email address:"
330
  msgstr "Use este email:"
331
 
332
  # @ contact_form
333
+ #: contact_form.php:835
334
  msgid "Enter the email address you want the messages forwarded to."
335
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
336
 
337
+ #: contact_form.php:844
338
  msgid "Add department selectbox to the contact form:"
339
  msgstr ""
340
 
341
+ #: contact_form.php:852
342
+ #: contact_form.php:1412
343
  msgid "If you upgrade to Pro version all your settings will be saved."
344
  msgstr ""
345
 
346
+ #: contact_form.php:859
347
+ #: contact_form.php:997
348
+ #: contact_form.php:1071
349
+ #: contact_form.php:1419
350
+ msgid "Unlock premium options by upgrading to a PRO version."
351
+ msgstr ""
 
352
 
353
+ #: contact_form.php:860
354
+ #: contact_form.php:998
355
+ #: contact_form.php:1072
356
+ #: contact_form.php:1420
357
+ #: contact_form.php:2473
358
+ #: contact_form.php:2489
359
+ msgid "Learn More"
360
+ msgstr ""
361
 
362
+ #: contact_form.php:863
363
+ #: contact_form.php:1001
364
+ #: contact_form.php:1075
365
+ #: contact_form.php:1423
366
+ msgid "Go"
367
+ msgstr ""
368
+
369
+ #: contact_form.php:870
370
  msgid "Save emails to the database"
371
  msgstr ""
372
 
373
+ #: contact_form.php:876
374
  msgid "Using"
375
  msgstr ""
376
 
377
  # @ contact_form
378
+ #: contact_form.php:876
379
+ #: contact_form.php:1048
380
+ #: contact_form.php:1051
381
+ #: contact_form.php:1055
382
  msgid "powered by"
383
  msgstr "movido a"
384
 
385
+ #: contact_form.php:879
386
+ #: contact_form.php:883
387
  msgid "Using Contact Form to DB powered by"
388
  msgstr ""
389
 
390
  # @ contact_form
391
+ #: contact_form.php:879
392
  #, fuzzy
393
  msgid "Activate Contact Form to DB"
394
  msgstr "Formulário de Contato Pro"
395
 
396
  # @ contact_form
397
+ #: contact_form.php:883
398
  #, fuzzy
399
  msgid "Download Contact Form to DB"
400
  msgstr "Formulário de Contato Pro"
401
 
402
  # @ contact_form
403
+ #: contact_form.php:888
404
  msgid "Additional options"
405
  msgstr "Opções adicionais"
406
 
407
+ #: contact_form.php:890
408
  msgid "Show"
409
  msgstr ""
410
 
411
+ #: contact_form.php:891
412
  msgid "Hide"
413
  msgstr ""
414
 
415
  # @ contact_form
416
+ #: contact_form.php:895
417
  msgid "What to use?"
418
  msgstr "O que usar?"
419
 
420
  # @ contact_form
421
+ #: contact_form.php:898
422
  msgid "Wp-mail"
423
  msgstr "Wp-mail"
424
 
425
  # @ contact_form
426
+ #: contact_form.php:898
427
  msgid "You can use the wp_mail function for mailing"
428
  msgstr "Você pode usar a função wp_mail para enviar emails"
429
 
430
  # @ contact_form
431
+ #: contact_form.php:900
432
  msgid "Mail"
433
  msgstr "Mail"
434
 
435
  # @ contact_form
436
+ #: contact_form.php:900
437
  msgid "To send mail you can use the php mail function"
438
  msgstr "Para enviar emails você pode usar a função mail() do php"
439
 
440
  # @ contact_form
441
+ #: contact_form.php:904
442
  #, fuzzy
443
  msgid "The text in the 'From' field"
444
  msgstr "Mude o texto do campo 'DE'"
445
 
446
  # @ contact_form
447
+ #: contact_form.php:906
448
  #, fuzzy
449
  msgid "User name"
450
  msgstr "Email do usuário"
451
 
452
  # @ contact_form
453
+ #: contact_form.php:907
454
  #, fuzzy
455
  msgid "The name of the user who fills the form will be used in the field 'From'."
456
  msgstr "O endereço de email do usuário que preencher o formulário será usado no campo 'De'"
457
 
458
  # @ contact_form
459
+ #: contact_form.php:910
460
  #, fuzzy
461
  msgid "This text will be used in the 'FROM' field"
462
  msgstr "Este endereço de email será usado no campo 'De'"
463
 
464
  # @ contact_form
465
+ #: contact_form.php:914
466
  #, fuzzy
467
  msgid "The email address in the 'From' field"
468
  msgstr "Entre com o endereço de e-mail no campo 'De'"
469
 
470
  # @ contact_form
471
+ #: contact_form.php:916
472
  msgid "User email"
473
  msgstr "Email do usuário"
474
 
475
  # @ contact_form
476
+ #: contact_form.php:917
477
  msgid "The email address of the user who fills the form will be used in the field 'From'."
478
  msgstr "O endereço de email do usuário que preencher o formulário será usado no campo 'De'"
479
 
480
  # @ contact_form
481
+ #: contact_form.php:920
482
  msgid "This email address will be used in the 'From' field."
483
  msgstr "Este endereço de email será usado no campo 'De'"
484
 
485
  # @ contact_form
486
+ #: contact_form.php:924
487
  #, fuzzy
488
  msgid "Required symbol"
489
  msgstr "Campos obrigatórios"
490
 
491
+ #: contact_form.php:934
492
  msgid "Fields"
493
  msgstr ""
494
 
495
+ #: contact_form.php:935
496
  msgid "Used"
497
  msgstr ""
498
 
499
  # @ contact_form
500
+ #: contact_form.php:936
501
  #, fuzzy
502
  msgid "Required"
503
  msgstr "Campos obrigatórios"
504
 
505
+ #: contact_form.php:937
506
  msgid "Visible"
507
  msgstr ""
508
 
509
+ #: contact_form.php:938
510
  msgid "Disabled for editing"
511
  msgstr ""
512
 
513
+ #: contact_form.php:939
514
  msgid "Field's default value"
515
  msgstr ""
516
 
517
  # @ contact_form
518
+ #: contact_form.php:944
519
+ #: contact_form.php:1287
520
+ #: contact_form.php:2059
521
+ #: contact_form.php:2089
522
  msgid "Name"
523
  msgstr "Nome"
524
 
525
  # @ contact_form
526
+ #: contact_form.php:952
527
+ #: contact_form.php:1292
528
+ #: contact_form.php:2063
529
+ #: contact_form.php:2091
530
  msgid "Address"
531
  msgstr "Endereço"
532
 
533
  # @ contact_form
534
+ #: contact_form.php:960
535
  msgid "Email Address"
536
  msgstr "Endereço de email"
537
 
538
  # @ contact_form
539
+ #: contact_form.php:968
540
  #, fuzzy
541
  msgid "Phone number"
542
  msgstr "Número de Telefone:"
543
 
544
  # @ contact_form
545
+ #: contact_form.php:976
546
+ #: contact_form.php:1307
547
+ #: contact_form.php:2073
548
+ #: contact_form.php:2095
549
  msgid "Subject"
550
  msgstr "Assunto"
551
 
552
  # @ contact_form
553
+ #: contact_form.php:984
554
+ #: contact_form.php:1311
555
+ #: contact_form.php:2076
556
+ #: contact_form.php:2096
557
  msgid "Message"
558
  msgstr "Mensagem"
559
 
560
  # @ contact_form
561
+ #: contact_form.php:1008
562
  msgid "Attachment block"
563
  msgstr "Bloco de anexos"
564
 
565
  # @ contact_form
566
+ #: contact_form.php:1010
567
  msgid "Users can attach the following file formats"
568
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
569
 
570
+ #: contact_form.php:1023
571
  msgid "Add to the form"
572
  msgstr ""
573
 
574
  # @ contact_form
575
+ #: contact_form.php:1028
576
  #, fuzzy
577
  msgid "Tips below the Attachment"
578
  msgstr "Exibir dicas abaixo do bloco de Anexos"
579
 
580
  # @ contact_form
581
+ #: contact_form.php:1037
582
  #, fuzzy
583
  msgid "'Send me a copy' block"
584
  msgstr "Exibir bloco 'Enviar-me uma cópia'"
585
 
586
  # @ contact_form
587
+ #: contact_form.php:1048
588
+ #: contact_form.php:1051
589
+ #: contact_form.php:1055
590
+ #: contact_form.php:1321
591
  msgid "Captcha"
592
  msgstr "Captcha"
593
 
594
  # @ contact_form
595
+ #: contact_form.php:1051
596
  msgid "Activate captcha"
597
  msgstr "Ativar captcha"
598
 
599
  # @ contact_form
600
+ #: contact_form.php:1055
601
  msgid "Download captcha"
602
  msgstr "Fazer Download do Captcha"
603
 
604
+ #: contact_form.php:1063
605
  msgid "Agreement checkbox"
606
  msgstr ""
607
 
608
+ #: contact_form.php:1063
609
  msgid "Required checkbox for submitting the form"
610
  msgstr ""
611
 
612
+ #: contact_form.php:1064
613
  msgid "Optional checkbox"
614
  msgstr ""
615
 
616
+ #: contact_form.php:1064
617
  msgid "Optional checkbox, the results of which will be displayed in email"
618
  msgstr ""
619
 
620
  # @ contact_form
621
+ #: contact_form.php:1081
622
  msgid "Delete an attachment file from the server after the email is sent"
623
  msgstr "Excluir um arquivo anexo do servidor depois que o e-mail for enviado"
624
 
625
+ #: contact_form.php:1087
626
  msgid "Email in HTML format sending"
627
  msgstr ""
628
 
629
  # @ contact_form
630
+ #: contact_form.php:1091
631
  msgid "Display additional info in the email"
632
  msgstr "Mostre informações adicionais no email"
633
 
634
  # @ contact_form
635
+ #: contact_form.php:1096
636
+ #: contact_form.php:2026
637
+ #: contact_form.php:2028
638
  msgid "Sent from (ip address)"
639
  msgstr "Enviado de (Endereço IP)"
640
 
641
  # @ contact_form
642
+ #: contact_form.php:1096
643
  msgid "Example: Sent from (IP address):\t127.0.0.1"
644
  msgstr "Examplo: Enviado de (endereço IP):\\\t127.0.0.1"
645
 
646
  # @ contact_form
647
+ #: contact_form.php:1097
648
+ #: contact_form.php:2032
649
+ #: contact_form.php:2034
650
  msgid "Date/Time"
651
  msgstr "Data / Hora"
652
 
653
  # @ contact_form
654
+ #: contact_form.php:1097
655
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
656
  msgstr "Exemplo: Data/Hora:\\\t19 de Agosto de 2013 20:50"
657
 
658
  # @ contact_form
659
+ #: contact_form.php:1098
660
+ #: contact_form.php:2038
661
+ #: contact_form.php:2040
662
  msgid "Sent from (referer)"
663
  msgstr "Vindo de (origem)"
664
 
665
  # @ contact_form
666
+ #: contact_form.php:1098
667
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
668
  msgstr "Exemplo: Enviado do (referer):\\\thttp://bestwebsoft.com/contacts/contact-us/"
669
 
670
  # @ contact_form
671
+ #: contact_form.php:1099
672
+ #: contact_form.php:2044
673
+ #: contact_form.php:2046
674
  msgid "Using (user agent)"
675
  msgstr "Usando (cliente de email)"
676
 
677
  # @ contact_form
678
+ #: contact_form.php:1099
679
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
680
  msgstr "Examplo: Usando (user agent):\\\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
681
 
682
  # @ contact_form
683
+ #: contact_form.php:1103
684
  msgid "Language settings for the field names in the form"
685
  msgstr "Configurações de idioma para os nomes dos campos no formulário"
686
 
687
  # @ contact_form
688
+ #: contact_form.php:1112
689
  msgid "Add a language"
690
  msgstr "Adicione um idioma"
691
 
692
  # @ contact_form
693
+ #: contact_form.php:1116
694
  msgid "Change the names of the contact form fields and error messages"
695
  msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
696
 
697
  # @ contact_form
698
+ #: contact_form.php:1121
699
+ #: contact_form.php:1202
700
  msgid "English"
701
  msgstr "Inglês"
702
 
703
+ #: contact_form.php:1129
704
+ #: contact_form.php:1163
705
  msgid "click to expand/hide the list"
706
  msgstr ""
707
 
708
  # @ contact_form
709
+ #: contact_form.php:1138
710
+ #: contact_form.php:1172
711
  #, fuzzy
712
  msgid "Tips below the Attachment block"
713
  msgstr "Exibir dicas abaixo do bloco de Anexos"
714
 
715
  # @ contact_form
716
+ #: contact_form.php:1141
717
+ #: contact_form.php:1175
718
  msgid "Error message for the Name field"
719
  msgstr "Mensagem de erro para o campo Nome"
720
 
721
  # @ contact_form
722
+ #: contact_form.php:1142
723
+ #: contact_form.php:1176
724
  msgid "Error message for the Address field"
725
  msgstr "Mensagem de erro para o campo Endereço"
726
 
727
  # @ contact_form
728
+ #: contact_form.php:1143
729
+ #: contact_form.php:1177
730
  msgid "Error message for the Email field"
731
  msgstr "Mensagem de erro para o campo Email"
732
 
733
  # @ contact_form
734
+ #: contact_form.php:1144
735
+ #: contact_form.php:1178
736
  msgid "Error message for the Phone field"
737
  msgstr "Mensagem de erro para o campo Telefone"
738
 
739
  # @ contact_form
740
+ #: contact_form.php:1145
741
+ #: contact_form.php:1179
742
  msgid "Error message for the Subject field"
743
  msgstr "Mensagem de erro para o campo Assunto"
744
 
745
  # @ contact_form
746
+ #: contact_form.php:1146
747
+ #: contact_form.php:1180
748
  msgid "Error message for the Message field"
749
  msgstr "Mensagem de erro para o campo Mensagem"
750
 
751
  # @ contact_form
752
+ #: contact_form.php:1147
753
+ #: contact_form.php:1181
754
  msgid "Error message about the file type for the Attachment field"
755
  msgstr "Mensagem de erro para o campo Anexo sobre o tipo de arquivo"
756
 
757
  # @ contact_form
758
+ #: contact_form.php:1148
759
+ #: contact_form.php:1182
760
  msgid "Error message while uploading a file for the Attachment field to the server"
761
  msgstr "Mensagem de erro para o campo Anexo quando estiver fazendo upload para o servidor"
762
 
763
  # @ contact_form
764
+ #: contact_form.php:1149
765
+ #: contact_form.php:1183
766
  msgid "Error message while moving the file for the Attachment field"
767
  msgstr "Mensagem de erro para o campo Anexo quando estiver movendo o arquivo"
768
 
769
  # @ contact_form
770
+ #: contact_form.php:1150
771
+ #: contact_form.php:1184
772
  msgid "Error message when file size limit for the Attachment field is exceeded"
773
  msgstr "Mensagem de erro para o campo Anexo quando o tamanho máximo do arquivo for excedido"
774
 
775
  # @ contact_form
776
+ #: contact_form.php:1151
777
+ #: contact_form.php:1185
778
  msgid "Error message for the Captcha field"
779
  msgstr "Mensagem de erro para o campo Captcha"
780
 
781
  # @ contact_form
782
+ #: contact_form.php:1152
783
+ #: contact_form.php:1186
784
  msgid "Error message for the whole form"
785
  msgstr "Mensagem de erro para o formulário inteiro"
786
 
787
  # @ contact_form
788
+ #: contact_form.php:1155
789
+ #: contact_form.php:1157
790
+ #: contact_form.php:1189
791
+ #: contact_form.php:1191
792
+ #: contact_form.php:1212
793
+ #: contact_form.php:1214
794
+ #: contact_form.php:1222
795
+ #: contact_form.php:1224
796
  msgid "Use shortcode"
797
  msgstr "Use shortcode (abreviações)"
798
 
799
  # @ contact_form
800
+ #: contact_form.php:1155
801
+ #: contact_form.php:1157
802
+ #: contact_form.php:1189
803
+ #: contact_form.php:1191
804
+ #: contact_form.php:1212
805
+ #: contact_form.php:1214
806
+ #: contact_form.php:1222
807
+ #: contact_form.php:1224
808
  msgid "for this language"
809
  msgstr "para este idioma"
810
 
811
  # @ contact_form
812
+ #: contact_form.php:1199
813
  msgid "Action after email is sent"
814
  msgstr "Ação após o email ser enviado"
815
 
816
  # @ contact_form
817
+ #: contact_form.php:1201
818
  msgid "Display text"
819
  msgstr "Mostrar texto"
820
 
821
  # @ contact_form
822
+ #: contact_form.php:1210
823
+ #: contact_form.php:1220
824
  msgid "Text"
825
  msgstr "Texto"
826
 
827
  # @ contact_form
828
+ #: contact_form.php:1231
829
  msgid "Redirect to the page"
830
  msgstr "Redirecione para a página"
831
 
832
  # @ contact_form
833
+ #: contact_form.php:1232
834
  msgid "Url"
835
  msgstr "URL"
836
 
837
+ #: contact_form.php:1236
838
  msgid "The $_SERVER variable that is used to build a URL of the form"
839
  msgstr ""
840
 
841
+ #: contact_form.php:1240
842
  msgid "If you are not sure whether to change this setting or not, please do not do that."
843
  msgstr ""
844
 
845
  # @ default
846
+ #: contact_form.php:1246
847
+ #: contact_form.php:1430
848
  msgid "Save Changes"
849
  msgstr "Salvar Mudanças"
850
 
851
+ #: contact_form.php:1251
852
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
853
  msgstr ""
854
 
855
+ #: contact_form.php:1252
856
  msgid "Rate the plugin"
857
  msgstr ""
858
 
859
+ #: contact_form.php:1255
860
  msgid "If there is something wrong about it, please contact us"
861
  msgstr ""
862
 
863
  # @ contact_form
864
+ #: contact_form.php:1267
865
  msgid "Errors output"
866
  msgstr "Saída de erros."
867
 
868
  # @ contact_form
869
+ #: contact_form.php:1270
870
  msgid "Display error messages"
871
  msgstr "Mostrar mensagens de erro"
872
 
873
  # @ contact_form
874
+ #: contact_form.php:1271
875
  msgid "Color of the input field errors."
876
  msgstr "Cor do erro nos campos de formulário"
877
 
878
  # @ contact_form
879
+ #: contact_form.php:1272
880
  msgid "Display error messages & color of the input field errors"
881
  msgstr "Mostrar mensagens de erro e cores para os campos com erro"
882
 
883
  # @ contact_form
884
+ #: contact_form.php:1277
885
  msgid "Add placeholder to the input blocks"
886
  msgstr "Adicione reserva de espaço aos blocos de inserção"
887
 
888
  # @ contact_form
889
+ #: contact_form.php:1283
890
  msgid "Add tooltips"
891
  msgstr "Adicionar mensagens de ajuda"
892
 
893
  # @ contact_form
894
+ #: contact_form.php:1297
895
  msgid "Email address"
896
  msgstr "Endereço de email"
897
 
898
  # @ contact_form
899
+ #: contact_form.php:1302
900
  msgid "Phone Number"
901
  msgstr "Telefone"
902
 
903
  # @ contact_form
904
+ #: contact_form.php:1316
905
  msgid "Attachment"
906
  msgstr "Anexo"
907
 
908
  # @ contact_form
909
+ #: contact_form.php:1321
910
  msgid "(powered by bestwebsoft.com)"
911
  msgstr "(produzido por bestwebsoft.com)"
912
 
913
  # @ contact_form
914
+ #: contact_form.php:1326
915
  msgid "Style options"
916
  msgstr "Opções de estilo"
917
 
918
  # @ contact_form
919
+ #: contact_form.php:1329
920
  msgid "Text color"
921
  msgstr "Cor do texto"
922
 
923
  # @ contact_form
924
+ #: contact_form.php:1332
925
+ #: contact_form.php:1337
926
+ #: contact_form.php:1347
927
+ #: contact_form.php:1352
928
+ #: contact_form.php:1357
929
+ #: contact_form.php:1362
930
+ #: contact_form.php:1372
931
+ #: contact_form.php:1377
932
+ #: contact_form.php:1383
933
+ #: contact_form.php:1394
934
+ #: contact_form.php:1399
935
+ #: contact_form.php:1404
936
  msgid "Default"
937
  msgstr "Padrão"
938
 
939
  # @ contact_form
940
+ #: contact_form.php:1334
941
  msgid "Label text color"
942
  msgstr "Cor do texto descritivo"
943
 
944
  # @ contact_form
945
+ #: contact_form.php:1339
946
  msgid "Placeholder color"
947
  msgstr "Cor da reserva de espaço"
948
 
949
  # @ contact_form
950
+ #: contact_form.php:1344
951
  msgid "Errors color"
952
  msgstr "Cor dos erros"
953
 
954
  # @ contact_form
955
+ #: contact_form.php:1349
956
  msgid "Error text color"
957
  msgstr "Cor de texto do erro"
958
 
959
  # @ contact_form
960
+ #: contact_form.php:1354
961
  msgid "Background color of the input field errors"
962
  msgstr "Cor de fundo do campo de formulário com erros"
963
 
964
  # @ contact_form
965
+ #: contact_form.php:1359
966
  msgid "Border color of the input field errors"
967
  msgstr "Cor de borda do campo de formulário com erros"
968
 
969
  # @ contact_form
970
+ #: contact_form.php:1364
971
  msgid "Placeholder color of the input field errors"
972
  msgstr "Cor de reserva de espaço do campo de formulário com erros"
973
 
974
  # @ contact_form
975
+ #: contact_form.php:1369
976
  msgid "Input fields"
977
  msgstr "Campos do folmulário"
978
 
979
  # @ contact_form
980
+ #: contact_form.php:1374
981
  msgid "Input fields background color"
982
  msgstr "Cor de fundo dos campos de formulário"
983
 
984
  # @ contact_form
985
+ #: contact_form.php:1379
986
  msgid "Text fields color"
987
  msgstr "Cor dos campos de texto"
988
 
989
  # @ contact_form
990
+ #: contact_form.php:1381
991
  msgid "Border width in px, numbers only"
992
  msgstr "Largura da borda em px, somente o número"
993
 
994
  # @ contact_form
995
+ #: contact_form.php:1385
996
+ #: contact_form.php:1406
997
  msgid "Border color"
998
  msgstr "Cor da borda"
999
 
1000
  # @ contact_form
1001
+ #: contact_form.php:1390
1002
  msgid "Submit button"
1003
  msgstr "Botão de Envio"
1004
 
1005
  # @ contact_form
1006
+ #: contact_form.php:1392
1007
  msgid "Width in px, numbers only"
1008
  msgstr "Largura em px, somente o número"
1009
 
1010
  # @ contact_form
1011
+ #: contact_form.php:1396
1012
  msgid "Button color"
1013
  msgstr "Cor do botão"
1014
 
1015
  # @ contact_form
1016
+ #: contact_form.php:1401
1017
  msgid "Button text color"
1018
  msgstr "Cor do texto do botão"
1019
 
1020
  # @ contact_form
1021
+ #: contact_form.php:1434
1022
  msgid "Contact Form Pro | Preview"
1023
  msgstr "Formulário de Contato Pro | Prévia"
1024
 
1025
  # @ contact_form
1026
+ #: contact_form.php:1437
1027
  msgid "Show with errors"
1028
  msgstr "Mostrar com erros"
1029
 
1030
  # @ contact_form
1031
+ #: contact_form.php:1445
1032
+ #: contact_form.php:1447
1033
  msgid "Please enter your full name..."
1034
  msgstr "Informe seu nome completo..."
1035
 
1036
  # @ contact_form
1037
+ #: contact_form.php:1458
1038
+ #: contact_form.php:1460
1039
  msgid "Please enter your address..."
1040
  msgstr "Informe seu endereço…"
1041
 
1042
  # @ contact_form
1043
+ #: contact_form.php:1469
1044
+ #: contact_form.php:1471
1045
  msgid "Please enter your email address..."
1046
  msgstr "Informe seu endereço de email…"
1047
 
1048
  # @ contact_form
1049
+ #: contact_form.php:1480
1050
+ #: contact_form.php:1482
1051
  msgid "Please enter your phone number..."
1052
  msgstr "Informe seu telefone..."
1053
 
1054
  # @ contact_form
1055
+ #: contact_form.php:1491
1056
+ #: contact_form.php:1493
1057
  msgid "Please enter subject..."
1058
  msgstr "Informe o assunto…"
1059
 
1060
  # @ contact_form
1061
+ #: contact_form.php:1501
1062
+ #: contact_form.php:1503
1063
  msgid "Please enter your message..."
1064
  msgstr "Informe sua mensagem…"
1065
 
1066
+ #: contact_form.php:1545
1067
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
1068
  msgstr ""
1069
 
1070
+ #: contact_form.php:1547
1071
  msgid "Please, go to"
1072
  msgstr ""
1073
 
1074
  # @ contact_form
1075
+ #: contact_form.php:1547
1076
  #, fuzzy
1077
  msgid "the setting page"
1078
  msgstr "Configurações extras"
1079
 
1080
+ #: contact_form.php:1548
1081
  msgid "You will be redirected automatically in 5 seconds."
1082
  msgstr ""
1083
 
1084
+ #: contact_form.php:1553
1085
  msgid "You can download and activate"
1086
  msgstr ""
1087
 
1088
+ #: contact_form.php:1555
1089
  msgid "version of this plugin by entering Your license key."
1090
  msgstr ""
1091
 
1092
+ #: contact_form.php:1557
1093
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
1094
  msgstr ""
1095
 
1096
+ #: contact_form.php:1559
1097
  msgid "(your username is the email you specify when purchasing the product)."
1098
  msgstr ""
1099
 
1100
+ #: contact_form.php:1567
1101
+ #: contact_form.php:1577
1102
  msgid "Go!"
1103
  msgstr ""
1104
 
1105
  # @ bestwebsoft
1106
  # @ contact_form
1107
+ #: contact_form.php:1647
1108
  msgid "Sorry, email message could not be delivered."
1109
  msgstr "Desculpe, seu e-mail não pode ser entregue."
1110
 
1111
  # @ contact_form
1112
+ #: contact_form.php:2053
1113
  msgid "Contact from"
1114
  msgstr "Formulário de Contato"
1115
 
1116
  # @ contact_form
1117
+ #: contact_form.php:2066
1118
+ #: contact_form.php:2092
1119
  msgid "Email"
1120
  msgstr "E-Mail"
1121
 
1122
  # @ contact_form
1123
+ #: contact_form.php:2070
1124
+ #: contact_form.php:2094
1125
  msgid "Phone"
1126
  msgstr "Telefone"
1127
 
1128
  # @ contact_form
1129
+ #: contact_form.php:2079
1130
+ #: contact_form.php:2097
1131
  msgid "Site"
1132
  msgstr "Site"
1133
 
1134
  # @ contact_form
1135
+ #: contact_form.php:2160
1136
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
1137
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
1138
 
1139
  # @ contact_form
1140
+ #: contact_form.php:2229
1141
  msgid "FAQ"
1142
  msgstr "Perguntas Frequentes"
1143
 
1144
  # @ contact_form
1145
+ #: contact_form.php:2230
1146
  msgid "Support"
1147
  msgstr "Suporte"
1148
 
1149
  # @ contact_form
1150
+ #: contact_form.php:2280
1151
  msgid "Are you sure that you want to delete this language data?"
1152
  msgstr "Tem certeza que você quer apagar estes dados de idioma?"
1153
 
1154
+ #: contact_form.php:2476
1155
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
1156
  msgstr ""
1157
 
1158
+ #: contact_form.php:2477
1159
  msgid "Extend standard plugin functionality with new great options."
1160
  msgstr ""
1161
 
1162
+ #: contact_form.php:2492
1163
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1164
  msgstr ""
1165
 
1166
+ #: contact_form.php:2493
1167
  msgid "Manage messages that have been sent from your website."
1168
  msgstr ""
1169
 
languages/contact_form-pt_PT.mo CHANGED
Binary file
languages/contact_form-pt_PT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-20 14:05+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:05+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung, César Silva <thartung@adipositas-mm.de, cesarbsilva@gmail.com>\n"
9
  "Language: rm_SH\n"
@@ -16,1002 +16,1034 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Opções do formulário de contato"
24
 
25
- #: contact_form.php:33
26
  msgid "Contact Form"
27
  msgstr "Formulário de contato"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:978
31
- #: contact_form.php:1008
32
  msgid "Name:"
33
  msgstr "Nome:"
34
 
35
- #: contact_form.php:81
36
- #: contact_form.php:979
37
- #: contact_form.php:1009
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "Endereço de E-mail:"
41
 
42
- #: contact_form.php:82
43
- #: contact_form.php:980
44
- #: contact_form.php:1010
45
  msgid "Email Address:"
46
  msgstr "Endereço de E-mail:"
47
 
48
- #: contact_form.php:83
49
- #: contact_form.php:981
50
- #: contact_form.php:1011
51
  msgid "Phone number:"
52
  msgstr "Número de Telefone :"
53
 
54
- #: contact_form.php:84
55
- #: contact_form.php:982
56
- #: contact_form.php:1012
57
  msgid "Subject:"
58
  msgstr "Assunto:"
59
 
60
- #: contact_form.php:85
61
- #: contact_form.php:983
62
- #: contact_form.php:1013
63
  msgid "Message:"
64
  msgstr "Mensagem:"
65
 
66
- #: contact_form.php:86
67
- #: contact_form.php:984
68
- #: contact_form.php:1014
69
  msgid "Attachment:"
70
  msgstr "Anexo:"
71
 
72
- #: contact_form.php:87
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
- #: contact_form.php:88
77
- #: contact_form.php:986
78
- #: contact_form.php:1016
79
  msgid "Send me a copy"
80
  msgstr "Envie-me uma cópia"
81
 
82
- #: contact_form.php:89
83
- #: contact_form.php:987
84
- #: contact_form.php:1017
85
  msgid "Submit"
86
  msgstr "Enviar"
87
 
88
- #: contact_form.php:90
89
  msgid "Your name is required."
90
  msgstr "Nome é obrigatório"
91
 
92
- #: contact_form.php:91
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "Um e-mail correto é obrigatório."
96
 
97
- #: contact_form.php:92
98
  #, fuzzy
99
  msgid "A valid email address is required."
100
  msgstr "Um e-mail correto é obrigatório."
101
 
102
- #: contact_form.php:93
103
  msgid "Phone number is required."
104
  msgstr "Número de Telefone é obrigatório"
105
 
106
- #: contact_form.php:94
107
  msgid "Subject is required."
108
  msgstr "O Assunto da mensagem é obrigatório."
109
 
110
- #: contact_form.php:95
111
  msgid "Message text is required."
112
  msgstr "O texto da Mensagem é obrigatório."
113
 
114
- #: contact_form.php:96
115
  msgid "File format is not valid."
116
  msgstr "Impossível anexar arquivo. "
117
 
118
- #: contact_form.php:97
119
  msgid "File upload error."
120
  msgstr ""
121
 
122
- #: contact_form.php:98
123
  msgid "The file could not be uploaded."
124
  msgstr ""
125
 
126
- #: contact_form.php:99
127
  msgid "This file is too large."
128
  msgstr ""
129
 
130
- #: contact_form.php:100
131
  msgid "Please fill out the CAPTCHA."
132
  msgstr "Por favor, complete a resposta do CAPTCHA ."
133
 
134
- #: contact_form.php:101
135
  msgid "Please make corrections below and try again."
136
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
137
 
138
- #: contact_form.php:103
139
  msgid "Thank you for contacting us."
140
  msgstr "Obrigado por nos contactar"
141
 
142
- #: contact_form.php:203
143
  #, fuzzy
144
  msgid "requires"
145
  msgstr "Campos obrigatórios"
146
 
147
- #: contact_form.php:203
148
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
149
  msgstr ""
150
 
151
- #: contact_form.php:203
152
  msgid "Back to the WordPress"
153
  msgstr ""
154
 
155
- #: contact_form.php:203
156
  #, fuzzy
157
  msgid "Plugins page"
158
  msgstr "BWS Plugins"
159
 
160
- #: contact_form.php:494
161
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
162
  msgstr "Se o 'Redirecionamento para a página' estiver selecionado, o campo URL deve estar no seguinte formato"
163
 
164
- #: contact_form.php:503
165
  msgid "Such user does not exist. Settings are not saved."
166
  msgstr "O Utilizador não existe. Configurações não foram guardadas."
167
 
168
- #: contact_form.php:507
169
- #: contact_form.php:513
170
  #, fuzzy
171
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
172
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
173
 
174
- #: contact_form.php:518
175
  #, fuzzy
176
  msgid "Settings saved."
177
  msgstr "Opções guardadas."
178
 
179
- #: contact_form.php:554
180
- #: contact_form.php:593
181
  msgid "Wrong license key"
182
  msgstr ""
183
 
184
- #: contact_form.php:586
185
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
186
  msgstr ""
187
 
188
- #: contact_form.php:595
189
  msgid "This license key is bind to another site"
190
  msgstr ""
191
 
192
- #: contact_form.php:597
193
- #: contact_form.php:1392
194
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
195
  msgstr ""
196
 
197
- #: contact_form.php:615
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
 
201
- #: contact_form.php:621
202
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
203
  msgstr ""
204
 
205
- #: contact_form.php:625
206
- #: contact_form.php:634
207
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
208
  msgstr ""
209
 
210
- #: contact_form.php:638
211
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
212
  msgstr ""
213
 
214
- #: contact_form.php:653
215
  #, fuzzy
216
  msgid "Please, enter Your license key"
217
  msgstr "Use este email:"
218
 
219
- #: contact_form.php:662
220
- msgid "Notice:"
221
- msgstr ""
222
-
223
- #: contact_form.php:662
224
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
225
- msgstr ""
226
-
227
- #: contact_form.php:665
228
- #: contact_form.php:1997
229
- #: contact_form.php:2008
230
  msgid "Settings"
231
  msgstr "Configurações"
232
 
233
- #: contact_form.php:666
234
  #, fuzzy
235
  msgid "Extra settings"
236
  msgstr "Configurações"
237
 
238
- #: contact_form.php:667
239
  msgid "Go PRO"
240
  msgstr ""
241
 
242
- #: contact_form.php:673
243
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgid "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:"
245
  msgstr "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
246
 
247
- #: contact_form.php:673
248
- #: contact_form.php:674
249
- #: contact_form.php:1001
250
- #: contact_form.php:1050
 
 
 
 
251
  msgid "or"
252
  msgstr ""
253
 
254
- #: contact_form.php:674
 
255
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
256
  msgstr ""
257
 
258
- #: contact_form.php:675
 
259
  msgid "They work the same way."
260
  msgstr ""
261
 
262
- #: contact_form.php:676
 
263
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
264
  msgstr "Se informações nos campos abaixo estão vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
265
 
266
- #: contact_form.php:680
267
  msgid "The user's email address:"
268
  msgstr "Use o email de um utilizador do wordpress:"
269
 
270
- #: contact_form.php:684
271
  msgid "Create a username"
272
  msgstr "Selecione o nome do utilizador"
273
 
274
- #: contact_form.php:689
275
  msgid "Enter a username of the person who should get the messages from the contact form."
276
  msgstr "Determine um nome de utilizador que receberá as mensagens enviadas pelo Formulário de Contato."
277
 
278
- #: contact_form.php:693
279
  msgid "Use this email address:"
280
  msgstr "Use este email:"
281
 
282
- #: contact_form.php:696
283
  msgid "Enter the email address you want the messages forwarded to."
284
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
285
 
286
- #: contact_form.php:702
287
  msgid "Add department selectbox to the contact form:"
288
  msgstr ""
289
 
290
- #: contact_form.php:710
291
- #: contact_form.php:1246
292
  msgid "If you upgrade to Pro version all your settings will be saved."
293
  msgstr ""
294
 
295
- #: contact_form.php:715
296
- #: contact_form.php:852
297
- #: contact_form.php:923
298
- #: contact_form.php:1096
299
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
300
  msgstr ""
301
 
302
- #: contact_form.php:716
303
- #: contact_form.php:853
304
- #: contact_form.php:924
305
- #: contact_form.php:1097
306
- #, fuzzy
307
- msgid "Contact Form Pro"
308
- msgstr "Formulário de contato"
 
309
 
310
- #: contact_form.php:722
 
 
 
 
 
 
 
311
  msgid "Save emails to the database"
312
  msgstr ""
313
 
314
- #: contact_form.php:732
315
  msgid "Using"
316
  msgstr ""
317
 
318
- #: contact_form.php:732
319
- #: contact_form.php:901
320
- #: contact_form.php:904
321
- #: contact_form.php:908
322
  msgid "powered by"
323
  msgstr ""
324
 
325
- #: contact_form.php:735
326
- #: contact_form.php:739
327
  msgid "Using Contact Form to DB powered by"
328
  msgstr ""
329
 
330
- #: contact_form.php:735
331
  #, fuzzy
332
  msgid "Activate Contact Form to DB"
333
  msgstr "Formulário de contato"
334
 
335
- #: contact_form.php:739
336
  #, fuzzy
337
  msgid "Download Contact Form to DB"
338
  msgstr "Formulário de contato"
339
 
340
- #: contact_form.php:744
341
  msgid "Additional options"
342
  msgstr "Opções adicionais"
343
 
344
- #: contact_form.php:746
345
  msgid "Show"
346
  msgstr ""
347
 
348
- #: contact_form.php:747
349
  msgid "Hide"
350
  msgstr ""
351
 
352
- #: contact_form.php:751
353
  msgid "What to use?"
354
  msgstr "O que usar?"
355
 
356
- #: contact_form.php:754
357
  msgid "Wp-mail"
358
  msgstr "Wp-mail"
359
 
360
- #: contact_form.php:754
361
  msgid "You can use the wp_mail function for mailing"
362
  msgstr "Pode usar a função wp_mail para emailing"
363
 
364
- #: contact_form.php:756
365
  msgid "Mail"
366
  msgstr "Mail"
367
 
368
- #: contact_form.php:756
369
  msgid "To send mail you can use the php mail function"
370
  msgstr "Para o envio de email pode usar a função de email existente no core do php"
371
 
372
- #: contact_form.php:760
373
  #, fuzzy
374
  msgid "The text in the 'From' field"
375
  msgstr "Mudar rótulo para os campos no formulário de contato"
376
 
377
- #: contact_form.php:762
378
  msgid "User name"
379
  msgstr ""
380
 
381
- #: contact_form.php:763
382
  #, fuzzy
383
  msgid "The name of the user who fills the form will be used in the field 'From'."
384
  msgstr "O endereço de e-mail do utilizador que preenche o formulário vai ser usado no campo 'De'."
385
 
386
- #: contact_form.php:766
387
  #, fuzzy
388
  msgid "This text will be used in the 'FROM' field"
389
  msgstr "Este endereço de e-mail será usado no campo 'De'."
390
 
391
- #: contact_form.php:770
392
  #, fuzzy
393
  msgid "The email address in the 'From' field"
394
  msgstr "Insira o email no campo 'Form'"
395
 
396
- #: contact_form.php:772
397
  msgid "User email"
398
  msgstr ""
399
 
400
- #: contact_form.php:773
401
  #, fuzzy
402
  msgid "The email address of the user who fills the form will be used in the field 'From'."
403
  msgstr "O endereço de e-mail do utilizador que preenche o formulário vai ser usado no campo 'De'."
404
 
405
- #: contact_form.php:776
406
  msgid "This email address will be used in the 'From' field."
407
  msgstr "Este endereço de e-mail será usado no campo 'De'."
408
 
409
- #: contact_form.php:780
410
  #, fuzzy
411
  msgid "Required symbol"
412
  msgstr "Campos obrigatórios"
413
 
414
- #: contact_form.php:790
415
  msgid "Fields"
416
  msgstr ""
417
 
418
- #: contact_form.php:791
419
  msgid "Used"
420
  msgstr ""
421
 
422
- #: contact_form.php:792
423
  #, fuzzy
424
  msgid "Required"
425
  msgstr "Campos obrigatórios"
426
 
427
- #: contact_form.php:793
428
  msgid "Visible"
429
  msgstr ""
430
 
431
- #: contact_form.php:794
432
  msgid "Disabled for editing"
433
  msgstr ""
434
 
435
- #: contact_form.php:795
436
  msgid "Field's default value"
437
  msgstr ""
438
 
439
- #: contact_form.php:800
440
- #: contact_form.php:1121
441
- #: contact_form.php:1841
442
- #: contact_form.php:1871
443
  msgid "Name"
444
  msgstr "Nome"
445
 
446
- #: contact_form.php:808
447
- #: contact_form.php:1126
448
- #: contact_form.php:1845
449
- #: contact_form.php:1873
450
  #, fuzzy
451
  msgid "Address"
452
  msgstr "Endereço de E-mail:"
453
 
454
- #: contact_form.php:816
455
  #, fuzzy
456
  msgid "Email Address"
457
  msgstr "Endereço de E-mail:"
458
 
459
- #: contact_form.php:824
460
  #, fuzzy
461
  msgid "Phone number"
462
  msgstr "Número de Telefone :"
463
 
464
- #: contact_form.php:832
465
- #: contact_form.php:1141
466
- #: contact_form.php:1855
467
- #: contact_form.php:1877
468
  msgid "Subject"
469
  msgstr "Assunto"
470
 
471
- #: contact_form.php:840
472
- #: contact_form.php:1145
473
- #: contact_form.php:1858
474
- #: contact_form.php:1878
475
  msgid "Message"
476
  msgstr "Mensagem"
477
 
478
- #: contact_form.php:858
479
  #, fuzzy
480
  msgid "Attachment block"
481
  msgstr "Mostrar opção para anexar arquivos"
482
 
483
- #: contact_form.php:860
484
  msgid "Users can attach the following file formats"
485
  msgstr "Utilizadores podem anexar arquivos do seguinte tipo:"
486
 
487
- #: contact_form.php:874
488
  msgid "Add to the form"
489
  msgstr ""
490
 
491
- #: contact_form.php:879
492
  #, fuzzy
493
  msgid "Tips below the Attachment"
494
  msgstr "Mostrar dicas para anexar arquivos"
495
 
496
- #: contact_form.php:888
497
  #, fuzzy
498
  msgid "'Send me a copy' block"
499
  msgstr "Mostrar a opção Envie-me um cópia"
500
 
501
- #: contact_form.php:901
502
- #: contact_form.php:904
503
- #: contact_form.php:908
504
- #: contact_form.php:1155
505
  msgid "Captcha"
506
  msgstr ""
507
 
508
- #: contact_form.php:904
509
  #, fuzzy
510
  msgid "Activate captcha"
511
  msgstr "Plugins ativados"
512
 
513
- #: contact_form.php:908
514
  #, fuzzy
515
  msgid "Download captcha"
516
  msgstr "Baixar"
517
 
518
- #: contact_form.php:916
519
  msgid "Agreement checkbox"
520
  msgstr ""
521
 
522
- #: contact_form.php:916
523
  msgid "Required checkbox for submitting the form"
524
  msgstr ""
525
 
526
- #: contact_form.php:917
527
  msgid "Optional checkbox"
528
  msgstr ""
529
 
530
- #: contact_form.php:917
531
  msgid "Optional checkbox, the results of which will be displayed in email"
532
  msgstr ""
533
 
534
- #: contact_form.php:928
535
  msgid "Delete an attachment file from the server after the email is sent"
536
  msgstr ""
537
 
538
- #: contact_form.php:934
539
  msgid "Email in HTML format sending"
540
  msgstr ""
541
 
542
- #: contact_form.php:938
543
  #, fuzzy
544
  msgid "Display additional info in the email"
545
  msgstr "Mostrar informações adicionais no e-mail"
546
 
547
- #: contact_form.php:943
548
- #: contact_form.php:1808
549
- #: contact_form.php:1810
550
  msgid "Sent from (ip address)"
551
  msgstr "Enviado de (Endereço IP)"
552
 
553
- #: contact_form.php:943
554
  #, fuzzy
555
  msgid "Example: Sent from (IP address):\t127.0.0.1"
556
  msgstr "Enviado de (Endereço IP)"
557
 
558
- #: contact_form.php:944
559
- #: contact_form.php:1814
560
- #: contact_form.php:1816
561
  msgid "Date/Time"
562
  msgstr "Data / Hora"
563
 
564
- #: contact_form.php:944
565
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
566
  msgstr ""
567
 
568
- #: contact_form.php:945
569
- #: contact_form.php:1820
570
- #: contact_form.php:1822
571
  msgid "Sent from (referer)"
572
  msgstr "Vindo de (origem)"
573
 
574
- #: contact_form.php:945
575
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
576
  msgstr ""
577
 
578
- #: contact_form.php:946
579
- #: contact_form.php:1826
580
- #: contact_form.php:1828
581
  msgid "Using (user agent)"
582
  msgstr "Usando (cliente de email)"
583
 
584
- #: contact_form.php:946
585
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
586
  msgstr ""
587
 
588
- #: contact_form.php:950
589
  msgid "Language settings for the field names in the form"
590
  msgstr "Configurações de idioma para os nomes dos campos do formulário"
591
 
592
- #: contact_form.php:959
593
  #, fuzzy
594
  msgid "Add a language"
595
  msgstr "Adicionar idioma"
596
 
597
- #: contact_form.php:963
598
  #, fuzzy
599
  msgid "Change the names of the contact form fields and error messages"
600
  msgstr "Mudar rótulo para os campos no formulário de contato"
601
 
602
- #: contact_form.php:968
603
- #: contact_form.php:1041
604
  msgid "English"
605
  msgstr "Inglês"
606
 
607
- #: contact_form.php:976
608
- #: contact_form.php:1006
609
  msgid "click to expand/hide the list"
610
  msgstr ""
611
 
612
- #: contact_form.php:985
613
- #: contact_form.php:1015
614
  #, fuzzy
615
  msgid "Tips below the Attachment block"
616
  msgstr "Mostrar dicas para anexar arquivos"
617
 
618
- #: contact_form.php:988
619
- #: contact_form.php:1018
620
  msgid "Error message for the Name field"
621
  msgstr "Mensagem de erro para o campo Nome"
622
 
623
- #: contact_form.php:989
624
- #: contact_form.php:1019
625
  #, fuzzy
626
  msgid "Error message for the Address field"
627
  msgstr "Mensagem de erro para o campo Mensagem"
628
 
629
- #: contact_form.php:990
630
- #: contact_form.php:1020
631
  msgid "Error message for the Email field"
632
  msgstr "Mensagem de erro para o campo de E-mail"
633
 
634
- #: contact_form.php:991
635
- #: contact_form.php:1021
636
  msgid "Error message for the Phone field"
637
  msgstr "Mensagem de erro para o campo de Telefone"
638
 
639
- #: contact_form.php:992
640
- #: contact_form.php:1022
641
  msgid "Error message for the Subject field"
642
  msgstr "Mensagem de erro para o campo Assunto"
643
 
644
- #: contact_form.php:993
645
- #: contact_form.php:1023
646
  msgid "Error message for the Message field"
647
  msgstr "Mensagem de erro para o campo Mensagem"
648
 
649
- #: contact_form.php:994
650
- #: contact_form.php:1024
651
  #, fuzzy
652
  msgid "Error message about the file type for the Attachment field"
653
  msgstr "Mensagem de erro para o campo Anexos"
654
 
655
- #: contact_form.php:995
656
- #: contact_form.php:1025
657
  #, fuzzy
658
  msgid "Error message while uploading a file for the Attachment field to the server"
659
  msgstr "Mensagem de erro para o campo Anexos"
660
 
661
- #: contact_form.php:996
662
- #: contact_form.php:1026
663
  #, fuzzy
664
  msgid "Error message while moving the file for the Attachment field"
665
  msgstr "Mensagem de erro para o campo Anexos"
666
 
667
- #: contact_form.php:997
668
- #: contact_form.php:1027
669
  #, fuzzy
670
  msgid "Error message when file size limit for the Attachment field is exceeded"
671
  msgstr "Mensagem de erro para o campo Anexos"
672
 
673
- #: contact_form.php:998
674
- #: contact_form.php:1028
675
  msgid "Error message for the Captcha field"
676
  msgstr "Mensagem de erro para o controlo Captcha"
677
 
678
- #: contact_form.php:999
679
- #: contact_form.php:1029
680
  msgid "Error message for the whole form"
681
  msgstr "Mensagem de erro para todo o formulário"
682
 
683
- #: contact_form.php:1001
684
- #: contact_form.php:1031
685
- #: contact_form.php:1050
686
- #: contact_form.php:1056
 
 
 
 
687
  msgid "Use shortcode"
688
  msgstr "usar código abreviado"
689
 
690
- #: contact_form.php:1001
691
- #: contact_form.php:1031
692
- #: contact_form.php:1050
693
- #: contact_form.php:1056
 
 
 
 
694
  msgid "for this language"
695
  msgstr "para este idioma"
696
 
697
- #: contact_form.php:1038
698
  msgid "Action after email is sent"
699
  msgstr "Ação após envio de email"
700
 
701
- #: contact_form.php:1040
702
  #, fuzzy
703
  msgid "Display text"
704
  msgstr "Mostrar opção para anexar arquivos"
705
 
706
- #: contact_form.php:1049
707
- #: contact_form.php:1055
708
  msgid "Text"
709
  msgstr "Texto"
710
 
711
- #: contact_form.php:1062
712
  msgid "Redirect to the page"
713
  msgstr "Redirecionamento para a página"
714
 
715
- #: contact_form.php:1063
716
  msgid "Url"
717
  msgstr "Url"
718
 
719
- #: contact_form.php:1067
720
  msgid "The $_SERVER variable that is used to build a URL of the form"
721
  msgstr ""
722
 
723
- #: contact_form.php:1071
724
  msgid "If you are not sure whether to change this setting or not, please do not do that."
725
  msgstr ""
726
 
727
- #: contact_form.php:1077
728
- #: contact_form.php:1252
729
  msgid "Save Changes"
730
  msgstr "Salvar mudanças"
731
 
732
- #: contact_form.php:1082
733
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
734
  msgstr ""
735
 
736
- #: contact_form.php:1083
737
  #, fuzzy
738
  msgid "Rate the plugin"
739
  msgstr "Plugins recomendados"
740
 
741
- #: contact_form.php:1086
742
  #, fuzzy
743
  msgid "If there is something wrong about it, please contact us"
744
  msgstr "Se você tem quaisquer perguntas, por favor entre em contato através do email plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
745
 
746
- #: contact_form.php:1101
747
  msgid "Errors output"
748
  msgstr ""
749
 
750
- #: contact_form.php:1104
751
  msgid "Display error messages"
752
  msgstr ""
753
 
754
- #: contact_form.php:1105
755
  msgid "Color of the input field errors."
756
  msgstr ""
757
 
758
- #: contact_form.php:1106
759
  #, fuzzy
760
  msgid "Display error messages & color of the input field errors"
761
  msgstr "Mensagem de erro para o campo Assunto"
762
 
763
- #: contact_form.php:1111
764
  msgid "Add placeholder to the input blocks"
765
  msgstr ""
766
 
767
- #: contact_form.php:1117
768
  #, fuzzy
769
  msgid "Add tooltips"
770
  msgstr "Opções adicionais"
771
 
772
- #: contact_form.php:1131
773
  #, fuzzy
774
  msgid "Email address"
775
  msgstr "Endereço de E-mail:"
776
 
777
- #: contact_form.php:1136
778
  #, fuzzy
779
  msgid "Phone Number"
780
  msgstr "Número de Telefone :"
781
 
782
- #: contact_form.php:1150
783
  #, fuzzy
784
  msgid "Attachment"
785
  msgstr "Anexo:"
786
 
787
- #: contact_form.php:1155
788
  msgid "(powered by bestwebsoft.com)"
789
  msgstr ""
790
 
791
- #: contact_form.php:1160
792
  #, fuzzy
793
  msgid "Style options"
794
  msgstr "Opções adicionais"
795
 
796
- #: contact_form.php:1163
797
  msgid "Text color"
798
  msgstr ""
799
 
800
- #: contact_form.php:1166
801
- #: contact_form.php:1171
802
- #: contact_form.php:1181
803
- #: contact_form.php:1186
804
- #: contact_form.php:1191
805
- #: contact_form.php:1196
806
- #: contact_form.php:1206
807
- #: contact_form.php:1211
808
- #: contact_form.php:1217
809
- #: contact_form.php:1228
810
- #: contact_form.php:1233
811
- #: contact_form.php:1238
812
  msgid "Default"
813
  msgstr ""
814
 
815
- #: contact_form.php:1168
816
  msgid "Label text color"
817
  msgstr ""
818
 
819
- #: contact_form.php:1173
820
  msgid "Placeholder color"
821
  msgstr ""
822
 
823
- #: contact_form.php:1178
824
  msgid "Errors color"
825
  msgstr ""
826
 
827
- #: contact_form.php:1183
828
  msgid "Error text color"
829
  msgstr ""
830
 
831
- #: contact_form.php:1188
832
  msgid "Background color of the input field errors"
833
  msgstr ""
834
 
835
- #: contact_form.php:1193
836
  msgid "Border color of the input field errors"
837
  msgstr ""
838
 
839
- #: contact_form.php:1198
840
  msgid "Placeholder color of the input field errors"
841
  msgstr ""
842
 
843
- #: contact_form.php:1203
844
  #, fuzzy
845
  msgid "Input fields"
846
  msgstr "Mostrar opção para anexar arquivos"
847
 
848
- #: contact_form.php:1208
849
  msgid "Input fields background color"
850
  msgstr ""
851
 
852
- #: contact_form.php:1213
853
  msgid "Text fields color"
854
  msgstr ""
855
 
856
- #: contact_form.php:1215
857
  msgid "Border width in px, numbers only"
858
  msgstr ""
859
 
860
- #: contact_form.php:1219
861
- #: contact_form.php:1240
862
  msgid "Border color"
863
  msgstr ""
864
 
865
- #: contact_form.php:1224
866
  #, fuzzy
867
  msgid "Submit button"
868
  msgstr "Enviar"
869
 
870
- #: contact_form.php:1226
871
  msgid "Width in px, numbers only"
872
  msgstr ""
873
 
874
- #: contact_form.php:1230
875
  msgid "Button color"
876
  msgstr ""
877
 
878
- #: contact_form.php:1235
879
  msgid "Button text color"
880
  msgstr ""
881
 
882
- #: contact_form.php:1256
883
  #, fuzzy
884
  msgid "Contact Form Pro | Preview"
885
  msgstr "Formulário de contato"
886
 
887
- #: contact_form.php:1259
888
  msgid "Show with errors"
889
  msgstr ""
890
 
891
- #: contact_form.php:1267
892
- #: contact_form.php:1269
893
  msgid "Please enter your full name..."
894
  msgstr ""
895
 
896
- #: contact_form.php:1280
897
- #: contact_form.php:1282
898
  msgid "Please enter your address..."
899
  msgstr ""
900
 
901
- #: contact_form.php:1291
902
- #: contact_form.php:1293
903
  #, fuzzy
904
  msgid "Please enter your email address..."
905
  msgstr "Use este email:"
906
 
907
- #: contact_form.php:1302
908
- #: contact_form.php:1304
909
  msgid "Please enter your phone number..."
910
  msgstr ""
911
 
912
- #: contact_form.php:1313
913
- #: contact_form.php:1315
914
  msgid "Please enter subject..."
915
  msgstr ""
916
 
917
- #: contact_form.php:1323
918
- #: contact_form.php:1325
919
  msgid "Please enter your message..."
920
  msgstr ""
921
 
922
- #: contact_form.php:1367
923
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
924
  msgstr ""
925
 
926
- #: contact_form.php:1369
927
  msgid "Please, go to"
928
  msgstr ""
929
 
930
- #: contact_form.php:1369
931
  #, fuzzy
932
  msgid "the setting page"
933
  msgstr "Configurações"
934
 
935
- #: contact_form.php:1370
936
  msgid "You will be redirected automatically in 5 seconds."
937
  msgstr ""
938
 
939
- #: contact_form.php:1375
940
  msgid "You can download and activate"
941
  msgstr ""
942
 
943
- #: contact_form.php:1377
944
  msgid "version of this plugin by entering Your license key."
945
  msgstr ""
946
 
947
- #: contact_form.php:1379
948
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
949
  msgstr ""
950
 
951
- #: contact_form.php:1381
952
  msgid "(your username is the email you specify when purchasing the product)."
953
  msgstr ""
954
 
955
- #: contact_form.php:1389
956
- #: contact_form.php:1399
957
  msgid "Go!"
958
  msgstr ""
959
 
960
- #: contact_form.php:1449
961
  msgid "Sorry, email message could not be delivered."
962
  msgstr "Desculpe, seu e-mail não pode ser entregue."
963
 
964
- #: contact_form.php:1835
965
  msgid "Contact from"
966
  msgstr "Formulário de Contato"
967
 
968
- #: contact_form.php:1848
969
- #: contact_form.php:1874
970
  msgid "Email"
971
  msgstr "E-Mail"
972
 
973
- #: contact_form.php:1852
974
- #: contact_form.php:1876
975
  msgid "Phone"
976
  msgstr "Telefone"
977
 
978
- #: contact_form.php:1861
979
- #: contact_form.php:1879
980
  msgid "Site"
981
  msgstr "Site"
982
 
983
- #: contact_form.php:1941
984
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
985
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
986
 
987
- #: contact_form.php:2009
988
  msgid "FAQ"
989
  msgstr "Perguntas Frequentes"
990
 
991
- #: contact_form.php:2010
992
  msgid "Support"
993
  msgstr "Suporte"
994
 
995
- #: contact_form.php:2068
996
  msgid "Are you sure that you want to delete this language data?"
997
  msgstr "Tem certeza que você deseja excluir os dados deste idioma?"
998
 
999
- #: contact_form.php:2223
1000
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
1001
  msgstr ""
1002
 
1003
- #: contact_form.php:2224
1004
  msgid "Extend standard plugin functionality with new great options."
1005
  msgstr ""
1006
 
1007
- #: contact_form.php:2233
1008
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1009
  msgstr ""
1010
 
1011
- #: contact_form.php:2234
1012
  msgid "Manage messages that have been sent from your website."
1013
  msgstr ""
1014
 
 
 
 
 
1015
  #, fuzzy
1016
  #~ msgid "Contact Form Pro Extra Settings"
1017
  #~ msgstr "Opções do formulário de contato"
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:38+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:38+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung, César Silva <thartung@adipositas-mm.de, cesarbsilva@gmail.com>\n"
9
  "Language: rm_SH\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Opções do formulário de contato"
24
 
25
+ #: contact_form.php:73
26
  msgid "Contact Form"
27
  msgstr "Formulário de contato"
28
 
29
+ #: contact_form.php:149
30
+ #: contact_form.php:1131
31
+ #: contact_form.php:1165
32
  msgid "Name:"
33
  msgstr "Nome:"
34
 
35
+ #: contact_form.php:150
36
+ #: contact_form.php:1132
37
+ #: contact_form.php:1166
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "Endereço de E-mail:"
41
 
42
+ #: contact_form.php:151
43
+ #: contact_form.php:1133
44
+ #: contact_form.php:1167
45
  msgid "Email Address:"
46
  msgstr "Endereço de E-mail:"
47
 
48
+ #: contact_form.php:152
49
+ #: contact_form.php:1134
50
+ #: contact_form.php:1168
51
  msgid "Phone number:"
52
  msgstr "Número de Telefone :"
53
 
54
+ #: contact_form.php:153
55
+ #: contact_form.php:1135
56
+ #: contact_form.php:1169
57
  msgid "Subject:"
58
  msgstr "Assunto:"
59
 
60
+ #: contact_form.php:154
61
+ #: contact_form.php:1136
62
+ #: contact_form.php:1170
63
  msgid "Message:"
64
  msgstr "Mensagem:"
65
 
66
+ #: contact_form.php:155
67
+ #: contact_form.php:1137
68
+ #: contact_form.php:1171
69
  msgid "Attachment:"
70
  msgstr "Anexo:"
71
 
72
+ #: contact_form.php:156
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
+ #: contact_form.php:157
77
+ #: contact_form.php:1139
78
+ #: contact_form.php:1173
79
  msgid "Send me a copy"
80
  msgstr "Envie-me uma cópia"
81
 
82
+ #: contact_form.php:158
83
+ #: contact_form.php:1140
84
+ #: contact_form.php:1174
85
  msgid "Submit"
86
  msgstr "Enviar"
87
 
88
+ #: contact_form.php:159
89
  msgid "Your name is required."
90
  msgstr "Nome é obrigatório"
91
 
92
+ #: contact_form.php:160
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "Um e-mail correto é obrigatório."
96
 
97
+ #: contact_form.php:161
98
  #, fuzzy
99
  msgid "A valid email address is required."
100
  msgstr "Um e-mail correto é obrigatório."
101
 
102
+ #: contact_form.php:162
103
  msgid "Phone number is required."
104
  msgstr "Número de Telefone é obrigatório"
105
 
106
+ #: contact_form.php:163
107
  msgid "Subject is required."
108
  msgstr "O Assunto da mensagem é obrigatório."
109
 
110
+ #: contact_form.php:164
111
  msgid "Message text is required."
112
  msgstr "O texto da Mensagem é obrigatório."
113
 
114
+ #: contact_form.php:165
115
  msgid "File format is not valid."
116
  msgstr "Impossível anexar arquivo. "
117
 
118
+ #: contact_form.php:166
119
  msgid "File upload error."
120
  msgstr ""
121
 
122
+ #: contact_form.php:167
123
  msgid "The file could not be uploaded."
124
  msgstr ""
125
 
126
+ #: contact_form.php:168
127
  msgid "This file is too large."
128
  msgstr ""
129
 
130
+ #: contact_form.php:169
131
  msgid "Please fill out the CAPTCHA."
132
  msgstr "Por favor, complete a resposta do CAPTCHA ."
133
 
134
+ #: contact_form.php:170
135
  msgid "Please make corrections below and try again."
136
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
137
 
138
+ #: contact_form.php:172
139
  msgid "Thank you for contacting us."
140
  msgstr "Obrigado por nos contactar"
141
 
142
+ #: contact_form.php:322
143
  #, fuzzy
144
  msgid "requires"
145
  msgstr "Campos obrigatórios"
146
 
147
+ #: contact_form.php:322
148
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
149
  msgstr ""
150
 
151
+ #: contact_form.php:322
152
  msgid "Back to the WordPress"
153
  msgstr ""
154
 
155
+ #: contact_form.php:322
156
  #, fuzzy
157
  msgid "Plugins page"
158
  msgstr "BWS Plugins"
159
 
160
+ #: contact_form.php:626
161
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
162
  msgstr "Se o 'Redirecionamento para a página' estiver selecionado, o campo URL deve estar no seguinte formato"
163
 
164
+ #: contact_form.php:635
165
  msgid "Such user does not exist. Settings are not saved."
166
  msgstr "O Utilizador não existe. Configurações não foram guardadas."
167
 
168
+ #: contact_form.php:639
169
+ #: contact_form.php:645
170
  #, fuzzy
171
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
172
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
173
 
174
+ #: contact_form.php:661
175
  #, fuzzy
176
  msgid "Settings saved."
177
  msgstr "Opções guardadas."
178
 
179
+ #: contact_form.php:688
180
+ #: contact_form.php:720
181
  msgid "Wrong license key"
182
  msgstr ""
183
 
184
+ #: contact_form.php:713
185
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
186
  msgstr ""
187
 
188
+ #: contact_form.php:722
189
  msgid "This license key is bind to another site"
190
  msgstr ""
191
 
192
+ #: contact_form.php:724
193
+ #: contact_form.php:1570
194
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
195
  msgstr ""
196
 
197
+ #: contact_form.php:741
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
 
201
+ #: contact_form.php:747
202
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
203
  msgstr ""
204
 
205
+ #: contact_form.php:751
206
+ #: contact_form.php:760
207
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
208
  msgstr ""
209
 
210
+ #: contact_form.php:764
211
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
212
  msgstr ""
213
 
214
+ #: contact_form.php:779
215
  #, fuzzy
216
  msgid "Please, enter Your license key"
217
  msgstr "Use este email:"
218
 
219
+ #: contact_form.php:787
220
+ #: contact_form.php:2216
221
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
222
  msgid "Settings"
223
  msgstr "Configurações"
224
 
225
+ #: contact_form.php:788
226
  #, fuzzy
227
  msgid "Extra settings"
228
  msgstr "Configurações"
229
 
230
+ #: contact_form.php:789
231
  msgid "Go PRO"
232
  msgstr ""
233
 
234
+ #: contact_form.php:792
235
+ msgid "Notice:"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:792
239
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
240
+ msgstr ""
241
+
242
+ #: contact_form.php:798
243
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
244
+ msgstr ""
245
+
246
+ #: contact_form.php:804
247
+ #: contact_form.php:809
248
+ #: contact_form.php:1529
249
  msgid "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:"
250
  msgstr "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
251
 
252
+ #: contact_form.php:804
253
+ #: contact_form.php:805
254
+ #: contact_form.php:809
255
+ #: contact_form.php:810
256
+ #: contact_form.php:1155
257
+ #: contact_form.php:1157
258
+ #: contact_form.php:1212
259
+ #: contact_form.php:1214
260
  msgid "or"
261
  msgstr ""
262
 
263
+ #: contact_form.php:805
264
+ #: contact_form.php:810
265
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
266
  msgstr ""
267
 
268
+ #: contact_form.php:806
269
+ #: contact_form.php:811
270
  msgid "They work the same way."
271
  msgstr ""
272
 
273
+ #: contact_form.php:807
274
+ #: contact_form.php:812
275
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
276
  msgstr "Se informações nos campos abaixo estão vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
277
 
278
+ #: contact_form.php:817
279
  msgid "The user's email address:"
280
  msgstr "Use o email de um utilizador do wordpress:"
281
 
282
+ #: contact_form.php:821
283
  msgid "Create a username"
284
  msgstr "Selecione o nome do utilizador"
285
 
286
+ #: contact_form.php:828
287
  msgid "Enter a username of the person who should get the messages from the contact form."
288
  msgstr "Determine um nome de utilizador que receberá as mensagens enviadas pelo Formulário de Contato."
289
 
290
+ #: contact_form.php:832
291
  msgid "Use this email address:"
292
  msgstr "Use este email:"
293
 
294
+ #: contact_form.php:835
295
  msgid "Enter the email address you want the messages forwarded to."
296
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
297
 
298
+ #: contact_form.php:844
299
  msgid "Add department selectbox to the contact form:"
300
  msgstr ""
301
 
302
+ #: contact_form.php:852
303
+ #: contact_form.php:1412
304
  msgid "If you upgrade to Pro version all your settings will be saved."
305
  msgstr ""
306
 
307
+ #: contact_form.php:859
308
+ #: contact_form.php:997
309
+ #: contact_form.php:1071
310
+ #: contact_form.php:1419
311
+ msgid "Unlock premium options by upgrading to a PRO version."
312
  msgstr ""
313
 
314
+ #: contact_form.php:860
315
+ #: contact_form.php:998
316
+ #: contact_form.php:1072
317
+ #: contact_form.php:1420
318
+ #: contact_form.php:2473
319
+ #: contact_form.php:2489
320
+ msgid "Learn More"
321
+ msgstr ""
322
 
323
+ #: contact_form.php:863
324
+ #: contact_form.php:1001
325
+ #: contact_form.php:1075
326
+ #: contact_form.php:1423
327
+ msgid "Go"
328
+ msgstr ""
329
+
330
+ #: contact_form.php:870
331
  msgid "Save emails to the database"
332
  msgstr ""
333
 
334
+ #: contact_form.php:876
335
  msgid "Using"
336
  msgstr ""
337
 
338
+ #: contact_form.php:876
339
+ #: contact_form.php:1048
340
+ #: contact_form.php:1051
341
+ #: contact_form.php:1055
342
  msgid "powered by"
343
  msgstr ""
344
 
345
+ #: contact_form.php:879
346
+ #: contact_form.php:883
347
  msgid "Using Contact Form to DB powered by"
348
  msgstr ""
349
 
350
+ #: contact_form.php:879
351
  #, fuzzy
352
  msgid "Activate Contact Form to DB"
353
  msgstr "Formulário de contato"
354
 
355
+ #: contact_form.php:883
356
  #, fuzzy
357
  msgid "Download Contact Form to DB"
358
  msgstr "Formulário de contato"
359
 
360
+ #: contact_form.php:888
361
  msgid "Additional options"
362
  msgstr "Opções adicionais"
363
 
364
+ #: contact_form.php:890
365
  msgid "Show"
366
  msgstr ""
367
 
368
+ #: contact_form.php:891
369
  msgid "Hide"
370
  msgstr ""
371
 
372
+ #: contact_form.php:895
373
  msgid "What to use?"
374
  msgstr "O que usar?"
375
 
376
+ #: contact_form.php:898
377
  msgid "Wp-mail"
378
  msgstr "Wp-mail"
379
 
380
+ #: contact_form.php:898
381
  msgid "You can use the wp_mail function for mailing"
382
  msgstr "Pode usar a função wp_mail para emailing"
383
 
384
+ #: contact_form.php:900
385
  msgid "Mail"
386
  msgstr "Mail"
387
 
388
+ #: contact_form.php:900
389
  msgid "To send mail you can use the php mail function"
390
  msgstr "Para o envio de email pode usar a função de email existente no core do php"
391
 
392
+ #: contact_form.php:904
393
  #, fuzzy
394
  msgid "The text in the 'From' field"
395
  msgstr "Mudar rótulo para os campos no formulário de contato"
396
 
397
+ #: contact_form.php:906
398
  msgid "User name"
399
  msgstr ""
400
 
401
+ #: contact_form.php:907
402
  #, fuzzy
403
  msgid "The name of the user who fills the form will be used in the field 'From'."
404
  msgstr "O endereço de e-mail do utilizador que preenche o formulário vai ser usado no campo 'De'."
405
 
406
+ #: contact_form.php:910
407
  #, fuzzy
408
  msgid "This text will be used in the 'FROM' field"
409
  msgstr "Este endereço de e-mail será usado no campo 'De'."
410
 
411
+ #: contact_form.php:914
412
  #, fuzzy
413
  msgid "The email address in the 'From' field"
414
  msgstr "Insira o email no campo 'Form'"
415
 
416
+ #: contact_form.php:916
417
  msgid "User email"
418
  msgstr ""
419
 
420
+ #: contact_form.php:917
421
  #, fuzzy
422
  msgid "The email address of the user who fills the form will be used in the field 'From'."
423
  msgstr "O endereço de e-mail do utilizador que preenche o formulário vai ser usado no campo 'De'."
424
 
425
+ #: contact_form.php:920
426
  msgid "This email address will be used in the 'From' field."
427
  msgstr "Este endereço de e-mail será usado no campo 'De'."
428
 
429
+ #: contact_form.php:924
430
  #, fuzzy
431
  msgid "Required symbol"
432
  msgstr "Campos obrigatórios"
433
 
434
+ #: contact_form.php:934
435
  msgid "Fields"
436
  msgstr ""
437
 
438
+ #: contact_form.php:935
439
  msgid "Used"
440
  msgstr ""
441
 
442
+ #: contact_form.php:936
443
  #, fuzzy
444
  msgid "Required"
445
  msgstr "Campos obrigatórios"
446
 
447
+ #: contact_form.php:937
448
  msgid "Visible"
449
  msgstr ""
450
 
451
+ #: contact_form.php:938
452
  msgid "Disabled for editing"
453
  msgstr ""
454
 
455
+ #: contact_form.php:939
456
  msgid "Field's default value"
457
  msgstr ""
458
 
459
+ #: contact_form.php:944
460
+ #: contact_form.php:1287
461
+ #: contact_form.php:2059
462
+ #: contact_form.php:2089
463
  msgid "Name"
464
  msgstr "Nome"
465
 
466
+ #: contact_form.php:952
467
+ #: contact_form.php:1292
468
+ #: contact_form.php:2063
469
+ #: contact_form.php:2091
470
  #, fuzzy
471
  msgid "Address"
472
  msgstr "Endereço de E-mail:"
473
 
474
+ #: contact_form.php:960
475
  #, fuzzy
476
  msgid "Email Address"
477
  msgstr "Endereço de E-mail:"
478
 
479
+ #: contact_form.php:968
480
  #, fuzzy
481
  msgid "Phone number"
482
  msgstr "Número de Telefone :"
483
 
484
+ #: contact_form.php:976
485
+ #: contact_form.php:1307
486
+ #: contact_form.php:2073
487
+ #: contact_form.php:2095
488
  msgid "Subject"
489
  msgstr "Assunto"
490
 
491
+ #: contact_form.php:984
492
+ #: contact_form.php:1311
493
+ #: contact_form.php:2076
494
+ #: contact_form.php:2096
495
  msgid "Message"
496
  msgstr "Mensagem"
497
 
498
+ #: contact_form.php:1008
499
  #, fuzzy
500
  msgid "Attachment block"
501
  msgstr "Mostrar opção para anexar arquivos"
502
 
503
+ #: contact_form.php:1010
504
  msgid "Users can attach the following file formats"
505
  msgstr "Utilizadores podem anexar arquivos do seguinte tipo:"
506
 
507
+ #: contact_form.php:1023
508
  msgid "Add to the form"
509
  msgstr ""
510
 
511
+ #: contact_form.php:1028
512
  #, fuzzy
513
  msgid "Tips below the Attachment"
514
  msgstr "Mostrar dicas para anexar arquivos"
515
 
516
+ #: contact_form.php:1037
517
  #, fuzzy
518
  msgid "'Send me a copy' block"
519
  msgstr "Mostrar a opção Envie-me um cópia"
520
 
521
+ #: contact_form.php:1048
522
+ #: contact_form.php:1051
523
+ #: contact_form.php:1055
524
+ #: contact_form.php:1321
525
  msgid "Captcha"
526
  msgstr ""
527
 
528
+ #: contact_form.php:1051
529
  #, fuzzy
530
  msgid "Activate captcha"
531
  msgstr "Plugins ativados"
532
 
533
+ #: contact_form.php:1055
534
  #, fuzzy
535
  msgid "Download captcha"
536
  msgstr "Baixar"
537
 
538
+ #: contact_form.php:1063
539
  msgid "Agreement checkbox"
540
  msgstr ""
541
 
542
+ #: contact_form.php:1063
543
  msgid "Required checkbox for submitting the form"
544
  msgstr ""
545
 
546
+ #: contact_form.php:1064
547
  msgid "Optional checkbox"
548
  msgstr ""
549
 
550
+ #: contact_form.php:1064
551
  msgid "Optional checkbox, the results of which will be displayed in email"
552
  msgstr ""
553
 
554
+ #: contact_form.php:1081
555
  msgid "Delete an attachment file from the server after the email is sent"
556
  msgstr ""
557
 
558
+ #: contact_form.php:1087
559
  msgid "Email in HTML format sending"
560
  msgstr ""
561
 
562
+ #: contact_form.php:1091
563
  #, fuzzy
564
  msgid "Display additional info in the email"
565
  msgstr "Mostrar informações adicionais no e-mail"
566
 
567
+ #: contact_form.php:1096
568
+ #: contact_form.php:2026
569
+ #: contact_form.php:2028
570
  msgid "Sent from (ip address)"
571
  msgstr "Enviado de (Endereço IP)"
572
 
573
+ #: contact_form.php:1096
574
  #, fuzzy
575
  msgid "Example: Sent from (IP address):\t127.0.0.1"
576
  msgstr "Enviado de (Endereço IP)"
577
 
578
+ #: contact_form.php:1097
579
+ #: contact_form.php:2032
580
+ #: contact_form.php:2034
581
  msgid "Date/Time"
582
  msgstr "Data / Hora"
583
 
584
+ #: contact_form.php:1097
585
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
586
  msgstr ""
587
 
588
+ #: contact_form.php:1098
589
+ #: contact_form.php:2038
590
+ #: contact_form.php:2040
591
  msgid "Sent from (referer)"
592
  msgstr "Vindo de (origem)"
593
 
594
+ #: contact_form.php:1098
595
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
596
  msgstr ""
597
 
598
+ #: contact_form.php:1099
599
+ #: contact_form.php:2044
600
+ #: contact_form.php:2046
601
  msgid "Using (user agent)"
602
  msgstr "Usando (cliente de email)"
603
 
604
+ #: contact_form.php:1099
605
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
606
  msgstr ""
607
 
608
+ #: contact_form.php:1103
609
  msgid "Language settings for the field names in the form"
610
  msgstr "Configurações de idioma para os nomes dos campos do formulário"
611
 
612
+ #: contact_form.php:1112
613
  #, fuzzy
614
  msgid "Add a language"
615
  msgstr "Adicionar idioma"
616
 
617
+ #: contact_form.php:1116
618
  #, fuzzy
619
  msgid "Change the names of the contact form fields and error messages"
620
  msgstr "Mudar rótulo para os campos no formulário de contato"
621
 
622
+ #: contact_form.php:1121
623
+ #: contact_form.php:1202
624
  msgid "English"
625
  msgstr "Inglês"
626
 
627
+ #: contact_form.php:1129
628
+ #: contact_form.php:1163
629
  msgid "click to expand/hide the list"
630
  msgstr ""
631
 
632
+ #: contact_form.php:1138
633
+ #: contact_form.php:1172
634
  #, fuzzy
635
  msgid "Tips below the Attachment block"
636
  msgstr "Mostrar dicas para anexar arquivos"
637
 
638
+ #: contact_form.php:1141
639
+ #: contact_form.php:1175
640
  msgid "Error message for the Name field"
641
  msgstr "Mensagem de erro para o campo Nome"
642
 
643
+ #: contact_form.php:1142
644
+ #: contact_form.php:1176
645
  #, fuzzy
646
  msgid "Error message for the Address field"
647
  msgstr "Mensagem de erro para o campo Mensagem"
648
 
649
+ #: contact_form.php:1143
650
+ #: contact_form.php:1177
651
  msgid "Error message for the Email field"
652
  msgstr "Mensagem de erro para o campo de E-mail"
653
 
654
+ #: contact_form.php:1144
655
+ #: contact_form.php:1178
656
  msgid "Error message for the Phone field"
657
  msgstr "Mensagem de erro para o campo de Telefone"
658
 
659
+ #: contact_form.php:1145
660
+ #: contact_form.php:1179
661
  msgid "Error message for the Subject field"
662
  msgstr "Mensagem de erro para o campo Assunto"
663
 
664
+ #: contact_form.php:1146
665
+ #: contact_form.php:1180
666
  msgid "Error message for the Message field"
667
  msgstr "Mensagem de erro para o campo Mensagem"
668
 
669
+ #: contact_form.php:1147
670
+ #: contact_form.php:1181
671
  #, fuzzy
672
  msgid "Error message about the file type for the Attachment field"
673
  msgstr "Mensagem de erro para o campo Anexos"
674
 
675
+ #: contact_form.php:1148
676
+ #: contact_form.php:1182
677
  #, fuzzy
678
  msgid "Error message while uploading a file for the Attachment field to the server"
679
  msgstr "Mensagem de erro para o campo Anexos"
680
 
681
+ #: contact_form.php:1149
682
+ #: contact_form.php:1183
683
  #, fuzzy
684
  msgid "Error message while moving the file for the Attachment field"
685
  msgstr "Mensagem de erro para o campo Anexos"
686
 
687
+ #: contact_form.php:1150
688
+ #: contact_form.php:1184
689
  #, fuzzy
690
  msgid "Error message when file size limit for the Attachment field is exceeded"
691
  msgstr "Mensagem de erro para o campo Anexos"
692
 
693
+ #: contact_form.php:1151
694
+ #: contact_form.php:1185
695
  msgid "Error message for the Captcha field"
696
  msgstr "Mensagem de erro para o controlo Captcha"
697
 
698
+ #: contact_form.php:1152
699
+ #: contact_form.php:1186
700
  msgid "Error message for the whole form"
701
  msgstr "Mensagem de erro para todo o formulário"
702
 
703
+ #: contact_form.php:1155
704
+ #: contact_form.php:1157
705
+ #: contact_form.php:1189
706
+ #: contact_form.php:1191
707
+ #: contact_form.php:1212
708
+ #: contact_form.php:1214
709
+ #: contact_form.php:1222
710
+ #: contact_form.php:1224
711
  msgid "Use shortcode"
712
  msgstr "usar código abreviado"
713
 
714
+ #: contact_form.php:1155
715
+ #: contact_form.php:1157
716
+ #: contact_form.php:1189
717
+ #: contact_form.php:1191
718
+ #: contact_form.php:1212
719
+ #: contact_form.php:1214
720
+ #: contact_form.php:1222
721
+ #: contact_form.php:1224
722
  msgid "for this language"
723
  msgstr "para este idioma"
724
 
725
+ #: contact_form.php:1199
726
  msgid "Action after email is sent"
727
  msgstr "Ação após envio de email"
728
 
729
+ #: contact_form.php:1201
730
  #, fuzzy
731
  msgid "Display text"
732
  msgstr "Mostrar opção para anexar arquivos"
733
 
734
+ #: contact_form.php:1210
735
+ #: contact_form.php:1220
736
  msgid "Text"
737
  msgstr "Texto"
738
 
739
+ #: contact_form.php:1231
740
  msgid "Redirect to the page"
741
  msgstr "Redirecionamento para a página"
742
 
743
+ #: contact_form.php:1232
744
  msgid "Url"
745
  msgstr "Url"
746
 
747
+ #: contact_form.php:1236
748
  msgid "The $_SERVER variable that is used to build a URL of the form"
749
  msgstr ""
750
 
751
+ #: contact_form.php:1240
752
  msgid "If you are not sure whether to change this setting or not, please do not do that."
753
  msgstr ""
754
 
755
+ #: contact_form.php:1246
756
+ #: contact_form.php:1430
757
  msgid "Save Changes"
758
  msgstr "Salvar mudanças"
759
 
760
+ #: contact_form.php:1251
761
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
762
  msgstr ""
763
 
764
+ #: contact_form.php:1252
765
  #, fuzzy
766
  msgid "Rate the plugin"
767
  msgstr "Plugins recomendados"
768
 
769
+ #: contact_form.php:1255
770
  #, fuzzy
771
  msgid "If there is something wrong about it, please contact us"
772
  msgstr "Se você tem quaisquer perguntas, por favor entre em contato através do email plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
773
 
774
+ #: contact_form.php:1267
775
  msgid "Errors output"
776
  msgstr ""
777
 
778
+ #: contact_form.php:1270
779
  msgid "Display error messages"
780
  msgstr ""
781
 
782
+ #: contact_form.php:1271
783
  msgid "Color of the input field errors."
784
  msgstr ""
785
 
786
+ #: contact_form.php:1272
787
  #, fuzzy
788
  msgid "Display error messages & color of the input field errors"
789
  msgstr "Mensagem de erro para o campo Assunto"
790
 
791
+ #: contact_form.php:1277
792
  msgid "Add placeholder to the input blocks"
793
  msgstr ""
794
 
795
+ #: contact_form.php:1283
796
  #, fuzzy
797
  msgid "Add tooltips"
798
  msgstr "Opções adicionais"
799
 
800
+ #: contact_form.php:1297
801
  #, fuzzy
802
  msgid "Email address"
803
  msgstr "Endereço de E-mail:"
804
 
805
+ #: contact_form.php:1302
806
  #, fuzzy
807
  msgid "Phone Number"
808
  msgstr "Número de Telefone :"
809
 
810
+ #: contact_form.php:1316
811
  #, fuzzy
812
  msgid "Attachment"
813
  msgstr "Anexo:"
814
 
815
+ #: contact_form.php:1321
816
  msgid "(powered by bestwebsoft.com)"
817
  msgstr ""
818
 
819
+ #: contact_form.php:1326
820
  #, fuzzy
821
  msgid "Style options"
822
  msgstr "Opções adicionais"
823
 
824
+ #: contact_form.php:1329
825
  msgid "Text color"
826
  msgstr ""
827
 
828
+ #: contact_form.php:1332
829
+ #: contact_form.php:1337
830
+ #: contact_form.php:1347
831
+ #: contact_form.php:1352
832
+ #: contact_form.php:1357
833
+ #: contact_form.php:1362
834
+ #: contact_form.php:1372
835
+ #: contact_form.php:1377
836
+ #: contact_form.php:1383
837
+ #: contact_form.php:1394
838
+ #: contact_form.php:1399
839
+ #: contact_form.php:1404
840
  msgid "Default"
841
  msgstr ""
842
 
843
+ #: contact_form.php:1334
844
  msgid "Label text color"
845
  msgstr ""
846
 
847
+ #: contact_form.php:1339
848
  msgid "Placeholder color"
849
  msgstr ""
850
 
851
+ #: contact_form.php:1344
852
  msgid "Errors color"
853
  msgstr ""
854
 
855
+ #: contact_form.php:1349
856
  msgid "Error text color"
857
  msgstr ""
858
 
859
+ #: contact_form.php:1354
860
  msgid "Background color of the input field errors"
861
  msgstr ""
862
 
863
+ #: contact_form.php:1359
864
  msgid "Border color of the input field errors"
865
  msgstr ""
866
 
867
+ #: contact_form.php:1364
868
  msgid "Placeholder color of the input field errors"
869
  msgstr ""
870
 
871
+ #: contact_form.php:1369
872
  #, fuzzy
873
  msgid "Input fields"
874
  msgstr "Mostrar opção para anexar arquivos"
875
 
876
+ #: contact_form.php:1374
877
  msgid "Input fields background color"
878
  msgstr ""
879
 
880
+ #: contact_form.php:1379
881
  msgid "Text fields color"
882
  msgstr ""
883
 
884
+ #: contact_form.php:1381
885
  msgid "Border width in px, numbers only"
886
  msgstr ""
887
 
888
+ #: contact_form.php:1385
889
+ #: contact_form.php:1406
890
  msgid "Border color"
891
  msgstr ""
892
 
893
+ #: contact_form.php:1390
894
  #, fuzzy
895
  msgid "Submit button"
896
  msgstr "Enviar"
897
 
898
+ #: contact_form.php:1392
899
  msgid "Width in px, numbers only"
900
  msgstr ""
901
 
902
+ #: contact_form.php:1396
903
  msgid "Button color"
904
  msgstr ""
905
 
906
+ #: contact_form.php:1401
907
  msgid "Button text color"
908
  msgstr ""
909
 
910
+ #: contact_form.php:1434
911
  #, fuzzy
912
  msgid "Contact Form Pro | Preview"
913
  msgstr "Formulário de contato"
914
 
915
+ #: contact_form.php:1437
916
  msgid "Show with errors"
917
  msgstr ""
918
 
919
+ #: contact_form.php:1445
920
+ #: contact_form.php:1447
921
  msgid "Please enter your full name..."
922
  msgstr ""
923
 
924
+ #: contact_form.php:1458
925
+ #: contact_form.php:1460
926
  msgid "Please enter your address..."
927
  msgstr ""
928
 
929
+ #: contact_form.php:1469
930
+ #: contact_form.php:1471
931
  #, fuzzy
932
  msgid "Please enter your email address..."
933
  msgstr "Use este email:"
934
 
935
+ #: contact_form.php:1480
936
+ #: contact_form.php:1482
937
  msgid "Please enter your phone number..."
938
  msgstr ""
939
 
940
+ #: contact_form.php:1491
941
+ #: contact_form.php:1493
942
  msgid "Please enter subject..."
943
  msgstr ""
944
 
945
+ #: contact_form.php:1501
946
+ #: contact_form.php:1503
947
  msgid "Please enter your message..."
948
  msgstr ""
949
 
950
+ #: contact_form.php:1545
951
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
952
  msgstr ""
953
 
954
+ #: contact_form.php:1547
955
  msgid "Please, go to"
956
  msgstr ""
957
 
958
+ #: contact_form.php:1547
959
  #, fuzzy
960
  msgid "the setting page"
961
  msgstr "Configurações"
962
 
963
+ #: contact_form.php:1548
964
  msgid "You will be redirected automatically in 5 seconds."
965
  msgstr ""
966
 
967
+ #: contact_form.php:1553
968
  msgid "You can download and activate"
969
  msgstr ""
970
 
971
+ #: contact_form.php:1555
972
  msgid "version of this plugin by entering Your license key."
973
  msgstr ""
974
 
975
+ #: contact_form.php:1557
976
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
977
  msgstr ""
978
 
979
+ #: contact_form.php:1559
980
  msgid "(your username is the email you specify when purchasing the product)."
981
  msgstr ""
982
 
983
+ #: contact_form.php:1567
984
+ #: contact_form.php:1577
985
  msgid "Go!"
986
  msgstr ""
987
 
988
+ #: contact_form.php:1647
989
  msgid "Sorry, email message could not be delivered."
990
  msgstr "Desculpe, seu e-mail não pode ser entregue."
991
 
992
+ #: contact_form.php:2053
993
  msgid "Contact from"
994
  msgstr "Formulário de Contato"
995
 
996
+ #: contact_form.php:2066
997
+ #: contact_form.php:2092
998
  msgid "Email"
999
  msgstr "E-Mail"
1000
 
1001
+ #: contact_form.php:2070
1002
+ #: contact_form.php:2094
1003
  msgid "Phone"
1004
  msgstr "Telefone"
1005
 
1006
+ #: contact_form.php:2079
1007
+ #: contact_form.php:2097
1008
  msgid "Site"
1009
  msgstr "Site"
1010
 
1011
+ #: contact_form.php:2160
1012
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
1013
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
1014
 
1015
+ #: contact_form.php:2229
1016
  msgid "FAQ"
1017
  msgstr "Perguntas Frequentes"
1018
 
1019
+ #: contact_form.php:2230
1020
  msgid "Support"
1021
  msgstr "Suporte"
1022
 
1023
+ #: contact_form.php:2280
1024
  msgid "Are you sure that you want to delete this language data?"
1025
  msgstr "Tem certeza que você deseja excluir os dados deste idioma?"
1026
 
1027
+ #: contact_form.php:2476
1028
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
1029
  msgstr ""
1030
 
1031
+ #: contact_form.php:2477
1032
  msgid "Extend standard plugin functionality with new great options."
1033
  msgstr ""
1034
 
1035
+ #: contact_form.php:2492
1036
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1037
  msgstr ""
1038
 
1039
+ #: contact_form.php:2493
1040
  msgid "Manage messages that have been sent from your website."
1041
  msgstr ""
1042
 
1043
+ #, fuzzy
1044
+ #~ msgid "Contact Form Pro"
1045
+ #~ msgstr "Formulário de contato"
1046
+
1047
  #, fuzzy
1048
  #~ msgid "Contact Form Pro Extra Settings"
1049
  #~ msgstr "Opções do formulário de contato"
languages/contact_form-ru_RU.mo CHANGED
Binary file
languages/contact_form-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-20 14:05+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:07+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,950 +16,989 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  msgid "Contact Form Settings"
22
  msgstr "Настройки Contact Form"
23
 
24
- #: contact_form.php:33
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
- #: contact_form.php:80
29
- #: contact_form.php:978
30
- #: contact_form.php:1008
31
  msgid "Name:"
32
  msgstr "Имя:"
33
 
34
- #: contact_form.php:81
35
- #: contact_form.php:979
36
- #: contact_form.php:1009
37
  msgid "Address:"
38
  msgstr "Адрес:"
39
 
40
- #: contact_form.php:82
41
- #: contact_form.php:980
42
- #: contact_form.php:1010
43
  msgid "Email Address:"
44
  msgstr "E-mail адрес:"
45
 
46
- #: contact_form.php:83
47
- #: contact_form.php:981
48
- #: contact_form.php:1011
49
  msgid "Phone number:"
50
  msgstr "Телефон:"
51
 
52
- #: contact_form.php:84
53
- #: contact_form.php:982
54
- #: contact_form.php:1012
55
  msgid "Subject:"
56
  msgstr "Тема:"
57
 
58
- #: contact_form.php:85
59
- #: contact_form.php:983
60
- #: contact_form.php:1013
61
  msgid "Message:"
62
  msgstr "Сообщение:"
63
 
64
- #: contact_form.php:86
65
- #: contact_form.php:984
66
- #: contact_form.php:1014
67
  msgid "Attachment:"
68
  msgstr "Прикрепить файл:"
69
 
70
- #: contact_form.php:87
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Поддерживаемые типы файлов: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Максимальный размер файла: 2 МБ"
73
 
74
- #: contact_form.php:88
75
- #: contact_form.php:986
76
- #: contact_form.php:1016
77
  msgid "Send me a copy"
78
  msgstr "Отправить мне копию"
79
 
80
- #: contact_form.php:89
81
- #: contact_form.php:987
82
- #: contact_form.php:1017
83
  msgid "Submit"
84
  msgstr "Отправить"
85
 
86
- #: contact_form.php:90
87
  msgid "Your name is required."
88
  msgstr "Ваше имя - это обязательное поле."
89
 
90
- #: contact_form.php:91
91
  msgid "Address is required."
92
  msgstr "Поле адреса - обязательное для заполнения."
93
 
94
- #: contact_form.php:92
95
  msgid "A valid email address is required."
96
  msgstr "Поле email адреса - обязательное для заполнения."
97
 
98
- #: contact_form.php:93
99
  msgid "Phone number is required."
100
  msgstr "Телефон - это обязательное поле."
101
 
102
- #: contact_form.php:94
103
  msgid "Subject is required."
104
  msgstr "Поле Тема - обязательное поле."
105
 
106
- #: contact_form.php:95
107
  msgid "Message text is required."
108
  msgstr "Поле Сообщение - обязательное поле."
109
 
110
- #: contact_form.php:96
111
  msgid "File format is not valid."
112
  msgstr "Прикрепленный тип файла не поддерживается"
113
 
114
- #: contact_form.php:97
115
  msgid "File upload error."
116
  msgstr "Ошибка загрузки файла."
117
 
118
- #: contact_form.php:98
119
  msgid "The file could not be uploaded."
120
  msgstr "Невозможно загрузить файл."
121
 
122
- #: contact_form.php:99
123
  msgid "This file is too large."
124
  msgstr "Размер файла слишком большой."
125
 
126
- #: contact_form.php:100
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Пожалуйста, заполните CAPTCHA."
129
 
130
- #: contact_form.php:101
131
  msgid "Please make corrections below and try again."
132
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
133
 
134
- #: contact_form.php:103
135
  msgid "Thank you for contacting us."
136
  msgstr "Спасибо за контакт с нами."
137
 
138
- #: contact_form.php:203
139
  msgid "requires"
140
  msgstr "требует"
141
 
142
- #: contact_form.php:203
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "или выше, поэтому плагин был деактивирован! Пожалуйста обновите WordPress и попробуйте снова."
145
 
146
- #: contact_form.php:203
147
  msgid "Back to the WordPress"
148
  msgstr "Вернуться к WordPress"
149
 
150
- #: contact_form.php:203
151
  msgid "Plugins page"
152
  msgstr "Странице плагинов"
153
 
154
- #: contact_form.php:494
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "Если опция 'Перейти на страницу \"выбран, то Урл поле должно быть заполнено в следующем формате"
157
 
158
- #: contact_form.php:503
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "Данный пользователь не найден. Настройки не сохранены"
161
 
162
- #: contact_form.php:507
163
- #: contact_form.php:513
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "Пожалуйста, введите корректный email для поля 'FROM'. Настройки не сохранены."
166
 
167
- #: contact_form.php:518
168
  msgid "Settings saved."
169
  msgstr "Опции сохранены."
170
 
171
- #: contact_form.php:554
172
- #: contact_form.php:593
173
  msgid "Wrong license key"
174
  msgstr "Неправильный лицензионный ключ"
175
 
176
- #: contact_form.php:586
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Приносим извинения за неудобства."
179
 
180
- #: contact_form.php:595
181
  msgid "This license key is bind to another site"
182
  msgstr "Этот лицензионный ключ привязан к другому сайту"
183
 
184
- #: contact_form.php:597
185
- #: contact_form.php:1392
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
188
 
189
- #: contact_form.php:615
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
192
 
193
- #: contact_form.php:621
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
196
 
197
- #: contact_form.php:625
198
- #: contact_form.php:634
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
201
 
202
- #: contact_form.php:638
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
205
 
206
- #: contact_form.php:653
207
  msgid "Please, enter Your license key"
208
  msgstr "Пожалуйста введите ваш лицензионный ключ"
209
 
210
- #: contact_form.php:662
211
- msgid "Notice:"
212
- msgstr "Обратите внимание:"
213
-
214
- #: contact_form.php:662
215
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
216
- msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку 'Сохранить изменения'."
217
-
218
- #: contact_form.php:665
219
- #: contact_form.php:1997
220
- #: contact_form.php:2008
221
  msgid "Settings"
222
  msgstr "Настройки"
223
 
224
- #: contact_form.php:666
225
  msgid "Extra settings"
226
  msgstr "Экстра Настройки"
227
 
228
- #: contact_form.php:667
229
  msgid "Go PRO"
230
  msgstr "Перейти на PRO версию"
231
 
232
- #: contact_form.php:673
233
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  msgid "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:"
235
  msgstr "Если вы хотите добавить контактную форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста или виджета:"
236
 
237
- #: contact_form.php:673
238
- #: contact_form.php:674
239
- #: contact_form.php:1001
240
- #: contact_form.php:1050
 
 
 
 
241
  msgid "or"
242
  msgstr "или"
243
 
244
- #: contact_form.php:674
 
245
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
246
  msgstr "Если у вас возникают проблемы с использованием стандартного шорткода [contact_form], то используйте шортокод"
247
 
248
- #: contact_form.php:675
 
249
  msgid "They work the same way."
250
  msgstr "Шорткоды работают одинаково."
251
 
252
- #: contact_form.php:676
 
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
255
 
256
- #: contact_form.php:680
257
  msgid "The user's email address:"
258
  msgstr "Email пользователя сайта:"
259
 
260
- #: contact_form.php:684
261
  msgid "Create a username"
262
  msgstr "Выберите имя пользователя"
263
 
264
- #: contact_form.php:689
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
267
 
268
- #: contact_form.php:693
269
  msgid "Use this email address:"
270
  msgstr "Использовать этот email:"
271
 
272
- #: contact_form.php:696
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
275
 
276
- #: contact_form.php:702
277
  msgid "Add department selectbox to the contact form:"
278
  msgstr "Добавить выбор отдела в контактную форму:"
279
 
280
- #: contact_form.php:710
281
- #: contact_form.php:1246
282
  msgid "If you upgrade to Pro version all your settings will be saved."
283
  msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
284
 
285
- #: contact_form.php:715
286
- #: contact_form.php:852
287
- #: contact_form.php:923
288
- #: contact_form.php:1096
289
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
290
- msgstr "Данный функционал доступен в Pro версии плагина. Для детальной информации перейдите по ссылке"
291
 
292
- #: contact_form.php:716
293
- #: contact_form.php:853
294
- #: contact_form.php:924
295
- #: contact_form.php:1097
296
- msgid "Contact Form Pro"
297
- msgstr "Contact Form Pro"
 
 
 
 
 
 
 
 
 
298
 
299
- #: contact_form.php:722
300
  msgid "Save emails to the database"
301
  msgstr "Сохранять email в базу данных"
302
 
303
- #: contact_form.php:732
304
  msgid "Using"
305
  msgstr "Используя"
306
 
307
- #: contact_form.php:732
308
- #: contact_form.php:901
309
- #: contact_form.php:904
310
- #: contact_form.php:908
311
  msgid "powered by"
312
  msgstr "разработано компанией"
313
 
314
- #: contact_form.php:735
315
- #: contact_form.php:739
316
  msgid "Using Contact Form to DB powered by"
317
  msgstr "Используя Contact Form to DB, разработанный компанией"
318
 
319
- #: contact_form.php:735
320
  msgid "Activate Contact Form to DB"
321
  msgstr "Активировать Contact Form to DB"
322
 
323
- #: contact_form.php:739
324
  msgid "Download Contact Form to DB"
325
  msgstr "Загрузить Contact Form to DB"
326
 
327
- #: contact_form.php:744
328
  msgid "Additional options"
329
  msgstr "Дополнительные настройки"
330
 
331
- #: contact_form.php:746
332
  msgid "Show"
333
  msgstr "Отобразить"
334
 
335
- #: contact_form.php:747
336
  msgid "Hide"
337
  msgstr "Скрыть"
338
 
339
- #: contact_form.php:751
340
  msgid "What to use?"
341
  msgstr "Что использовать?"
342
 
343
- #: contact_form.php:754
344
  msgid "Wp-mail"
345
  msgstr "Wp-mail"
346
 
347
- #: contact_form.php:754
348
  msgid "You can use the wp_mail function for mailing"
349
  msgstr "Для отправки почты вы можете использовать функцию WordPress wp_mail"
350
 
351
- #: contact_form.php:756
352
  msgid "Mail"
353
  msgstr "Mail"
354
 
355
- #: contact_form.php:756
356
  msgid "To send mail you can use the php mail function"
357
  msgstr "Для отправки почты вы можете использовать функцию php mail"
358
 
359
- #: contact_form.php:760
360
  msgid "The text in the 'From' field"
361
  msgstr "Tекст для поля ОТ в письме"
362
 
363
- #: contact_form.php:762
364
  msgid "User name"
365
  msgstr "Имя пользователя"
366
 
367
- #: contact_form.php:763
368
  msgid "The name of the user who fills the form will be used in the field 'From'."
369
  msgstr "В поле \"From\" в письме будет использоваться имя того пользователя, который заполняет форму."
370
 
371
- #: contact_form.php:766
372
  msgid "This text will be used in the 'FROM' field"
373
  msgstr "В поле \"From\" в письме будет использоваться данный текст"
374
 
375
- #: contact_form.php:770
376
  msgid "The email address in the 'From' field"
377
  msgstr "Выберите email для поля 'FROM' письма"
378
 
379
- #: contact_form.php:772
380
  msgid "User email"
381
  msgstr "Email"
382
 
383
- #: contact_form.php:773
384
  msgid "The email address of the user who fills the form will be used in the field 'From'."
385
  msgstr "В поле \"From\" в письме будет использоваться электронная почта того пользователя, который заполняет форму."
386
 
387
- #: contact_form.php:776
388
  msgid "This email address will be used in the 'From' field."
389
  msgstr "В поле \"From\" в письме будет использоваться данная электронная почта."
390
 
391
- #: contact_form.php:780
392
  msgid "Required symbol"
393
  msgstr "Символ, отображающий обязательное поле"
394
 
395
- #: contact_form.php:790
396
  msgid "Fields"
397
  msgstr "Поля"
398
 
399
- #: contact_form.php:791
400
  msgid "Used"
401
  msgstr "Используется"
402
 
403
- #: contact_form.php:792
404
  msgid "Required"
405
  msgstr "Обязательные"
406
 
407
- #: contact_form.php:793
408
  msgid "Visible"
409
  msgstr "Видимое"
410
 
411
- #: contact_form.php:794
412
  msgid "Disabled for editing"
413
  msgstr "Нет возможности редактировать"
414
 
415
- #: contact_form.php:795
416
  msgid "Field's default value"
417
  msgstr "Значение по умолчанию"
418
 
419
- #: contact_form.php:800
420
- #: contact_form.php:1121
421
- #: contact_form.php:1841
422
- #: contact_form.php:1871
423
  msgid "Name"
424
  msgstr "Имя"
425
 
426
- #: contact_form.php:808
427
- #: contact_form.php:1126
428
- #: contact_form.php:1845
429
- #: contact_form.php:1873
430
  msgid "Address"
431
  msgstr "Адрес"
432
 
433
- #: contact_form.php:816
434
  msgid "Email Address"
435
  msgstr "Email адрес"
436
 
437
- #: contact_form.php:824
438
  msgid "Phone number"
439
  msgstr "Телефон"
440
 
441
- #: contact_form.php:832
442
- #: contact_form.php:1141
443
- #: contact_form.php:1855
444
- #: contact_form.php:1877
445
  msgid "Subject"
446
  msgstr "Тема"
447
 
448
- #: contact_form.php:840
449
- #: contact_form.php:1145
450
- #: contact_form.php:1858
451
- #: contact_form.php:1878
452
  msgid "Message"
453
  msgstr "Сообщение"
454
 
455
- #: contact_form.php:858
456
  msgid "Attachment block"
457
  msgstr "Блок Прикрепить файл"
458
 
459
- #: contact_form.php:860
460
  msgid "Users can attach the following file formats"
461
  msgstr "Пользователи могут прикрепить файлы таких типов"
462
 
463
- #: contact_form.php:874
464
  msgid "Add to the form"
465
  msgstr "Добавить в форму"
466
 
467
- #: contact_form.php:879
468
  msgid "Tips below the Attachment"
469
  msgstr "Пояснения после блока \"Прикрепить файл\""
470
 
471
- #: contact_form.php:888
472
  msgid "'Send me a copy' block"
473
  msgstr "Блок 'Отправить мне копию'"
474
 
475
- #: contact_form.php:901
476
- #: contact_form.php:904
477
- #: contact_form.php:908
478
- #: contact_form.php:1155
479
  msgid "Captcha"
480
  msgstr "Captcha"
481
 
482
- #: contact_form.php:904
483
  msgid "Activate captcha"
484
  msgstr "Активировать captcha"
485
 
486
- #: contact_form.php:908
487
  msgid "Download captcha"
488
  msgstr "Скачать captcha"
489
 
490
- #: contact_form.php:916
491
  msgid "Agreement checkbox"
492
  msgstr "Чекбокс согласия с условиями"
493
 
494
- #: contact_form.php:916
495
  msgid "Required checkbox for submitting the form"
496
  msgstr "Обязательный чекбокс для отправки формы"
497
 
498
- #: contact_form.php:917
499
  msgid "Optional checkbox"
500
  msgstr "Дополнительный чекбокс"
501
 
502
- #: contact_form.php:917
503
  msgid "Optional checkbox, the results of which will be displayed in email"
504
  msgstr "Дополнительный чекбокс, результаты которого будут отображениы в email"
505
 
506
- #: contact_form.php:928
507
  msgid "Delete an attachment file from the server after the email is sent"
508
  msgstr "Удалить прикрепленный файл с сервера после отправки письма"
509
 
510
- #: contact_form.php:934
511
  msgid "Email in HTML format sending"
512
  msgstr "Отправка еmail в формате HTML"
513
 
514
- #: contact_form.php:938
515
  msgid "Display additional info in the email"
516
  msgstr "Отображение дополнительной информации в письме"
517
 
518
- #: contact_form.php:943
519
- #: contact_form.php:1808
520
- #: contact_form.php:1810
521
  msgid "Sent from (ip address)"
522
  msgstr "Отправлено от (ip адрес)"
523
 
524
- #: contact_form.php:943
525
  msgid "Example: Sent from (IP address):\t127.0.0.1"
526
  msgstr "Пример: Sent from (IP address):\t127.0.0.1"
527
 
528
- #: contact_form.php:944
529
- #: contact_form.php:1814
530
- #: contact_form.php:1816
531
  msgid "Date/Time"
532
  msgstr "Дата/Время"
533
 
534
- #: contact_form.php:944
535
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
536
  msgstr "Пример: Date/Time:\tAugust 19, 2013 8:50 pm"
537
 
538
- #: contact_form.php:945
539
- #: contact_form.php:1820
540
- #: contact_form.php:1822
541
  msgid "Sent from (referer)"
542
  msgstr "Пришло из (реферер)"
543
 
544
- #: contact_form.php:945
545
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
546
  msgstr "Пример: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
547
 
548
- #: contact_form.php:946
549
- #: contact_form.php:1826
550
- #: contact_form.php:1828
551
  msgid "Using (user agent)"
552
  msgstr "Используя (user agent)"
553
 
554
- #: contact_form.php:946
555
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
556
  msgstr "Пример: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
557
 
558
- #: contact_form.php:950
559
  msgid "Language settings for the field names in the form"
560
  msgstr "Языковые настройки для названия полей в форме"
561
 
562
- #: contact_form.php:959
563
  msgid "Add a language"
564
  msgstr "Добавить язык"
565
 
566
- #: contact_form.php:963
567
  msgid "Change the names of the contact form fields and error messages"
568
  msgstr "Изменить названия полей контактной формы и сообщений об ошибках"
569
 
570
- #: contact_form.php:968
571
- #: contact_form.php:1041
572
  msgid "English"
573
  msgstr "Английский"
574
 
575
- #: contact_form.php:976
576
- #: contact_form.php:1006
577
  msgid "click to expand/hide the list"
578
  msgstr "нажмите чтобы развернуть/свернуть список"
579
 
580
- #: contact_form.php:985
581
- #: contact_form.php:1015
582
  msgid "Tips below the Attachment block"
583
  msgstr "Пояснения после блока \"Прикрепить файл\""
584
 
585
- #: contact_form.php:988
586
- #: contact_form.php:1018
587
  msgid "Error message for the Name field"
588
  msgstr "Сообщение об ошибке для поля Name"
589
 
590
- #: contact_form.php:989
591
- #: contact_form.php:1019
592
  msgid "Error message for the Address field"
593
  msgstr "Сообщение об ошибке для поля Address"
594
 
595
- #: contact_form.php:990
596
- #: contact_form.php:1020
597
  msgid "Error message for the Email field"
598
  msgstr "Сообщение об ошибке для поля Email"
599
 
600
- #: contact_form.php:991
601
- #: contact_form.php:1021
602
  msgid "Error message for the Phone field"
603
  msgstr "Сообщение об ошибке для поля Phone"
604
 
605
- #: contact_form.php:992
606
- #: contact_form.php:1022
607
  msgid "Error message for the Subject field"
608
  msgstr "Сообщение об ошибке для поля Subject"
609
 
610
- #: contact_form.php:993
611
- #: contact_form.php:1023
612
  msgid "Error message for the Message field"
613
  msgstr "Сообщение об ошибке для поля Message"
614
 
615
- #: contact_form.php:994
616
- #: contact_form.php:1024
617
  msgid "Error message about the file type for the Attachment field"
618
  msgstr "Сообщение об ошибке о типе файла для поля Attachment"
619
 
620
- #: contact_form.php:995
621
- #: contact_form.php:1025
622
  msgid "Error message while uploading a file for the Attachment field to the server"
623
  msgstr "Сообщение об ошибке при загрузке файла на сервер для поля Attachment"
624
 
625
- #: contact_form.php:996
626
- #: contact_form.php:1026
627
  msgid "Error message while moving the file for the Attachment field"
628
  msgstr "Сообщение об ошибке при перемещении файла для поля Attachment"
629
 
630
- #: contact_form.php:997
631
- #: contact_form.php:1027
632
  msgid "Error message when file size limit for the Attachment field is exceeded"
633
  msgstr "Сообщение об ошибке когда размер файла превышает размер разрешенного сервером для поля Attachment"
634
 
635
- #: contact_form.php:998
636
- #: contact_form.php:1028
637
  msgid "Error message for the Captcha field"
638
  msgstr "Сообщение об ошибке для поля Captcha"
639
 
640
- #: contact_form.php:999
641
- #: contact_form.php:1029
642
  msgid "Error message for the whole form"
643
  msgstr "Сообщение об ошибке для всей формы"
644
 
645
- #: contact_form.php:1001
646
- #: contact_form.php:1031
647
- #: contact_form.php:1050
648
- #: contact_form.php:1056
 
 
 
 
649
  msgid "Use shortcode"
650
  msgstr "Использовать шорткод"
651
 
652
- #: contact_form.php:1001
653
- #: contact_form.php:1031
654
- #: contact_form.php:1050
655
- #: contact_form.php:1056
 
 
 
 
656
  msgid "for this language"
657
  msgstr "для данного языка"
658
 
659
- #: contact_form.php:1038
660
  msgid "Action after email is sent"
661
  msgstr "Действие после отправки письма"
662
 
663
- #: contact_form.php:1040
664
  msgid "Display text"
665
  msgstr "Отобразить текст"
666
 
667
- #: contact_form.php:1049
668
- #: contact_form.php:1055
669
  msgid "Text"
670
  msgstr "Текст"
671
 
672
- #: contact_form.php:1062
673
  msgid "Redirect to the page"
674
  msgstr "Перенаправление на страницу"
675
 
676
- #: contact_form.php:1063
677
  msgid "Url"
678
  msgstr "Урл"
679
 
680
- #: contact_form.php:1067
681
  msgid "The $_SERVER variable that is used to build a URL of the form"
682
  msgstr "$_SERVER переменная, используемая при формировании URL формы"
683
 
684
- #: contact_form.php:1071
685
  msgid "If you are not sure whether to change this setting or not, please do not do that."
686
  msgstr "If you are not sure whether to change this setting or not, please do not do that."
687
 
688
- #: contact_form.php:1077
689
- #: contact_form.php:1252
690
  msgid "Save Changes"
691
  msgstr "Save Changes"
692
 
693
- #: contact_form.php:1082
694
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
695
  msgstr "Если вам понравился плагин, пожалуйста, поставте нам 5 звезд на WordPress"
696
 
697
- #: contact_form.php:1083
698
  msgid "Rate the plugin"
699
  msgstr "Оценить плагин"
700
 
701
- #: contact_form.php:1086
702
  msgid "If there is something wrong about it, please contact us"
703
  msgstr "Если у вас есть какие-то вопросы, обращайтесь"
704
 
705
- #: contact_form.php:1101
706
  msgid "Errors output"
707
  msgstr "Отображение ошибок"
708
 
709
- #: contact_form.php:1104
710
  msgid "Display error messages"
711
  msgstr "Отображать сообщения об ошибках"
712
 
713
- #: contact_form.php:1105
714
  msgid "Color of the input field errors."
715
  msgstr "Отображать ошибки цветом для полей ввода"
716
 
717
- #: contact_form.php:1106
718
  msgid "Display error messages & color of the input field errors"
719
  msgstr "Отображать сообщения об ошибках & цвет полей ввода с ошибками"
720
 
721
- #: contact_form.php:1111
722
  msgid "Add placeholder to the input blocks"
723
  msgstr "Добавить вспомогательный текст в поля ввода"
724
 
725
- #: contact_form.php:1117
726
  msgid "Add tooltips"
727
  msgstr "Добавить подсказки"
728
 
729
- #: contact_form.php:1131
730
  msgid "Email address"
731
  msgstr "Email адрес"
732
 
733
- #: contact_form.php:1136
734
  msgid "Phone Number"
735
  msgstr "Телефон"
736
 
737
- #: contact_form.php:1150
738
  msgid "Attachment"
739
  msgstr "Прикрепить файл"
740
 
741
- #: contact_form.php:1155
742
  msgid "(powered by bestwebsoft.com)"
743
  msgstr "(разработано компанией bestwebsoft.com)"
744
 
745
- #: contact_form.php:1160
746
  msgid "Style options"
747
  msgstr "Настройки стиля"
748
 
749
- #: contact_form.php:1163
750
  msgid "Text color"
751
  msgstr "Цвет текста"
752
 
753
- #: contact_form.php:1166
754
- #: contact_form.php:1171
755
- #: contact_form.php:1181
756
- #: contact_form.php:1186
757
- #: contact_form.php:1191
758
- #: contact_form.php:1196
759
- #: contact_form.php:1206
760
- #: contact_form.php:1211
761
- #: contact_form.php:1217
762
- #: contact_form.php:1228
763
- #: contact_form.php:1233
764
- #: contact_form.php:1238
765
  msgid "Default"
766
  msgstr "По-умолчанию"
767
 
768
- #: contact_form.php:1168
769
  msgid "Label text color"
770
  msgstr "Цвет текста"
771
 
772
- #: contact_form.php:1173
773
  msgid "Placeholder color"
774
  msgstr "Цвет замещающегося текста"
775
 
776
- #: contact_form.php:1178
777
  msgid "Errors color"
778
  msgstr "Цвет ошибок"
779
 
780
- #: contact_form.php:1183
781
  msgid "Error text color"
782
  msgstr "Цвет текста для ошибок"
783
 
784
- #: contact_form.php:1188
785
  msgid "Background color of the input field errors"
786
  msgstr "Цвет фона для полей ввода с ошибками"
787
 
788
- #: contact_form.php:1193
789
  msgid "Border color of the input field errors"
790
  msgstr "Цвет рамки для полей ввода с ошибками"
791
 
792
- #: contact_form.php:1198
793
  msgid "Placeholder color of the input field errors"
794
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
795
 
796
- #: contact_form.php:1203
797
  msgid "Input fields"
798
  msgstr "Поля ввода"
799
 
800
- #: contact_form.php:1208
801
  msgid "Input fields background color"
802
  msgstr "Цвет фона для полей ввода"
803
 
804
- #: contact_form.php:1213
805
  msgid "Text fields color"
806
  msgstr "Цвет текста для полей ввода"
807
 
808
- #: contact_form.php:1215
809
  msgid "Border width in px, numbers only"
810
  msgstr "Ширина рамки в пикселях, только цифры"
811
 
812
- #: contact_form.php:1219
813
- #: contact_form.php:1240
814
  msgid "Border color"
815
  msgstr "Цвет рамки"
816
 
817
- #: contact_form.php:1224
818
  msgid "Submit button"
819
  msgstr "Кнопка Отправить"
820
 
821
- #: contact_form.php:1226
822
  msgid "Width in px, numbers only"
823
  msgstr "Ширина в пикселях, только цифры"
824
 
825
- #: contact_form.php:1230
826
  msgid "Button color"
827
  msgstr "Цвет кнопки"
828
 
829
- #: contact_form.php:1235
830
  msgid "Button text color"
831
  msgstr "Цвет текста для кнопки"
832
 
833
- #: contact_form.php:1256
834
  msgid "Contact Form Pro | Preview"
835
  msgstr "Contact Form Pro | Предпросмотр"
836
 
837
- #: contact_form.php:1259
838
  msgid "Show with errors"
839
  msgstr "Отображать с ошибками"
840
 
841
- #: contact_form.php:1267
842
- #: contact_form.php:1269
843
  msgid "Please enter your full name..."
844
  msgstr "Пожалуйста введите ваше имя..."
845
 
846
- #: contact_form.php:1280
847
- #: contact_form.php:1282
848
  msgid "Please enter your address..."
849
  msgstr "Пожалуйста введите ваш адресс..."
850
 
851
- #: contact_form.php:1291
852
- #: contact_form.php:1293
853
  msgid "Please enter your email address..."
854
  msgstr "Пожалуйста введите ваш email..."
855
 
856
- #: contact_form.php:1302
857
- #: contact_form.php:1304
858
  msgid "Please enter your phone number..."
859
  msgstr "Пожалуйста введите ваш телефон..."
860
 
861
- #: contact_form.php:1313
862
- #: contact_form.php:1315
863
  msgid "Please enter subject..."
864
  msgstr "Пожалуйста введите тему..."
865
 
866
- #: contact_form.php:1323
867
- #: contact_form.php:1325
868
  msgid "Please enter your message..."
869
  msgstr "Пожалуйста введите ваше сообщение..."
870
 
871
- #: contact_form.php:1367
872
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
873
  msgstr "Поздравляем! PRO версия плагина была успешно загружена и активирована."
874
 
875
- #: contact_form.php:1369
876
  msgid "Please, go to"
877
  msgstr "Пожалуйста, перейдите на"
878
 
879
- #: contact_form.php:1369
880
  msgid "the setting page"
881
  msgstr "страницу настроек"
882
 
883
- #: contact_form.php:1370
884
  msgid "You will be redirected automatically in 5 seconds."
885
  msgstr "Вы будете перенаправлены автоматически через 5 секунд."
886
 
887
- #: contact_form.php:1375
888
  msgid "You can download and activate"
889
  msgstr "Вы можете скачать и активировать"
890
 
891
- #: contact_form.php:1377
892
  msgid "version of this plugin by entering Your license key."
893
  msgstr "версию этого плагина, введя ваш лицензионный ключ."
894
 
895
- #: contact_form.php:1379
896
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
897
  msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
898
 
899
- #: contact_form.php:1381
900
  msgid "(your username is the email you specify when purchasing the product)."
901
  msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
902
 
903
- #: contact_form.php:1389
904
- #: contact_form.php:1399
905
  msgid "Go!"
906
  msgstr "Обновить!"
907
 
908
- #: contact_form.php:1449
909
  msgid "Sorry, email message could not be delivered."
910
  msgstr "Извините, ваш email не может быть отправлен."
911
 
912
- #: contact_form.php:1835
913
  msgid "Contact from"
914
  msgstr "Контактная Форма"
915
 
916
- #: contact_form.php:1848
917
- #: contact_form.php:1874
918
  msgid "Email"
919
  msgstr "Email"
920
 
921
- #: contact_form.php:1852
922
- #: contact_form.php:1876
923
  msgid "Phone"
924
  msgstr "Телефон"
925
 
926
- #: contact_form.php:1861
927
- #: contact_form.php:1879
928
  msgid "Site"
929
  msgstr "Сайт"
930
 
931
- #: contact_form.php:1941
932
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
933
  msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
934
 
935
- #: contact_form.php:2009
936
  msgid "FAQ"
937
  msgstr "FAQ"
938
 
939
- #: contact_form.php:2010
940
  msgid "Support"
941
  msgstr "Поддержка"
942
 
943
- #: contact_form.php:2068
944
  msgid "Are you sure that you want to delete this language data?"
945
  msgstr "Вы действительно хотите удалить данные для этого языка?"
946
 
947
- #: contact_form.php:2223
948
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
949
  msgstr "Пора обновить <strong>Contact Form plugin</strong> до <strong>PRO</strong> версии"
950
 
951
- #: contact_form.php:2224
952
  msgid "Extend standard plugin functionality with new great options."
953
  msgstr "Расширение стандартного функционала плагина новыми опциями."
954
 
955
- #: contact_form.php:2233
956
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
957
  msgstr "<strong>Contact Form to DB</strong> позволяет хранить ваши сообщения в базе данных."
958
 
959
- #: contact_form.php:2234
960
  msgid "Manage messages that have been sent from your website."
961
  msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
962
 
 
 
 
 
 
 
 
 
 
 
963
  #~ msgid "Contact Form Pro Extra Settings"
964
  #~ msgstr "Экстра Настройки Contact Form"
965
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:38+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:40+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  msgid "Contact Form Settings"
22
  msgstr "Настройки Contact Form"
23
 
24
+ #: contact_form.php:73
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
+ #: contact_form.php:149
29
+ #: contact_form.php:1131
30
+ #: contact_form.php:1165
31
  msgid "Name:"
32
  msgstr "Имя:"
33
 
34
+ #: contact_form.php:150
35
+ #: contact_form.php:1132
36
+ #: contact_form.php:1166
37
  msgid "Address:"
38
  msgstr "Адрес:"
39
 
40
+ #: contact_form.php:151
41
+ #: contact_form.php:1133
42
+ #: contact_form.php:1167
43
  msgid "Email Address:"
44
  msgstr "E-mail адрес:"
45
 
46
+ #: contact_form.php:152
47
+ #: contact_form.php:1134
48
+ #: contact_form.php:1168
49
  msgid "Phone number:"
50
  msgstr "Телефон:"
51
 
52
+ #: contact_form.php:153
53
+ #: contact_form.php:1135
54
+ #: contact_form.php:1169
55
  msgid "Subject:"
56
  msgstr "Тема:"
57
 
58
+ #: contact_form.php:154
59
+ #: contact_form.php:1136
60
+ #: contact_form.php:1170
61
  msgid "Message:"
62
  msgstr "Сообщение:"
63
 
64
+ #: contact_form.php:155
65
+ #: contact_form.php:1137
66
+ #: contact_form.php:1171
67
  msgid "Attachment:"
68
  msgstr "Прикрепить файл:"
69
 
70
+ #: contact_form.php:156
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Поддерживаемые типы файлов: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Максимальный размер файла: 2 МБ"
73
 
74
+ #: contact_form.php:157
75
+ #: contact_form.php:1139
76
+ #: contact_form.php:1173
77
  msgid "Send me a copy"
78
  msgstr "Отправить мне копию"
79
 
80
+ #: contact_form.php:158
81
+ #: contact_form.php:1140
82
+ #: contact_form.php:1174
83
  msgid "Submit"
84
  msgstr "Отправить"
85
 
86
+ #: contact_form.php:159
87
  msgid "Your name is required."
88
  msgstr "Ваше имя - это обязательное поле."
89
 
90
+ #: contact_form.php:160
91
  msgid "Address is required."
92
  msgstr "Поле адреса - обязательное для заполнения."
93
 
94
+ #: contact_form.php:161
95
  msgid "A valid email address is required."
96
  msgstr "Поле email адреса - обязательное для заполнения."
97
 
98
+ #: contact_form.php:162
99
  msgid "Phone number is required."
100
  msgstr "Телефон - это обязательное поле."
101
 
102
+ #: contact_form.php:163
103
  msgid "Subject is required."
104
  msgstr "Поле Тема - обязательное поле."
105
 
106
+ #: contact_form.php:164
107
  msgid "Message text is required."
108
  msgstr "Поле Сообщение - обязательное поле."
109
 
110
+ #: contact_form.php:165
111
  msgid "File format is not valid."
112
  msgstr "Прикрепленный тип файла не поддерживается"
113
 
114
+ #: contact_form.php:166
115
  msgid "File upload error."
116
  msgstr "Ошибка загрузки файла."
117
 
118
+ #: contact_form.php:167
119
  msgid "The file could not be uploaded."
120
  msgstr "Невозможно загрузить файл."
121
 
122
+ #: contact_form.php:168
123
  msgid "This file is too large."
124
  msgstr "Размер файла слишком большой."
125
 
126
+ #: contact_form.php:169
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Пожалуйста, заполните CAPTCHA."
129
 
130
+ #: contact_form.php:170
131
  msgid "Please make corrections below and try again."
132
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
133
 
134
+ #: contact_form.php:172
135
  msgid "Thank you for contacting us."
136
  msgstr "Спасибо за контакт с нами."
137
 
138
+ #: contact_form.php:322
139
  msgid "requires"
140
  msgstr "требует"
141
 
142
+ #: contact_form.php:322
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "или выше, поэтому плагин был деактивирован! Пожалуйста обновите WordPress и попробуйте снова."
145
 
146
+ #: contact_form.php:322
147
  msgid "Back to the WordPress"
148
  msgstr "Вернуться к WordPress"
149
 
150
+ #: contact_form.php:322
151
  msgid "Plugins page"
152
  msgstr "Странице плагинов"
153
 
154
+ #: contact_form.php:626
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "Если опция 'Перейти на страницу \"выбран, то Урл поле должно быть заполнено в следующем формате"
157
 
158
+ #: contact_form.php:635
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "Данный пользователь не найден. Настройки не сохранены"
161
 
162
+ #: contact_form.php:639
163
+ #: contact_form.php:645
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "Пожалуйста, введите корректный email для поля 'FROM'. Настройки не сохранены."
166
 
167
+ #: contact_form.php:661
168
  msgid "Settings saved."
169
  msgstr "Опции сохранены."
170
 
171
+ #: contact_form.php:688
172
+ #: contact_form.php:720
173
  msgid "Wrong license key"
174
  msgstr "Неправильный лицензионный ключ"
175
 
176
+ #: contact_form.php:713
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Приносим извинения за неудобства."
179
 
180
+ #: contact_form.php:722
181
  msgid "This license key is bind to another site"
182
  msgstr "Этот лицензионный ключ привязан к другому сайту"
183
 
184
+ #: contact_form.php:724
185
+ #: contact_form.php:1570
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
188
 
189
+ #: contact_form.php:741
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
192
 
193
+ #: contact_form.php:747
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
196
 
197
+ #: contact_form.php:751
198
+ #: contact_form.php:760
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
201
 
202
+ #: contact_form.php:764
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
205
 
206
+ #: contact_form.php:779
207
  msgid "Please, enter Your license key"
208
  msgstr "Пожалуйста введите ваш лицензионный ключ"
209
 
210
+ #: contact_form.php:787
211
+ #: contact_form.php:2216
212
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
213
  msgid "Settings"
214
  msgstr "Настройки"
215
 
216
+ #: contact_form.php:788
217
  msgid "Extra settings"
218
  msgstr "Экстра Настройки"
219
 
220
+ #: contact_form.php:789
221
  msgid "Go PRO"
222
  msgstr "Перейти на PRO версию"
223
 
224
+ #: contact_form.php:792
225
+ msgid "Notice:"
226
+ msgstr "Обратите внимание:"
227
+
228
+ #: contact_form.php:792
229
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
230
+ msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку 'Сохранить изменения'."
231
+
232
+ #: contact_form.php:798
233
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
234
+ msgstr "Если вы хотите создать несколько разных контактных форм, пожалуйста, установите плагин Contact Form Multi."
235
+
236
+ #: contact_form.php:804
237
+ #: contact_form.php:809
238
+ #: contact_form.php:1529
239
  msgid "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:"
240
  msgstr "Если вы хотите добавить контактную форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста или виджета:"
241
 
242
+ #: contact_form.php:804
243
+ #: contact_form.php:805
244
+ #: contact_form.php:809
245
+ #: contact_form.php:810
246
+ #: contact_form.php:1155
247
+ #: contact_form.php:1157
248
+ #: contact_form.php:1212
249
+ #: contact_form.php:1214
250
  msgid "or"
251
  msgstr "или"
252
 
253
+ #: contact_form.php:805
254
+ #: contact_form.php:810
255
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
256
  msgstr "Если у вас возникают проблемы с использованием стандартного шорткода [contact_form], то используйте шортокод"
257
 
258
+ #: contact_form.php:806
259
+ #: contact_form.php:811
260
  msgid "They work the same way."
261
  msgstr "Шорткоды работают одинаково."
262
 
263
+ #: contact_form.php:807
264
+ #: contact_form.php:812
265
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
266
  msgstr "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
267
 
268
+ #: contact_form.php:817
269
  msgid "The user's email address:"
270
  msgstr "Email пользователя сайта:"
271
 
272
+ #: contact_form.php:821
273
  msgid "Create a username"
274
  msgstr "Выберите имя пользователя"
275
 
276
+ #: contact_form.php:828
277
  msgid "Enter a username of the person who should get the messages from the contact form."
278
  msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
279
 
280
+ #: contact_form.php:832
281
  msgid "Use this email address:"
282
  msgstr "Использовать этот email:"
283
 
284
+ #: contact_form.php:835
285
  msgid "Enter the email address you want the messages forwarded to."
286
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
287
 
288
+ #: contact_form.php:844
289
  msgid "Add department selectbox to the contact form:"
290
  msgstr "Добавить выбор отдела в контактную форму:"
291
 
292
+ #: contact_form.php:852
293
+ #: contact_form.php:1412
294
  msgid "If you upgrade to Pro version all your settings will be saved."
295
  msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
296
 
297
+ #: contact_form.php:859
298
+ #: contact_form.php:997
299
+ #: contact_form.php:1071
300
+ #: contact_form.php:1419
301
+ msgid "Unlock premium options by upgrading to a PRO version."
302
+ msgstr "Активируйте премиум опции обновившись до PRO версии."
303
 
304
+ #: contact_form.php:860
305
+ #: contact_form.php:998
306
+ #: contact_form.php:1072
307
+ #: contact_form.php:1420
308
+ #: contact_form.php:2473
309
+ #: contact_form.php:2489
310
+ msgid "Learn More"
311
+ msgstr "Подробнее"
312
+
313
+ #: contact_form.php:863
314
+ #: contact_form.php:1001
315
+ #: contact_form.php:1075
316
+ #: contact_form.php:1423
317
+ msgid "Go"
318
+ msgstr "Перейти на"
319
 
320
+ #: contact_form.php:870
321
  msgid "Save emails to the database"
322
  msgstr "Сохранять email в базу данных"
323
 
324
+ #: contact_form.php:876
325
  msgid "Using"
326
  msgstr "Используя"
327
 
328
+ #: contact_form.php:876
329
+ #: contact_form.php:1048
330
+ #: contact_form.php:1051
331
+ #: contact_form.php:1055
332
  msgid "powered by"
333
  msgstr "разработано компанией"
334
 
335
+ #: contact_form.php:879
336
+ #: contact_form.php:883
337
  msgid "Using Contact Form to DB powered by"
338
  msgstr "Используя Contact Form to DB, разработанный компанией"
339
 
340
+ #: contact_form.php:879
341
  msgid "Activate Contact Form to DB"
342
  msgstr "Активировать Contact Form to DB"
343
 
344
+ #: contact_form.php:883
345
  msgid "Download Contact Form to DB"
346
  msgstr "Загрузить Contact Form to DB"
347
 
348
+ #: contact_form.php:888
349
  msgid "Additional options"
350
  msgstr "Дополнительные настройки"
351
 
352
+ #: contact_form.php:890
353
  msgid "Show"
354
  msgstr "Отобразить"
355
 
356
+ #: contact_form.php:891
357
  msgid "Hide"
358
  msgstr "Скрыть"
359
 
360
+ #: contact_form.php:895
361
  msgid "What to use?"
362
  msgstr "Что использовать?"
363
 
364
+ #: contact_form.php:898
365
  msgid "Wp-mail"
366
  msgstr "Wp-mail"
367
 
368
+ #: contact_form.php:898
369
  msgid "You can use the wp_mail function for mailing"
370
  msgstr "Для отправки почты вы можете использовать функцию WordPress wp_mail"
371
 
372
+ #: contact_form.php:900
373
  msgid "Mail"
374
  msgstr "Mail"
375
 
376
+ #: contact_form.php:900
377
  msgid "To send mail you can use the php mail function"
378
  msgstr "Для отправки почты вы можете использовать функцию php mail"
379
 
380
+ #: contact_form.php:904
381
  msgid "The text in the 'From' field"
382
  msgstr "Tекст для поля ОТ в письме"
383
 
384
+ #: contact_form.php:906
385
  msgid "User name"
386
  msgstr "Имя пользователя"
387
 
388
+ #: contact_form.php:907
389
  msgid "The name of the user who fills the form will be used in the field 'From'."
390
  msgstr "В поле \"From\" в письме будет использоваться имя того пользователя, который заполняет форму."
391
 
392
+ #: contact_form.php:910
393
  msgid "This text will be used in the 'FROM' field"
394
  msgstr "В поле \"From\" в письме будет использоваться данный текст"
395
 
396
+ #: contact_form.php:914
397
  msgid "The email address in the 'From' field"
398
  msgstr "Выберите email для поля 'FROM' письма"
399
 
400
+ #: contact_form.php:916
401
  msgid "User email"
402
  msgstr "Email"
403
 
404
+ #: contact_form.php:917
405
  msgid "The email address of the user who fills the form will be used in the field 'From'."
406
  msgstr "В поле \"From\" в письме будет использоваться электронная почта того пользователя, который заполняет форму."
407
 
408
+ #: contact_form.php:920
409
  msgid "This email address will be used in the 'From' field."
410
  msgstr "В поле \"From\" в письме будет использоваться данная электронная почта."
411
 
412
+ #: contact_form.php:924
413
  msgid "Required symbol"
414
  msgstr "Символ, отображающий обязательное поле"
415
 
416
+ #: contact_form.php:934
417
  msgid "Fields"
418
  msgstr "Поля"
419
 
420
+ #: contact_form.php:935
421
  msgid "Used"
422
  msgstr "Используется"
423
 
424
+ #: contact_form.php:936
425
  msgid "Required"
426
  msgstr "Обязательные"
427
 
428
+ #: contact_form.php:937
429
  msgid "Visible"
430
  msgstr "Видимое"
431
 
432
+ #: contact_form.php:938
433
  msgid "Disabled for editing"
434
  msgstr "Нет возможности редактировать"
435
 
436
+ #: contact_form.php:939
437
  msgid "Field's default value"
438
  msgstr "Значение по умолчанию"
439
 
440
+ #: contact_form.php:944
441
+ #: contact_form.php:1287
442
+ #: contact_form.php:2059
443
+ #: contact_form.php:2089
444
  msgid "Name"
445
  msgstr "Имя"
446
 
447
+ #: contact_form.php:952
448
+ #: contact_form.php:1292
449
+ #: contact_form.php:2063
450
+ #: contact_form.php:2091
451
  msgid "Address"
452
  msgstr "Адрес"
453
 
454
+ #: contact_form.php:960
455
  msgid "Email Address"
456
  msgstr "Email адрес"
457
 
458
+ #: contact_form.php:968
459
  msgid "Phone number"
460
  msgstr "Телефон"
461
 
462
+ #: contact_form.php:976
463
+ #: contact_form.php:1307
464
+ #: contact_form.php:2073
465
+ #: contact_form.php:2095
466
  msgid "Subject"
467
  msgstr "Тема"
468
 
469
+ #: contact_form.php:984
470
+ #: contact_form.php:1311
471
+ #: contact_form.php:2076
472
+ #: contact_form.php:2096
473
  msgid "Message"
474
  msgstr "Сообщение"
475
 
476
+ #: contact_form.php:1008
477
  msgid "Attachment block"
478
  msgstr "Блок Прикрепить файл"
479
 
480
+ #: contact_form.php:1010
481
  msgid "Users can attach the following file formats"
482
  msgstr "Пользователи могут прикрепить файлы таких типов"
483
 
484
+ #: contact_form.php:1023
485
  msgid "Add to the form"
486
  msgstr "Добавить в форму"
487
 
488
+ #: contact_form.php:1028
489
  msgid "Tips below the Attachment"
490
  msgstr "Пояснения после блока \"Прикрепить файл\""
491
 
492
+ #: contact_form.php:1037
493
  msgid "'Send me a copy' block"
494
  msgstr "Блок 'Отправить мне копию'"
495
 
496
+ #: contact_form.php:1048
497
+ #: contact_form.php:1051
498
+ #: contact_form.php:1055
499
+ #: contact_form.php:1321
500
  msgid "Captcha"
501
  msgstr "Captcha"
502
 
503
+ #: contact_form.php:1051
504
  msgid "Activate captcha"
505
  msgstr "Активировать captcha"
506
 
507
+ #: contact_form.php:1055
508
  msgid "Download captcha"
509
  msgstr "Скачать captcha"
510
 
511
+ #: contact_form.php:1063
512
  msgid "Agreement checkbox"
513
  msgstr "Чекбокс согласия с условиями"
514
 
515
+ #: contact_form.php:1063
516
  msgid "Required checkbox for submitting the form"
517
  msgstr "Обязательный чекбокс для отправки формы"
518
 
519
+ #: contact_form.php:1064
520
  msgid "Optional checkbox"
521
  msgstr "Дополнительный чекбокс"
522
 
523
+ #: contact_form.php:1064
524
  msgid "Optional checkbox, the results of which will be displayed in email"
525
  msgstr "Дополнительный чекбокс, результаты которого будут отображениы в email"
526
 
527
+ #: contact_form.php:1081
528
  msgid "Delete an attachment file from the server after the email is sent"
529
  msgstr "Удалить прикрепленный файл с сервера после отправки письма"
530
 
531
+ #: contact_form.php:1087
532
  msgid "Email in HTML format sending"
533
  msgstr "Отправка еmail в формате HTML"
534
 
535
+ #: contact_form.php:1091
536
  msgid "Display additional info in the email"
537
  msgstr "Отображение дополнительной информации в письме"
538
 
539
+ #: contact_form.php:1096
540
+ #: contact_form.php:2026
541
+ #: contact_form.php:2028
542
  msgid "Sent from (ip address)"
543
  msgstr "Отправлено от (ip адрес)"
544
 
545
+ #: contact_form.php:1096
546
  msgid "Example: Sent from (IP address):\t127.0.0.1"
547
  msgstr "Пример: Sent from (IP address):\t127.0.0.1"
548
 
549
+ #: contact_form.php:1097
550
+ #: contact_form.php:2032
551
+ #: contact_form.php:2034
552
  msgid "Date/Time"
553
  msgstr "Дата/Время"
554
 
555
+ #: contact_form.php:1097
556
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
557
  msgstr "Пример: Date/Time:\tAugust 19, 2013 8:50 pm"
558
 
559
+ #: contact_form.php:1098
560
+ #: contact_form.php:2038
561
+ #: contact_form.php:2040
562
  msgid "Sent from (referer)"
563
  msgstr "Пришло из (реферер)"
564
 
565
+ #: contact_form.php:1098
566
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
567
  msgstr "Пример: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
568
 
569
+ #: contact_form.php:1099
570
+ #: contact_form.php:2044
571
+ #: contact_form.php:2046
572
  msgid "Using (user agent)"
573
  msgstr "Используя (user agent)"
574
 
575
+ #: contact_form.php:1099
576
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
577
  msgstr "Пример: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
578
 
579
+ #: contact_form.php:1103
580
  msgid "Language settings for the field names in the form"
581
  msgstr "Языковые настройки для названия полей в форме"
582
 
583
+ #: contact_form.php:1112
584
  msgid "Add a language"
585
  msgstr "Добавить язык"
586
 
587
+ #: contact_form.php:1116
588
  msgid "Change the names of the contact form fields and error messages"
589
  msgstr "Изменить названия полей контактной формы и сообщений об ошибках"
590
 
591
+ #: contact_form.php:1121
592
+ #: contact_form.php:1202
593
  msgid "English"
594
  msgstr "Английский"
595
 
596
+ #: contact_form.php:1129
597
+ #: contact_form.php:1163
598
  msgid "click to expand/hide the list"
599
  msgstr "нажмите чтобы развернуть/свернуть список"
600
 
601
+ #: contact_form.php:1138
602
+ #: contact_form.php:1172
603
  msgid "Tips below the Attachment block"
604
  msgstr "Пояснения после блока \"Прикрепить файл\""
605
 
606
+ #: contact_form.php:1141
607
+ #: contact_form.php:1175
608
  msgid "Error message for the Name field"
609
  msgstr "Сообщение об ошибке для поля Name"
610
 
611
+ #: contact_form.php:1142
612
+ #: contact_form.php:1176
613
  msgid "Error message for the Address field"
614
  msgstr "Сообщение об ошибке для поля Address"
615
 
616
+ #: contact_form.php:1143
617
+ #: contact_form.php:1177
618
  msgid "Error message for the Email field"
619
  msgstr "Сообщение об ошибке для поля Email"
620
 
621
+ #: contact_form.php:1144
622
+ #: contact_form.php:1178
623
  msgid "Error message for the Phone field"
624
  msgstr "Сообщение об ошибке для поля Phone"
625
 
626
+ #: contact_form.php:1145
627
+ #: contact_form.php:1179
628
  msgid "Error message for the Subject field"
629
  msgstr "Сообщение об ошибке для поля Subject"
630
 
631
+ #: contact_form.php:1146
632
+ #: contact_form.php:1180
633
  msgid "Error message for the Message field"
634
  msgstr "Сообщение об ошибке для поля Message"
635
 
636
+ #: contact_form.php:1147
637
+ #: contact_form.php:1181
638
  msgid "Error message about the file type for the Attachment field"
639
  msgstr "Сообщение об ошибке о типе файла для поля Attachment"
640
 
641
+ #: contact_form.php:1148
642
+ #: contact_form.php:1182
643
  msgid "Error message while uploading a file for the Attachment field to the server"
644
  msgstr "Сообщение об ошибке при загрузке файла на сервер для поля Attachment"
645
 
646
+ #: contact_form.php:1149
647
+ #: contact_form.php:1183
648
  msgid "Error message while moving the file for the Attachment field"
649
  msgstr "Сообщение об ошибке при перемещении файла для поля Attachment"
650
 
651
+ #: contact_form.php:1150
652
+ #: contact_form.php:1184
653
  msgid "Error message when file size limit for the Attachment field is exceeded"
654
  msgstr "Сообщение об ошибке когда размер файла превышает размер разрешенного сервером для поля Attachment"
655
 
656
+ #: contact_form.php:1151
657
+ #: contact_form.php:1185
658
  msgid "Error message for the Captcha field"
659
  msgstr "Сообщение об ошибке для поля Captcha"
660
 
661
+ #: contact_form.php:1152
662
+ #: contact_form.php:1186
663
  msgid "Error message for the whole form"
664
  msgstr "Сообщение об ошибке для всей формы"
665
 
666
+ #: contact_form.php:1155
667
+ #: contact_form.php:1157
668
+ #: contact_form.php:1189
669
+ #: contact_form.php:1191
670
+ #: contact_form.php:1212
671
+ #: contact_form.php:1214
672
+ #: contact_form.php:1222
673
+ #: contact_form.php:1224
674
  msgid "Use shortcode"
675
  msgstr "Использовать шорткод"
676
 
677
+ #: contact_form.php:1155
678
+ #: contact_form.php:1157
679
+ #: contact_form.php:1189
680
+ #: contact_form.php:1191
681
+ #: contact_form.php:1212
682
+ #: contact_form.php:1214
683
+ #: contact_form.php:1222
684
+ #: contact_form.php:1224
685
  msgid "for this language"
686
  msgstr "для данного языка"
687
 
688
+ #: contact_form.php:1199
689
  msgid "Action after email is sent"
690
  msgstr "Действие после отправки письма"
691
 
692
+ #: contact_form.php:1201
693
  msgid "Display text"
694
  msgstr "Отобразить текст"
695
 
696
+ #: contact_form.php:1210
697
+ #: contact_form.php:1220
698
  msgid "Text"
699
  msgstr "Текст"
700
 
701
+ #: contact_form.php:1231
702
  msgid "Redirect to the page"
703
  msgstr "Перенаправление на страницу"
704
 
705
+ #: contact_form.php:1232
706
  msgid "Url"
707
  msgstr "Урл"
708
 
709
+ #: contact_form.php:1236
710
  msgid "The $_SERVER variable that is used to build a URL of the form"
711
  msgstr "$_SERVER переменная, используемая при формировании URL формы"
712
 
713
+ #: contact_form.php:1240
714
  msgid "If you are not sure whether to change this setting or not, please do not do that."
715
  msgstr "If you are not sure whether to change this setting or not, please do not do that."
716
 
717
+ #: contact_form.php:1246
718
+ #: contact_form.php:1430
719
  msgid "Save Changes"
720
  msgstr "Save Changes"
721
 
722
+ #: contact_form.php:1251
723
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
724
  msgstr "Если вам понравился плагин, пожалуйста, поставте нам 5 звезд на WordPress"
725
 
726
+ #: contact_form.php:1252
727
  msgid "Rate the plugin"
728
  msgstr "Оценить плагин"
729
 
730
+ #: contact_form.php:1255
731
  msgid "If there is something wrong about it, please contact us"
732
  msgstr "Если у вас есть какие-то вопросы, обращайтесь"
733
 
734
+ #: contact_form.php:1267
735
  msgid "Errors output"
736
  msgstr "Отображение ошибок"
737
 
738
+ #: contact_form.php:1270
739
  msgid "Display error messages"
740
  msgstr "Отображать сообщения об ошибках"
741
 
742
+ #: contact_form.php:1271
743
  msgid "Color of the input field errors."
744
  msgstr "Отображать ошибки цветом для полей ввода"
745
 
746
+ #: contact_form.php:1272
747
  msgid "Display error messages & color of the input field errors"
748
  msgstr "Отображать сообщения об ошибках & цвет полей ввода с ошибками"
749
 
750
+ #: contact_form.php:1277
751
  msgid "Add placeholder to the input blocks"
752
  msgstr "Добавить вспомогательный текст в поля ввода"
753
 
754
+ #: contact_form.php:1283
755
  msgid "Add tooltips"
756
  msgstr "Добавить подсказки"
757
 
758
+ #: contact_form.php:1297
759
  msgid "Email address"
760
  msgstr "Email адрес"
761
 
762
+ #: contact_form.php:1302
763
  msgid "Phone Number"
764
  msgstr "Телефон"
765
 
766
+ #: contact_form.php:1316
767
  msgid "Attachment"
768
  msgstr "Прикрепить файл"
769
 
770
+ #: contact_form.php:1321
771
  msgid "(powered by bestwebsoft.com)"
772
  msgstr "(разработано компанией bestwebsoft.com)"
773
 
774
+ #: contact_form.php:1326
775
  msgid "Style options"
776
  msgstr "Настройки стиля"
777
 
778
+ #: contact_form.php:1329
779
  msgid "Text color"
780
  msgstr "Цвет текста"
781
 
782
+ #: contact_form.php:1332
783
+ #: contact_form.php:1337
784
+ #: contact_form.php:1347
785
+ #: contact_form.php:1352
786
+ #: contact_form.php:1357
787
+ #: contact_form.php:1362
788
+ #: contact_form.php:1372
789
+ #: contact_form.php:1377
790
+ #: contact_form.php:1383
791
+ #: contact_form.php:1394
792
+ #: contact_form.php:1399
793
+ #: contact_form.php:1404
794
  msgid "Default"
795
  msgstr "По-умолчанию"
796
 
797
+ #: contact_form.php:1334
798
  msgid "Label text color"
799
  msgstr "Цвет текста"
800
 
801
+ #: contact_form.php:1339
802
  msgid "Placeholder color"
803
  msgstr "Цвет замещающегося текста"
804
 
805
+ #: contact_form.php:1344
806
  msgid "Errors color"
807
  msgstr "Цвет ошибок"
808
 
809
+ #: contact_form.php:1349
810
  msgid "Error text color"
811
  msgstr "Цвет текста для ошибок"
812
 
813
+ #: contact_form.php:1354
814
  msgid "Background color of the input field errors"
815
  msgstr "Цвет фона для полей ввода с ошибками"
816
 
817
+ #: contact_form.php:1359
818
  msgid "Border color of the input field errors"
819
  msgstr "Цвет рамки для полей ввода с ошибками"
820
 
821
+ #: contact_form.php:1364
822
  msgid "Placeholder color of the input field errors"
823
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
824
 
825
+ #: contact_form.php:1369
826
  msgid "Input fields"
827
  msgstr "Поля ввода"
828
 
829
+ #: contact_form.php:1374
830
  msgid "Input fields background color"
831
  msgstr "Цвет фона для полей ввода"
832
 
833
+ #: contact_form.php:1379
834
  msgid "Text fields color"
835
  msgstr "Цвет текста для полей ввода"
836
 
837
+ #: contact_form.php:1381
838
  msgid "Border width in px, numbers only"
839
  msgstr "Ширина рамки в пикселях, только цифры"
840
 
841
+ #: contact_form.php:1385
842
+ #: contact_form.php:1406
843
  msgid "Border color"
844
  msgstr "Цвет рамки"
845
 
846
+ #: contact_form.php:1390
847
  msgid "Submit button"
848
  msgstr "Кнопка Отправить"
849
 
850
+ #: contact_form.php:1392
851
  msgid "Width in px, numbers only"
852
  msgstr "Ширина в пикселях, только цифры"
853
 
854
+ #: contact_form.php:1396
855
  msgid "Button color"
856
  msgstr "Цвет кнопки"
857
 
858
+ #: contact_form.php:1401
859
  msgid "Button text color"
860
  msgstr "Цвет текста для кнопки"
861
 
862
+ #: contact_form.php:1434
863
  msgid "Contact Form Pro | Preview"
864
  msgstr "Contact Form Pro | Предпросмотр"
865
 
866
+ #: contact_form.php:1437
867
  msgid "Show with errors"
868
  msgstr "Отображать с ошибками"
869
 
870
+ #: contact_form.php:1445
871
+ #: contact_form.php:1447
872
  msgid "Please enter your full name..."
873
  msgstr "Пожалуйста введите ваше имя..."
874
 
875
+ #: contact_form.php:1458
876
+ #: contact_form.php:1460
877
  msgid "Please enter your address..."
878
  msgstr "Пожалуйста введите ваш адресс..."
879
 
880
+ #: contact_form.php:1469
881
+ #: contact_form.php:1471
882
  msgid "Please enter your email address..."
883
  msgstr "Пожалуйста введите ваш email..."
884
 
885
+ #: contact_form.php:1480
886
+ #: contact_form.php:1482
887
  msgid "Please enter your phone number..."
888
  msgstr "Пожалуйста введите ваш телефон..."
889
 
890
+ #: contact_form.php:1491
891
+ #: contact_form.php:1493
892
  msgid "Please enter subject..."
893
  msgstr "Пожалуйста введите тему..."
894
 
895
+ #: contact_form.php:1501
896
+ #: contact_form.php:1503
897
  msgid "Please enter your message..."
898
  msgstr "Пожалуйста введите ваше сообщение..."
899
 
900
+ #: contact_form.php:1545
901
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
902
  msgstr "Поздравляем! PRO версия плагина была успешно загружена и активирована."
903
 
904
+ #: contact_form.php:1547
905
  msgid "Please, go to"
906
  msgstr "Пожалуйста, перейдите на"
907
 
908
+ #: contact_form.php:1547
909
  msgid "the setting page"
910
  msgstr "страницу настроек"
911
 
912
+ #: contact_form.php:1548
913
  msgid "You will be redirected automatically in 5 seconds."
914
  msgstr "Вы будете перенаправлены автоматически через 5 секунд."
915
 
916
+ #: contact_form.php:1553
917
  msgid "You can download and activate"
918
  msgstr "Вы можете скачать и активировать"
919
 
920
+ #: contact_form.php:1555
921
  msgid "version of this plugin by entering Your license key."
922
  msgstr "версию этого плагина, введя ваш лицензионный ключ."
923
 
924
+ #: contact_form.php:1557
925
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
926
  msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
927
 
928
+ #: contact_form.php:1559
929
  msgid "(your username is the email you specify when purchasing the product)."
930
  msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
931
 
932
+ #: contact_form.php:1567
933
+ #: contact_form.php:1577
934
  msgid "Go!"
935
  msgstr "Обновить!"
936
 
937
+ #: contact_form.php:1647
938
  msgid "Sorry, email message could not be delivered."
939
  msgstr "Извините, ваш email не может быть отправлен."
940
 
941
+ #: contact_form.php:2053
942
  msgid "Contact from"
943
  msgstr "Контактная Форма"
944
 
945
+ #: contact_form.php:2066
946
+ #: contact_form.php:2092
947
  msgid "Email"
948
  msgstr "Email"
949
 
950
+ #: contact_form.php:2070
951
+ #: contact_form.php:2094
952
  msgid "Phone"
953
  msgstr "Телефон"
954
 
955
+ #: contact_form.php:2079
956
+ #: contact_form.php:2097
957
  msgid "Site"
958
  msgstr "Сайт"
959
 
960
+ #: contact_form.php:2160
961
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
962
  msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
963
 
964
+ #: contact_form.php:2229
965
  msgid "FAQ"
966
  msgstr "FAQ"
967
 
968
+ #: contact_form.php:2230
969
  msgid "Support"
970
  msgstr "Поддержка"
971
 
972
+ #: contact_form.php:2280
973
  msgid "Are you sure that you want to delete this language data?"
974
  msgstr "Вы действительно хотите удалить данные для этого языка?"
975
 
976
+ #: contact_form.php:2476
977
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
978
  msgstr "Пора обновить <strong>Contact Form plugin</strong> до <strong>PRO</strong> версии"
979
 
980
+ #: contact_form.php:2477
981
  msgid "Extend standard plugin functionality with new great options."
982
  msgstr "Расширение стандартного функционала плагина новыми опциями."
983
 
984
+ #: contact_form.php:2492
985
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
986
  msgstr "<strong>Contact Form to DB</strong> позволяет хранить ваши сообщения в базе данных."
987
 
988
+ #: contact_form.php:2493
989
  msgid "Manage messages that have been sent from your website."
990
  msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
991
 
992
+ #~ msgid ""
993
+ #~ "This functionality is available in the Pro version of the plugin. For "
994
+ #~ "more details, please follow the link"
995
+ #~ msgstr ""
996
+ #~ "Данный функционал доступен в Pro версии плагина. Для детальной информации "
997
+ #~ "перейдите по ссылке"
998
+
999
+ #~ msgid "Contact Form Pro"
1000
+ #~ msgstr "Contact Form Pro"
1001
+
1002
  #~ msgid "Contact Form Pro Extra Settings"
1003
  #~ msgstr "Экстра Настройки Contact Form"
1004
 
languages/contact_form-sk_SK.mo CHANGED
Binary file
languages/contact_form-sk_SK.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: 2014-02-20 14:07+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:07+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Book Ing <book.ing@zoznam.sk>\n"
9
  "Language: cs_CZ\n"
@@ -16,968 +16,1000 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  msgid "Contact Form Settings"
22
  msgstr "Nastavenie kontaktného formulára"
23
 
24
- #: contact_form.php:33
25
  msgid "Contact Form"
26
  msgstr "Kontaktný formulár"
27
 
28
- #: contact_form.php:80
29
- #: contact_form.php:978
30
- #: contact_form.php:1008
31
  msgid "Name:"
32
  msgstr "Meno:"
33
 
34
- #: contact_form.php:81
35
- #: contact_form.php:979
36
- #: contact_form.php:1009
37
  msgid "Address:"
38
  msgstr "Adresa::"
39
 
40
- #: contact_form.php:82
41
- #: contact_form.php:980
42
- #: contact_form.php:1010
43
  msgid "Email Address:"
44
  msgstr "E-Mail:"
45
 
46
- #: contact_form.php:83
47
- #: contact_form.php:981
48
- #: contact_form.php:1011
49
  msgid "Phone number:"
50
  msgstr ""
51
 
52
- #: contact_form.php:84
53
- #: contact_form.php:982
54
- #: contact_form.php:1012
55
  msgid "Subject:"
56
  msgstr "Predmet:"
57
 
58
- #: contact_form.php:85
59
- #: contact_form.php:983
60
- #: contact_form.php:1013
61
  msgid "Message:"
62
  msgstr "Správa:"
63
 
64
- #: contact_form.php:86
65
- #: contact_form.php:984
66
- #: contact_form.php:1014
67
  msgid "Attachment:"
68
  msgstr "Príloha"
69
 
70
- #: contact_form.php:87
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr ""
73
 
74
- #: contact_form.php:88
75
- #: contact_form.php:986
76
- #: contact_form.php:1016
77
  msgid "Send me a copy"
78
  msgstr "Zaslať mi kópiu"
79
 
80
- #: contact_form.php:89
81
- #: contact_form.php:987
82
- #: contact_form.php:1017
83
  msgid "Submit"
84
  msgstr "Odoslať"
85
 
86
- #: contact_form.php:90
87
  msgid "Your name is required."
88
  msgstr "Vaše meno je vyžadované."
89
 
90
- #: contact_form.php:91
91
  msgid "Address is required."
92
  msgstr "Adresa je vyžadovaná."
93
 
94
- #: contact_form.php:92
95
  msgid "A valid email address is required."
96
  msgstr "Platný E-mail je vyžadovaný."
97
 
98
- #: contact_form.php:93
99
  msgid "Phone number is required."
100
  msgstr "Telefónne číslo je vyžadované."
101
 
102
- #: contact_form.php:94
103
  msgid "Subject is required."
104
  msgstr "Predmet je vyžadovaný."
105
 
106
- #: contact_form.php:95
107
  msgid "Message text is required."
108
  msgstr "Správa je vyžadovaná."
109
 
110
- #: contact_form.php:96
111
  msgid "File format is not valid."
112
  msgstr "Nesprávny typ súboru."
113
 
114
- #: contact_form.php:97
115
  msgid "File upload error."
116
  msgstr ""
117
 
118
- #: contact_form.php:98
119
  msgid "The file could not be uploaded."
120
  msgstr ""
121
 
122
- #: contact_form.php:99
123
  msgid "This file is too large."
124
  msgstr ""
125
 
126
- #: contact_form.php:100
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Prosím opíšte CAPTCHA text."
129
 
130
- #: contact_form.php:101
131
  msgid "Please make corrections below and try again."
132
  msgstr "Prosím opravte chyby a skúste to opäť."
133
 
134
- #: contact_form.php:103
135
  msgid "Thank you for contacting us."
136
  msgstr "Ďakujeme za správu."
137
 
138
- #: contact_form.php:203
139
  #, fuzzy
140
  msgid "requires"
141
  msgstr "Vyžadované polia"
142
 
143
- #: contact_form.php:203
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr ""
146
 
147
- #: contact_form.php:203
148
  msgid "Back to the WordPress"
149
  msgstr ""
150
 
151
- #: contact_form.php:203
152
  #, fuzzy
153
  msgid "Plugins page"
154
  msgstr "Pro Plugins"
155
 
156
- #: contact_form.php:494
157
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
158
  msgstr "Ak je vybratá možnosť \"Presmerovanie na stránku\" potom pole URL by malo mať nasledujúci formát"
159
 
160
- #: contact_form.php:503
161
  msgid "Such user does not exist. Settings are not saved."
162
  msgstr "Taký užívateľ neexistuje. Nastavenie sa neuloží."
163
 
164
- #: contact_form.php:507
165
- #: contact_form.php:513
166
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
167
  msgstr "Zadajte platnú e-mailovú adresu v poli \"Od\". Nastavenie sa neuloží."
168
 
169
- #: contact_form.php:518
170
  msgid "Settings saved."
171
  msgstr "Nastavenie uložené."
172
 
173
- #: contact_form.php:554
174
- #: contact_form.php:593
175
  msgid "Wrong license key"
176
  msgstr ""
177
 
178
- #: contact_form.php:586
179
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
180
  msgstr ""
181
 
182
- #: contact_form.php:595
183
  msgid "This license key is bind to another site"
184
  msgstr ""
185
 
186
- #: contact_form.php:597
187
- #: contact_form.php:1392
188
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
189
  msgstr ""
190
 
191
- #: contact_form.php:615
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
 
195
- #: contact_form.php:621
196
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
- #: contact_form.php:625
200
- #: contact_form.php:634
201
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
- #: contact_form.php:638
205
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
206
  msgstr ""
207
 
208
- #: contact_form.php:653
209
  #, fuzzy
210
  msgid "Please, enter Your license key"
211
  msgstr "Prosím zadajte vašu e-mailovú adresu..."
212
 
213
- #: contact_form.php:662
214
- msgid "Notice:"
215
- msgstr ""
216
-
217
- #: contact_form.php:662
218
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
219
- msgstr ""
220
-
221
- #: contact_form.php:665
222
- #: contact_form.php:1997
223
- #: contact_form.php:2008
224
  msgid "Settings"
225
  msgstr "Nastavenia"
226
 
227
- #: contact_form.php:666
228
  msgid "Extra settings"
229
  msgstr "Extra nastavenia"
230
 
231
- #: contact_form.php:667
232
  msgid "Go PRO"
233
  msgstr ""
234
 
235
- #: contact_form.php:673
236
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  msgid "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:"
238
  msgstr "Ak by ste chceli pridať kontaktný formulár na svoje webové stránky, stačí skopírovať a vložiť shortcode k príspevku, stránke alebo widgetu:"
239
 
240
- #: contact_form.php:673
241
- #: contact_form.php:674
242
- #: contact_form.php:1001
243
- #: contact_form.php:1050
 
 
 
 
244
  msgid "or"
245
  msgstr "alebo"
246
 
247
- #: contact_form.php:674
 
248
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
249
  msgstr "Ak máte nejaké problémy so štandardným shortcode [contact_form], mali by ste použiť shortcode"
250
 
251
- #: contact_form.php:675
 
252
  msgid "They work the same way."
253
  msgstr "Fungujú rovnakým spôsobom."
254
 
255
- #: contact_form.php:676
 
256
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
257
  msgstr "Ak necháte pole prázdne, budú správy posielané na e-mailovú adresu zadanú pri registrácii."
258
 
259
- #: contact_form.php:680
260
  msgid "The user's email address:"
261
  msgstr "Užívateľova e-mailová adresa:"
262
 
263
- #: contact_form.php:684
264
  msgid "Create a username"
265
  msgstr "Vytvorte užívateľské meno"
266
 
267
- #: contact_form.php:689
268
  msgid "Enter a username of the person who should get the messages from the contact form."
269
  msgstr "Zadajte užívateľské meno osoby, ktorá by mala dostať správy z kontaktného formulára."
270
 
271
- #: contact_form.php:693
272
  msgid "Use this email address:"
273
  msgstr "Použíte tento email::"
274
 
275
- #: contact_form.php:696
276
  msgid "Enter the email address you want the messages forwarded to."
277
  msgstr "Zadajte e-mailovú adresu, ktorú chcete do správy presmerovať."
278
 
279
- #: contact_form.php:702
280
  msgid "Add department selectbox to the contact form:"
281
  msgstr ""
282
 
283
- #: contact_form.php:710
284
- #: contact_form.php:1246
285
  msgid "If you upgrade to Pro version all your settings will be saved."
286
  msgstr ""
287
 
288
- #: contact_form.php:715
289
- #: contact_form.php:852
290
- #: contact_form.php:923
291
- #: contact_form.php:1096
292
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
293
  msgstr ""
294
 
295
- #: contact_form.php:716
296
- #: contact_form.php:853
297
- #: contact_form.php:924
298
- #: contact_form.php:1097
299
- msgid "Contact Form Pro"
300
- msgstr "Kontaktný formulár Pro"
 
 
301
 
302
- #: contact_form.php:722
 
 
 
 
 
 
 
303
  msgid "Save emails to the database"
304
  msgstr ""
305
 
306
- #: contact_form.php:732
307
  msgid "Using"
308
  msgstr ""
309
 
310
- #: contact_form.php:732
311
- #: contact_form.php:901
312
- #: contact_form.php:904
313
- #: contact_form.php:908
314
  msgid "powered by"
315
  msgstr ""
316
 
317
- #: contact_form.php:735
318
- #: contact_form.php:739
319
  msgid "Using Contact Form to DB powered by"
320
  msgstr ""
321
 
322
- #: contact_form.php:735
323
  #, fuzzy
324
  msgid "Activate Contact Form to DB"
325
  msgstr "Kontaktný formulár Pro"
326
 
327
- #: contact_form.php:739
328
  #, fuzzy
329
  msgid "Download Contact Form to DB"
330
  msgstr "Kontaktný formulár Pro"
331
 
332
- #: contact_form.php:744
333
  msgid "Additional options"
334
  msgstr "Ďalšie nastavenia"
335
 
336
- #: contact_form.php:746
337
  msgid "Show"
338
  msgstr ""
339
 
340
- #: contact_form.php:747
341
  msgid "Hide"
342
  msgstr ""
343
 
344
- #: contact_form.php:751
345
  msgid "What to use?"
346
  msgstr "Čo používať?"
347
 
348
- #: contact_form.php:754
349
  msgid "Wp-mail"
350
  msgstr "Wp-mail"
351
 
352
- #: contact_form.php:754
353
  msgid "You can use the wp_mail function for mailing"
354
  msgstr "Môžete použiť wp_mail funkcie pre zasielanie"
355
 
356
- #: contact_form.php:756
357
  msgid "Mail"
358
  msgstr "Mail"
359
 
360
- #: contact_form.php:756
361
  msgid "To send mail you can use the php mail function"
362
  msgstr "Ak chcete odosielať poštu, môžete použiť e-mailoé PHP funkcie"
363
 
364
- #: contact_form.php:760
365
  #, fuzzy
366
  msgid "The text in the 'From' field"
367
  msgstr "Zmena textu pola \"od\""
368
 
369
- #: contact_form.php:762
370
  msgid "User name"
371
  msgstr ""
372
 
373
- #: contact_form.php:763
374
  msgid "The name of the user who fills the form will be used in the field 'From'."
375
  msgstr ""
376
 
377
- #: contact_form.php:766
378
  #, fuzzy
379
  msgid "This text will be used in the 'FROM' field"
380
  msgstr "Táto e-mailová adresa bude použitá v poli 'od'."
381
 
382
- #: contact_form.php:770
383
  #, fuzzy
384
  msgid "The email address in the 'From' field"
385
  msgstr "Zadajte e-mailovú adresu v poli \"od\""
386
 
387
- #: contact_form.php:772
388
  msgid "User email"
389
  msgstr ""
390
 
391
- #: contact_form.php:773
392
  msgid "The email address of the user who fills the form will be used in the field 'From'."
393
  msgstr ""
394
 
395
- #: contact_form.php:776
396
  msgid "This email address will be used in the 'From' field."
397
  msgstr "Táto e-mailová adresa bude použitá v poli 'od'."
398
 
399
- #: contact_form.php:780
400
  #, fuzzy
401
  msgid "Required symbol"
402
  msgstr "Vyžadované polia"
403
 
404
- #: contact_form.php:790
405
  msgid "Fields"
406
  msgstr ""
407
 
408
- #: contact_form.php:791
409
  msgid "Used"
410
  msgstr ""
411
 
412
- #: contact_form.php:792
413
  #, fuzzy
414
  msgid "Required"
415
  msgstr "Vyžadované polia"
416
 
417
- #: contact_form.php:793
418
  msgid "Visible"
419
  msgstr ""
420
 
421
- #: contact_form.php:794
422
  msgid "Disabled for editing"
423
  msgstr ""
424
 
425
- #: contact_form.php:795
426
  msgid "Field's default value"
427
  msgstr ""
428
 
429
- #: contact_form.php:800
430
- #: contact_form.php:1121
431
- #: contact_form.php:1841
432
- #: contact_form.php:1871
433
  msgid "Name"
434
  msgstr "Meno"
435
 
436
- #: contact_form.php:808
437
- #: contact_form.php:1126
438
- #: contact_form.php:1845
439
- #: contact_form.php:1873
440
  msgid "Address"
441
  msgstr "Adresa"
442
 
443
- #: contact_form.php:816
444
  msgid "Email Address"
445
  msgstr "Emailová adresa"
446
 
447
- #: contact_form.php:824
448
  #, fuzzy
449
  msgid "Phone number"
450
  msgstr "Tel. číslo"
451
 
452
- #: contact_form.php:832
453
- #: contact_form.php:1141
454
- #: contact_form.php:1855
455
- #: contact_form.php:1877
456
  msgid "Subject"
457
  msgstr "Predmet"
458
 
459
- #: contact_form.php:840
460
- #: contact_form.php:1145
461
- #: contact_form.php:1858
462
- #: contact_form.php:1878
463
  msgid "Message"
464
  msgstr "Správa"
465
 
466
- #: contact_form.php:858
467
  msgid "Attachment block"
468
  msgstr "Blok príloh"
469
 
470
- #: contact_form.php:860
471
  msgid "Users can attach the following file formats"
472
  msgstr "Užívatelia môžu pripojiť nasledujúce formáty súborov"
473
 
474
- #: contact_form.php:874
475
  msgid "Add to the form"
476
  msgstr ""
477
 
478
- #: contact_form.php:879
479
  #, fuzzy
480
  msgid "Tips below the Attachment"
481
  msgstr "Zobrazenie tipov pod blokom príloh"
482
 
483
- #: contact_form.php:888
484
  #, fuzzy
485
  msgid "'Send me a copy' block"
486
  msgstr "Zobraz 'Zaslať kópiu' blok"
487
 
488
- #: contact_form.php:901
489
- #: contact_form.php:904
490
- #: contact_form.php:908
491
- #: contact_form.php:1155
492
  msgid "Captcha"
493
  msgstr ""
494
 
495
- #: contact_form.php:904
496
  msgid "Activate captcha"
497
  msgstr "Aktivovať captcha"
498
 
499
- #: contact_form.php:908
500
  msgid "Download captcha"
501
  msgstr "Stiahnuť captcha"
502
 
503
- #: contact_form.php:916
504
  msgid "Agreement checkbox"
505
  msgstr ""
506
 
507
- #: contact_form.php:916
508
  msgid "Required checkbox for submitting the form"
509
  msgstr ""
510
 
511
- #: contact_form.php:917
512
  msgid "Optional checkbox"
513
  msgstr ""
514
 
515
- #: contact_form.php:917
516
  msgid "Optional checkbox, the results of which will be displayed in email"
517
  msgstr ""
518
 
519
- #: contact_form.php:928
520
  msgid "Delete an attachment file from the server after the email is sent"
521
  msgstr ""
522
 
523
- #: contact_form.php:934
524
  msgid "Email in HTML format sending"
525
  msgstr ""
526
 
527
- #: contact_form.php:938
528
  msgid "Display additional info in the email"
529
  msgstr "Zobraziť ďalšie informácie v e-maile"
530
 
531
- #: contact_form.php:943
532
- #: contact_form.php:1808
533
- #: contact_form.php:1810
534
  msgid "Sent from (ip address)"
535
  msgstr "Odoslané z (ip adresa)"
536
 
537
- #: contact_form.php:943
538
  #, fuzzy
539
  msgid "Example: Sent from (IP address):\t127.0.0.1"
540
  msgstr "Odoslané z (ip adresa)"
541
 
542
- #: contact_form.php:944
543
- #: contact_form.php:1814
544
- #: contact_form.php:1816
545
  msgid "Date/Time"
546
  msgstr "Datum / Čas"
547
 
548
- #: contact_form.php:944
549
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
550
  msgstr ""
551
 
552
- #: contact_form.php:945
553
- #: contact_form.php:1820
554
- #: contact_form.php:1822
555
  msgid "Sent from (referer)"
556
  msgstr "Odoslané z"
557
 
558
- #: contact_form.php:945
559
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
560
  msgstr ""
561
 
562
- #: contact_form.php:946
563
- #: contact_form.php:1826
564
- #: contact_form.php:1828
565
  msgid "Using (user agent)"
566
  msgstr "Použitie (user agent)"
567
 
568
- #: contact_form.php:946
569
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
570
  msgstr ""
571
 
572
- #: contact_form.php:950
573
  msgid "Language settings for the field names in the form"
574
  msgstr "Nastavenie jazyka pre názvy polí vo formulári"
575
 
576
- #: contact_form.php:959
577
  msgid "Add a language"
578
  msgstr "Pridať jazyk"
579
 
580
- #: contact_form.php:963
581
  msgid "Change the names of the contact form fields and error messages"
582
  msgstr "Zmena názvov polí kontaktného formulára a chybových hlásení"
583
 
584
- #: contact_form.php:968
585
- #: contact_form.php:1041
586
  msgid "English"
587
  msgstr ""
588
 
589
- #: contact_form.php:976
590
- #: contact_form.php:1006
591
  msgid "click to expand/hide the list"
592
  msgstr ""
593
 
594
- #: contact_form.php:985
595
- #: contact_form.php:1015
596
  #, fuzzy
597
  msgid "Tips below the Attachment block"
598
  msgstr "Zobrazenie tipov pod blokom príloh"
599
 
600
- #: contact_form.php:988
601
- #: contact_form.php:1018
602
  msgid "Error message for the Name field"
603
  msgstr ""
604
 
605
- #: contact_form.php:989
606
- #: contact_form.php:1019
607
  msgid "Error message for the Address field"
608
  msgstr ""
609
 
610
- #: contact_form.php:990
611
- #: contact_form.php:1020
612
  msgid "Error message for the Email field"
613
  msgstr ""
614
 
615
- #: contact_form.php:991
616
- #: contact_form.php:1021
617
  msgid "Error message for the Phone field"
618
  msgstr ""
619
 
620
- #: contact_form.php:992
621
- #: contact_form.php:1022
622
  msgid "Error message for the Subject field"
623
  msgstr ""
624
 
625
- #: contact_form.php:993
626
- #: contact_form.php:1023
627
  msgid "Error message for the Message field"
628
  msgstr ""
629
 
630
- #: contact_form.php:994
631
- #: contact_form.php:1024
632
  msgid "Error message about the file type for the Attachment field"
633
  msgstr ""
634
 
635
- #: contact_form.php:995
636
- #: contact_form.php:1025
637
  msgid "Error message while uploading a file for the Attachment field to the server"
638
  msgstr ""
639
 
640
- #: contact_form.php:996
641
- #: contact_form.php:1026
642
  msgid "Error message while moving the file for the Attachment field"
643
  msgstr ""
644
 
645
- #: contact_form.php:997
646
- #: contact_form.php:1027
647
  msgid "Error message when file size limit for the Attachment field is exceeded"
648
  msgstr ""
649
 
650
- #: contact_form.php:998
651
- #: contact_form.php:1028
652
  msgid "Error message for the Captcha field"
653
  msgstr ""
654
 
655
- #: contact_form.php:999
656
- #: contact_form.php:1029
657
  msgid "Error message for the whole form"
658
  msgstr ""
659
 
660
- #: contact_form.php:1001
661
- #: contact_form.php:1031
662
- #: contact_form.php:1050
663
- #: contact_form.php:1056
 
 
 
 
664
  msgid "Use shortcode"
665
  msgstr "Použite shortcode "
666
 
667
- #: contact_form.php:1001
668
- #: contact_form.php:1031
669
- #: contact_form.php:1050
670
- #: contact_form.php:1056
 
 
 
 
671
  msgid "for this language"
672
  msgstr "pre tento jazyk"
673
 
674
- #: contact_form.php:1038
675
  msgid "Action after email is sent"
676
  msgstr "Akcia po zaslaní mailu."
677
 
678
- #: contact_form.php:1040
679
  msgid "Display text"
680
  msgstr "Zobraziť text"
681
 
682
- #: contact_form.php:1049
683
- #: contact_form.php:1055
684
  msgid "Text"
685
  msgstr "Text"
686
 
687
- #: contact_form.php:1062
688
  msgid "Redirect to the page"
689
  msgstr "Presmerovať na stránku"
690
 
691
- #: contact_form.php:1063
692
  msgid "Url"
693
  msgstr "Url"
694
 
695
- #: contact_form.php:1067
696
  msgid "The $_SERVER variable that is used to build a URL of the form"
697
  msgstr ""
698
 
699
- #: contact_form.php:1071
700
  msgid "If you are not sure whether to change this setting or not, please do not do that."
701
  msgstr ""
702
 
703
- #: contact_form.php:1077
704
- #: contact_form.php:1252
705
  msgid "Save Changes"
706
  msgstr "Uložiť zmeny"
707
 
708
- #: contact_form.php:1082
709
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
710
  msgstr ""
711
 
712
- #: contact_form.php:1083
713
  #, fuzzy
714
  msgid "Rate the plugin"
715
  msgstr "Voľné pluginy"
716
 
717
- #: contact_form.php:1086
718
  #, fuzzy
719
  msgid "If there is something wrong about it, please contact us"
720
  msgstr "Ak máte akékoľvek otázky kontaktujte nás prostredníctvom"
721
 
722
- #: contact_form.php:1101
723
  msgid "Errors output"
724
  msgstr ""
725
 
726
- #: contact_form.php:1104
727
  msgid "Display error messages"
728
  msgstr ""
729
 
730
- #: contact_form.php:1105
731
  msgid "Color of the input field errors."
732
  msgstr ""
733
 
734
- #: contact_form.php:1106
735
  msgid "Display error messages & color of the input field errors"
736
  msgstr ""
737
 
738
- #: contact_form.php:1111
739
  msgid "Add placeholder to the input blocks"
740
  msgstr ""
741
 
742
- #: contact_form.php:1117
743
  msgid "Add tooltips"
744
  msgstr "Pridať popisky"
745
 
746
- #: contact_form.php:1131
747
  msgid "Email address"
748
  msgstr "Emailová adresa"
749
 
750
- #: contact_form.php:1136
751
  msgid "Phone Number"
752
  msgstr "Tel. číslo"
753
 
754
- #: contact_form.php:1150
755
  msgid "Attachment"
756
  msgstr "Príloha"
757
 
758
- #: contact_form.php:1155
759
  msgid "(powered by bestwebsoft.com)"
760
  msgstr ""
761
 
762
- #: contact_form.php:1160
763
  msgid "Style options"
764
  msgstr "Nastavenie štýlu"
765
 
766
- #: contact_form.php:1163
767
  msgid "Text color"
768
  msgstr ""
769
 
770
- #: contact_form.php:1166
771
- #: contact_form.php:1171
772
- #: contact_form.php:1181
773
- #: contact_form.php:1186
774
- #: contact_form.php:1191
775
- #: contact_form.php:1196
776
- #: contact_form.php:1206
777
- #: contact_form.php:1211
778
- #: contact_form.php:1217
779
- #: contact_form.php:1228
780
- #: contact_form.php:1233
781
- #: contact_form.php:1238
782
  msgid "Default"
783
  msgstr ""
784
 
785
- #: contact_form.php:1168
786
  msgid "Label text color"
787
  msgstr ""
788
 
789
- #: contact_form.php:1173
790
  msgid "Placeholder color"
791
  msgstr ""
792
 
793
- #: contact_form.php:1178
794
  msgid "Errors color"
795
  msgstr ""
796
 
797
- #: contact_form.php:1183
798
  msgid "Error text color"
799
  msgstr ""
800
 
801
- #: contact_form.php:1188
802
  msgid "Background color of the input field errors"
803
  msgstr ""
804
 
805
- #: contact_form.php:1193
806
  msgid "Border color of the input field errors"
807
  msgstr ""
808
 
809
- #: contact_form.php:1198
810
  msgid "Placeholder color of the input field errors"
811
  msgstr ""
812
 
813
- #: contact_form.php:1203
814
  msgid "Input fields"
815
  msgstr "Vložiť polia"
816
 
817
- #: contact_form.php:1208
818
  msgid "Input fields background color"
819
  msgstr ""
820
 
821
- #: contact_form.php:1213
822
  msgid "Text fields color"
823
  msgstr ""
824
 
825
- #: contact_form.php:1215
826
  msgid "Border width in px, numbers only"
827
  msgstr ""
828
 
829
- #: contact_form.php:1219
830
- #: contact_form.php:1240
831
  msgid "Border color"
832
  msgstr ""
833
 
834
- #: contact_form.php:1224
835
  msgid "Submit button"
836
  msgstr "Odoslať"
837
 
838
- #: contact_form.php:1226
839
  msgid "Width in px, numbers only"
840
  msgstr ""
841
 
842
- #: contact_form.php:1230
843
  msgid "Button color"
844
  msgstr ""
845
 
846
- #: contact_form.php:1235
847
  msgid "Button text color"
848
  msgstr ""
849
 
850
- #: contact_form.php:1256
851
  msgid "Contact Form Pro | Preview"
852
  msgstr "Kontaktný formulár Pro | Zobrazenie"
853
 
854
- #: contact_form.php:1259
855
  msgid "Show with errors"
856
  msgstr ""
857
 
858
- #: contact_form.php:1267
859
- #: contact_form.php:1269
860
  msgid "Please enter your full name..."
861
  msgstr ""
862
 
863
- #: contact_form.php:1280
864
- #: contact_form.php:1282
865
  msgid "Please enter your address..."
866
  msgstr ""
867
 
868
- #: contact_form.php:1291
869
- #: contact_form.php:1293
870
  msgid "Please enter your email address..."
871
  msgstr "Prosím zadajte vašu e-mailovú adresu..."
872
 
873
- #: contact_form.php:1302
874
- #: contact_form.php:1304
875
  msgid "Please enter your phone number..."
876
  msgstr ""
877
 
878
- #: contact_form.php:1313
879
- #: contact_form.php:1315
880
  msgid "Please enter subject..."
881
  msgstr ""
882
 
883
- #: contact_form.php:1323
884
- #: contact_form.php:1325
885
  msgid "Please enter your message..."
886
  msgstr ""
887
 
888
- #: contact_form.php:1367
889
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
890
  msgstr ""
891
 
892
- #: contact_form.php:1369
893
  msgid "Please, go to"
894
  msgstr ""
895
 
896
- #: contact_form.php:1369
897
  #, fuzzy
898
  msgid "the setting page"
899
  msgstr "Extra nastavenia"
900
 
901
- #: contact_form.php:1370
902
  msgid "You will be redirected automatically in 5 seconds."
903
  msgstr ""
904
 
905
- #: contact_form.php:1375
906
  msgid "You can download and activate"
907
  msgstr ""
908
 
909
- #: contact_form.php:1377
910
  msgid "version of this plugin by entering Your license key."
911
  msgstr ""
912
 
913
- #: contact_form.php:1379
914
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
915
  msgstr ""
916
 
917
- #: contact_form.php:1381
918
  msgid "(your username is the email you specify when purchasing the product)."
919
  msgstr ""
920
 
921
- #: contact_form.php:1389
922
- #: contact_form.php:1399
923
  msgid "Go!"
924
  msgstr ""
925
 
926
- #: contact_form.php:1449
927
  msgid "Sorry, email message could not be delivered."
928
  msgstr "Prepáčte, správa nemohla byť doručená."
929
 
930
- #: contact_form.php:1835
931
  msgid "Contact from"
932
  msgstr "Kontaktný formulár"
933
 
934
- #: contact_form.php:1848
935
- #: contact_form.php:1874
936
  msgid "Email"
937
  msgstr "E-Mail"
938
 
939
- #: contact_form.php:1852
940
- #: contact_form.php:1876
941
  msgid "Phone"
942
  msgstr "Telefón"
943
 
944
- #: contact_form.php:1861
945
- #: contact_form.php:1879
946
  msgid "Site"
947
  msgstr "Stránka"
948
 
949
- #: contact_form.php:1941
950
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
951
  msgstr "Ak vidíte túto MIME, znamená to, že MIME typ nie je podporovaný vyším e-mailovým klientom!"
952
 
953
- #: contact_form.php:2009
954
  msgid "FAQ"
955
  msgstr "FAQ"
956
 
957
- #: contact_form.php:2010
958
  msgid "Support"
959
  msgstr "Podpora"
960
 
961
- #: contact_form.php:2068
962
  msgid "Are you sure that you want to delete this language data?"
963
  msgstr ""
964
 
965
- #: contact_form.php:2223
966
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
967
  msgstr ""
968
 
969
- #: contact_form.php:2224
970
  msgid "Extend standard plugin functionality with new great options."
971
  msgstr ""
972
 
973
- #: contact_form.php:2233
974
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
975
  msgstr ""
976
 
977
- #: contact_form.php:2234
978
  msgid "Manage messages that have been sent from your website."
979
  msgstr ""
980
 
 
 
 
981
  #~ msgid "Contact Form Pro Extra Settings"
982
  #~ msgstr "Kontaktný formulár Pro Extra - nastavenie"
983
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:41+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:41+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Book Ing <book.ing@zoznam.sk>\n"
9
  "Language: cs_CZ\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  msgid "Contact Form Settings"
22
  msgstr "Nastavenie kontaktného formulára"
23
 
24
+ #: contact_form.php:73
25
  msgid "Contact Form"
26
  msgstr "Kontaktný formulár"
27
 
28
+ #: contact_form.php:149
29
+ #: contact_form.php:1131
30
+ #: contact_form.php:1165
31
  msgid "Name:"
32
  msgstr "Meno:"
33
 
34
+ #: contact_form.php:150
35
+ #: contact_form.php:1132
36
+ #: contact_form.php:1166
37
  msgid "Address:"
38
  msgstr "Adresa::"
39
 
40
+ #: contact_form.php:151
41
+ #: contact_form.php:1133
42
+ #: contact_form.php:1167
43
  msgid "Email Address:"
44
  msgstr "E-Mail:"
45
 
46
+ #: contact_form.php:152
47
+ #: contact_form.php:1134
48
+ #: contact_form.php:1168
49
  msgid "Phone number:"
50
  msgstr ""
51
 
52
+ #: contact_form.php:153
53
+ #: contact_form.php:1135
54
+ #: contact_form.php:1169
55
  msgid "Subject:"
56
  msgstr "Predmet:"
57
 
58
+ #: contact_form.php:154
59
+ #: contact_form.php:1136
60
+ #: contact_form.php:1170
61
  msgid "Message:"
62
  msgstr "Správa:"
63
 
64
+ #: contact_form.php:155
65
+ #: contact_form.php:1137
66
+ #: contact_form.php:1171
67
  msgid "Attachment:"
68
  msgstr "Príloha"
69
 
70
+ #: contact_form.php:156
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr ""
73
 
74
+ #: contact_form.php:157
75
+ #: contact_form.php:1139
76
+ #: contact_form.php:1173
77
  msgid "Send me a copy"
78
  msgstr "Zaslať mi kópiu"
79
 
80
+ #: contact_form.php:158
81
+ #: contact_form.php:1140
82
+ #: contact_form.php:1174
83
  msgid "Submit"
84
  msgstr "Odoslať"
85
 
86
+ #: contact_form.php:159
87
  msgid "Your name is required."
88
  msgstr "Vaše meno je vyžadované."
89
 
90
+ #: contact_form.php:160
91
  msgid "Address is required."
92
  msgstr "Adresa je vyžadovaná."
93
 
94
+ #: contact_form.php:161
95
  msgid "A valid email address is required."
96
  msgstr "Platný E-mail je vyžadovaný."
97
 
98
+ #: contact_form.php:162
99
  msgid "Phone number is required."
100
  msgstr "Telefónne číslo je vyžadované."
101
 
102
+ #: contact_form.php:163
103
  msgid "Subject is required."
104
  msgstr "Predmet je vyžadovaný."
105
 
106
+ #: contact_form.php:164
107
  msgid "Message text is required."
108
  msgstr "Správa je vyžadovaná."
109
 
110
+ #: contact_form.php:165
111
  msgid "File format is not valid."
112
  msgstr "Nesprávny typ súboru."
113
 
114
+ #: contact_form.php:166
115
  msgid "File upload error."
116
  msgstr ""
117
 
118
+ #: contact_form.php:167
119
  msgid "The file could not be uploaded."
120
  msgstr ""
121
 
122
+ #: contact_form.php:168
123
  msgid "This file is too large."
124
  msgstr ""
125
 
126
+ #: contact_form.php:169
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Prosím opíšte CAPTCHA text."
129
 
130
+ #: contact_form.php:170
131
  msgid "Please make corrections below and try again."
132
  msgstr "Prosím opravte chyby a skúste to opäť."
133
 
134
+ #: contact_form.php:172
135
  msgid "Thank you for contacting us."
136
  msgstr "Ďakujeme za správu."
137
 
138
+ #: contact_form.php:322
139
  #, fuzzy
140
  msgid "requires"
141
  msgstr "Vyžadované polia"
142
 
143
+ #: contact_form.php:322
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr ""
146
 
147
+ #: contact_form.php:322
148
  msgid "Back to the WordPress"
149
  msgstr ""
150
 
151
+ #: contact_form.php:322
152
  #, fuzzy
153
  msgid "Plugins page"
154
  msgstr "Pro Plugins"
155
 
156
+ #: contact_form.php:626
157
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
158
  msgstr "Ak je vybratá možnosť \"Presmerovanie na stránku\" potom pole URL by malo mať nasledujúci formát"
159
 
160
+ #: contact_form.php:635
161
  msgid "Such user does not exist. Settings are not saved."
162
  msgstr "Taký užívateľ neexistuje. Nastavenie sa neuloží."
163
 
164
+ #: contact_form.php:639
165
+ #: contact_form.php:645
166
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
167
  msgstr "Zadajte platnú e-mailovú adresu v poli \"Od\". Nastavenie sa neuloží."
168
 
169
+ #: contact_form.php:661
170
  msgid "Settings saved."
171
  msgstr "Nastavenie uložené."
172
 
173
+ #: contact_form.php:688
174
+ #: contact_form.php:720
175
  msgid "Wrong license key"
176
  msgstr ""
177
 
178
+ #: contact_form.php:713
179
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
180
  msgstr ""
181
 
182
+ #: contact_form.php:722
183
  msgid "This license key is bind to another site"
184
  msgstr ""
185
 
186
+ #: contact_form.php:724
187
+ #: contact_form.php:1570
188
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
189
  msgstr ""
190
 
191
+ #: contact_form.php:741
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
 
195
+ #: contact_form.php:747
196
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
+ #: contact_form.php:751
200
+ #: contact_form.php:760
201
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
+ #: contact_form.php:764
205
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
206
  msgstr ""
207
 
208
+ #: contact_form.php:779
209
  #, fuzzy
210
  msgid "Please, enter Your license key"
211
  msgstr "Prosím zadajte vašu e-mailovú adresu..."
212
 
213
+ #: contact_form.php:787
214
+ #: contact_form.php:2216
215
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
216
  msgid "Settings"
217
  msgstr "Nastavenia"
218
 
219
+ #: contact_form.php:788
220
  msgid "Extra settings"
221
  msgstr "Extra nastavenia"
222
 
223
+ #: contact_form.php:789
224
  msgid "Go PRO"
225
  msgstr ""
226
 
227
+ #: contact_form.php:792
228
+ msgid "Notice:"
229
+ msgstr ""
230
+
231
+ #: contact_form.php:792
232
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
233
+ msgstr ""
234
+
235
+ #: contact_form.php:798
236
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
237
+ msgstr ""
238
+
239
+ #: contact_form.php:804
240
+ #: contact_form.php:809
241
+ #: contact_form.php:1529
242
  msgid "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:"
243
  msgstr "Ak by ste chceli pridať kontaktný formulár na svoje webové stránky, stačí skopírovať a vložiť shortcode k príspevku, stránke alebo widgetu:"
244
 
245
+ #: contact_form.php:804
246
+ #: contact_form.php:805
247
+ #: contact_form.php:809
248
+ #: contact_form.php:810
249
+ #: contact_form.php:1155
250
+ #: contact_form.php:1157
251
+ #: contact_form.php:1212
252
+ #: contact_form.php:1214
253
  msgid "or"
254
  msgstr "alebo"
255
 
256
+ #: contact_form.php:805
257
+ #: contact_form.php:810
258
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
259
  msgstr "Ak máte nejaké problémy so štandardným shortcode [contact_form], mali by ste použiť shortcode"
260
 
261
+ #: contact_form.php:806
262
+ #: contact_form.php:811
263
  msgid "They work the same way."
264
  msgstr "Fungujú rovnakým spôsobom."
265
 
266
+ #: contact_form.php:807
267
+ #: contact_form.php:812
268
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
269
  msgstr "Ak necháte pole prázdne, budú správy posielané na e-mailovú adresu zadanú pri registrácii."
270
 
271
+ #: contact_form.php:817
272
  msgid "The user's email address:"
273
  msgstr "Užívateľova e-mailová adresa:"
274
 
275
+ #: contact_form.php:821
276
  msgid "Create a username"
277
  msgstr "Vytvorte užívateľské meno"
278
 
279
+ #: contact_form.php:828
280
  msgid "Enter a username of the person who should get the messages from the contact form."
281
  msgstr "Zadajte užívateľské meno osoby, ktorá by mala dostať správy z kontaktného formulára."
282
 
283
+ #: contact_form.php:832
284
  msgid "Use this email address:"
285
  msgstr "Použíte tento email::"
286
 
287
+ #: contact_form.php:835
288
  msgid "Enter the email address you want the messages forwarded to."
289
  msgstr "Zadajte e-mailovú adresu, ktorú chcete do správy presmerovať."
290
 
291
+ #: contact_form.php:844
292
  msgid "Add department selectbox to the contact form:"
293
  msgstr ""
294
 
295
+ #: contact_form.php:852
296
+ #: contact_form.php:1412
297
  msgid "If you upgrade to Pro version all your settings will be saved."
298
  msgstr ""
299
 
300
+ #: contact_form.php:859
301
+ #: contact_form.php:997
302
+ #: contact_form.php:1071
303
+ #: contact_form.php:1419
304
+ msgid "Unlock premium options by upgrading to a PRO version."
305
  msgstr ""
306
 
307
+ #: contact_form.php:860
308
+ #: contact_form.php:998
309
+ #: contact_form.php:1072
310
+ #: contact_form.php:1420
311
+ #: contact_form.php:2473
312
+ #: contact_form.php:2489
313
+ msgid "Learn More"
314
+ msgstr ""
315
 
316
+ #: contact_form.php:863
317
+ #: contact_form.php:1001
318
+ #: contact_form.php:1075
319
+ #: contact_form.php:1423
320
+ msgid "Go"
321
+ msgstr ""
322
+
323
+ #: contact_form.php:870
324
  msgid "Save emails to the database"
325
  msgstr ""
326
 
327
+ #: contact_form.php:876
328
  msgid "Using"
329
  msgstr ""
330
 
331
+ #: contact_form.php:876
332
+ #: contact_form.php:1048
333
+ #: contact_form.php:1051
334
+ #: contact_form.php:1055
335
  msgid "powered by"
336
  msgstr ""
337
 
338
+ #: contact_form.php:879
339
+ #: contact_form.php:883
340
  msgid "Using Contact Form to DB powered by"
341
  msgstr ""
342
 
343
+ #: contact_form.php:879
344
  #, fuzzy
345
  msgid "Activate Contact Form to DB"
346
  msgstr "Kontaktný formulár Pro"
347
 
348
+ #: contact_form.php:883
349
  #, fuzzy
350
  msgid "Download Contact Form to DB"
351
  msgstr "Kontaktný formulár Pro"
352
 
353
+ #: contact_form.php:888
354
  msgid "Additional options"
355
  msgstr "Ďalšie nastavenia"
356
 
357
+ #: contact_form.php:890
358
  msgid "Show"
359
  msgstr ""
360
 
361
+ #: contact_form.php:891
362
  msgid "Hide"
363
  msgstr ""
364
 
365
+ #: contact_form.php:895
366
  msgid "What to use?"
367
  msgstr "Čo používať?"
368
 
369
+ #: contact_form.php:898
370
  msgid "Wp-mail"
371
  msgstr "Wp-mail"
372
 
373
+ #: contact_form.php:898
374
  msgid "You can use the wp_mail function for mailing"
375
  msgstr "Môžete použiť wp_mail funkcie pre zasielanie"
376
 
377
+ #: contact_form.php:900
378
  msgid "Mail"
379
  msgstr "Mail"
380
 
381
+ #: contact_form.php:900
382
  msgid "To send mail you can use the php mail function"
383
  msgstr "Ak chcete odosielať poštu, môžete použiť e-mailoé PHP funkcie"
384
 
385
+ #: contact_form.php:904
386
  #, fuzzy
387
  msgid "The text in the 'From' field"
388
  msgstr "Zmena textu pola \"od\""
389
 
390
+ #: contact_form.php:906
391
  msgid "User name"
392
  msgstr ""
393
 
394
+ #: contact_form.php:907
395
  msgid "The name of the user who fills the form will be used in the field 'From'."
396
  msgstr ""
397
 
398
+ #: contact_form.php:910
399
  #, fuzzy
400
  msgid "This text will be used in the 'FROM' field"
401
  msgstr "Táto e-mailová adresa bude použitá v poli 'od'."
402
 
403
+ #: contact_form.php:914
404
  #, fuzzy
405
  msgid "The email address in the 'From' field"
406
  msgstr "Zadajte e-mailovú adresu v poli \"od\""
407
 
408
+ #: contact_form.php:916
409
  msgid "User email"
410
  msgstr ""
411
 
412
+ #: contact_form.php:917
413
  msgid "The email address of the user who fills the form will be used in the field 'From'."
414
  msgstr ""
415
 
416
+ #: contact_form.php:920
417
  msgid "This email address will be used in the 'From' field."
418
  msgstr "Táto e-mailová adresa bude použitá v poli 'od'."
419
 
420
+ #: contact_form.php:924
421
  #, fuzzy
422
  msgid "Required symbol"
423
  msgstr "Vyžadované polia"
424
 
425
+ #: contact_form.php:934
426
  msgid "Fields"
427
  msgstr ""
428
 
429
+ #: contact_form.php:935
430
  msgid "Used"
431
  msgstr ""
432
 
433
+ #: contact_form.php:936
434
  #, fuzzy
435
  msgid "Required"
436
  msgstr "Vyžadované polia"
437
 
438
+ #: contact_form.php:937
439
  msgid "Visible"
440
  msgstr ""
441
 
442
+ #: contact_form.php:938
443
  msgid "Disabled for editing"
444
  msgstr ""
445
 
446
+ #: contact_form.php:939
447
  msgid "Field's default value"
448
  msgstr ""
449
 
450
+ #: contact_form.php:944
451
+ #: contact_form.php:1287
452
+ #: contact_form.php:2059
453
+ #: contact_form.php:2089
454
  msgid "Name"
455
  msgstr "Meno"
456
 
457
+ #: contact_form.php:952
458
+ #: contact_form.php:1292
459
+ #: contact_form.php:2063
460
+ #: contact_form.php:2091
461
  msgid "Address"
462
  msgstr "Adresa"
463
 
464
+ #: contact_form.php:960
465
  msgid "Email Address"
466
  msgstr "Emailová adresa"
467
 
468
+ #: contact_form.php:968
469
  #, fuzzy
470
  msgid "Phone number"
471
  msgstr "Tel. číslo"
472
 
473
+ #: contact_form.php:976
474
+ #: contact_form.php:1307
475
+ #: contact_form.php:2073
476
+ #: contact_form.php:2095
477
  msgid "Subject"
478
  msgstr "Predmet"
479
 
480
+ #: contact_form.php:984
481
+ #: contact_form.php:1311
482
+ #: contact_form.php:2076
483
+ #: contact_form.php:2096
484
  msgid "Message"
485
  msgstr "Správa"
486
 
487
+ #: contact_form.php:1008
488
  msgid "Attachment block"
489
  msgstr "Blok príloh"
490
 
491
+ #: contact_form.php:1010
492
  msgid "Users can attach the following file formats"
493
  msgstr "Užívatelia môžu pripojiť nasledujúce formáty súborov"
494
 
495
+ #: contact_form.php:1023
496
  msgid "Add to the form"
497
  msgstr ""
498
 
499
+ #: contact_form.php:1028
500
  #, fuzzy
501
  msgid "Tips below the Attachment"
502
  msgstr "Zobrazenie tipov pod blokom príloh"
503
 
504
+ #: contact_form.php:1037
505
  #, fuzzy
506
  msgid "'Send me a copy' block"
507
  msgstr "Zobraz 'Zaslať kópiu' blok"
508
 
509
+ #: contact_form.php:1048
510
+ #: contact_form.php:1051
511
+ #: contact_form.php:1055
512
+ #: contact_form.php:1321
513
  msgid "Captcha"
514
  msgstr ""
515
 
516
+ #: contact_form.php:1051
517
  msgid "Activate captcha"
518
  msgstr "Aktivovať captcha"
519
 
520
+ #: contact_form.php:1055
521
  msgid "Download captcha"
522
  msgstr "Stiahnuť captcha"
523
 
524
+ #: contact_form.php:1063
525
  msgid "Agreement checkbox"
526
  msgstr ""
527
 
528
+ #: contact_form.php:1063
529
  msgid "Required checkbox for submitting the form"
530
  msgstr ""
531
 
532
+ #: contact_form.php:1064
533
  msgid "Optional checkbox"
534
  msgstr ""
535
 
536
+ #: contact_form.php:1064
537
  msgid "Optional checkbox, the results of which will be displayed in email"
538
  msgstr ""
539
 
540
+ #: contact_form.php:1081
541
  msgid "Delete an attachment file from the server after the email is sent"
542
  msgstr ""
543
 
544
+ #: contact_form.php:1087
545
  msgid "Email in HTML format sending"
546
  msgstr ""
547
 
548
+ #: contact_form.php:1091
549
  msgid "Display additional info in the email"
550
  msgstr "Zobraziť ďalšie informácie v e-maile"
551
 
552
+ #: contact_form.php:1096
553
+ #: contact_form.php:2026
554
+ #: contact_form.php:2028
555
  msgid "Sent from (ip address)"
556
  msgstr "Odoslané z (ip adresa)"
557
 
558
+ #: contact_form.php:1096
559
  #, fuzzy
560
  msgid "Example: Sent from (IP address):\t127.0.0.1"
561
  msgstr "Odoslané z (ip adresa)"
562
 
563
+ #: contact_form.php:1097
564
+ #: contact_form.php:2032
565
+ #: contact_form.php:2034
566
  msgid "Date/Time"
567
  msgstr "Datum / Čas"
568
 
569
+ #: contact_form.php:1097
570
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
571
  msgstr ""
572
 
573
+ #: contact_form.php:1098
574
+ #: contact_form.php:2038
575
+ #: contact_form.php:2040
576
  msgid "Sent from (referer)"
577
  msgstr "Odoslané z"
578
 
579
+ #: contact_form.php:1098
580
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
581
  msgstr ""
582
 
583
+ #: contact_form.php:1099
584
+ #: contact_form.php:2044
585
+ #: contact_form.php:2046
586
  msgid "Using (user agent)"
587
  msgstr "Použitie (user agent)"
588
 
589
+ #: contact_form.php:1099
590
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
591
  msgstr ""
592
 
593
+ #: contact_form.php:1103
594
  msgid "Language settings for the field names in the form"
595
  msgstr "Nastavenie jazyka pre názvy polí vo formulári"
596
 
597
+ #: contact_form.php:1112
598
  msgid "Add a language"
599
  msgstr "Pridať jazyk"
600
 
601
+ #: contact_form.php:1116
602
  msgid "Change the names of the contact form fields and error messages"
603
  msgstr "Zmena názvov polí kontaktného formulára a chybových hlásení"
604
 
605
+ #: contact_form.php:1121
606
+ #: contact_form.php:1202
607
  msgid "English"
608
  msgstr ""
609
 
610
+ #: contact_form.php:1129
611
+ #: contact_form.php:1163
612
  msgid "click to expand/hide the list"
613
  msgstr ""
614
 
615
+ #: contact_form.php:1138
616
+ #: contact_form.php:1172
617
  #, fuzzy
618
  msgid "Tips below the Attachment block"
619
  msgstr "Zobrazenie tipov pod blokom príloh"
620
 
621
+ #: contact_form.php:1141
622
+ #: contact_form.php:1175
623
  msgid "Error message for the Name field"
624
  msgstr ""
625
 
626
+ #: contact_form.php:1142
627
+ #: contact_form.php:1176
628
  msgid "Error message for the Address field"
629
  msgstr ""
630
 
631
+ #: contact_form.php:1143
632
+ #: contact_form.php:1177
633
  msgid "Error message for the Email field"
634
  msgstr ""
635
 
636
+ #: contact_form.php:1144
637
+ #: contact_form.php:1178
638
  msgid "Error message for the Phone field"
639
  msgstr ""
640
 
641
+ #: contact_form.php:1145
642
+ #: contact_form.php:1179
643
  msgid "Error message for the Subject field"
644
  msgstr ""
645
 
646
+ #: contact_form.php:1146
647
+ #: contact_form.php:1180
648
  msgid "Error message for the Message field"
649
  msgstr ""
650
 
651
+ #: contact_form.php:1147
652
+ #: contact_form.php:1181
653
  msgid "Error message about the file type for the Attachment field"
654
  msgstr ""
655
 
656
+ #: contact_form.php:1148
657
+ #: contact_form.php:1182
658
  msgid "Error message while uploading a file for the Attachment field to the server"
659
  msgstr ""
660
 
661
+ #: contact_form.php:1149
662
+ #: contact_form.php:1183
663
  msgid "Error message while moving the file for the Attachment field"
664
  msgstr ""
665
 
666
+ #: contact_form.php:1150
667
+ #: contact_form.php:1184
668
  msgid "Error message when file size limit for the Attachment field is exceeded"
669
  msgstr ""
670
 
671
+ #: contact_form.php:1151
672
+ #: contact_form.php:1185
673
  msgid "Error message for the Captcha field"
674
  msgstr ""
675
 
676
+ #: contact_form.php:1152
677
+ #: contact_form.php:1186
678
  msgid "Error message for the whole form"
679
  msgstr ""
680
 
681
+ #: contact_form.php:1155
682
+ #: contact_form.php:1157
683
+ #: contact_form.php:1189
684
+ #: contact_form.php:1191
685
+ #: contact_form.php:1212
686
+ #: contact_form.php:1214
687
+ #: contact_form.php:1222
688
+ #: contact_form.php:1224
689
  msgid "Use shortcode"
690
  msgstr "Použite shortcode "
691
 
692
+ #: contact_form.php:1155
693
+ #: contact_form.php:1157
694
+ #: contact_form.php:1189
695
+ #: contact_form.php:1191
696
+ #: contact_form.php:1212
697
+ #: contact_form.php:1214
698
+ #: contact_form.php:1222
699
+ #: contact_form.php:1224
700
  msgid "for this language"
701
  msgstr "pre tento jazyk"
702
 
703
+ #: contact_form.php:1199
704
  msgid "Action after email is sent"
705
  msgstr "Akcia po zaslaní mailu."
706
 
707
+ #: contact_form.php:1201
708
  msgid "Display text"
709
  msgstr "Zobraziť text"
710
 
711
+ #: contact_form.php:1210
712
+ #: contact_form.php:1220
713
  msgid "Text"
714
  msgstr "Text"
715
 
716
+ #: contact_form.php:1231
717
  msgid "Redirect to the page"
718
  msgstr "Presmerovať na stránku"
719
 
720
+ #: contact_form.php:1232
721
  msgid "Url"
722
  msgstr "Url"
723
 
724
+ #: contact_form.php:1236
725
  msgid "The $_SERVER variable that is used to build a URL of the form"
726
  msgstr ""
727
 
728
+ #: contact_form.php:1240
729
  msgid "If you are not sure whether to change this setting or not, please do not do that."
730
  msgstr ""
731
 
732
+ #: contact_form.php:1246
733
+ #: contact_form.php:1430
734
  msgid "Save Changes"
735
  msgstr "Uložiť zmeny"
736
 
737
+ #: contact_form.php:1251
738
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
739
  msgstr ""
740
 
741
+ #: contact_form.php:1252
742
  #, fuzzy
743
  msgid "Rate the plugin"
744
  msgstr "Voľné pluginy"
745
 
746
+ #: contact_form.php:1255
747
  #, fuzzy
748
  msgid "If there is something wrong about it, please contact us"
749
  msgstr "Ak máte akékoľvek otázky kontaktujte nás prostredníctvom"
750
 
751
+ #: contact_form.php:1267
752
  msgid "Errors output"
753
  msgstr ""
754
 
755
+ #: contact_form.php:1270
756
  msgid "Display error messages"
757
  msgstr ""
758
 
759
+ #: contact_form.php:1271
760
  msgid "Color of the input field errors."
761
  msgstr ""
762
 
763
+ #: contact_form.php:1272
764
  msgid "Display error messages & color of the input field errors"
765
  msgstr ""
766
 
767
+ #: contact_form.php:1277
768
  msgid "Add placeholder to the input blocks"
769
  msgstr ""
770
 
771
+ #: contact_form.php:1283
772
  msgid "Add tooltips"
773
  msgstr "Pridať popisky"
774
 
775
+ #: contact_form.php:1297
776
  msgid "Email address"
777
  msgstr "Emailová adresa"
778
 
779
+ #: contact_form.php:1302
780
  msgid "Phone Number"
781
  msgstr "Tel. číslo"
782
 
783
+ #: contact_form.php:1316
784
  msgid "Attachment"
785
  msgstr "Príloha"
786
 
787
+ #: contact_form.php:1321
788
  msgid "(powered by bestwebsoft.com)"
789
  msgstr ""
790
 
791
+ #: contact_form.php:1326
792
  msgid "Style options"
793
  msgstr "Nastavenie štýlu"
794
 
795
+ #: contact_form.php:1329
796
  msgid "Text color"
797
  msgstr ""
798
 
799
+ #: contact_form.php:1332
800
+ #: contact_form.php:1337
801
+ #: contact_form.php:1347
802
+ #: contact_form.php:1352
803
+ #: contact_form.php:1357
804
+ #: contact_form.php:1362
805
+ #: contact_form.php:1372
806
+ #: contact_form.php:1377
807
+ #: contact_form.php:1383
808
+ #: contact_form.php:1394
809
+ #: contact_form.php:1399
810
+ #: contact_form.php:1404
811
  msgid "Default"
812
  msgstr ""
813
 
814
+ #: contact_form.php:1334
815
  msgid "Label text color"
816
  msgstr ""
817
 
818
+ #: contact_form.php:1339
819
  msgid "Placeholder color"
820
  msgstr ""
821
 
822
+ #: contact_form.php:1344
823
  msgid "Errors color"
824
  msgstr ""
825
 
826
+ #: contact_form.php:1349
827
  msgid "Error text color"
828
  msgstr ""
829
 
830
+ #: contact_form.php:1354
831
  msgid "Background color of the input field errors"
832
  msgstr ""
833
 
834
+ #: contact_form.php:1359
835
  msgid "Border color of the input field errors"
836
  msgstr ""
837
 
838
+ #: contact_form.php:1364
839
  msgid "Placeholder color of the input field errors"
840
  msgstr ""
841
 
842
+ #: contact_form.php:1369
843
  msgid "Input fields"
844
  msgstr "Vložiť polia"
845
 
846
+ #: contact_form.php:1374
847
  msgid "Input fields background color"
848
  msgstr ""
849
 
850
+ #: contact_form.php:1379
851
  msgid "Text fields color"
852
  msgstr ""
853
 
854
+ #: contact_form.php:1381
855
  msgid "Border width in px, numbers only"
856
  msgstr ""
857
 
858
+ #: contact_form.php:1385
859
+ #: contact_form.php:1406
860
  msgid "Border color"
861
  msgstr ""
862
 
863
+ #: contact_form.php:1390
864
  msgid "Submit button"
865
  msgstr "Odoslať"
866
 
867
+ #: contact_form.php:1392
868
  msgid "Width in px, numbers only"
869
  msgstr ""
870
 
871
+ #: contact_form.php:1396
872
  msgid "Button color"
873
  msgstr ""
874
 
875
+ #: contact_form.php:1401
876
  msgid "Button text color"
877
  msgstr ""
878
 
879
+ #: contact_form.php:1434
880
  msgid "Contact Form Pro | Preview"
881
  msgstr "Kontaktný formulár Pro | Zobrazenie"
882
 
883
+ #: contact_form.php:1437
884
  msgid "Show with errors"
885
  msgstr ""
886
 
887
+ #: contact_form.php:1445
888
+ #: contact_form.php:1447
889
  msgid "Please enter your full name..."
890
  msgstr ""
891
 
892
+ #: contact_form.php:1458
893
+ #: contact_form.php:1460
894
  msgid "Please enter your address..."
895
  msgstr ""
896
 
897
+ #: contact_form.php:1469
898
+ #: contact_form.php:1471
899
  msgid "Please enter your email address..."
900
  msgstr "Prosím zadajte vašu e-mailovú adresu..."
901
 
902
+ #: contact_form.php:1480
903
+ #: contact_form.php:1482
904
  msgid "Please enter your phone number..."
905
  msgstr ""
906
 
907
+ #: contact_form.php:1491
908
+ #: contact_form.php:1493
909
  msgid "Please enter subject..."
910
  msgstr ""
911
 
912
+ #: contact_form.php:1501
913
+ #: contact_form.php:1503
914
  msgid "Please enter your message..."
915
  msgstr ""
916
 
917
+ #: contact_form.php:1545
918
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
919
  msgstr ""
920
 
921
+ #: contact_form.php:1547
922
  msgid "Please, go to"
923
  msgstr ""
924
 
925
+ #: contact_form.php:1547
926
  #, fuzzy
927
  msgid "the setting page"
928
  msgstr "Extra nastavenia"
929
 
930
+ #: contact_form.php:1548
931
  msgid "You will be redirected automatically in 5 seconds."
932
  msgstr ""
933
 
934
+ #: contact_form.php:1553
935
  msgid "You can download and activate"
936
  msgstr ""
937
 
938
+ #: contact_form.php:1555
939
  msgid "version of this plugin by entering Your license key."
940
  msgstr ""
941
 
942
+ #: contact_form.php:1557
943
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
944
  msgstr ""
945
 
946
+ #: contact_form.php:1559
947
  msgid "(your username is the email you specify when purchasing the product)."
948
  msgstr ""
949
 
950
+ #: contact_form.php:1567
951
+ #: contact_form.php:1577
952
  msgid "Go!"
953
  msgstr ""
954
 
955
+ #: contact_form.php:1647
956
  msgid "Sorry, email message could not be delivered."
957
  msgstr "Prepáčte, správa nemohla byť doručená."
958
 
959
+ #: contact_form.php:2053
960
  msgid "Contact from"
961
  msgstr "Kontaktný formulár"
962
 
963
+ #: contact_form.php:2066
964
+ #: contact_form.php:2092
965
  msgid "Email"
966
  msgstr "E-Mail"
967
 
968
+ #: contact_form.php:2070
969
+ #: contact_form.php:2094
970
  msgid "Phone"
971
  msgstr "Telefón"
972
 
973
+ #: contact_form.php:2079
974
+ #: contact_form.php:2097
975
  msgid "Site"
976
  msgstr "Stránka"
977
 
978
+ #: contact_form.php:2160
979
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
980
  msgstr "Ak vidíte túto MIME, znamená to, že MIME typ nie je podporovaný vyším e-mailovým klientom!"
981
 
982
+ #: contact_form.php:2229
983
  msgid "FAQ"
984
  msgstr "FAQ"
985
 
986
+ #: contact_form.php:2230
987
  msgid "Support"
988
  msgstr "Podpora"
989
 
990
+ #: contact_form.php:2280
991
  msgid "Are you sure that you want to delete this language data?"
992
  msgstr ""
993
 
994
+ #: contact_form.php:2476
995
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
996
  msgstr ""
997
 
998
+ #: contact_form.php:2477
999
  msgid "Extend standard plugin functionality with new great options."
1000
  msgstr ""
1001
 
1002
+ #: contact_form.php:2492
1003
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1004
  msgstr ""
1005
 
1006
+ #: contact_form.php:2493
1007
  msgid "Manage messages that have been sent from your website."
1008
  msgstr ""
1009
 
1010
+ #~ msgid "Contact Form Pro"
1011
+ #~ msgstr "Kontaktný formulár Pro"
1012
+
1013
  #~ msgid "Contact Form Pro Extra Settings"
1014
  #~ msgstr "Kontaktný formulár Pro Extra - nastavenie"
1015
 
languages/contact_form-sr_RS.mo CHANGED
Binary file
languages/contact_form-sr_RS.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: 2014-02-20 14:07+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:07+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Georgijevic Team <http://www.georgijevic.info>\n"
9
  "Language: sr_RS\n"
@@ -16,999 +16,1031 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Opcije Kontakt Forme"
24
 
25
- #: contact_form.php:33
26
  msgid "Contact Form"
27
  msgstr "Kontakt Forma"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:978
31
- #: contact_form.php:1008
32
  msgid "Name:"
33
  msgstr "Ime:"
34
 
35
- #: contact_form.php:81
36
- #: contact_form.php:979
37
- #: contact_form.php:1009
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "E-mail Adresa:"
41
 
42
- #: contact_form.php:82
43
- #: contact_form.php:980
44
- #: contact_form.php:1010
45
  msgid "Email Address:"
46
  msgstr "E-mail Adresa:"
47
 
48
- #: contact_form.php:83
49
- #: contact_form.php:981
50
- #: contact_form.php:1011
51
  msgid "Phone number:"
52
  msgstr "Broj telefona"
53
 
54
- #: contact_form.php:84
55
- #: contact_form.php:982
56
- #: contact_form.php:1012
57
  msgid "Subject:"
58
  msgstr "Tema:"
59
 
60
- #: contact_form.php:85
61
- #: contact_form.php:983
62
- #: contact_form.php:1013
63
  msgid "Message:"
64
  msgstr "Poruka:"
65
 
66
- #: contact_form.php:86
67
- #: contact_form.php:984
68
- #: contact_form.php:1014
69
  msgid "Attachment:"
70
  msgstr "Priveži fajl:"
71
 
72
- #: contact_form.php:87
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
- #: contact_form.php:88
77
- #: contact_form.php:986
78
- #: contact_form.php:1016
79
  msgid "Send me a copy"
80
  msgstr "Pošalji mi kopiju"
81
 
82
- #: contact_form.php:89
83
- #: contact_form.php:987
84
- #: contact_form.php:1017
85
  msgid "Submit"
86
  msgstr "Podnesi"
87
 
88
- #: contact_form.php:90
89
  msgid "Your name is required."
90
  msgstr "Vaše ime je potrebno."
91
 
92
- #: contact_form.php:91
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "Ispravna e-mail adresa potrebna."
96
 
97
- #: contact_form.php:92
98
  #, fuzzy
99
  msgid "A valid email address is required."
100
  msgstr "Ispravna e-mail adresa potrebna."
101
 
102
- #: contact_form.php:93
103
  msgid "Phone number is required."
104
  msgstr "Broj telefona je potreban."
105
 
106
- #: contact_form.php:94
107
  msgid "Subject is required."
108
  msgstr "Tekst Teme je potreban."
109
 
110
- #: contact_form.php:95
111
  msgid "Message text is required."
112
  msgstr "Tekst poruke je potreban."
113
 
114
- #: contact_form.php:96
115
  msgid "File format is not valid."
116
  msgstr "Privezak ne radi"
117
 
118
- #: contact_form.php:97
119
  msgid "File upload error."
120
  msgstr ""
121
 
122
- #: contact_form.php:98
123
  msgid "The file could not be uploaded."
124
  msgstr ""
125
 
126
- #: contact_form.php:99
127
  msgid "This file is too large."
128
  msgstr ""
129
 
130
- #: contact_form.php:100
131
  msgid "Please fill out the CAPTCHA."
132
  msgstr "Molimo vas popunite CAPTCHA."
133
 
134
- #: contact_form.php:101
135
  msgid "Please make corrections below and try again."
136
  msgstr "Molimo vas da izvršite izmene ispod i pokušate ponovo."
137
 
138
- #: contact_form.php:103
139
  msgid "Thank you for contacting us."
140
  msgstr "Hvala što ste nas kontaktirali."
141
 
142
- #: contact_form.php:203
143
  #, fuzzy
144
  msgid "requires"
145
  msgstr "Zahtevana polja"
146
 
147
- #: contact_form.php:203
148
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
149
  msgstr ""
150
 
151
- #: contact_form.php:203
152
  msgid "Back to the WordPress"
153
  msgstr ""
154
 
155
- #: contact_form.php:203
156
  #, fuzzy
157
  msgid "Plugins page"
158
  msgstr "BWS Dodaci"
159
 
160
- #: contact_form.php:494
161
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
162
  msgstr "Ako opcija 'Prosledi na stranu' je izabrana onda polje za URL možete popuniti u sledećem formatu"
163
 
164
- #: contact_form.php:503
165
  msgid "Such user does not exist. Settings are not saved."
166
  msgstr "Takav korisnik ne postoji. Podešavanja nisu sačuvana"
167
 
168
- #: contact_form.php:507
169
- #: contact_form.php:513
170
  #, fuzzy
171
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
172
  msgstr "Molim Vas unesite ispravan mejl u polje 'OD'. Podešavanja nisu sačuvana."
173
 
174
- #: contact_form.php:518
175
  #, fuzzy
176
  msgid "Settings saved."
177
  msgstr "Opcije sačuvane"
178
 
179
- #: contact_form.php:554
180
- #: contact_form.php:593
181
  msgid "Wrong license key"
182
  msgstr ""
183
 
184
- #: contact_form.php:586
185
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
186
  msgstr ""
187
 
188
- #: contact_form.php:595
189
  msgid "This license key is bind to another site"
190
  msgstr ""
191
 
192
- #: contact_form.php:597
193
- #: contact_form.php:1392
194
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
195
  msgstr ""
196
 
197
- #: contact_form.php:615
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
 
201
- #: contact_form.php:621
202
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
203
  msgstr ""
204
 
205
- #: contact_form.php:625
206
- #: contact_form.php:634
207
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
208
  msgstr ""
209
 
210
- #: contact_form.php:638
211
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
212
  msgstr ""
213
 
214
- #: contact_form.php:653
215
  #, fuzzy
216
  msgid "Please, enter Your license key"
217
  msgstr "Koristi ovaj mejl:"
218
 
219
- #: contact_form.php:662
220
- msgid "Notice:"
221
- msgstr ""
222
-
223
- #: contact_form.php:662
224
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
225
- msgstr ""
226
-
227
- #: contact_form.php:665
228
- #: contact_form.php:1997
229
- #: contact_form.php:2008
230
  msgid "Settings"
231
  msgstr "Podešavanja"
232
 
233
- #: contact_form.php:666
234
  #, fuzzy
235
  msgid "Extra settings"
236
  msgstr "Podešavanja"
237
 
238
- #: contact_form.php:667
239
  msgid "Go PRO"
240
  msgstr ""
241
 
242
- #: contact_form.php:673
243
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgid "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:"
245
  msgstr "Ako želite da dodate Kontakt Formu na vaš veb sajt, jednostavno iskopirajte ovaj kratak kod na vašu stranu, članak ili vidžet:"
246
 
247
- #: contact_form.php:673
248
- #: contact_form.php:674
249
- #: contact_form.php:1001
250
- #: contact_form.php:1050
 
 
 
 
251
  msgid "or"
252
  msgstr ""
253
 
254
- #: contact_form.php:674
 
255
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
256
  msgstr ""
257
 
258
- #: contact_form.php:675
 
259
  msgid "They work the same way."
260
  msgstr ""
261
 
262
- #: contact_form.php:676
 
263
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
264
  msgstr "Ako je polje za podatke ispod prazno tada će poruka biti poslata na adresu koja je navedena prilikom registracije."
265
 
266
- #: contact_form.php:680
267
  msgid "The user's email address:"
268
  msgstr "Koristi mejl wordpress korisnika:"
269
 
270
- #: contact_form.php:684
271
  msgid "Create a username"
272
  msgstr "Odaberi korisničko ime"
273
 
274
- #: contact_form.php:689
275
  msgid "Enter a username of the person who should get the messages from the contact form."
276
  msgstr "Podesi ime korisnika koji će primiti poruku sa ove kontakt forme."
277
 
278
- #: contact_form.php:693
279
  msgid "Use this email address:"
280
  msgstr "Koristi ovaj mejl:"
281
 
282
- #: contact_form.php:696
283
  msgid "Enter the email address you want the messages forwarded to."
284
  msgstr "Podesi mejl adresu koja će biti korišćena za prijem poruka."
285
 
286
- #: contact_form.php:702
287
  msgid "Add department selectbox to the contact form:"
288
  msgstr ""
289
 
290
- #: contact_form.php:710
291
- #: contact_form.php:1246
292
  msgid "If you upgrade to Pro version all your settings will be saved."
293
  msgstr ""
294
 
295
- #: contact_form.php:715
296
- #: contact_form.php:852
297
- #: contact_form.php:923
298
- #: contact_form.php:1096
299
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
300
  msgstr ""
301
 
302
- #: contact_form.php:716
303
- #: contact_form.php:853
304
- #: contact_form.php:924
305
- #: contact_form.php:1097
306
- #, fuzzy
307
- msgid "Contact Form Pro"
308
- msgstr "Kontakt Forma"
 
309
 
310
- #: contact_form.php:722
 
 
 
 
 
 
 
311
  msgid "Save emails to the database"
312
  msgstr ""
313
 
314
- #: contact_form.php:732
315
  msgid "Using"
316
  msgstr ""
317
 
318
- #: contact_form.php:732
319
- #: contact_form.php:901
320
- #: contact_form.php:904
321
- #: contact_form.php:908
322
  msgid "powered by"
323
  msgstr ""
324
 
325
- #: contact_form.php:735
326
- #: contact_form.php:739
327
  msgid "Using Contact Form to DB powered by"
328
  msgstr ""
329
 
330
- #: contact_form.php:735
331
  #, fuzzy
332
  msgid "Activate Contact Form to DB"
333
  msgstr "Kontakt Forma"
334
 
335
- #: contact_form.php:739
336
  #, fuzzy
337
  msgid "Download Contact Form to DB"
338
  msgstr "Kontakt Forma"
339
 
340
- #: contact_form.php:744
341
  msgid "Additional options"
342
  msgstr "Dodatne opcije"
343
 
344
- #: contact_form.php:746
345
  msgid "Show"
346
  msgstr ""
347
 
348
- #: contact_form.php:747
349
  msgid "Hide"
350
  msgstr ""
351
 
352
- #: contact_form.php:751
353
  msgid "What to use?"
354
  msgstr "Šta koristite?"
355
 
356
- #: contact_form.php:754
357
  msgid "Wp-mail"
358
  msgstr "Wp-mail"
359
 
360
- #: contact_form.php:754
361
  msgid "You can use the wp_mail function for mailing"
362
  msgstr "Da biste poslali mejl možete koristiti wordpress-ovu wp_mail funkciju"
363
 
364
- #: contact_form.php:756
365
  msgid "Mail"
366
  msgstr "Mail"
367
 
368
- #: contact_form.php:756
369
  msgid "To send mail you can use the php mail function"
370
  msgstr "Da biste poslali mejl možete koristiti php mail funkciju"
371
 
372
- #: contact_form.php:760
373
  #, fuzzy
374
  msgid "The text in the 'From' field"
375
  msgstr "Promeni tekst 'OD' polja u kontakt formi"
376
 
377
- #: contact_form.php:762
378
  msgid "User name"
379
  msgstr ""
380
 
381
- #: contact_form.php:763
382
  #, fuzzy
383
  msgid "The name of the user who fills the form will be used in the field 'From'."
384
  msgstr "Mejl adresa korisnika koji je popunio polja će se koristiti u polju 'OD'"
385
 
386
- #: contact_form.php:766
387
  #, fuzzy
388
  msgid "This text will be used in the 'FROM' field"
389
  msgstr "Ova mejl adresa će biti korišćena u polju 'OD'"
390
 
391
- #: contact_form.php:770
392
  #, fuzzy
393
  msgid "The email address in the 'From' field"
394
  msgstr "Unesi mejl adresu u polje 'OD'"
395
 
396
- #: contact_form.php:772
397
  msgid "User email"
398
  msgstr ""
399
 
400
- #: contact_form.php:773
401
  #, fuzzy
402
  msgid "The email address of the user who fills the form will be used in the field 'From'."
403
  msgstr "Mejl adresa korisnika koji je popunio polja će se koristiti u polju 'OD'"
404
 
405
- #: contact_form.php:776
406
  msgid "This email address will be used in the 'From' field."
407
  msgstr "Ova mejl adresa će biti korišćena u polju 'OD'"
408
 
409
- #: contact_form.php:780
410
  #, fuzzy
411
  msgid "Required symbol"
412
  msgstr "Zahtevana polja"
413
 
414
- #: contact_form.php:790
415
  msgid "Fields"
416
  msgstr ""
417
 
418
- #: contact_form.php:791
419
  msgid "Used"
420
  msgstr ""
421
 
422
- #: contact_form.php:792
423
  #, fuzzy
424
  msgid "Required"
425
  msgstr "Zahtevana polja"
426
 
427
- #: contact_form.php:793
428
  msgid "Visible"
429
  msgstr ""
430
 
431
- #: contact_form.php:794
432
  msgid "Disabled for editing"
433
  msgstr ""
434
 
435
- #: contact_form.php:795
436
  msgid "Field's default value"
437
  msgstr ""
438
 
439
- #: contact_form.php:800
440
- #: contact_form.php:1121
441
- #: contact_form.php:1841
442
- #: contact_form.php:1871
443
  msgid "Name"
444
  msgstr "Ime"
445
 
446
- #: contact_form.php:808
447
- #: contact_form.php:1126
448
- #: contact_form.php:1845
449
- #: contact_form.php:1873
450
  #, fuzzy
451
  msgid "Address"
452
  msgstr "E-mail Adresa:"
453
 
454
- #: contact_form.php:816
455
  #, fuzzy
456
  msgid "Email Address"
457
  msgstr "E-mail Adresa:"
458
 
459
- #: contact_form.php:824
460
  #, fuzzy
461
  msgid "Phone number"
462
  msgstr "Broj telefona"
463
 
464
- #: contact_form.php:832
465
- #: contact_form.php:1141
466
- #: contact_form.php:1855
467
- #: contact_form.php:1877
468
  msgid "Subject"
469
  msgstr "Tema"
470
 
471
- #: contact_form.php:840
472
- #: contact_form.php:1145
473
- #: contact_form.php:1858
474
- #: contact_form.php:1878
475
  msgid "Message"
476
  msgstr "Poruka"
477
 
478
- #: contact_form.php:858
479
  #, fuzzy
480
  msgid "Attachment block"
481
  msgstr "Prikaži blok privezaka"
482
 
483
- #: contact_form.php:860
484
  msgid "Users can attach the following file formats"
485
  msgstr "Korisnici mogu privezivati fajlove sledećih tipova"
486
 
487
- #: contact_form.php:874
488
  msgid "Add to the form"
489
  msgstr ""
490
 
491
- #: contact_form.php:879
492
  #, fuzzy
493
  msgid "Tips below the Attachment"
494
  msgstr "Prikaži objašnjenja posle bloka Privezaka"
495
 
496
- #: contact_form.php:888
497
  #, fuzzy
498
  msgid "'Send me a copy' block"
499
  msgstr "Prikaži Pošalji mi kopiju blok"
500
 
501
- #: contact_form.php:901
502
- #: contact_form.php:904
503
- #: contact_form.php:908
504
- #: contact_form.php:1155
505
  msgid "Captcha"
506
  msgstr ""
507
 
508
- #: contact_form.php:904
509
  #, fuzzy
510
  msgid "Activate captcha"
511
  msgstr "Aktivni dodaci"
512
 
513
- #: contact_form.php:908
514
  #, fuzzy
515
  msgid "Download captcha"
516
  msgstr "Preuzmi"
517
 
518
- #: contact_form.php:916
519
  msgid "Agreement checkbox"
520
  msgstr ""
521
 
522
- #: contact_form.php:916
523
  msgid "Required checkbox for submitting the form"
524
  msgstr ""
525
 
526
- #: contact_form.php:917
527
  msgid "Optional checkbox"
528
  msgstr ""
529
 
530
- #: contact_form.php:917
531
  msgid "Optional checkbox, the results of which will be displayed in email"
532
  msgstr ""
533
 
534
- #: contact_form.php:928
535
  msgid "Delete an attachment file from the server after the email is sent"
536
  msgstr ""
537
 
538
- #: contact_form.php:934
539
  msgid "Email in HTML format sending"
540
  msgstr ""
541
 
542
- #: contact_form.php:938
543
  #, fuzzy
544
  msgid "Display additional info in the email"
545
  msgstr "Prikaži dodatne informacije u mejlu"
546
 
547
- #: contact_form.php:943
548
- #: contact_form.php:1808
549
- #: contact_form.php:1810
550
  msgid "Sent from (ip address)"
551
  msgstr "Poslato sa (ip adresa)"
552
 
553
- #: contact_form.php:943
554
  #, fuzzy
555
  msgid "Example: Sent from (IP address):\t127.0.0.1"
556
  msgstr "Poslato sa (ip adresa)"
557
 
558
- #: contact_form.php:944
559
- #: contact_form.php:1814
560
- #: contact_form.php:1816
561
  msgid "Date/Time"
562
  msgstr "Datum/Vreme"
563
 
564
- #: contact_form.php:944
565
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
566
  msgstr ""
567
 
568
- #: contact_form.php:945
569
- #: contact_form.php:1820
570
- #: contact_form.php:1822
571
  msgid "Sent from (referer)"
572
  msgstr "Poslato od (prosleđivač)"
573
 
574
- #: contact_form.php:945
575
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
576
  msgstr ""
577
 
578
- #: contact_form.php:946
579
- #: contact_form.php:1826
580
- #: contact_form.php:1828
581
  msgid "Using (user agent)"
582
  msgstr "Koristi (user agent)"
583
 
584
- #: contact_form.php:946
585
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
586
  msgstr ""
587
 
588
- #: contact_form.php:950
589
  msgid "Language settings for the field names in the form"
590
  msgstr "Podešavanja jezika za polje imena u obrascu"
591
 
592
- #: contact_form.php:959
593
  #, fuzzy
594
  msgid "Add a language"
595
  msgstr "Dodaj jezik"
596
 
597
- #: contact_form.php:963
598
  msgid "Change the names of the contact form fields and error messages"
599
  msgstr "Promeni oznaku za polja u kontakt formi i poruku greške"
600
 
601
- #: contact_form.php:968
602
- #: contact_form.php:1041
603
  msgid "English"
604
  msgstr "Engleski"
605
 
606
- #: contact_form.php:976
607
- #: contact_form.php:1006
608
  msgid "click to expand/hide the list"
609
  msgstr ""
610
 
611
- #: contact_form.php:985
612
- #: contact_form.php:1015
613
  #, fuzzy
614
  msgid "Tips below the Attachment block"
615
  msgstr "Prikaži objašnjenja posle bloka Privezaka"
616
 
617
- #: contact_form.php:988
618
- #: contact_form.php:1018
619
  msgid "Error message for the Name field"
620
  msgstr "Poruka greške za polje Ime"
621
 
622
- #: contact_form.php:989
623
- #: contact_form.php:1019
624
  #, fuzzy
625
  msgid "Error message for the Address field"
626
  msgstr "Poruka greške za polje Poruka"
627
 
628
- #: contact_form.php:990
629
- #: contact_form.php:1020
630
  msgid "Error message for the Email field"
631
  msgstr "Poruka greške za polje imejl"
632
 
633
- #: contact_form.php:991
634
- #: contact_form.php:1021
635
  msgid "Error message for the Phone field"
636
  msgstr "Poruka greške za polje Broj telefona"
637
 
638
- #: contact_form.php:992
639
- #: contact_form.php:1022
640
  msgid "Error message for the Subject field"
641
  msgstr "Poruka greške za polje Tema"
642
 
643
- #: contact_form.php:993
644
- #: contact_form.php:1023
645
  msgid "Error message for the Message field"
646
  msgstr "Poruka greške za polje Poruka"
647
 
648
- #: contact_form.php:994
649
- #: contact_form.php:1024
650
  #, fuzzy
651
  msgid "Error message about the file type for the Attachment field"
652
  msgstr "Poruka greške za polje Privezaka"
653
 
654
- #: contact_form.php:995
655
- #: contact_form.php:1025
656
  #, fuzzy
657
  msgid "Error message while uploading a file for the Attachment field to the server"
658
  msgstr "Poruka greške za polje Privezaka"
659
 
660
- #: contact_form.php:996
661
- #: contact_form.php:1026
662
  #, fuzzy
663
  msgid "Error message while moving the file for the Attachment field"
664
  msgstr "Poruka greške za polje Privezaka"
665
 
666
- #: contact_form.php:997
667
- #: contact_form.php:1027
668
  #, fuzzy
669
  msgid "Error message when file size limit for the Attachment field is exceeded"
670
  msgstr "Poruka greške za polje Privezaka"
671
 
672
- #: contact_form.php:998
673
- #: contact_form.php:1028
674
  msgid "Error message for the Captcha field"
675
  msgstr "Poruka greške za polje Kapča"
676
 
677
- #: contact_form.php:999
678
- #: contact_form.php:1029
679
  msgid "Error message for the whole form"
680
  msgstr "Poruka greške za ceo obrazac"
681
 
682
- #: contact_form.php:1001
683
- #: contact_form.php:1031
684
- #: contact_form.php:1050
685
- #: contact_form.php:1056
 
 
 
 
686
  msgid "Use shortcode"
687
  msgstr "Koristi prečicu"
688
 
689
- #: contact_form.php:1001
690
- #: contact_form.php:1031
691
- #: contact_form.php:1050
692
- #: contact_form.php:1056
 
 
 
 
693
  msgid "for this language"
694
  msgstr "za ovaj jezik"
695
 
696
- #: contact_form.php:1038
697
  msgid "Action after email is sent"
698
  msgstr "Akcija posle poslatog mejla"
699
 
700
- #: contact_form.php:1040
701
  msgid "Display text"
702
  msgstr "Prikaži tekst"
703
 
704
- #: contact_form.php:1049
705
- #: contact_form.php:1055
706
  msgid "Text"
707
  msgstr "Tekst"
708
 
709
- #: contact_form.php:1062
710
  msgid "Redirect to the page"
711
  msgstr "Preusmeri na stranu"
712
 
713
- #: contact_form.php:1063
714
  msgid "Url"
715
  msgstr "Url"
716
 
717
- #: contact_form.php:1067
718
  msgid "The $_SERVER variable that is used to build a URL of the form"
719
  msgstr ""
720
 
721
- #: contact_form.php:1071
722
  msgid "If you are not sure whether to change this setting or not, please do not do that."
723
  msgstr ""
724
 
725
- #: contact_form.php:1077
726
- #: contact_form.php:1252
727
  msgid "Save Changes"
728
  msgstr "Sačuvaj izmene"
729
 
730
- #: contact_form.php:1082
731
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
732
  msgstr ""
733
 
734
- #: contact_form.php:1083
735
  #, fuzzy
736
  msgid "Rate the plugin"
737
  msgstr "Preporučeni dodaci"
738
 
739
- #: contact_form.php:1086
740
  #, fuzzy
741
  msgid "If there is something wrong about it, please contact us"
742
  msgstr "Ako imate bilo kakva pitanja, kontaktirajte na mejl plugin@bestwebsoft.com ili popunite kontakt formu na našem sajtu"
743
 
744
- #: contact_form.php:1101
745
  msgid "Errors output"
746
  msgstr ""
747
 
748
- #: contact_form.php:1104
749
  msgid "Display error messages"
750
  msgstr ""
751
 
752
- #: contact_form.php:1105
753
  msgid "Color of the input field errors."
754
  msgstr ""
755
 
756
- #: contact_form.php:1106
757
  #, fuzzy
758
  msgid "Display error messages & color of the input field errors"
759
  msgstr "Poruka greške za polje Tema"
760
 
761
- #: contact_form.php:1111
762
  msgid "Add placeholder to the input blocks"
763
  msgstr ""
764
 
765
- #: contact_form.php:1117
766
  #, fuzzy
767
  msgid "Add tooltips"
768
  msgstr "Dodatne opcije"
769
 
770
- #: contact_form.php:1131
771
  #, fuzzy
772
  msgid "Email address"
773
  msgstr "E-mail Adresa:"
774
 
775
- #: contact_form.php:1136
776
  #, fuzzy
777
  msgid "Phone Number"
778
  msgstr "Broj telefona"
779
 
780
- #: contact_form.php:1150
781
  #, fuzzy
782
  msgid "Attachment"
783
  msgstr "Priveži fajl:"
784
 
785
- #: contact_form.php:1155
786
  msgid "(powered by bestwebsoft.com)"
787
  msgstr ""
788
 
789
- #: contact_form.php:1160
790
  #, fuzzy
791
  msgid "Style options"
792
  msgstr "Dodatne opcije"
793
 
794
- #: contact_form.php:1163
795
  msgid "Text color"
796
  msgstr ""
797
 
798
- #: contact_form.php:1166
799
- #: contact_form.php:1171
800
- #: contact_form.php:1181
801
- #: contact_form.php:1186
802
- #: contact_form.php:1191
803
- #: contact_form.php:1196
804
- #: contact_form.php:1206
805
- #: contact_form.php:1211
806
- #: contact_form.php:1217
807
- #: contact_form.php:1228
808
- #: contact_form.php:1233
809
- #: contact_form.php:1238
810
  msgid "Default"
811
  msgstr ""
812
 
813
- #: contact_form.php:1168
814
  msgid "Label text color"
815
  msgstr ""
816
 
817
- #: contact_form.php:1173
818
  msgid "Placeholder color"
819
  msgstr ""
820
 
821
- #: contact_form.php:1178
822
  msgid "Errors color"
823
  msgstr ""
824
 
825
- #: contact_form.php:1183
826
  msgid "Error text color"
827
  msgstr ""
828
 
829
- #: contact_form.php:1188
830
  msgid "Background color of the input field errors"
831
  msgstr ""
832
 
833
- #: contact_form.php:1193
834
  msgid "Border color of the input field errors"
835
  msgstr ""
836
 
837
- #: contact_form.php:1198
838
  msgid "Placeholder color of the input field errors"
839
  msgstr ""
840
 
841
- #: contact_form.php:1203
842
  msgid "Input fields"
843
  msgstr ""
844
 
845
- #: contact_form.php:1208
846
  msgid "Input fields background color"
847
  msgstr ""
848
 
849
- #: contact_form.php:1213
850
  msgid "Text fields color"
851
  msgstr ""
852
 
853
- #: contact_form.php:1215
854
  msgid "Border width in px, numbers only"
855
  msgstr ""
856
 
857
- #: contact_form.php:1219
858
- #: contact_form.php:1240
859
  msgid "Border color"
860
  msgstr ""
861
 
862
- #: contact_form.php:1224
863
  #, fuzzy
864
  msgid "Submit button"
865
  msgstr "Podnesi"
866
 
867
- #: contact_form.php:1226
868
  msgid "Width in px, numbers only"
869
  msgstr ""
870
 
871
- #: contact_form.php:1230
872
  msgid "Button color"
873
  msgstr ""
874
 
875
- #: contact_form.php:1235
876
  msgid "Button text color"
877
  msgstr ""
878
 
879
- #: contact_form.php:1256
880
  #, fuzzy
881
  msgid "Contact Form Pro | Preview"
882
  msgstr "Kontakt Forma"
883
 
884
- #: contact_form.php:1259
885
  msgid "Show with errors"
886
  msgstr ""
887
 
888
- #: contact_form.php:1267
889
- #: contact_form.php:1269
890
  msgid "Please enter your full name..."
891
  msgstr ""
892
 
893
- #: contact_form.php:1280
894
- #: contact_form.php:1282
895
  msgid "Please enter your address..."
896
  msgstr ""
897
 
898
- #: contact_form.php:1291
899
- #: contact_form.php:1293
900
  #, fuzzy
901
  msgid "Please enter your email address..."
902
  msgstr "Koristi ovaj mejl:"
903
 
904
- #: contact_form.php:1302
905
- #: contact_form.php:1304
906
  msgid "Please enter your phone number..."
907
  msgstr ""
908
 
909
- #: contact_form.php:1313
910
- #: contact_form.php:1315
911
  msgid "Please enter subject..."
912
  msgstr ""
913
 
914
- #: contact_form.php:1323
915
- #: contact_form.php:1325
916
  msgid "Please enter your message..."
917
  msgstr ""
918
 
919
- #: contact_form.php:1367
920
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
921
  msgstr ""
922
 
923
- #: contact_form.php:1369
924
  msgid "Please, go to"
925
  msgstr ""
926
 
927
- #: contact_form.php:1369
928
  #, fuzzy
929
  msgid "the setting page"
930
  msgstr "Podešavanja"
931
 
932
- #: contact_form.php:1370
933
  msgid "You will be redirected automatically in 5 seconds."
934
  msgstr ""
935
 
936
- #: contact_form.php:1375
937
  msgid "You can download and activate"
938
  msgstr ""
939
 
940
- #: contact_form.php:1377
941
  msgid "version of this plugin by entering Your license key."
942
  msgstr ""
943
 
944
- #: contact_form.php:1379
945
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
946
  msgstr ""
947
 
948
- #: contact_form.php:1381
949
  msgid "(your username is the email you specify when purchasing the product)."
950
  msgstr ""
951
 
952
- #: contact_form.php:1389
953
- #: contact_form.php:1399
954
  msgid "Go!"
955
  msgstr ""
956
 
957
- #: contact_form.php:1449
958
  msgid "Sorry, email message could not be delivered."
959
  msgstr "Izvinite, vaš mejl nije mogao biti dostavljen."
960
 
961
- #: contact_form.php:1835
962
  msgid "Contact from"
963
  msgstr "Kontakt forma"
964
 
965
- #: contact_form.php:1848
966
- #: contact_form.php:1874
967
  msgid "Email"
968
  msgstr "Email"
969
 
970
- #: contact_form.php:1852
971
- #: contact_form.php:1876
972
  msgid "Phone"
973
  msgstr "Broj telefona"
974
 
975
- #: contact_form.php:1861
976
- #: contact_form.php:1879
977
  msgid "Site"
978
  msgstr "Sajt"
979
 
980
- #: contact_form.php:1941
981
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
982
  msgstr "Ako možete da vidite ovaj MIME to znači da vaš klijent ne prihvata MIME tipove!"
983
 
984
- #: contact_form.php:2009
985
  msgid "FAQ"
986
  msgstr "FAQ"
987
 
988
- #: contact_form.php:2010
989
  msgid "Support"
990
  msgstr "Podrška"
991
 
992
- #: contact_form.php:2068
993
  msgid "Are you sure that you want to delete this language data?"
994
  msgstr "Da li ste sigurni da želite da obrišete podatke jezika?"
995
 
996
- #: contact_form.php:2223
997
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
998
  msgstr ""
999
 
1000
- #: contact_form.php:2224
1001
  msgid "Extend standard plugin functionality with new great options."
1002
  msgstr ""
1003
 
1004
- #: contact_form.php:2233
1005
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1006
  msgstr ""
1007
 
1008
- #: contact_form.php:2234
1009
  msgid "Manage messages that have been sent from your website."
1010
  msgstr ""
1011
 
 
 
 
 
1012
  #, fuzzy
1013
  #~ msgid "Contact Form Pro Extra Settings"
1014
  #~ msgstr "Opcije Kontakt Forme"
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:41+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:41+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Georgijevic Team <http://www.georgijevic.info>\n"
9
  "Language: sr_RS\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Opcije Kontakt Forme"
24
 
25
+ #: contact_form.php:73
26
  msgid "Contact Form"
27
  msgstr "Kontakt Forma"
28
 
29
+ #: contact_form.php:149
30
+ #: contact_form.php:1131
31
+ #: contact_form.php:1165
32
  msgid "Name:"
33
  msgstr "Ime:"
34
 
35
+ #: contact_form.php:150
36
+ #: contact_form.php:1132
37
+ #: contact_form.php:1166
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "E-mail Adresa:"
41
 
42
+ #: contact_form.php:151
43
+ #: contact_form.php:1133
44
+ #: contact_form.php:1167
45
  msgid "Email Address:"
46
  msgstr "E-mail Adresa:"
47
 
48
+ #: contact_form.php:152
49
+ #: contact_form.php:1134
50
+ #: contact_form.php:1168
51
  msgid "Phone number:"
52
  msgstr "Broj telefona"
53
 
54
+ #: contact_form.php:153
55
+ #: contact_form.php:1135
56
+ #: contact_form.php:1169
57
  msgid "Subject:"
58
  msgstr "Tema:"
59
 
60
+ #: contact_form.php:154
61
+ #: contact_form.php:1136
62
+ #: contact_form.php:1170
63
  msgid "Message:"
64
  msgstr "Poruka:"
65
 
66
+ #: contact_form.php:155
67
+ #: contact_form.php:1137
68
+ #: contact_form.php:1171
69
  msgid "Attachment:"
70
  msgstr "Priveži fajl:"
71
 
72
+ #: contact_form.php:156
73
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
74
  msgstr ""
75
 
76
+ #: contact_form.php:157
77
+ #: contact_form.php:1139
78
+ #: contact_form.php:1173
79
  msgid "Send me a copy"
80
  msgstr "Pošalji mi kopiju"
81
 
82
+ #: contact_form.php:158
83
+ #: contact_form.php:1140
84
+ #: contact_form.php:1174
85
  msgid "Submit"
86
  msgstr "Podnesi"
87
 
88
+ #: contact_form.php:159
89
  msgid "Your name is required."
90
  msgstr "Vaše ime je potrebno."
91
 
92
+ #: contact_form.php:160
93
  #, fuzzy
94
  msgid "Address is required."
95
  msgstr "Ispravna e-mail adresa potrebna."
96
 
97
+ #: contact_form.php:161
98
  #, fuzzy
99
  msgid "A valid email address is required."
100
  msgstr "Ispravna e-mail adresa potrebna."
101
 
102
+ #: contact_form.php:162
103
  msgid "Phone number is required."
104
  msgstr "Broj telefona je potreban."
105
 
106
+ #: contact_form.php:163
107
  msgid "Subject is required."
108
  msgstr "Tekst Teme je potreban."
109
 
110
+ #: contact_form.php:164
111
  msgid "Message text is required."
112
  msgstr "Tekst poruke je potreban."
113
 
114
+ #: contact_form.php:165
115
  msgid "File format is not valid."
116
  msgstr "Privezak ne radi"
117
 
118
+ #: contact_form.php:166
119
  msgid "File upload error."
120
  msgstr ""
121
 
122
+ #: contact_form.php:167
123
  msgid "The file could not be uploaded."
124
  msgstr ""
125
 
126
+ #: contact_form.php:168
127
  msgid "This file is too large."
128
  msgstr ""
129
 
130
+ #: contact_form.php:169
131
  msgid "Please fill out the CAPTCHA."
132
  msgstr "Molimo vas popunite CAPTCHA."
133
 
134
+ #: contact_form.php:170
135
  msgid "Please make corrections below and try again."
136
  msgstr "Molimo vas da izvršite izmene ispod i pokušate ponovo."
137
 
138
+ #: contact_form.php:172
139
  msgid "Thank you for contacting us."
140
  msgstr "Hvala što ste nas kontaktirali."
141
 
142
+ #: contact_form.php:322
143
  #, fuzzy
144
  msgid "requires"
145
  msgstr "Zahtevana polja"
146
 
147
+ #: contact_form.php:322
148
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
149
  msgstr ""
150
 
151
+ #: contact_form.php:322
152
  msgid "Back to the WordPress"
153
  msgstr ""
154
 
155
+ #: contact_form.php:322
156
  #, fuzzy
157
  msgid "Plugins page"
158
  msgstr "BWS Dodaci"
159
 
160
+ #: contact_form.php:626
161
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
162
  msgstr "Ako opcija 'Prosledi na stranu' je izabrana onda polje za URL možete popuniti u sledećem formatu"
163
 
164
+ #: contact_form.php:635
165
  msgid "Such user does not exist. Settings are not saved."
166
  msgstr "Takav korisnik ne postoji. Podešavanja nisu sačuvana"
167
 
168
+ #: contact_form.php:639
169
+ #: contact_form.php:645
170
  #, fuzzy
171
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
172
  msgstr "Molim Vas unesite ispravan mejl u polje 'OD'. Podešavanja nisu sačuvana."
173
 
174
+ #: contact_form.php:661
175
  #, fuzzy
176
  msgid "Settings saved."
177
  msgstr "Opcije sačuvane"
178
 
179
+ #: contact_form.php:688
180
+ #: contact_form.php:720
181
  msgid "Wrong license key"
182
  msgstr ""
183
 
184
+ #: contact_form.php:713
185
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
186
  msgstr ""
187
 
188
+ #: contact_form.php:722
189
  msgid "This license key is bind to another site"
190
  msgstr ""
191
 
192
+ #: contact_form.php:724
193
+ #: contact_form.php:1570
194
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
195
  msgstr ""
196
 
197
+ #: contact_form.php:741
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
 
201
+ #: contact_form.php:747
202
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
203
  msgstr ""
204
 
205
+ #: contact_form.php:751
206
+ #: contact_form.php:760
207
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
208
  msgstr ""
209
 
210
+ #: contact_form.php:764
211
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
212
  msgstr ""
213
 
214
+ #: contact_form.php:779
215
  #, fuzzy
216
  msgid "Please, enter Your license key"
217
  msgstr "Koristi ovaj mejl:"
218
 
219
+ #: contact_form.php:787
220
+ #: contact_form.php:2216
221
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
222
  msgid "Settings"
223
  msgstr "Podešavanja"
224
 
225
+ #: contact_form.php:788
226
  #, fuzzy
227
  msgid "Extra settings"
228
  msgstr "Podešavanja"
229
 
230
+ #: contact_form.php:789
231
  msgid "Go PRO"
232
  msgstr ""
233
 
234
+ #: contact_form.php:792
235
+ msgid "Notice:"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:792
239
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
240
+ msgstr ""
241
+
242
+ #: contact_form.php:798
243
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
244
+ msgstr ""
245
+
246
+ #: contact_form.php:804
247
+ #: contact_form.php:809
248
+ #: contact_form.php:1529
249
  msgid "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:"
250
  msgstr "Ako želite da dodate Kontakt Formu na vaš veb sajt, jednostavno iskopirajte ovaj kratak kod na vašu stranu, članak ili vidžet:"
251
 
252
+ #: contact_form.php:804
253
+ #: contact_form.php:805
254
+ #: contact_form.php:809
255
+ #: contact_form.php:810
256
+ #: contact_form.php:1155
257
+ #: contact_form.php:1157
258
+ #: contact_form.php:1212
259
+ #: contact_form.php:1214
260
  msgid "or"
261
  msgstr ""
262
 
263
+ #: contact_form.php:805
264
+ #: contact_form.php:810
265
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
266
  msgstr ""
267
 
268
+ #: contact_form.php:806
269
+ #: contact_form.php:811
270
  msgid "They work the same way."
271
  msgstr ""
272
 
273
+ #: contact_form.php:807
274
+ #: contact_form.php:812
275
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
276
  msgstr "Ako je polje za podatke ispod prazno tada će poruka biti poslata na adresu koja je navedena prilikom registracije."
277
 
278
+ #: contact_form.php:817
279
  msgid "The user's email address:"
280
  msgstr "Koristi mejl wordpress korisnika:"
281
 
282
+ #: contact_form.php:821
283
  msgid "Create a username"
284
  msgstr "Odaberi korisničko ime"
285
 
286
+ #: contact_form.php:828
287
  msgid "Enter a username of the person who should get the messages from the contact form."
288
  msgstr "Podesi ime korisnika koji će primiti poruku sa ove kontakt forme."
289
 
290
+ #: contact_form.php:832
291
  msgid "Use this email address:"
292
  msgstr "Koristi ovaj mejl:"
293
 
294
+ #: contact_form.php:835
295
  msgid "Enter the email address you want the messages forwarded to."
296
  msgstr "Podesi mejl adresu koja će biti korišćena za prijem poruka."
297
 
298
+ #: contact_form.php:844
299
  msgid "Add department selectbox to the contact form:"
300
  msgstr ""
301
 
302
+ #: contact_form.php:852
303
+ #: contact_form.php:1412
304
  msgid "If you upgrade to Pro version all your settings will be saved."
305
  msgstr ""
306
 
307
+ #: contact_form.php:859
308
+ #: contact_form.php:997
309
+ #: contact_form.php:1071
310
+ #: contact_form.php:1419
311
+ msgid "Unlock premium options by upgrading to a PRO version."
312
  msgstr ""
313
 
314
+ #: contact_form.php:860
315
+ #: contact_form.php:998
316
+ #: contact_form.php:1072
317
+ #: contact_form.php:1420
318
+ #: contact_form.php:2473
319
+ #: contact_form.php:2489
320
+ msgid "Learn More"
321
+ msgstr ""
322
 
323
+ #: contact_form.php:863
324
+ #: contact_form.php:1001
325
+ #: contact_form.php:1075
326
+ #: contact_form.php:1423
327
+ msgid "Go"
328
+ msgstr ""
329
+
330
+ #: contact_form.php:870
331
  msgid "Save emails to the database"
332
  msgstr ""
333
 
334
+ #: contact_form.php:876
335
  msgid "Using"
336
  msgstr ""
337
 
338
+ #: contact_form.php:876
339
+ #: contact_form.php:1048
340
+ #: contact_form.php:1051
341
+ #: contact_form.php:1055
342
  msgid "powered by"
343
  msgstr ""
344
 
345
+ #: contact_form.php:879
346
+ #: contact_form.php:883
347
  msgid "Using Contact Form to DB powered by"
348
  msgstr ""
349
 
350
+ #: contact_form.php:879
351
  #, fuzzy
352
  msgid "Activate Contact Form to DB"
353
  msgstr "Kontakt Forma"
354
 
355
+ #: contact_form.php:883
356
  #, fuzzy
357
  msgid "Download Contact Form to DB"
358
  msgstr "Kontakt Forma"
359
 
360
+ #: contact_form.php:888
361
  msgid "Additional options"
362
  msgstr "Dodatne opcije"
363
 
364
+ #: contact_form.php:890
365
  msgid "Show"
366
  msgstr ""
367
 
368
+ #: contact_form.php:891
369
  msgid "Hide"
370
  msgstr ""
371
 
372
+ #: contact_form.php:895
373
  msgid "What to use?"
374
  msgstr "Šta koristite?"
375
 
376
+ #: contact_form.php:898
377
  msgid "Wp-mail"
378
  msgstr "Wp-mail"
379
 
380
+ #: contact_form.php:898
381
  msgid "You can use the wp_mail function for mailing"
382
  msgstr "Da biste poslali mejl možete koristiti wordpress-ovu wp_mail funkciju"
383
 
384
+ #: contact_form.php:900
385
  msgid "Mail"
386
  msgstr "Mail"
387
 
388
+ #: contact_form.php:900
389
  msgid "To send mail you can use the php mail function"
390
  msgstr "Da biste poslali mejl možete koristiti php mail funkciju"
391
 
392
+ #: contact_form.php:904
393
  #, fuzzy
394
  msgid "The text in the 'From' field"
395
  msgstr "Promeni tekst 'OD' polja u kontakt formi"
396
 
397
+ #: contact_form.php:906
398
  msgid "User name"
399
  msgstr ""
400
 
401
+ #: contact_form.php:907
402
  #, fuzzy
403
  msgid "The name of the user who fills the form will be used in the field 'From'."
404
  msgstr "Mejl adresa korisnika koji je popunio polja će se koristiti u polju 'OD'"
405
 
406
+ #: contact_form.php:910
407
  #, fuzzy
408
  msgid "This text will be used in the 'FROM' field"
409
  msgstr "Ova mejl adresa će biti korišćena u polju 'OD'"
410
 
411
+ #: contact_form.php:914
412
  #, fuzzy
413
  msgid "The email address in the 'From' field"
414
  msgstr "Unesi mejl adresu u polje 'OD'"
415
 
416
+ #: contact_form.php:916
417
  msgid "User email"
418
  msgstr ""
419
 
420
+ #: contact_form.php:917
421
  #, fuzzy
422
  msgid "The email address of the user who fills the form will be used in the field 'From'."
423
  msgstr "Mejl adresa korisnika koji je popunio polja će se koristiti u polju 'OD'"
424
 
425
+ #: contact_form.php:920
426
  msgid "This email address will be used in the 'From' field."
427
  msgstr "Ova mejl adresa će biti korišćena u polju 'OD'"
428
 
429
+ #: contact_form.php:924
430
  #, fuzzy
431
  msgid "Required symbol"
432
  msgstr "Zahtevana polja"
433
 
434
+ #: contact_form.php:934
435
  msgid "Fields"
436
  msgstr ""
437
 
438
+ #: contact_form.php:935
439
  msgid "Used"
440
  msgstr ""
441
 
442
+ #: contact_form.php:936
443
  #, fuzzy
444
  msgid "Required"
445
  msgstr "Zahtevana polja"
446
 
447
+ #: contact_form.php:937
448
  msgid "Visible"
449
  msgstr ""
450
 
451
+ #: contact_form.php:938
452
  msgid "Disabled for editing"
453
  msgstr ""
454
 
455
+ #: contact_form.php:939
456
  msgid "Field's default value"
457
  msgstr ""
458
 
459
+ #: contact_form.php:944
460
+ #: contact_form.php:1287
461
+ #: contact_form.php:2059
462
+ #: contact_form.php:2089
463
  msgid "Name"
464
  msgstr "Ime"
465
 
466
+ #: contact_form.php:952
467
+ #: contact_form.php:1292
468
+ #: contact_form.php:2063
469
+ #: contact_form.php:2091
470
  #, fuzzy
471
  msgid "Address"
472
  msgstr "E-mail Adresa:"
473
 
474
+ #: contact_form.php:960
475
  #, fuzzy
476
  msgid "Email Address"
477
  msgstr "E-mail Adresa:"
478
 
479
+ #: contact_form.php:968
480
  #, fuzzy
481
  msgid "Phone number"
482
  msgstr "Broj telefona"
483
 
484
+ #: contact_form.php:976
485
+ #: contact_form.php:1307
486
+ #: contact_form.php:2073
487
+ #: contact_form.php:2095
488
  msgid "Subject"
489
  msgstr "Tema"
490
 
491
+ #: contact_form.php:984
492
+ #: contact_form.php:1311
493
+ #: contact_form.php:2076
494
+ #: contact_form.php:2096
495
  msgid "Message"
496
  msgstr "Poruka"
497
 
498
+ #: contact_form.php:1008
499
  #, fuzzy
500
  msgid "Attachment block"
501
  msgstr "Prikaži blok privezaka"
502
 
503
+ #: contact_form.php:1010
504
  msgid "Users can attach the following file formats"
505
  msgstr "Korisnici mogu privezivati fajlove sledećih tipova"
506
 
507
+ #: contact_form.php:1023
508
  msgid "Add to the form"
509
  msgstr ""
510
 
511
+ #: contact_form.php:1028
512
  #, fuzzy
513
  msgid "Tips below the Attachment"
514
  msgstr "Prikaži objašnjenja posle bloka Privezaka"
515
 
516
+ #: contact_form.php:1037
517
  #, fuzzy
518
  msgid "'Send me a copy' block"
519
  msgstr "Prikaži Pošalji mi kopiju blok"
520
 
521
+ #: contact_form.php:1048
522
+ #: contact_form.php:1051
523
+ #: contact_form.php:1055
524
+ #: contact_form.php:1321
525
  msgid "Captcha"
526
  msgstr ""
527
 
528
+ #: contact_form.php:1051
529
  #, fuzzy
530
  msgid "Activate captcha"
531
  msgstr "Aktivni dodaci"
532
 
533
+ #: contact_form.php:1055
534
  #, fuzzy
535
  msgid "Download captcha"
536
  msgstr "Preuzmi"
537
 
538
+ #: contact_form.php:1063
539
  msgid "Agreement checkbox"
540
  msgstr ""
541
 
542
+ #: contact_form.php:1063
543
  msgid "Required checkbox for submitting the form"
544
  msgstr ""
545
 
546
+ #: contact_form.php:1064
547
  msgid "Optional checkbox"
548
  msgstr ""
549
 
550
+ #: contact_form.php:1064
551
  msgid "Optional checkbox, the results of which will be displayed in email"
552
  msgstr ""
553
 
554
+ #: contact_form.php:1081
555
  msgid "Delete an attachment file from the server after the email is sent"
556
  msgstr ""
557
 
558
+ #: contact_form.php:1087
559
  msgid "Email in HTML format sending"
560
  msgstr ""
561
 
562
+ #: contact_form.php:1091
563
  #, fuzzy
564
  msgid "Display additional info in the email"
565
  msgstr "Prikaži dodatne informacije u mejlu"
566
 
567
+ #: contact_form.php:1096
568
+ #: contact_form.php:2026
569
+ #: contact_form.php:2028
570
  msgid "Sent from (ip address)"
571
  msgstr "Poslato sa (ip adresa)"
572
 
573
+ #: contact_form.php:1096
574
  #, fuzzy
575
  msgid "Example: Sent from (IP address):\t127.0.0.1"
576
  msgstr "Poslato sa (ip adresa)"
577
 
578
+ #: contact_form.php:1097
579
+ #: contact_form.php:2032
580
+ #: contact_form.php:2034
581
  msgid "Date/Time"
582
  msgstr "Datum/Vreme"
583
 
584
+ #: contact_form.php:1097
585
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
586
  msgstr ""
587
 
588
+ #: contact_form.php:1098
589
+ #: contact_form.php:2038
590
+ #: contact_form.php:2040
591
  msgid "Sent from (referer)"
592
  msgstr "Poslato od (prosleđivač)"
593
 
594
+ #: contact_form.php:1098
595
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
596
  msgstr ""
597
 
598
+ #: contact_form.php:1099
599
+ #: contact_form.php:2044
600
+ #: contact_form.php:2046
601
  msgid "Using (user agent)"
602
  msgstr "Koristi (user agent)"
603
 
604
+ #: contact_form.php:1099
605
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
606
  msgstr ""
607
 
608
+ #: contact_form.php:1103
609
  msgid "Language settings for the field names in the form"
610
  msgstr "Podešavanja jezika za polje imena u obrascu"
611
 
612
+ #: contact_form.php:1112
613
  #, fuzzy
614
  msgid "Add a language"
615
  msgstr "Dodaj jezik"
616
 
617
+ #: contact_form.php:1116
618
  msgid "Change the names of the contact form fields and error messages"
619
  msgstr "Promeni oznaku za polja u kontakt formi i poruku greške"
620
 
621
+ #: contact_form.php:1121
622
+ #: contact_form.php:1202
623
  msgid "English"
624
  msgstr "Engleski"
625
 
626
+ #: contact_form.php:1129
627
+ #: contact_form.php:1163
628
  msgid "click to expand/hide the list"
629
  msgstr ""
630
 
631
+ #: contact_form.php:1138
632
+ #: contact_form.php:1172
633
  #, fuzzy
634
  msgid "Tips below the Attachment block"
635
  msgstr "Prikaži objašnjenja posle bloka Privezaka"
636
 
637
+ #: contact_form.php:1141
638
+ #: contact_form.php:1175
639
  msgid "Error message for the Name field"
640
  msgstr "Poruka greške za polje Ime"
641
 
642
+ #: contact_form.php:1142
643
+ #: contact_form.php:1176
644
  #, fuzzy
645
  msgid "Error message for the Address field"
646
  msgstr "Poruka greške za polje Poruka"
647
 
648
+ #: contact_form.php:1143
649
+ #: contact_form.php:1177
650
  msgid "Error message for the Email field"
651
  msgstr "Poruka greške za polje imejl"
652
 
653
+ #: contact_form.php:1144
654
+ #: contact_form.php:1178
655
  msgid "Error message for the Phone field"
656
  msgstr "Poruka greške za polje Broj telefona"
657
 
658
+ #: contact_form.php:1145
659
+ #: contact_form.php:1179
660
  msgid "Error message for the Subject field"
661
  msgstr "Poruka greške za polje Tema"
662
 
663
+ #: contact_form.php:1146
664
+ #: contact_form.php:1180
665
  msgid "Error message for the Message field"
666
  msgstr "Poruka greške za polje Poruka"
667
 
668
+ #: contact_form.php:1147
669
+ #: contact_form.php:1181
670
  #, fuzzy
671
  msgid "Error message about the file type for the Attachment field"
672
  msgstr "Poruka greške za polje Privezaka"
673
 
674
+ #: contact_form.php:1148
675
+ #: contact_form.php:1182
676
  #, fuzzy
677
  msgid "Error message while uploading a file for the Attachment field to the server"
678
  msgstr "Poruka greške za polje Privezaka"
679
 
680
+ #: contact_form.php:1149
681
+ #: contact_form.php:1183
682
  #, fuzzy
683
  msgid "Error message while moving the file for the Attachment field"
684
  msgstr "Poruka greške za polje Privezaka"
685
 
686
+ #: contact_form.php:1150
687
+ #: contact_form.php:1184
688
  #, fuzzy
689
  msgid "Error message when file size limit for the Attachment field is exceeded"
690
  msgstr "Poruka greške za polje Privezaka"
691
 
692
+ #: contact_form.php:1151
693
+ #: contact_form.php:1185
694
  msgid "Error message for the Captcha field"
695
  msgstr "Poruka greške za polje Kapča"
696
 
697
+ #: contact_form.php:1152
698
+ #: contact_form.php:1186
699
  msgid "Error message for the whole form"
700
  msgstr "Poruka greške za ceo obrazac"
701
 
702
+ #: contact_form.php:1155
703
+ #: contact_form.php:1157
704
+ #: contact_form.php:1189
705
+ #: contact_form.php:1191
706
+ #: contact_form.php:1212
707
+ #: contact_form.php:1214
708
+ #: contact_form.php:1222
709
+ #: contact_form.php:1224
710
  msgid "Use shortcode"
711
  msgstr "Koristi prečicu"
712
 
713
+ #: contact_form.php:1155
714
+ #: contact_form.php:1157
715
+ #: contact_form.php:1189
716
+ #: contact_form.php:1191
717
+ #: contact_form.php:1212
718
+ #: contact_form.php:1214
719
+ #: contact_form.php:1222
720
+ #: contact_form.php:1224
721
  msgid "for this language"
722
  msgstr "za ovaj jezik"
723
 
724
+ #: contact_form.php:1199
725
  msgid "Action after email is sent"
726
  msgstr "Akcija posle poslatog mejla"
727
 
728
+ #: contact_form.php:1201
729
  msgid "Display text"
730
  msgstr "Prikaži tekst"
731
 
732
+ #: contact_form.php:1210
733
+ #: contact_form.php:1220
734
  msgid "Text"
735
  msgstr "Tekst"
736
 
737
+ #: contact_form.php:1231
738
  msgid "Redirect to the page"
739
  msgstr "Preusmeri na stranu"
740
 
741
+ #: contact_form.php:1232
742
  msgid "Url"
743
  msgstr "Url"
744
 
745
+ #: contact_form.php:1236
746
  msgid "The $_SERVER variable that is used to build a URL of the form"
747
  msgstr ""
748
 
749
+ #: contact_form.php:1240
750
  msgid "If you are not sure whether to change this setting or not, please do not do that."
751
  msgstr ""
752
 
753
+ #: contact_form.php:1246
754
+ #: contact_form.php:1430
755
  msgid "Save Changes"
756
  msgstr "Sačuvaj izmene"
757
 
758
+ #: contact_form.php:1251
759
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
760
  msgstr ""
761
 
762
+ #: contact_form.php:1252
763
  #, fuzzy
764
  msgid "Rate the plugin"
765
  msgstr "Preporučeni dodaci"
766
 
767
+ #: contact_form.php:1255
768
  #, fuzzy
769
  msgid "If there is something wrong about it, please contact us"
770
  msgstr "Ako imate bilo kakva pitanja, kontaktirajte na mejl plugin@bestwebsoft.com ili popunite kontakt formu na našem sajtu"
771
 
772
+ #: contact_form.php:1267
773
  msgid "Errors output"
774
  msgstr ""
775
 
776
+ #: contact_form.php:1270
777
  msgid "Display error messages"
778
  msgstr ""
779
 
780
+ #: contact_form.php:1271
781
  msgid "Color of the input field errors."
782
  msgstr ""
783
 
784
+ #: contact_form.php:1272
785
  #, fuzzy
786
  msgid "Display error messages & color of the input field errors"
787
  msgstr "Poruka greške za polje Tema"
788
 
789
+ #: contact_form.php:1277
790
  msgid "Add placeholder to the input blocks"
791
  msgstr ""
792
 
793
+ #: contact_form.php:1283
794
  #, fuzzy
795
  msgid "Add tooltips"
796
  msgstr "Dodatne opcije"
797
 
798
+ #: contact_form.php:1297
799
  #, fuzzy
800
  msgid "Email address"
801
  msgstr "E-mail Adresa:"
802
 
803
+ #: contact_form.php:1302
804
  #, fuzzy
805
  msgid "Phone Number"
806
  msgstr "Broj telefona"
807
 
808
+ #: contact_form.php:1316
809
  #, fuzzy
810
  msgid "Attachment"
811
  msgstr "Priveži fajl:"
812
 
813
+ #: contact_form.php:1321
814
  msgid "(powered by bestwebsoft.com)"
815
  msgstr ""
816
 
817
+ #: contact_form.php:1326
818
  #, fuzzy
819
  msgid "Style options"
820
  msgstr "Dodatne opcije"
821
 
822
+ #: contact_form.php:1329
823
  msgid "Text color"
824
  msgstr ""
825
 
826
+ #: contact_form.php:1332
827
+ #: contact_form.php:1337
828
+ #: contact_form.php:1347
829
+ #: contact_form.php:1352
830
+ #: contact_form.php:1357
831
+ #: contact_form.php:1362
832
+ #: contact_form.php:1372
833
+ #: contact_form.php:1377
834
+ #: contact_form.php:1383
835
+ #: contact_form.php:1394
836
+ #: contact_form.php:1399
837
+ #: contact_form.php:1404
838
  msgid "Default"
839
  msgstr ""
840
 
841
+ #: contact_form.php:1334
842
  msgid "Label text color"
843
  msgstr ""
844
 
845
+ #: contact_form.php:1339
846
  msgid "Placeholder color"
847
  msgstr ""
848
 
849
+ #: contact_form.php:1344
850
  msgid "Errors color"
851
  msgstr ""
852
 
853
+ #: contact_form.php:1349
854
  msgid "Error text color"
855
  msgstr ""
856
 
857
+ #: contact_form.php:1354
858
  msgid "Background color of the input field errors"
859
  msgstr ""
860
 
861
+ #: contact_form.php:1359
862
  msgid "Border color of the input field errors"
863
  msgstr ""
864
 
865
+ #: contact_form.php:1364
866
  msgid "Placeholder color of the input field errors"
867
  msgstr ""
868
 
869
+ #: contact_form.php:1369
870
  msgid "Input fields"
871
  msgstr ""
872
 
873
+ #: contact_form.php:1374
874
  msgid "Input fields background color"
875
  msgstr ""
876
 
877
+ #: contact_form.php:1379
878
  msgid "Text fields color"
879
  msgstr ""
880
 
881
+ #: contact_form.php:1381
882
  msgid "Border width in px, numbers only"
883
  msgstr ""
884
 
885
+ #: contact_form.php:1385
886
+ #: contact_form.php:1406
887
  msgid "Border color"
888
  msgstr ""
889
 
890
+ #: contact_form.php:1390
891
  #, fuzzy
892
  msgid "Submit button"
893
  msgstr "Podnesi"
894
 
895
+ #: contact_form.php:1392
896
  msgid "Width in px, numbers only"
897
  msgstr ""
898
 
899
+ #: contact_form.php:1396
900
  msgid "Button color"
901
  msgstr ""
902
 
903
+ #: contact_form.php:1401
904
  msgid "Button text color"
905
  msgstr ""
906
 
907
+ #: contact_form.php:1434
908
  #, fuzzy
909
  msgid "Contact Form Pro | Preview"
910
  msgstr "Kontakt Forma"
911
 
912
+ #: contact_form.php:1437
913
  msgid "Show with errors"
914
  msgstr ""
915
 
916
+ #: contact_form.php:1445
917
+ #: contact_form.php:1447
918
  msgid "Please enter your full name..."
919
  msgstr ""
920
 
921
+ #: contact_form.php:1458
922
+ #: contact_form.php:1460
923
  msgid "Please enter your address..."
924
  msgstr ""
925
 
926
+ #: contact_form.php:1469
927
+ #: contact_form.php:1471
928
  #, fuzzy
929
  msgid "Please enter your email address..."
930
  msgstr "Koristi ovaj mejl:"
931
 
932
+ #: contact_form.php:1480
933
+ #: contact_form.php:1482
934
  msgid "Please enter your phone number..."
935
  msgstr ""
936
 
937
+ #: contact_form.php:1491
938
+ #: contact_form.php:1493
939
  msgid "Please enter subject..."
940
  msgstr ""
941
 
942
+ #: contact_form.php:1501
943
+ #: contact_form.php:1503
944
  msgid "Please enter your message..."
945
  msgstr ""
946
 
947
+ #: contact_form.php:1545
948
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
949
  msgstr ""
950
 
951
+ #: contact_form.php:1547
952
  msgid "Please, go to"
953
  msgstr ""
954
 
955
+ #: contact_form.php:1547
956
  #, fuzzy
957
  msgid "the setting page"
958
  msgstr "Podešavanja"
959
 
960
+ #: contact_form.php:1548
961
  msgid "You will be redirected automatically in 5 seconds."
962
  msgstr ""
963
 
964
+ #: contact_form.php:1553
965
  msgid "You can download and activate"
966
  msgstr ""
967
 
968
+ #: contact_form.php:1555
969
  msgid "version of this plugin by entering Your license key."
970
  msgstr ""
971
 
972
+ #: contact_form.php:1557
973
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
974
  msgstr ""
975
 
976
+ #: contact_form.php:1559
977
  msgid "(your username is the email you specify when purchasing the product)."
978
  msgstr ""
979
 
980
+ #: contact_form.php:1567
981
+ #: contact_form.php:1577
982
  msgid "Go!"
983
  msgstr ""
984
 
985
+ #: contact_form.php:1647
986
  msgid "Sorry, email message could not be delivered."
987
  msgstr "Izvinite, vaš mejl nije mogao biti dostavljen."
988
 
989
+ #: contact_form.php:2053
990
  msgid "Contact from"
991
  msgstr "Kontakt forma"
992
 
993
+ #: contact_form.php:2066
994
+ #: contact_form.php:2092
995
  msgid "Email"
996
  msgstr "Email"
997
 
998
+ #: contact_form.php:2070
999
+ #: contact_form.php:2094
1000
  msgid "Phone"
1001
  msgstr "Broj telefona"
1002
 
1003
+ #: contact_form.php:2079
1004
+ #: contact_form.php:2097
1005
  msgid "Site"
1006
  msgstr "Sajt"
1007
 
1008
+ #: contact_form.php:2160
1009
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
1010
  msgstr "Ako možete da vidite ovaj MIME to znači da vaš klijent ne prihvata MIME tipove!"
1011
 
1012
+ #: contact_form.php:2229
1013
  msgid "FAQ"
1014
  msgstr "FAQ"
1015
 
1016
+ #: contact_form.php:2230
1017
  msgid "Support"
1018
  msgstr "Podrška"
1019
 
1020
+ #: contact_form.php:2280
1021
  msgid "Are you sure that you want to delete this language data?"
1022
  msgstr "Da li ste sigurni da želite da obrišete podatke jezika?"
1023
 
1024
+ #: contact_form.php:2476
1025
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
1026
  msgstr ""
1027
 
1028
+ #: contact_form.php:2477
1029
  msgid "Extend standard plugin functionality with new great options."
1030
  msgstr ""
1031
 
1032
+ #: contact_form.php:2492
1033
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1034
  msgstr ""
1035
 
1036
+ #: contact_form.php:2493
1037
  msgid "Manage messages that have been sent from your website."
1038
  msgstr ""
1039
 
1040
+ #, fuzzy
1041
+ #~ msgid "Contact Form Pro"
1042
+ #~ msgstr "Kontakt Forma"
1043
+
1044
  #, fuzzy
1045
  #~ msgid "Contact Form Pro Extra Settings"
1046
  #~ msgstr "Opcije Kontakt Forme"
languages/contact_form-sv_SE.mo CHANGED
Binary file
languages/contact_form-sv_SE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-20 14:07+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:07+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest <joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
9
  "Language: ru_RU\n"
@@ -16,970 +16,1009 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  msgid "Contact Form Settings"
22
  msgstr "Kontaktformulärinställningar"
23
 
24
- #: contact_form.php:33
25
  msgid "Contact Form"
26
  msgstr "Kontaktformulär"
27
 
28
- #: contact_form.php:80
29
- #: contact_form.php:978
30
- #: contact_form.php:1008
31
  msgid "Name:"
32
  msgstr "Namn:"
33
 
34
- #: contact_form.php:81
35
- #: contact_form.php:979
36
- #: contact_form.php:1009
37
  msgid "Address:"
38
  msgstr "Adress:"
39
 
40
- #: contact_form.php:82
41
- #: contact_form.php:980
42
- #: contact_form.php:1010
43
  msgid "Email Address:"
44
  msgstr "E-postadress:"
45
 
46
- #: contact_form.php:83
47
- #: contact_form.php:981
48
- #: contact_form.php:1011
49
  msgid "Phone number:"
50
  msgstr "Telefonnummer:"
51
 
52
- #: contact_form.php:84
53
- #: contact_form.php:982
54
- #: contact_form.php:1012
55
  msgid "Subject:"
56
  msgstr "Ämne:"
57
 
58
- #: contact_form.php:85
59
- #: contact_form.php:983
60
- #: contact_form.php:1013
61
  msgid "Message:"
62
  msgstr "Meddelande:"
63
 
64
- #: contact_form.php:86
65
- #: contact_form.php:984
66
- #: contact_form.php:1014
67
  msgid "Attachment:"
68
  msgstr "Bifogad fil:"
69
 
70
- #: contact_form.php:87
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Stödda filformat: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max filstorlek: 2MB"
73
 
74
- #: contact_form.php:88
75
- #: contact_form.php:986
76
- #: contact_form.php:1016
77
  msgid "Send me a copy"
78
  msgstr "Skicka mig en kopia"
79
 
80
- #: contact_form.php:89
81
- #: contact_form.php:987
82
- #: contact_form.php:1017
83
  msgid "Submit"
84
  msgstr "Skicka"
85
 
86
- #: contact_form.php:90
87
  msgid "Your name is required."
88
  msgstr "Ditt namn krävs."
89
 
90
- #: contact_form.php:91
91
  msgid "Address is required."
92
  msgstr "Adress krävs."
93
 
94
- #: contact_form.php:92
95
  msgid "A valid email address is required."
96
  msgstr "En giltig e-postadress krävs."
97
 
98
- #: contact_form.php:93
99
  msgid "Phone number is required."
100
  msgstr "Telefonnummer krävs."
101
 
102
- #: contact_form.php:94
103
  msgid "Subject is required."
104
  msgstr "Ämne krävs."
105
 
106
- #: contact_form.php:95
107
  msgid "Message text is required."
108
  msgstr "Meddelande krävs."
109
 
110
- #: contact_form.php:96
111
  msgid "File format is not valid."
112
  msgstr "Bilageformaten är inte giltigt."
113
 
114
- #: contact_form.php:97
115
  msgid "File upload error."
116
  msgstr "Filuppladdningsfel."
117
 
118
- #: contact_form.php:98
119
  msgid "The file could not be uploaded."
120
  msgstr "Filen kunde inte laddas upp."
121
 
122
- #: contact_form.php:99
123
  msgid "This file is too large."
124
  msgstr "Filen är för stor."
125
 
126
- #: contact_form.php:100
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Var god fyll i CAPTCHA."
129
 
130
- #: contact_form.php:101
131
  msgid "Please make corrections below and try again."
132
  msgstr "Var god gör korrigeringar nedan och försök igen."
133
 
134
- #: contact_form.php:103
135
  msgid "Thank you for contacting us."
136
  msgstr "Tack för att du kontaktade oss."
137
 
138
- #: contact_form.php:203
139
  #, fuzzy
140
  msgid "requires"
141
  msgstr "Obligatoriska fält"
142
 
143
- #: contact_form.php:203
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr ""
146
 
147
- #: contact_form.php:203
148
  msgid "Back to the WordPress"
149
  msgstr ""
150
 
151
- #: contact_form.php:203
152
  #, fuzzy
153
  msgid "Plugins page"
154
  msgstr "Pro-tillägg"
155
 
156
- #: contact_form.php:494
157
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
158
  msgstr "Om alternativet 'Omdirigera till sida' väljs ska URL-fältet fyllas i med följande format"
159
 
160
- #: contact_form.php:503
161
  msgid "Such user does not exist. Settings are not saved."
162
  msgstr "Användaren finns inte. Inställningarna sparades inte."
163
 
164
- #: contact_form.php:507
165
- #: contact_form.php:513
166
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
167
  msgstr "Var god ange en giltig e-postadress i 'FRÅN'-fältet. Inställningarna sparades inte."
168
 
169
- #: contact_form.php:518
170
  msgid "Settings saved."
171
  msgstr "Inställningar sparades."
172
 
173
- #: contact_form.php:554
174
- #: contact_form.php:593
175
  msgid "Wrong license key"
176
  msgstr ""
177
 
178
- #: contact_form.php:586
179
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
180
  msgstr ""
181
 
182
- #: contact_form.php:595
183
  msgid "This license key is bind to another site"
184
  msgstr ""
185
 
186
- #: contact_form.php:597
187
- #: contact_form.php:1392
188
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
189
  msgstr ""
190
 
191
- #: contact_form.php:615
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
 
195
- #: contact_form.php:621
196
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
- #: contact_form.php:625
200
- #: contact_form.php:634
201
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
- #: contact_form.php:638
205
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
206
  msgstr ""
207
 
208
- #: contact_form.php:653
209
  #, fuzzy
210
  msgid "Please, enter Your license key"
211
  msgstr "Var god ange ditt meddelande…"
212
 
213
- #: contact_form.php:662
214
- msgid "Notice:"
215
- msgstr ""
216
-
217
- #: contact_form.php:662
218
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
219
- msgstr ""
220
-
221
- #: contact_form.php:665
222
- #: contact_form.php:1997
223
- #: contact_form.php:2008
224
  msgid "Settings"
225
  msgstr "Inställningar"
226
 
227
- #: contact_form.php:666
228
  msgid "Extra settings"
229
  msgstr "Extra inställningar"
230
 
231
- #: contact_form.php:667
232
  msgid "Go PRO"
233
  msgstr ""
234
 
235
- #: contact_form.php:673
236
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  msgid "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:"
238
  msgstr "Om du vill lägga till ett kontaktformulär på din webbplats, kopiera följande kortkod och klistra in den på rätt inlägg, sida eller widget:"
239
 
240
- #: contact_form.php:673
241
- #: contact_form.php:674
242
- #: contact_form.php:1001
243
- #: contact_form.php:1050
 
 
 
 
244
  msgid "or"
245
  msgstr ""
246
 
247
- #: contact_form.php:674
 
248
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
249
  msgstr ""
250
 
251
- #: contact_form.php:675
 
252
  msgid "They work the same way."
253
  msgstr ""
254
 
255
- #: contact_form.php:676
 
256
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
257
  msgstr "Om du lämnar fälten tomma kommer meddelandena att skickas till den e-postadressen som angavs under registreringen."
258
 
259
- #: contact_form.php:680
260
  msgid "The user's email address:"
261
  msgstr "Användarens e-postadress:"
262
 
263
- #: contact_form.php:684
264
  msgid "Create a username"
265
  msgstr "Skapa ett användarnamn"
266
 
267
- #: contact_form.php:689
268
  msgid "Enter a username of the person who should get the messages from the contact form."
269
  msgstr "Ange ett användarnamn på den användare som ska få meddelanden från kontaktformuläret."
270
 
271
- #: contact_form.php:693
272
  msgid "Use this email address:"
273
  msgstr "Använd den här e-postadressen:"
274
 
275
- #: contact_form.php:696
276
  msgid "Enter the email address you want the messages forwarded to."
277
  msgstr "Ange en e-postadress som ska användas för att ta emot meddelanden."
278
 
279
- #: contact_form.php:702
280
  msgid "Add department selectbox to the contact form:"
281
  msgstr ""
282
 
283
- #: contact_form.php:710
284
- #: contact_form.php:1246
285
  msgid "If you upgrade to Pro version all your settings will be saved."
286
  msgstr ""
287
 
288
- #: contact_form.php:715
289
- #: contact_form.php:852
290
- #: contact_form.php:923
291
- #: contact_form.php:1096
292
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
293
- msgstr "Denna funktionalitet är endast tillgänglig i Pro-versionen av detta tillägg. För detaljer, klicka på länken"
294
 
295
- #: contact_form.php:716
296
- #: contact_form.php:853
297
- #: contact_form.php:924
298
- #: contact_form.php:1097
299
- msgid "Contact Form Pro"
300
- msgstr "Kontaktformulär Pro"
 
 
301
 
302
- #: contact_form.php:722
 
 
 
 
 
 
 
303
  msgid "Save emails to the database"
304
  msgstr ""
305
 
306
- #: contact_form.php:732
307
  msgid "Using"
308
  msgstr ""
309
 
310
- #: contact_form.php:732
311
- #: contact_form.php:901
312
- #: contact_form.php:904
313
- #: contact_form.php:908
314
  msgid "powered by"
315
  msgstr ""
316
 
317
- #: contact_form.php:735
318
- #: contact_form.php:739
319
  msgid "Using Contact Form to DB powered by"
320
  msgstr ""
321
 
322
- #: contact_form.php:735
323
  #, fuzzy
324
  msgid "Activate Contact Form to DB"
325
  msgstr "Kontaktformulär Pro"
326
 
327
- #: contact_form.php:739
328
  #, fuzzy
329
  msgid "Download Contact Form to DB"
330
  msgstr "Kontaktformulär Pro"
331
 
332
- #: contact_form.php:744
333
  msgid "Additional options"
334
  msgstr "Ytterligare alternativ"
335
 
336
- #: contact_form.php:746
337
  msgid "Show"
338
  msgstr ""
339
 
340
- #: contact_form.php:747
341
  msgid "Hide"
342
  msgstr ""
343
 
344
- #: contact_form.php:751
345
  msgid "What to use?"
346
  msgstr "Vad ska användas?"
347
 
348
- #: contact_form.php:754
349
  msgid "Wp-mail"
350
  msgstr "Wp-mail"
351
 
352
- #: contact_form.php:754
353
  msgid "You can use the wp_mail function for mailing"
354
  msgstr "Du kan använda wp_mail-funktionen för att skicka e-post"
355
 
356
- #: contact_form.php:756
357
  msgid "Mail"
358
  msgstr "E-post"
359
 
360
- #: contact_form.php:756
361
  msgid "To send mail you can use the php mail function"
362
  msgstr "Du kan använda php-funktionen för att skicka e-post"
363
 
364
- #: contact_form.php:760
365
  #, fuzzy
366
  msgid "The text in the 'From' field"
367
  msgstr "Ändra text för 'FRÅN'-fältet"
368
 
369
- #: contact_form.php:762
370
  #, fuzzy
371
  msgid "User name"
372
  msgstr "Användarens e-post"
373
 
374
- #: contact_form.php:763
375
  #, fuzzy
376
  msgid "The name of the user who fills the form will be used in the field 'From'."
377
  msgstr "E-postadressen för användaren som fyller i formuläret kommer att användas i 'Från'-fältet."
378
 
379
- #: contact_form.php:766
380
  #, fuzzy
381
  msgid "This text will be used in the 'FROM' field"
382
  msgstr "Denna e-postadress kommer att användas för 'Från'-fältet."
383
 
384
- #: contact_form.php:770
385
  #, fuzzy
386
  msgid "The email address in the 'From' field"
387
  msgstr "Ange e-postadress för 'Från'-fältet"
388
 
389
- #: contact_form.php:772
390
  msgid "User email"
391
  msgstr "Användarens e-post"
392
 
393
- #: contact_form.php:773
394
  msgid "The email address of the user who fills the form will be used in the field 'From'."
395
  msgstr "E-postadressen för användaren som fyller i formuläret kommer att användas i 'Från'-fältet."
396
 
397
- #: contact_form.php:776
398
  msgid "This email address will be used in the 'From' field."
399
  msgstr "Denna e-postadress kommer att användas för 'Från'-fältet."
400
 
401
- #: contact_form.php:780
402
  #, fuzzy
403
  msgid "Required symbol"
404
  msgstr "Obligatoriska fält"
405
 
406
- #: contact_form.php:790
407
  msgid "Fields"
408
  msgstr ""
409
 
410
- #: contact_form.php:791
411
  msgid "Used"
412
  msgstr ""
413
 
414
- #: contact_form.php:792
415
  #, fuzzy
416
  msgid "Required"
417
  msgstr "Obligatoriska fält"
418
 
419
- #: contact_form.php:793
420
  msgid "Visible"
421
  msgstr ""
422
 
423
- #: contact_form.php:794
424
  msgid "Disabled for editing"
425
  msgstr ""
426
 
427
- #: contact_form.php:795
428
  msgid "Field's default value"
429
  msgstr ""
430
 
431
- #: contact_form.php:800
432
- #: contact_form.php:1121
433
- #: contact_form.php:1841
434
- #: contact_form.php:1871
435
  msgid "Name"
436
  msgstr "Namn"
437
 
438
- #: contact_form.php:808
439
- #: contact_form.php:1126
440
- #: contact_form.php:1845
441
- #: contact_form.php:1873
442
  msgid "Address"
443
  msgstr "Adress"
444
 
445
- #: contact_form.php:816
446
  msgid "Email Address"
447
  msgstr "E-postadress"
448
 
449
- #: contact_form.php:824
450
  #, fuzzy
451
  msgid "Phone number"
452
  msgstr "Telefonnummer:"
453
 
454
- #: contact_form.php:832
455
- #: contact_form.php:1141
456
- #: contact_form.php:1855
457
- #: contact_form.php:1877
458
  msgid "Subject"
459
  msgstr "Ämne"
460
 
461
- #: contact_form.php:840
462
- #: contact_form.php:1145
463
- #: contact_form.php:1858
464
- #: contact_form.php:1878
465
  msgid "Message"
466
  msgstr "Meddelande"
467
 
468
- #: contact_form.php:858
469
  msgid "Attachment block"
470
  msgstr "Bilageblock"
471
 
472
- #: contact_form.php:860
473
  msgid "Users can attach the following file formats"
474
  msgstr "Användare kan bifoga filer av följande format"
475
 
476
- #: contact_form.php:874
477
  msgid "Add to the form"
478
  msgstr ""
479
 
480
- #: contact_form.php:879
481
  #, fuzzy
482
  msgid "Tips below the Attachment"
483
  msgstr "Visa förklaringar under bilageblocket"
484
 
485
- #: contact_form.php:888
486
  #, fuzzy
487
  msgid "'Send me a copy' block"
488
  msgstr "Skicka mig en kopia-block"
489
 
490
- #: contact_form.php:901
491
- #: contact_form.php:904
492
- #: contact_form.php:908
493
- #: contact_form.php:1155
494
  msgid "Captcha"
495
  msgstr "Captcha"
496
 
497
- #: contact_form.php:904
498
  msgid "Activate captcha"
499
  msgstr "Aktivera captcha"
500
 
501
- #: contact_form.php:908
502
  msgid "Download captcha"
503
  msgstr "Hämta captcha"
504
 
505
- #: contact_form.php:916
506
  msgid "Agreement checkbox"
507
  msgstr ""
508
 
509
- #: contact_form.php:916
510
  msgid "Required checkbox for submitting the form"
511
  msgstr ""
512
 
513
- #: contact_form.php:917
514
  msgid "Optional checkbox"
515
  msgstr ""
516
 
517
- #: contact_form.php:917
518
  msgid "Optional checkbox, the results of which will be displayed in email"
519
  msgstr ""
520
 
521
- #: contact_form.php:928
522
  msgid "Delete an attachment file from the server after the email is sent"
523
  msgstr ""
524
 
525
- #: contact_form.php:934
526
  msgid "Email in HTML format sending"
527
  msgstr ""
528
 
529
- #: contact_form.php:938
530
  msgid "Display additional info in the email"
531
  msgstr "Visa ytterligare information i meddelandet"
532
 
533
- #: contact_form.php:943
534
- #: contact_form.php:1808
535
- #: contact_form.php:1810
536
  msgid "Sent from (ip address)"
537
  msgstr "Skickat från (ip-adress)"
538
 
539
- #: contact_form.php:943
540
  #, fuzzy
541
  msgid "Example: Sent from (IP address):\t127.0.0.1"
542
  msgstr "Skickat från (ip-adress)"
543
 
544
- #: contact_form.php:944
545
- #: contact_form.php:1814
546
- #: contact_form.php:1816
547
  msgid "Date/Time"
548
  msgstr "Datum/Tid"
549
 
550
- #: contact_form.php:944
551
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
552
  msgstr ""
553
 
554
- #: contact_form.php:945
555
- #: contact_form.php:1820
556
- #: contact_form.php:1822
557
  msgid "Sent from (referer)"
558
  msgstr "Skickat från (referer)"
559
 
560
- #: contact_form.php:945
561
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
562
  msgstr ""
563
 
564
- #: contact_form.php:946
565
- #: contact_form.php:1826
566
- #: contact_form.php:1828
567
  msgid "Using (user agent)"
568
  msgstr "Använder (user agent)"
569
 
570
- #: contact_form.php:946
571
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
572
  msgstr ""
573
 
574
- #: contact_form.php:950
575
  msgid "Language settings for the field names in the form"
576
  msgstr "Språkinställningar för etikettnamn in formuläret"
577
 
578
- #: contact_form.php:959
579
  msgid "Add a language"
580
  msgstr "Lägg till ett språk"
581
 
582
- #: contact_form.php:963
583
  msgid "Change the names of the contact form fields and error messages"
584
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
585
 
586
- #: contact_form.php:968
587
- #: contact_form.php:1041
588
  msgid "English"
589
  msgstr "Engelska"
590
 
591
- #: contact_form.php:976
592
- #: contact_form.php:1006
593
  msgid "click to expand/hide the list"
594
  msgstr ""
595
 
596
- #: contact_form.php:985
597
- #: contact_form.php:1015
598
  #, fuzzy
599
  msgid "Tips below the Attachment block"
600
  msgstr "Visa förklaringar under bilageblocket"
601
 
602
- #: contact_form.php:988
603
- #: contact_form.php:1018
604
  msgid "Error message for the Name field"
605
  msgstr "Felmeddelande för namnfältet"
606
 
607
- #: contact_form.php:989
608
- #: contact_form.php:1019
609
  msgid "Error message for the Address field"
610
  msgstr "Felmeddelande för adressfältet"
611
 
612
- #: contact_form.php:990
613
- #: contact_form.php:1020
614
  msgid "Error message for the Email field"
615
  msgstr "Felmeddelande för e-postadressfältet"
616
 
617
- #: contact_form.php:991
618
- #: contact_form.php:1021
619
  msgid "Error message for the Phone field"
620
  msgstr "Felmeddelande för telefonfältet"
621
 
622
- #: contact_form.php:992
623
- #: contact_form.php:1022
624
  msgid "Error message for the Subject field"
625
  msgstr "Felmeddelande for ämnesfältet"
626
 
627
- #: contact_form.php:993
628
- #: contact_form.php:1023
629
  msgid "Error message for the Message field"
630
  msgstr "Felmeddelande för meddelandefältet"
631
 
632
- #: contact_form.php:994
633
- #: contact_form.php:1024
634
  msgid "Error message about the file type for the Attachment field"
635
  msgstr "Felmeddelande för filformat i bilagefältet"
636
 
637
- #: contact_form.php:995
638
- #: contact_form.php:1025
639
  msgid "Error message while uploading a file for the Attachment field to the server"
640
  msgstr "Felmeddelande för uppladdning av fil till bilagefältet på servern"
641
 
642
- #: contact_form.php:996
643
- #: contact_form.php:1026
644
  msgid "Error message while moving the file for the Attachment field"
645
  msgstr "Felmeddelande för flytt av fil till bilagefältet"
646
 
647
- #: contact_form.php:997
648
- #: contact_form.php:1027
649
  msgid "Error message when file size limit for the Attachment field is exceeded"
650
  msgstr "Felmeddelande för max filstorlek i bilagefältet "
651
 
652
- #: contact_form.php:998
653
- #: contact_form.php:1028
654
  msgid "Error message for the Captcha field"
655
  msgstr "Felmeddelande för CAPTCHA"
656
 
657
- #: contact_form.php:999
658
- #: contact_form.php:1029
659
  msgid "Error message for the whole form"
660
  msgstr "Felmeddelande för formuläret"
661
 
662
- #: contact_form.php:1001
663
- #: contact_form.php:1031
664
- #: contact_form.php:1050
665
- #: contact_form.php:1056
 
 
 
 
666
  msgid "Use shortcode"
667
  msgstr "Använd kortkod"
668
 
669
- #: contact_form.php:1001
670
- #: contact_form.php:1031
671
- #: contact_form.php:1050
672
- #: contact_form.php:1056
 
 
 
 
673
  msgid "for this language"
674
  msgstr "för detta språk"
675
 
676
- #: contact_form.php:1038
677
  msgid "Action after email is sent"
678
  msgstr "Åtgärd efter meddelande skickats"
679
 
680
- #: contact_form.php:1040
681
  msgid "Display text"
682
  msgstr "Visa text"
683
 
684
- #: contact_form.php:1049
685
- #: contact_form.php:1055
686
  msgid "Text"
687
  msgstr "Text"
688
 
689
- #: contact_form.php:1062
690
  msgid "Redirect to the page"
691
  msgstr "Omdirigera till sida"
692
 
693
- #: contact_form.php:1063
694
  msgid "Url"
695
  msgstr "Url"
696
 
697
- #: contact_form.php:1067
698
  msgid "The $_SERVER variable that is used to build a URL of the form"
699
  msgstr ""
700
 
701
- #: contact_form.php:1071
702
  msgid "If you are not sure whether to change this setting or not, please do not do that."
703
  msgstr ""
704
 
705
- #: contact_form.php:1077
706
- #: contact_form.php:1252
707
  msgid "Save Changes"
708
  msgstr "Spara ändringar"
709
 
710
- #: contact_form.php:1082
711
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
712
  msgstr ""
713
 
714
- #: contact_form.php:1083
715
  #, fuzzy
716
  msgid "Rate the plugin"
717
  msgstr "Gratis tillägg"
718
 
719
- #: contact_form.php:1086
720
  #, fuzzy
721
  msgid "If there is something wrong about it, please contact us"
722
  msgstr "Om du har några frågor, kontakta oss via"
723
 
724
- #: contact_form.php:1101
725
  msgid "Errors output"
726
  msgstr "Felutmatning"
727
 
728
- #: contact_form.php:1104
729
  msgid "Display error messages"
730
  msgstr "Visa felmeddelanden"
731
 
732
- #: contact_form.php:1105
733
  msgid "Color of the input field errors."
734
  msgstr "Färg på inmatningfältsfel."
735
 
736
- #: contact_form.php:1106
737
  msgid "Display error messages & color of the input field errors"
738
  msgstr "Visa felmeddelanden & färg på inmatningfältsfel"
739
 
740
- #: contact_form.php:1111
741
  msgid "Add placeholder to the input blocks"
742
  msgstr "Lägg till platshållare på inmatningsblocken"
743
 
744
- #: contact_form.php:1117
745
  msgid "Add tooltips"
746
  msgstr "Visa verktygstips"
747
 
748
- #: contact_form.php:1131
749
  msgid "Email address"
750
  msgstr "E-postadress"
751
 
752
- #: contact_form.php:1136
753
  msgid "Phone Number"
754
  msgstr "Telefonnummer"
755
 
756
- #: contact_form.php:1150
757
  msgid "Attachment"
758
  msgstr "Bifoga fil"
759
 
760
- #: contact_form.php:1155
761
  msgid "(powered by bestwebsoft.com)"
762
  msgstr "(tillhandahålls av bestwebsoft.com)"
763
 
764
- #: contact_form.php:1160
765
  msgid "Style options"
766
  msgstr "Stilalternativ"
767
 
768
- #: contact_form.php:1163
769
  msgid "Text color"
770
  msgstr "Textfärg"
771
 
772
- #: contact_form.php:1166
773
- #: contact_form.php:1171
774
- #: contact_form.php:1181
775
- #: contact_form.php:1186
776
- #: contact_form.php:1191
777
- #: contact_form.php:1196
778
- #: contact_form.php:1206
779
- #: contact_form.php:1211
780
- #: contact_form.php:1217
781
- #: contact_form.php:1228
782
- #: contact_form.php:1233
783
- #: contact_form.php:1238
784
  msgid "Default"
785
  msgstr "Standard"
786
 
787
- #: contact_form.php:1168
788
  msgid "Label text color"
789
  msgstr "Etikett-textfärg"
790
 
791
- #: contact_form.php:1173
792
  msgid "Placeholder color"
793
  msgstr "Platshållarfärg"
794
 
795
- #: contact_form.php:1178
796
  msgid "Errors color"
797
  msgstr "Felfärg"
798
 
799
- #: contact_form.php:1183
800
  msgid "Error text color"
801
  msgstr "Feltextfärg"
802
 
803
- #: contact_form.php:1188
804
  msgid "Background color of the input field errors"
805
  msgstr "Bakgrundsfärg på inmatningfältsfel"
806
 
807
- #: contact_form.php:1193
808
  msgid "Border color of the input field errors"
809
  msgstr "Ramfärg på inmatningfältsfel"
810
 
811
- #: contact_form.php:1198
812
  msgid "Placeholder color of the input field errors"
813
  msgstr "Platshållarfärg för inmatningfältsfel"
814
 
815
- #: contact_form.php:1203
816
  msgid "Input fields"
817
  msgstr "Inmatningsfält"
818
 
819
- #: contact_form.php:1208
820
  msgid "Input fields background color"
821
  msgstr "Inmatningfältsbakgrundsfärg"
822
 
823
- #: contact_form.php:1213
824
  msgid "Text fields color"
825
  msgstr "Textfältfärg"
826
 
827
- #: contact_form.php:1215
828
  msgid "Border width in px, numbers only"
829
  msgstr "Rambredd i px, endast siffror"
830
 
831
- #: contact_form.php:1219
832
- #: contact_form.php:1240
833
  msgid "Border color"
834
  msgstr "Ramfärg"
835
 
836
- #: contact_form.php:1224
837
  msgid "Submit button"
838
  msgstr "Skicka-knapp"
839
 
840
- #: contact_form.php:1226
841
  msgid "Width in px, numbers only"
842
  msgstr "Bredd i px, endast siffror"
843
 
844
- #: contact_form.php:1230
845
  msgid "Button color"
846
  msgstr "Knappfärg"
847
 
848
- #: contact_form.php:1235
849
  msgid "Button text color"
850
  msgstr "Knapptextfärg"
851
 
852
- #: contact_form.php:1256
853
  msgid "Contact Form Pro | Preview"
854
  msgstr "Kontaktformulär Pro | Förhandsgranskning"
855
 
856
- #: contact_form.php:1259
857
  msgid "Show with errors"
858
  msgstr "Visa med fel"
859
 
860
- #: contact_form.php:1267
861
- #: contact_form.php:1269
862
  msgid "Please enter your full name..."
863
  msgstr "Var god ange ditt fullständiga namn…"
864
 
865
- #: contact_form.php:1280
866
- #: contact_form.php:1282
867
  msgid "Please enter your address..."
868
  msgstr "Var god ange din adress…"
869
 
870
- #: contact_form.php:1291
871
- #: contact_form.php:1293
872
  msgid "Please enter your email address..."
873
  msgstr "Var god ange din e-postadress…"
874
 
875
- #: contact_form.php:1302
876
- #: contact_form.php:1304
877
  msgid "Please enter your phone number..."
878
  msgstr "Var god ange ditt telefonnummer…"
879
 
880
- #: contact_form.php:1313
881
- #: contact_form.php:1315
882
  msgid "Please enter subject..."
883
  msgstr "Var god ange ämne…"
884
 
885
- #: contact_form.php:1323
886
- #: contact_form.php:1325
887
  msgid "Please enter your message..."
888
  msgstr "Var god ange ditt meddelande…"
889
 
890
- #: contact_form.php:1367
891
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
892
  msgstr ""
893
 
894
- #: contact_form.php:1369
895
  msgid "Please, go to"
896
  msgstr ""
897
 
898
- #: contact_form.php:1369
899
  #, fuzzy
900
  msgid "the setting page"
901
  msgstr "Extra inställningar"
902
 
903
- #: contact_form.php:1370
904
  msgid "You will be redirected automatically in 5 seconds."
905
  msgstr ""
906
 
907
- #: contact_form.php:1375
908
  msgid "You can download and activate"
909
  msgstr ""
910
 
911
- #: contact_form.php:1377
912
  msgid "version of this plugin by entering Your license key."
913
  msgstr ""
914
 
915
- #: contact_form.php:1379
916
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
917
  msgstr ""
918
 
919
- #: contact_form.php:1381
920
  msgid "(your username is the email you specify when purchasing the product)."
921
  msgstr ""
922
 
923
- #: contact_form.php:1389
924
- #: contact_form.php:1399
925
  msgid "Go!"
926
  msgstr ""
927
 
928
- #: contact_form.php:1449
929
  msgid "Sorry, email message could not be delivered."
930
  msgstr "Tyvärr kunde ditt meddelande inte levereras."
931
 
932
- #: contact_form.php:1835
933
  msgid "Contact from"
934
  msgstr "Kontaktformulär"
935
 
936
- #: contact_form.php:1848
937
- #: contact_form.php:1874
938
  msgid "Email"
939
  msgstr "E-post"
940
 
941
- #: contact_form.php:1852
942
- #: contact_form.php:1876
943
  msgid "Phone"
944
  msgstr "Telefon"
945
 
946
- #: contact_form.php:1861
947
- #: contact_form.php:1879
948
  msgid "Site"
949
  msgstr "Sajt"
950
 
951
- #: contact_form.php:1941
952
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
953
  msgstr "Om du kan se detta MIME, så accepterar inte din e-postklient denna MIME-typ!"
954
 
955
- #: contact_form.php:2009
956
  msgid "FAQ"
957
  msgstr "FAQ"
958
 
959
- #: contact_form.php:2010
960
  msgid "Support"
961
  msgstr "Support"
962
 
963
- #: contact_form.php:2068
964
  msgid "Are you sure that you want to delete this language data?"
965
  msgstr "Är du säker på att du vill ta bort språkdatan?"
966
 
967
- #: contact_form.php:2223
968
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
969
  msgstr ""
970
 
971
- #: contact_form.php:2224
972
  msgid "Extend standard plugin functionality with new great options."
973
  msgstr ""
974
 
975
- #: contact_form.php:2233
976
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
977
  msgstr ""
978
 
979
- #: contact_form.php:2234
980
  msgid "Manage messages that have been sent from your website."
981
  msgstr ""
982
 
 
 
 
 
 
 
 
 
 
 
983
  #~ msgid "Contact Form Pro Extra Settings"
984
  #~ msgstr "Kontaktformulär Pro Extra inställningar"
985
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:41+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:41+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest <joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  msgid "Contact Form Settings"
22
  msgstr "Kontaktformulärinställningar"
23
 
24
+ #: contact_form.php:73
25
  msgid "Contact Form"
26
  msgstr "Kontaktformulär"
27
 
28
+ #: contact_form.php:149
29
+ #: contact_form.php:1131
30
+ #: contact_form.php:1165
31
  msgid "Name:"
32
  msgstr "Namn:"
33
 
34
+ #: contact_form.php:150
35
+ #: contact_form.php:1132
36
+ #: contact_form.php:1166
37
  msgid "Address:"
38
  msgstr "Adress:"
39
 
40
+ #: contact_form.php:151
41
+ #: contact_form.php:1133
42
+ #: contact_form.php:1167
43
  msgid "Email Address:"
44
  msgstr "E-postadress:"
45
 
46
+ #: contact_form.php:152
47
+ #: contact_form.php:1134
48
+ #: contact_form.php:1168
49
  msgid "Phone number:"
50
  msgstr "Telefonnummer:"
51
 
52
+ #: contact_form.php:153
53
+ #: contact_form.php:1135
54
+ #: contact_form.php:1169
55
  msgid "Subject:"
56
  msgstr "Ämne:"
57
 
58
+ #: contact_form.php:154
59
+ #: contact_form.php:1136
60
+ #: contact_form.php:1170
61
  msgid "Message:"
62
  msgstr "Meddelande:"
63
 
64
+ #: contact_form.php:155
65
+ #: contact_form.php:1137
66
+ #: contact_form.php:1171
67
  msgid "Attachment:"
68
  msgstr "Bifogad fil:"
69
 
70
+ #: contact_form.php:156
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Stödda filformat: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max filstorlek: 2MB"
73
 
74
+ #: contact_form.php:157
75
+ #: contact_form.php:1139
76
+ #: contact_form.php:1173
77
  msgid "Send me a copy"
78
  msgstr "Skicka mig en kopia"
79
 
80
+ #: contact_form.php:158
81
+ #: contact_form.php:1140
82
+ #: contact_form.php:1174
83
  msgid "Submit"
84
  msgstr "Skicka"
85
 
86
+ #: contact_form.php:159
87
  msgid "Your name is required."
88
  msgstr "Ditt namn krävs."
89
 
90
+ #: contact_form.php:160
91
  msgid "Address is required."
92
  msgstr "Adress krävs."
93
 
94
+ #: contact_form.php:161
95
  msgid "A valid email address is required."
96
  msgstr "En giltig e-postadress krävs."
97
 
98
+ #: contact_form.php:162
99
  msgid "Phone number is required."
100
  msgstr "Telefonnummer krävs."
101
 
102
+ #: contact_form.php:163
103
  msgid "Subject is required."
104
  msgstr "Ämne krävs."
105
 
106
+ #: contact_form.php:164
107
  msgid "Message text is required."
108
  msgstr "Meddelande krävs."
109
 
110
+ #: contact_form.php:165
111
  msgid "File format is not valid."
112
  msgstr "Bilageformaten är inte giltigt."
113
 
114
+ #: contact_form.php:166
115
  msgid "File upload error."
116
  msgstr "Filuppladdningsfel."
117
 
118
+ #: contact_form.php:167
119
  msgid "The file could not be uploaded."
120
  msgstr "Filen kunde inte laddas upp."
121
 
122
+ #: contact_form.php:168
123
  msgid "This file is too large."
124
  msgstr "Filen är för stor."
125
 
126
+ #: contact_form.php:169
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Var god fyll i CAPTCHA."
129
 
130
+ #: contact_form.php:170
131
  msgid "Please make corrections below and try again."
132
  msgstr "Var god gör korrigeringar nedan och försök igen."
133
 
134
+ #: contact_form.php:172
135
  msgid "Thank you for contacting us."
136
  msgstr "Tack för att du kontaktade oss."
137
 
138
+ #: contact_form.php:322
139
  #, fuzzy
140
  msgid "requires"
141
  msgstr "Obligatoriska fält"
142
 
143
+ #: contact_form.php:322
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr ""
146
 
147
+ #: contact_form.php:322
148
  msgid "Back to the WordPress"
149
  msgstr ""
150
 
151
+ #: contact_form.php:322
152
  #, fuzzy
153
  msgid "Plugins page"
154
  msgstr "Pro-tillägg"
155
 
156
+ #: contact_form.php:626
157
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
158
  msgstr "Om alternativet 'Omdirigera till sida' väljs ska URL-fältet fyllas i med följande format"
159
 
160
+ #: contact_form.php:635
161
  msgid "Such user does not exist. Settings are not saved."
162
  msgstr "Användaren finns inte. Inställningarna sparades inte."
163
 
164
+ #: contact_form.php:639
165
+ #: contact_form.php:645
166
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
167
  msgstr "Var god ange en giltig e-postadress i 'FRÅN'-fältet. Inställningarna sparades inte."
168
 
169
+ #: contact_form.php:661
170
  msgid "Settings saved."
171
  msgstr "Inställningar sparades."
172
 
173
+ #: contact_form.php:688
174
+ #: contact_form.php:720
175
  msgid "Wrong license key"
176
  msgstr ""
177
 
178
+ #: contact_form.php:713
179
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
180
  msgstr ""
181
 
182
+ #: contact_form.php:722
183
  msgid "This license key is bind to another site"
184
  msgstr ""
185
 
186
+ #: contact_form.php:724
187
+ #: contact_form.php:1570
188
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
189
  msgstr ""
190
 
191
+ #: contact_form.php:741
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
 
195
+ #: contact_form.php:747
196
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
197
  msgstr ""
198
 
199
+ #: contact_form.php:751
200
+ #: contact_form.php:760
201
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
+ #: contact_form.php:764
205
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
206
  msgstr ""
207
 
208
+ #: contact_form.php:779
209
  #, fuzzy
210
  msgid "Please, enter Your license key"
211
  msgstr "Var god ange ditt meddelande…"
212
 
213
+ #: contact_form.php:787
214
+ #: contact_form.php:2216
215
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
216
  msgid "Settings"
217
  msgstr "Inställningar"
218
 
219
+ #: contact_form.php:788
220
  msgid "Extra settings"
221
  msgstr "Extra inställningar"
222
 
223
+ #: contact_form.php:789
224
  msgid "Go PRO"
225
  msgstr ""
226
 
227
+ #: contact_form.php:792
228
+ msgid "Notice:"
229
+ msgstr ""
230
+
231
+ #: contact_form.php:792
232
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
233
+ msgstr ""
234
+
235
+ #: contact_form.php:798
236
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
237
+ msgstr ""
238
+
239
+ #: contact_form.php:804
240
+ #: contact_form.php:809
241
+ #: contact_form.php:1529
242
  msgid "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:"
243
  msgstr "Om du vill lägga till ett kontaktformulär på din webbplats, kopiera följande kortkod och klistra in den på rätt inlägg, sida eller widget:"
244
 
245
+ #: contact_form.php:804
246
+ #: contact_form.php:805
247
+ #: contact_form.php:809
248
+ #: contact_form.php:810
249
+ #: contact_form.php:1155
250
+ #: contact_form.php:1157
251
+ #: contact_form.php:1212
252
+ #: contact_form.php:1214
253
  msgid "or"
254
  msgstr ""
255
 
256
+ #: contact_form.php:805
257
+ #: contact_form.php:810
258
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
259
  msgstr ""
260
 
261
+ #: contact_form.php:806
262
+ #: contact_form.php:811
263
  msgid "They work the same way."
264
  msgstr ""
265
 
266
+ #: contact_form.php:807
267
+ #: contact_form.php:812
268
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
269
  msgstr "Om du lämnar fälten tomma kommer meddelandena att skickas till den e-postadressen som angavs under registreringen."
270
 
271
+ #: contact_form.php:817
272
  msgid "The user's email address:"
273
  msgstr "Användarens e-postadress:"
274
 
275
+ #: contact_form.php:821
276
  msgid "Create a username"
277
  msgstr "Skapa ett användarnamn"
278
 
279
+ #: contact_form.php:828
280
  msgid "Enter a username of the person who should get the messages from the contact form."
281
  msgstr "Ange ett användarnamn på den användare som ska få meddelanden från kontaktformuläret."
282
 
283
+ #: contact_form.php:832
284
  msgid "Use this email address:"
285
  msgstr "Använd den här e-postadressen:"
286
 
287
+ #: contact_form.php:835
288
  msgid "Enter the email address you want the messages forwarded to."
289
  msgstr "Ange en e-postadress som ska användas för att ta emot meddelanden."
290
 
291
+ #: contact_form.php:844
292
  msgid "Add department selectbox to the contact form:"
293
  msgstr ""
294
 
295
+ #: contact_form.php:852
296
+ #: contact_form.php:1412
297
  msgid "If you upgrade to Pro version all your settings will be saved."
298
  msgstr ""
299
 
300
+ #: contact_form.php:859
301
+ #: contact_form.php:997
302
+ #: contact_form.php:1071
303
+ #: contact_form.php:1419
304
+ msgid "Unlock premium options by upgrading to a PRO version."
305
+ msgstr ""
306
 
307
+ #: contact_form.php:860
308
+ #: contact_form.php:998
309
+ #: contact_form.php:1072
310
+ #: contact_form.php:1420
311
+ #: contact_form.php:2473
312
+ #: contact_form.php:2489
313
+ msgid "Learn More"
314
+ msgstr ""
315
 
316
+ #: contact_form.php:863
317
+ #: contact_form.php:1001
318
+ #: contact_form.php:1075
319
+ #: contact_form.php:1423
320
+ msgid "Go"
321
+ msgstr ""
322
+
323
+ #: contact_form.php:870
324
  msgid "Save emails to the database"
325
  msgstr ""
326
 
327
+ #: contact_form.php:876
328
  msgid "Using"
329
  msgstr ""
330
 
331
+ #: contact_form.php:876
332
+ #: contact_form.php:1048
333
+ #: contact_form.php:1051
334
+ #: contact_form.php:1055
335
  msgid "powered by"
336
  msgstr ""
337
 
338
+ #: contact_form.php:879
339
+ #: contact_form.php:883
340
  msgid "Using Contact Form to DB powered by"
341
  msgstr ""
342
 
343
+ #: contact_form.php:879
344
  #, fuzzy
345
  msgid "Activate Contact Form to DB"
346
  msgstr "Kontaktformulär Pro"
347
 
348
+ #: contact_form.php:883
349
  #, fuzzy
350
  msgid "Download Contact Form to DB"
351
  msgstr "Kontaktformulär Pro"
352
 
353
+ #: contact_form.php:888
354
  msgid "Additional options"
355
  msgstr "Ytterligare alternativ"
356
 
357
+ #: contact_form.php:890
358
  msgid "Show"
359
  msgstr ""
360
 
361
+ #: contact_form.php:891
362
  msgid "Hide"
363
  msgstr ""
364
 
365
+ #: contact_form.php:895
366
  msgid "What to use?"
367
  msgstr "Vad ska användas?"
368
 
369
+ #: contact_form.php:898
370
  msgid "Wp-mail"
371
  msgstr "Wp-mail"
372
 
373
+ #: contact_form.php:898
374
  msgid "You can use the wp_mail function for mailing"
375
  msgstr "Du kan använda wp_mail-funktionen för att skicka e-post"
376
 
377
+ #: contact_form.php:900
378
  msgid "Mail"
379
  msgstr "E-post"
380
 
381
+ #: contact_form.php:900
382
  msgid "To send mail you can use the php mail function"
383
  msgstr "Du kan använda php-funktionen för att skicka e-post"
384
 
385
+ #: contact_form.php:904
386
  #, fuzzy
387
  msgid "The text in the 'From' field"
388
  msgstr "Ändra text för 'FRÅN'-fältet"
389
 
390
+ #: contact_form.php:906
391
  #, fuzzy
392
  msgid "User name"
393
  msgstr "Användarens e-post"
394
 
395
+ #: contact_form.php:907
396
  #, fuzzy
397
  msgid "The name of the user who fills the form will be used in the field 'From'."
398
  msgstr "E-postadressen för användaren som fyller i formuläret kommer att användas i 'Från'-fältet."
399
 
400
+ #: contact_form.php:910
401
  #, fuzzy
402
  msgid "This text will be used in the 'FROM' field"
403
  msgstr "Denna e-postadress kommer att användas för 'Från'-fältet."
404
 
405
+ #: contact_form.php:914
406
  #, fuzzy
407
  msgid "The email address in the 'From' field"
408
  msgstr "Ange e-postadress för 'Från'-fältet"
409
 
410
+ #: contact_form.php:916
411
  msgid "User email"
412
  msgstr "Användarens e-post"
413
 
414
+ #: contact_form.php:917
415
  msgid "The email address of the user who fills the form will be used in the field 'From'."
416
  msgstr "E-postadressen för användaren som fyller i formuläret kommer att användas i 'Från'-fältet."
417
 
418
+ #: contact_form.php:920
419
  msgid "This email address will be used in the 'From' field."
420
  msgstr "Denna e-postadress kommer att användas för 'Från'-fältet."
421
 
422
+ #: contact_form.php:924
423
  #, fuzzy
424
  msgid "Required symbol"
425
  msgstr "Obligatoriska fält"
426
 
427
+ #: contact_form.php:934
428
  msgid "Fields"
429
  msgstr ""
430
 
431
+ #: contact_form.php:935
432
  msgid "Used"
433
  msgstr ""
434
 
435
+ #: contact_form.php:936
436
  #, fuzzy
437
  msgid "Required"
438
  msgstr "Obligatoriska fält"
439
 
440
+ #: contact_form.php:937
441
  msgid "Visible"
442
  msgstr ""
443
 
444
+ #: contact_form.php:938
445
  msgid "Disabled for editing"
446
  msgstr ""
447
 
448
+ #: contact_form.php:939
449
  msgid "Field's default value"
450
  msgstr ""
451
 
452
+ #: contact_form.php:944
453
+ #: contact_form.php:1287
454
+ #: contact_form.php:2059
455
+ #: contact_form.php:2089
456
  msgid "Name"
457
  msgstr "Namn"
458
 
459
+ #: contact_form.php:952
460
+ #: contact_form.php:1292
461
+ #: contact_form.php:2063
462
+ #: contact_form.php:2091
463
  msgid "Address"
464
  msgstr "Adress"
465
 
466
+ #: contact_form.php:960
467
  msgid "Email Address"
468
  msgstr "E-postadress"
469
 
470
+ #: contact_form.php:968
471
  #, fuzzy
472
  msgid "Phone number"
473
  msgstr "Telefonnummer:"
474
 
475
+ #: contact_form.php:976
476
+ #: contact_form.php:1307
477
+ #: contact_form.php:2073
478
+ #: contact_form.php:2095
479
  msgid "Subject"
480
  msgstr "Ämne"
481
 
482
+ #: contact_form.php:984
483
+ #: contact_form.php:1311
484
+ #: contact_form.php:2076
485
+ #: contact_form.php:2096
486
  msgid "Message"
487
  msgstr "Meddelande"
488
 
489
+ #: contact_form.php:1008
490
  msgid "Attachment block"
491
  msgstr "Bilageblock"
492
 
493
+ #: contact_form.php:1010
494
  msgid "Users can attach the following file formats"
495
  msgstr "Användare kan bifoga filer av följande format"
496
 
497
+ #: contact_form.php:1023
498
  msgid "Add to the form"
499
  msgstr ""
500
 
501
+ #: contact_form.php:1028
502
  #, fuzzy
503
  msgid "Tips below the Attachment"
504
  msgstr "Visa förklaringar under bilageblocket"
505
 
506
+ #: contact_form.php:1037
507
  #, fuzzy
508
  msgid "'Send me a copy' block"
509
  msgstr "Skicka mig en kopia-block"
510
 
511
+ #: contact_form.php:1048
512
+ #: contact_form.php:1051
513
+ #: contact_form.php:1055
514
+ #: contact_form.php:1321
515
  msgid "Captcha"
516
  msgstr "Captcha"
517
 
518
+ #: contact_form.php:1051
519
  msgid "Activate captcha"
520
  msgstr "Aktivera captcha"
521
 
522
+ #: contact_form.php:1055
523
  msgid "Download captcha"
524
  msgstr "Hämta captcha"
525
 
526
+ #: contact_form.php:1063
527
  msgid "Agreement checkbox"
528
  msgstr ""
529
 
530
+ #: contact_form.php:1063
531
  msgid "Required checkbox for submitting the form"
532
  msgstr ""
533
 
534
+ #: contact_form.php:1064
535
  msgid "Optional checkbox"
536
  msgstr ""
537
 
538
+ #: contact_form.php:1064
539
  msgid "Optional checkbox, the results of which will be displayed in email"
540
  msgstr ""
541
 
542
+ #: contact_form.php:1081
543
  msgid "Delete an attachment file from the server after the email is sent"
544
  msgstr ""
545
 
546
+ #: contact_form.php:1087
547
  msgid "Email in HTML format sending"
548
  msgstr ""
549
 
550
+ #: contact_form.php:1091
551
  msgid "Display additional info in the email"
552
  msgstr "Visa ytterligare information i meddelandet"
553
 
554
+ #: contact_form.php:1096
555
+ #: contact_form.php:2026
556
+ #: contact_form.php:2028
557
  msgid "Sent from (ip address)"
558
  msgstr "Skickat från (ip-adress)"
559
 
560
+ #: contact_form.php:1096
561
  #, fuzzy
562
  msgid "Example: Sent from (IP address):\t127.0.0.1"
563
  msgstr "Skickat från (ip-adress)"
564
 
565
+ #: contact_form.php:1097
566
+ #: contact_form.php:2032
567
+ #: contact_form.php:2034
568
  msgid "Date/Time"
569
  msgstr "Datum/Tid"
570
 
571
+ #: contact_form.php:1097
572
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
573
  msgstr ""
574
 
575
+ #: contact_form.php:1098
576
+ #: contact_form.php:2038
577
+ #: contact_form.php:2040
578
  msgid "Sent from (referer)"
579
  msgstr "Skickat från (referer)"
580
 
581
+ #: contact_form.php:1098
582
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
583
  msgstr ""
584
 
585
+ #: contact_form.php:1099
586
+ #: contact_form.php:2044
587
+ #: contact_form.php:2046
588
  msgid "Using (user agent)"
589
  msgstr "Använder (user agent)"
590
 
591
+ #: contact_form.php:1099
592
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
593
  msgstr ""
594
 
595
+ #: contact_form.php:1103
596
  msgid "Language settings for the field names in the form"
597
  msgstr "Språkinställningar för etikettnamn in formuläret"
598
 
599
+ #: contact_form.php:1112
600
  msgid "Add a language"
601
  msgstr "Lägg till ett språk"
602
 
603
+ #: contact_form.php:1116
604
  msgid "Change the names of the contact form fields and error messages"
605
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
606
 
607
+ #: contact_form.php:1121
608
+ #: contact_form.php:1202
609
  msgid "English"
610
  msgstr "Engelska"
611
 
612
+ #: contact_form.php:1129
613
+ #: contact_form.php:1163
614
  msgid "click to expand/hide the list"
615
  msgstr ""
616
 
617
+ #: contact_form.php:1138
618
+ #: contact_form.php:1172
619
  #, fuzzy
620
  msgid "Tips below the Attachment block"
621
  msgstr "Visa förklaringar under bilageblocket"
622
 
623
+ #: contact_form.php:1141
624
+ #: contact_form.php:1175
625
  msgid "Error message for the Name field"
626
  msgstr "Felmeddelande för namnfältet"
627
 
628
+ #: contact_form.php:1142
629
+ #: contact_form.php:1176
630
  msgid "Error message for the Address field"
631
  msgstr "Felmeddelande för adressfältet"
632
 
633
+ #: contact_form.php:1143
634
+ #: contact_form.php:1177
635
  msgid "Error message for the Email field"
636
  msgstr "Felmeddelande för e-postadressfältet"
637
 
638
+ #: contact_form.php:1144
639
+ #: contact_form.php:1178
640
  msgid "Error message for the Phone field"
641
  msgstr "Felmeddelande för telefonfältet"
642
 
643
+ #: contact_form.php:1145
644
+ #: contact_form.php:1179
645
  msgid "Error message for the Subject field"
646
  msgstr "Felmeddelande for ämnesfältet"
647
 
648
+ #: contact_form.php:1146
649
+ #: contact_form.php:1180
650
  msgid "Error message for the Message field"
651
  msgstr "Felmeddelande för meddelandefältet"
652
 
653
+ #: contact_form.php:1147
654
+ #: contact_form.php:1181
655
  msgid "Error message about the file type for the Attachment field"
656
  msgstr "Felmeddelande för filformat i bilagefältet"
657
 
658
+ #: contact_form.php:1148
659
+ #: contact_form.php:1182
660
  msgid "Error message while uploading a file for the Attachment field to the server"
661
  msgstr "Felmeddelande för uppladdning av fil till bilagefältet på servern"
662
 
663
+ #: contact_form.php:1149
664
+ #: contact_form.php:1183
665
  msgid "Error message while moving the file for the Attachment field"
666
  msgstr "Felmeddelande för flytt av fil till bilagefältet"
667
 
668
+ #: contact_form.php:1150
669
+ #: contact_form.php:1184
670
  msgid "Error message when file size limit for the Attachment field is exceeded"
671
  msgstr "Felmeddelande för max filstorlek i bilagefältet "
672
 
673
+ #: contact_form.php:1151
674
+ #: contact_form.php:1185
675
  msgid "Error message for the Captcha field"
676
  msgstr "Felmeddelande för CAPTCHA"
677
 
678
+ #: contact_form.php:1152
679
+ #: contact_form.php:1186
680
  msgid "Error message for the whole form"
681
  msgstr "Felmeddelande för formuläret"
682
 
683
+ #: contact_form.php:1155
684
+ #: contact_form.php:1157
685
+ #: contact_form.php:1189
686
+ #: contact_form.php:1191
687
+ #: contact_form.php:1212
688
+ #: contact_form.php:1214
689
+ #: contact_form.php:1222
690
+ #: contact_form.php:1224
691
  msgid "Use shortcode"
692
  msgstr "Använd kortkod"
693
 
694
+ #: contact_form.php:1155
695
+ #: contact_form.php:1157
696
+ #: contact_form.php:1189
697
+ #: contact_form.php:1191
698
+ #: contact_form.php:1212
699
+ #: contact_form.php:1214
700
+ #: contact_form.php:1222
701
+ #: contact_form.php:1224
702
  msgid "for this language"
703
  msgstr "för detta språk"
704
 
705
+ #: contact_form.php:1199
706
  msgid "Action after email is sent"
707
  msgstr "Åtgärd efter meddelande skickats"
708
 
709
+ #: contact_form.php:1201
710
  msgid "Display text"
711
  msgstr "Visa text"
712
 
713
+ #: contact_form.php:1210
714
+ #: contact_form.php:1220
715
  msgid "Text"
716
  msgstr "Text"
717
 
718
+ #: contact_form.php:1231
719
  msgid "Redirect to the page"
720
  msgstr "Omdirigera till sida"
721
 
722
+ #: contact_form.php:1232
723
  msgid "Url"
724
  msgstr "Url"
725
 
726
+ #: contact_form.php:1236
727
  msgid "The $_SERVER variable that is used to build a URL of the form"
728
  msgstr ""
729
 
730
+ #: contact_form.php:1240
731
  msgid "If you are not sure whether to change this setting or not, please do not do that."
732
  msgstr ""
733
 
734
+ #: contact_form.php:1246
735
+ #: contact_form.php:1430
736
  msgid "Save Changes"
737
  msgstr "Spara ändringar"
738
 
739
+ #: contact_form.php:1251
740
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
741
  msgstr ""
742
 
743
+ #: contact_form.php:1252
744
  #, fuzzy
745
  msgid "Rate the plugin"
746
  msgstr "Gratis tillägg"
747
 
748
+ #: contact_form.php:1255
749
  #, fuzzy
750
  msgid "If there is something wrong about it, please contact us"
751
  msgstr "Om du har några frågor, kontakta oss via"
752
 
753
+ #: contact_form.php:1267
754
  msgid "Errors output"
755
  msgstr "Felutmatning"
756
 
757
+ #: contact_form.php:1270
758
  msgid "Display error messages"
759
  msgstr "Visa felmeddelanden"
760
 
761
+ #: contact_form.php:1271
762
  msgid "Color of the input field errors."
763
  msgstr "Färg på inmatningfältsfel."
764
 
765
+ #: contact_form.php:1272
766
  msgid "Display error messages & color of the input field errors"
767
  msgstr "Visa felmeddelanden & färg på inmatningfältsfel"
768
 
769
+ #: contact_form.php:1277
770
  msgid "Add placeholder to the input blocks"
771
  msgstr "Lägg till platshållare på inmatningsblocken"
772
 
773
+ #: contact_form.php:1283
774
  msgid "Add tooltips"
775
  msgstr "Visa verktygstips"
776
 
777
+ #: contact_form.php:1297
778
  msgid "Email address"
779
  msgstr "E-postadress"
780
 
781
+ #: contact_form.php:1302
782
  msgid "Phone Number"
783
  msgstr "Telefonnummer"
784
 
785
+ #: contact_form.php:1316
786
  msgid "Attachment"
787
  msgstr "Bifoga fil"
788
 
789
+ #: contact_form.php:1321
790
  msgid "(powered by bestwebsoft.com)"
791
  msgstr "(tillhandahålls av bestwebsoft.com)"
792
 
793
+ #: contact_form.php:1326
794
  msgid "Style options"
795
  msgstr "Stilalternativ"
796
 
797
+ #: contact_form.php:1329
798
  msgid "Text color"
799
  msgstr "Textfärg"
800
 
801
+ #: contact_form.php:1332
802
+ #: contact_form.php:1337
803
+ #: contact_form.php:1347
804
+ #: contact_form.php:1352
805
+ #: contact_form.php:1357
806
+ #: contact_form.php:1362
807
+ #: contact_form.php:1372
808
+ #: contact_form.php:1377
809
+ #: contact_form.php:1383
810
+ #: contact_form.php:1394
811
+ #: contact_form.php:1399
812
+ #: contact_form.php:1404
813
  msgid "Default"
814
  msgstr "Standard"
815
 
816
+ #: contact_form.php:1334
817
  msgid "Label text color"
818
  msgstr "Etikett-textfärg"
819
 
820
+ #: contact_form.php:1339
821
  msgid "Placeholder color"
822
  msgstr "Platshållarfärg"
823
 
824
+ #: contact_form.php:1344
825
  msgid "Errors color"
826
  msgstr "Felfärg"
827
 
828
+ #: contact_form.php:1349
829
  msgid "Error text color"
830
  msgstr "Feltextfärg"
831
 
832
+ #: contact_form.php:1354
833
  msgid "Background color of the input field errors"
834
  msgstr "Bakgrundsfärg på inmatningfältsfel"
835
 
836
+ #: contact_form.php:1359
837
  msgid "Border color of the input field errors"
838
  msgstr "Ramfärg på inmatningfältsfel"
839
 
840
+ #: contact_form.php:1364
841
  msgid "Placeholder color of the input field errors"
842
  msgstr "Platshållarfärg för inmatningfältsfel"
843
 
844
+ #: contact_form.php:1369
845
  msgid "Input fields"
846
  msgstr "Inmatningsfält"
847
 
848
+ #: contact_form.php:1374
849
  msgid "Input fields background color"
850
  msgstr "Inmatningfältsbakgrundsfärg"
851
 
852
+ #: contact_form.php:1379
853
  msgid "Text fields color"
854
  msgstr "Textfältfärg"
855
 
856
+ #: contact_form.php:1381
857
  msgid "Border width in px, numbers only"
858
  msgstr "Rambredd i px, endast siffror"
859
 
860
+ #: contact_form.php:1385
861
+ #: contact_form.php:1406
862
  msgid "Border color"
863
  msgstr "Ramfärg"
864
 
865
+ #: contact_form.php:1390
866
  msgid "Submit button"
867
  msgstr "Skicka-knapp"
868
 
869
+ #: contact_form.php:1392
870
  msgid "Width in px, numbers only"
871
  msgstr "Bredd i px, endast siffror"
872
 
873
+ #: contact_form.php:1396
874
  msgid "Button color"
875
  msgstr "Knappfärg"
876
 
877
+ #: contact_form.php:1401
878
  msgid "Button text color"
879
  msgstr "Knapptextfärg"
880
 
881
+ #: contact_form.php:1434
882
  msgid "Contact Form Pro | Preview"
883
  msgstr "Kontaktformulär Pro | Förhandsgranskning"
884
 
885
+ #: contact_form.php:1437
886
  msgid "Show with errors"
887
  msgstr "Visa med fel"
888
 
889
+ #: contact_form.php:1445
890
+ #: contact_form.php:1447
891
  msgid "Please enter your full name..."
892
  msgstr "Var god ange ditt fullständiga namn…"
893
 
894
+ #: contact_form.php:1458
895
+ #: contact_form.php:1460
896
  msgid "Please enter your address..."
897
  msgstr "Var god ange din adress…"
898
 
899
+ #: contact_form.php:1469
900
+ #: contact_form.php:1471
901
  msgid "Please enter your email address..."
902
  msgstr "Var god ange din e-postadress…"
903
 
904
+ #: contact_form.php:1480
905
+ #: contact_form.php:1482
906
  msgid "Please enter your phone number..."
907
  msgstr "Var god ange ditt telefonnummer…"
908
 
909
+ #: contact_form.php:1491
910
+ #: contact_form.php:1493
911
  msgid "Please enter subject..."
912
  msgstr "Var god ange ämne…"
913
 
914
+ #: contact_form.php:1501
915
+ #: contact_form.php:1503
916
  msgid "Please enter your message..."
917
  msgstr "Var god ange ditt meddelande…"
918
 
919
+ #: contact_form.php:1545
920
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
921
  msgstr ""
922
 
923
+ #: contact_form.php:1547
924
  msgid "Please, go to"
925
  msgstr ""
926
 
927
+ #: contact_form.php:1547
928
  #, fuzzy
929
  msgid "the setting page"
930
  msgstr "Extra inställningar"
931
 
932
+ #: contact_form.php:1548
933
  msgid "You will be redirected automatically in 5 seconds."
934
  msgstr ""
935
 
936
+ #: contact_form.php:1553
937
  msgid "You can download and activate"
938
  msgstr ""
939
 
940
+ #: contact_form.php:1555
941
  msgid "version of this plugin by entering Your license key."
942
  msgstr ""
943
 
944
+ #: contact_form.php:1557
945
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
946
  msgstr ""
947
 
948
+ #: contact_form.php:1559
949
  msgid "(your username is the email you specify when purchasing the product)."
950
  msgstr ""
951
 
952
+ #: contact_form.php:1567
953
+ #: contact_form.php:1577
954
  msgid "Go!"
955
  msgstr ""
956
 
957
+ #: contact_form.php:1647
958
  msgid "Sorry, email message could not be delivered."
959
  msgstr "Tyvärr kunde ditt meddelande inte levereras."
960
 
961
+ #: contact_form.php:2053
962
  msgid "Contact from"
963
  msgstr "Kontaktformulär"
964
 
965
+ #: contact_form.php:2066
966
+ #: contact_form.php:2092
967
  msgid "Email"
968
  msgstr "E-post"
969
 
970
+ #: contact_form.php:2070
971
+ #: contact_form.php:2094
972
  msgid "Phone"
973
  msgstr "Telefon"
974
 
975
+ #: contact_form.php:2079
976
+ #: contact_form.php:2097
977
  msgid "Site"
978
  msgstr "Sajt"
979
 
980
+ #: contact_form.php:2160
981
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
982
  msgstr "Om du kan se detta MIME, så accepterar inte din e-postklient denna MIME-typ!"
983
 
984
+ #: contact_form.php:2229
985
  msgid "FAQ"
986
  msgstr "FAQ"
987
 
988
+ #: contact_form.php:2230
989
  msgid "Support"
990
  msgstr "Support"
991
 
992
+ #: contact_form.php:2280
993
  msgid "Are you sure that you want to delete this language data?"
994
  msgstr "Är du säker på att du vill ta bort språkdatan?"
995
 
996
+ #: contact_form.php:2476
997
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
998
  msgstr ""
999
 
1000
+ #: contact_form.php:2477
1001
  msgid "Extend standard plugin functionality with new great options."
1002
  msgstr ""
1003
 
1004
+ #: contact_form.php:2492
1005
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
1006
  msgstr ""
1007
 
1008
+ #: contact_form.php:2493
1009
  msgid "Manage messages that have been sent from your website."
1010
  msgstr ""
1011
 
1012
+ #~ msgid ""
1013
+ #~ "This functionality is available in the Pro version of the plugin. For "
1014
+ #~ "more details, please follow the link"
1015
+ #~ msgstr ""
1016
+ #~ "Denna funktionalitet är endast tillgänglig i Pro-versionen av detta "
1017
+ #~ "tillägg. För detaljer, klicka på länken"
1018
+
1019
+ #~ msgid "Contact Form Pro"
1020
+ #~ msgstr "Kontaktformulär Pro"
1021
+
1022
  #~ msgid "Contact Form Pro Extra Settings"
1023
  #~ msgstr "Kontaktformulär Pro Extra inställningar"
1024
 
languages/contact_form-tr.mo CHANGED
Binary file
languages/contact_form-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: 2014-02-20 14:08+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:08+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@candanblog.com>\n"
9
  "Language: ca_ES\n"
@@ -16,953 +16,991 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  msgid "Contact Form Settings"
22
  msgstr "İletişim Formu Ayarları"
23
 
24
- #: contact_form.php:33
25
  msgid "Contact Form"
26
  msgstr "İletişim Formu"
27
 
28
- #: contact_form.php:80
29
- #: contact_form.php:978
30
- #: contact_form.php:1008
31
  msgid "Name:"
32
  msgstr "İsim:"
33
 
34
- #: contact_form.php:81
35
- #: contact_form.php:979
36
- #: contact_form.php:1009
37
  msgid "Address:"
38
  msgstr "Adres:"
39
 
40
- #: contact_form.php:82
41
- #: contact_form.php:980
42
- #: contact_form.php:1010
43
  msgid "Email Address:"
44
  msgstr "E-posta Adresi:"
45
 
46
- #: contact_form.php:83
47
- #: contact_form.php:981
48
- #: contact_form.php:1011
49
  msgid "Phone number:"
50
  msgstr "Telefon Numarası:"
51
 
52
- #: contact_form.php:84
53
- #: contact_form.php:982
54
- #: contact_form.php:1012
55
  msgid "Subject:"
56
  msgstr "Başlık:"
57
 
58
- #: contact_form.php:85
59
- #: contact_form.php:983
60
- #: contact_form.php:1013
61
  msgid "Message:"
62
  msgstr "Mesaj:"
63
 
64
- #: contact_form.php:86
65
- #: contact_form.php:984
66
- #: contact_form.php:1014
67
  msgid "Attachment:"
68
  msgstr "Eklenecek Dosya:"
69
 
70
- #: contact_form.php:87
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Desteklenen dosya uzantıları: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. En büyük dosya boyutu: 2MB"
73
 
74
- #: contact_form.php:88
75
- #: contact_form.php:986
76
- #: contact_form.php:1016
77
  msgid "Send me a copy"
78
  msgstr "Bana bir kopyasını gönder"
79
 
80
- #: contact_form.php:89
81
- #: contact_form.php:987
82
- #: contact_form.php:1017
83
  msgid "Submit"
84
  msgstr "Gönder"
85
 
86
- #: contact_form.php:90
87
  msgid "Your name is required."
88
  msgstr "İsminizi yazmanız gerekiyor."
89
 
90
- #: contact_form.php:91
91
  msgid "Address is required."
92
  msgstr "Adresinizi yazmanız gerekiyor."
93
 
94
- #: contact_form.php:92
95
  msgid "A valid email address is required."
96
  msgstr "Geçerli bir e-posta adresi yazmanız gerekiyor."
97
 
98
- #: contact_form.php:93
99
  msgid "Phone number is required."
100
  msgstr "Telefon numaranızı yazmanız gerekiyor."
101
 
102
- #: contact_form.php:94
103
  msgid "Subject is required."
104
  msgstr "Başlık kısmını doldurmanız gerekiyor."
105
 
106
- #: contact_form.php:95
107
  msgid "Message text is required."
108
  msgstr "Mesaj kısmını doldurmanız gerekiyor."
109
 
110
- #: contact_form.php:96
111
  msgid "File format is not valid."
112
  msgstr "Dosya uzantısı uygun değil."
113
 
114
- #: contact_form.php:97
115
  msgid "File upload error."
116
  msgstr "Dosya yükleme hatası."
117
 
118
- #: contact_form.php:98
119
  msgid "The file could not be uploaded."
120
  msgstr "Dosya yüklenemedi."
121
 
122
- #: contact_form.php:99
123
  msgid "This file is too large."
124
  msgstr "Dosyanın boyutu çok büyük."
125
 
126
- #: contact_form.php:100
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Lütfen CAPTCHA kısmını doldurun."
129
 
130
- #: contact_form.php:101
131
  msgid "Please make corrections below and try again."
132
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve yeniden deneyin."
133
 
134
- #: contact_form.php:103
135
  msgid "Thank you for contacting us."
136
  msgstr "İletişime geçtiğiniz için teşekkürler."
137
 
138
- #: contact_form.php:203
139
  msgid "requires"
140
  msgstr "Gerekli"
141
 
142
- #: contact_form.php:203
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "ya da daha üstü, pasifleştirilmesinin sebebi bu! Lütfen Wordpress'i güncelleyin ve yeniden deneyin."
145
 
146
- #: contact_form.php:203
147
  msgid "Back to the WordPress"
148
  msgstr "Wordpress'e geri dön"
149
 
150
- #: contact_form.php:203
151
  msgid "Plugins page"
152
  msgstr "Eklenti Sayfası"
153
 
154
- #: contact_form.php:494
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "Eğer 'Sayfaya Yönlendir' seçeneği seçilmişse, URL alanı şu formatta olmalı:"
157
 
158
- #: contact_form.php:503
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "Böyle bir kullanıcı adı bulunamadı. Ayarlar kaydedilmedi."
161
 
162
- #: contact_form.php:507
163
- #: contact_form.php:513
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "Lütfen 'GÖNDERİCİ' alanına geçerli bir e-posta adresi girin. Ayarlar kaydedilmedi."
166
 
167
- #: contact_form.php:518
168
  msgid "Settings saved."
169
  msgstr "Ayarlar kaydedildi."
170
 
171
- #: contact_form.php:554
172
- #: contact_form.php:593
173
  msgid "Wrong license key"
174
  msgstr ""
175
 
176
- #: contact_form.php:586
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr ""
179
 
180
- #: contact_form.php:595
181
  msgid "This license key is bind to another site"
182
  msgstr ""
183
 
184
- #: contact_form.php:597
185
- #: contact_form.php:1392
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr ""
188
 
189
- #: contact_form.php:615
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr ""
192
 
193
- #: contact_form.php:621
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr ""
196
 
197
- #: contact_form.php:625
198
- #: contact_form.php:634
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
 
202
- #: contact_form.php:638
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr ""
205
 
206
- #: contact_form.php:653
207
  #, fuzzy
208
  msgid "Please, enter Your license key"
209
  msgstr "Lütfen mesajınızı yazın"
210
 
211
- #: contact_form.php:662
212
- msgid "Notice:"
213
- msgstr "Bilgi Notu:"
214
-
215
- #: contact_form.php:662
216
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
217
- msgstr "Eklentinin ayarları değiştirildi. Değişiklikleri kaydetmek için 'Değişiklikleri Kaydet' butonuna basmayı unutmayın."
218
-
219
- #: contact_form.php:665
220
- #: contact_form.php:1997
221
- #: contact_form.php:2008
222
  msgid "Settings"
223
  msgstr "Ayarlar"
224
 
225
- #: contact_form.php:666
226
  msgid "Extra settings"
227
  msgstr "Ekstra ayarlar"
228
 
229
- #: contact_form.php:667
230
  msgid "Go PRO"
231
  msgstr ""
232
 
233
- #: contact_form.php:673
234
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  msgid "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:"
236
  msgstr "Eğer sitenize iletişim formu eklemek istiyorsanız, şu kısa kodu yazınıza, sayfanıza ya da bileşen alanınıza eklemeniz yeterli."
237
 
238
- #: contact_form.php:673
239
- #: contact_form.php:674
240
- #: contact_form.php:1001
241
- #: contact_form.php:1050
 
 
 
 
242
  msgid "or"
243
  msgstr "ya da"
244
 
245
- #: contact_form.php:674
 
246
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
247
  msgstr "Eğer standart [contact_form] kısa koduyla ilgili bir sorun yaşarsanız, şunlardan birini kullanmalısınız"
248
 
249
- #: contact_form.php:675
 
250
  msgid "They work the same way."
251
  msgstr "Aynı şekilde çalışırlar."
252
 
253
- #: contact_form.php:676
 
254
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
255
  msgstr "Eğer aşağıdaki alanları boş bırakırsanız, kullanıcının mesajı kayıt sırasında girilen e-posta adresine gönderilecek."
256
 
257
- #: contact_form.php:680
258
  msgid "The user's email address:"
259
  msgstr "Kullanıcının e-posta adresine:"
260
 
261
- #: contact_form.php:684
262
  msgid "Create a username"
263
  msgstr "Kullanıcı oluştur"
264
 
265
- #: contact_form.php:689
266
  msgid "Enter a username of the person who should get the messages from the contact form."
267
  msgstr "İletişim Formu ile gönderilen mesajı almasını istediğiniz kullanıcının adını girin."
268
 
269
- #: contact_form.php:693
270
  msgid "Use this email address:"
271
  msgstr "Mesaj bu e-posta adresine gönderilsin:"
272
 
273
- #: contact_form.php:696
274
  msgid "Enter the email address you want the messages forwarded to."
275
  msgstr "Mesajın gönderilmesini istediğiniz e-posta adresini girin."
276
 
277
- #: contact_form.php:702
278
  msgid "Add department selectbox to the contact form:"
279
  msgstr "İletişim Formu'na departman seçenekleri ekleyin"
280
 
281
- #: contact_form.php:710
282
- #: contact_form.php:1246
283
  msgid "If you upgrade to Pro version all your settings will be saved."
284
  msgstr "Ücretli sürümü satın alırsanız tüm değişiklikler kaydedilecek."
285
 
286
- #: contact_form.php:715
287
- #: contact_form.php:852
288
- #: contact_form.php:923
289
- #: contact_form.php:1096
290
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
291
- msgstr "Bu seçenek sadece PRO versiyonunda kullanılabilir. Detaylı bilgi için, "
292
 
293
- #: contact_form.php:716
294
- #: contact_form.php:853
295
- #: contact_form.php:924
296
- #: contact_form.php:1097
297
- msgid "Contact Form Pro"
298
- msgstr "İletişim Formu PRO"
 
 
299
 
300
- #: contact_form.php:722
 
 
 
 
 
 
 
301
  msgid "Save emails to the database"
302
  msgstr "E-postaları veritabanına kaydet"
303
 
304
- #: contact_form.php:732
305
  msgid "Using"
306
  msgstr ""
307
 
308
- #: contact_form.php:732
309
- #: contact_form.php:901
310
- #: contact_form.php:904
311
- #: contact_form.php:908
312
  msgid "powered by"
313
  msgstr "geliştirici: "
314
 
315
- #: contact_form.php:735
316
- #: contact_form.php:739
317
  msgid "Using Contact Form to DB powered by"
318
  msgstr "Contact Form to DB eklentisi ile,"
319
 
320
- #: contact_form.php:735
321
  msgid "Activate Contact Form to DB"
322
  msgstr "Contact Form to DB eklentisini aktifleştir"
323
 
324
- #: contact_form.php:739
325
  msgid "Download Contact Form to DB"
326
  msgstr "Contact Form to DB eklentisini yükle"
327
 
328
- #: contact_form.php:744
329
  msgid "Additional options"
330
  msgstr "Ek seçenekler"
331
 
332
- #: contact_form.php:746
333
  msgid "Show"
334
  msgstr "Göster"
335
 
336
- #: contact_form.php:747
337
  msgid "Hide"
338
  msgstr "Gizle"
339
 
340
- #: contact_form.php:751
341
  msgid "What to use?"
342
  msgstr "Hangi yöntem?"
343
 
344
- #: contact_form.php:754
345
  msgid "Wp-mail"
346
  msgstr "Wp-Mail"
347
 
348
- #: contact_form.php:754
349
  msgid "You can use the wp_mail function for mailing"
350
  msgstr "E-postanın gönderimi için wp_mail fonksiyonunu kullanabilirsiniz."
351
 
352
- #: contact_form.php:756
353
  msgid "Mail"
354
  msgstr "Mail"
355
 
356
- #: contact_form.php:756
357
  msgid "To send mail you can use the php mail function"
358
  msgstr "E-postanın gönderimi için PHP Mail fonksiyonunu kullanabilirsiniz."
359
 
360
- #: contact_form.php:760
361
  msgid "The text in the 'From' field"
362
  msgstr "'Gönderici' alanındaki metin"
363
 
364
- #: contact_form.php:762
365
  msgid "User name"
366
  msgstr "Kullanıcı adı"
367
 
368
- #: contact_form.php:763
369
  msgid "The name of the user who fills the form will be used in the field 'From'."
370
  msgstr "'Gönderici' alanında formu dolduran ziyaretçinin adı kullanılacak."
371
 
372
- #: contact_form.php:766
373
  msgid "This text will be used in the 'FROM' field"
374
  msgstr "'GÖNDERİCİ' alanında bu metin kullanılacak"
375
 
376
- #: contact_form.php:770
377
  msgid "The email address in the 'From' field"
378
  msgstr "'Gönderen' alanındaki e-posta adresi"
379
 
380
- #: contact_form.php:772
381
  msgid "User email"
382
  msgstr "Kullanıcı e-postası"
383
 
384
- #: contact_form.php:773
385
  msgid "The email address of the user who fills the form will be used in the field 'From'."
386
  msgstr "'Gönderici' alanında formu dolduran kullanıcının e-posta adresi gösterilecek."
387
 
388
- #: contact_form.php:776
389
  msgid "This email address will be used in the 'From' field."
390
  msgstr "'Gönderici' alanında bu e-posta adresi gösterilecek."
391
 
392
- #: contact_form.php:780
393
  msgid "Required symbol"
394
  msgstr "Zorunlu işareti"
395
 
396
- #: contact_form.php:790
397
  msgid "Fields"
398
  msgstr "Alanlar"
399
 
400
- #: contact_form.php:791
401
  msgid "Used"
402
  msgstr "Kullanılsın mı?"
403
 
404
- #: contact_form.php:792
405
  msgid "Required"
406
  msgstr "Zorunlu"
407
 
408
- #: contact_form.php:793
409
  msgid "Visible"
410
  msgstr "Görünür"
411
 
412
- #: contact_form.php:794
413
  msgid "Disabled for editing"
414
  msgstr "Düzenlemeye kapatılmış"
415
 
416
- #: contact_form.php:795
417
  msgid "Field's default value"
418
  msgstr "Alanın varsayılan değeri"
419
 
420
- #: contact_form.php:800
421
- #: contact_form.php:1121
422
- #: contact_form.php:1841
423
- #: contact_form.php:1871
424
  msgid "Name"
425
  msgstr "İsim"
426
 
427
- #: contact_form.php:808
428
- #: contact_form.php:1126
429
- #: contact_form.php:1845
430
- #: contact_form.php:1873
431
  msgid "Address"
432
  msgstr "Adres:"
433
 
434
- #: contact_form.php:816
435
  msgid "Email Address"
436
  msgstr "E-posta Adresi"
437
 
438
- #: contact_form.php:824
439
  msgid "Phone number"
440
  msgstr "Telefon numarası"
441
 
442
- #: contact_form.php:832
443
- #: contact_form.php:1141
444
- #: contact_form.php:1855
445
- #: contact_form.php:1877
446
  msgid "Subject"
447
  msgstr "Başlık"
448
 
449
- #: contact_form.php:840
450
- #: contact_form.php:1145
451
- #: contact_form.php:1858
452
- #: contact_form.php:1878
453
  msgid "Message"
454
  msgstr "Mesaj"
455
 
456
- #: contact_form.php:858
457
  msgid "Attachment block"
458
  msgstr "Dosya Yükleme"
459
 
460
- #: contact_form.php:860
461
  msgid "Users can attach the following file formats"
462
  msgstr "Kullanıcılar şu uzantılardaki dosyaları yükleyebilirler"
463
 
464
- #: contact_form.php:874
465
  msgid "Add to the form"
466
  msgstr "Forma ekle"
467
 
468
- #: contact_form.php:879
469
  msgid "Tips below the Attachment"
470
  msgstr "Dosya yükleme alanı altında açıklama"
471
 
472
- #: contact_form.php:888
473
  msgid "'Send me a copy' block"
474
  msgstr "'Mesajın bir kopyasını e-posta adresime gönder' seçeneği"
475
 
476
- #: contact_form.php:901
477
- #: contact_form.php:904
478
- #: contact_form.php:908
479
- #: contact_form.php:1155
480
  msgid "Captcha"
481
  msgstr "CAPTCHA"
482
 
483
- #: contact_form.php:904
484
  msgid "Activate captcha"
485
  msgstr "CAPTCHA'yı etkinleştir"
486
 
487
- #: contact_form.php:908
488
  msgid "Download captcha"
489
  msgstr "CAPTCHA'yı yükle"
490
 
491
- #: contact_form.php:916
492
  msgid "Agreement checkbox"
493
  msgstr "Onay kutusu"
494
 
495
- #: contact_form.php:916
496
  msgid "Required checkbox for submitting the form"
497
  msgstr "Formu göndermek için işaretlenmesi gereken onay kutusu"
498
 
499
- #: contact_form.php:917
500
  msgid "Optional checkbox"
501
  msgstr "İsteğe bağlı onay kutusu"
502
 
503
- #: contact_form.php:917
504
  msgid "Optional checkbox, the results of which will be displayed in email"
505
  msgstr "E-posta'da gösterilecek, isteğe bağlı onay kutusu"
506
 
507
- #: contact_form.php:928
508
  msgid "Delete an attachment file from the server after the email is sent"
509
  msgstr "E-posta gönderildikten sonra eklenen dosyayı sunucudan sil"
510
 
511
- #: contact_form.php:934
512
  msgid "Email in HTML format sending"
513
  msgstr "E-postayı HTML formatında gönder"
514
 
515
- #: contact_form.php:938
516
  msgid "Display additional info in the email"
517
  msgstr "E-postanın içerisinde ek bilgiler göster"
518
 
519
- #: contact_form.php:943
520
- #: contact_form.php:1808
521
- #: contact_form.php:1810
522
  msgid "Sent from (ip address)"
523
  msgstr "Gönderilen (IP Adresi)"
524
 
525
- #: contact_form.php:943
526
  msgid "Example: Sent from (IP address):\t127.0.0.1"
527
  msgstr "Örnek: Şu IP adresinden gönderildi:\t127.0.0.1"
528
 
529
- #: contact_form.php:944
530
- #: contact_form.php:1814
531
- #: contact_form.php:1816
532
  msgid "Date/Time"
533
  msgstr "Tarih/Zaman"
534
 
535
- #: contact_form.php:944
536
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
537
  msgstr "Örnek: Tarih/Saat:\t19 Ağustos, 2013 - 8:50 ÖS"
538
 
539
- #: contact_form.php:945
540
- #: contact_form.php:1820
541
- #: contact_form.php:1822
542
  msgid "Sent from (referer)"
543
  msgstr "Gönderilen (referer)"
544
 
545
- #: contact_form.php:945
546
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
547
  msgstr "Örnek: Gönderici:\thttp://bestwebsoft.com/contacts/contact-us/"
548
 
549
- #: contact_form.php:946
550
- #: contact_form.php:1826
551
- #: contact_form.php:1828
552
  msgid "Using (user agent)"
553
  msgstr "Şununla: "
554
 
555
- #: contact_form.php:946
556
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
557
  msgstr "Örnek: Şunu kullanarak:\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
558
 
559
- #: contact_form.php:950
560
  msgid "Language settings for the field names in the form"
561
  msgstr "Formdaki alan adları için dil ayarları 8aşağıdaki iki seçenek için)"
562
 
563
- #: contact_form.php:959
564
  msgid "Add a language"
565
  msgstr "Bir dil ekle"
566
 
567
- #: contact_form.php:963
568
  msgid "Change the names of the contact form fields and error messages"
569
  msgstr "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata mesajlarını değiştir"
570
 
571
- #: contact_form.php:968
572
- #: contact_form.php:1041
573
  msgid "English"
574
  msgstr "İngilizce"
575
 
576
- #: contact_form.php:976
577
- #: contact_form.php:1006
578
  msgid "click to expand/hide the list"
579
  msgstr ""
580
 
581
- #: contact_form.php:985
582
- #: contact_form.php:1015
583
  msgid "Tips below the Attachment block"
584
  msgstr "Dosya yükleme alanı altında gösterilecek açıklamalar"
585
 
586
- #: contact_form.php:988
587
- #: contact_form.php:1018
588
  msgid "Error message for the Name field"
589
  msgstr "'İsim' alanı için hata mesajı"
590
 
591
- #: contact_form.php:989
592
- #: contact_form.php:1019
593
  msgid "Error message for the Address field"
594
  msgstr "'Adres' alanı için hata mesajı"
595
 
596
- #: contact_form.php:990
597
- #: contact_form.php:1020
598
  msgid "Error message for the Email field"
599
  msgstr "'E-posta adresş' alanı için hata mesajı"
600
 
601
- #: contact_form.php:991
602
- #: contact_form.php:1021
603
  msgid "Error message for the Phone field"
604
  msgstr "'Telefon numarası' alanı için hata mesajı"
605
 
606
- #: contact_form.php:992
607
- #: contact_form.php:1022
608
  msgid "Error message for the Subject field"
609
  msgstr "'Başlık' alanı için hata mesajı"
610
 
611
- #: contact_form.php:993
612
- #: contact_form.php:1023
613
  msgid "Error message for the Message field"
614
  msgstr "'Mesaj' alanı için hata mesajı"
615
 
616
- #: contact_form.php:994
617
- #: contact_form.php:1024
618
  msgid "Error message about the file type for the Attachment field"
619
  msgstr "Yüklenen dosyanın uzantısıyla ilgili hata mesajı"
620
 
621
- #: contact_form.php:995
622
- #: contact_form.php:1025
623
  msgid "Error message while uploading a file for the Attachment field to the server"
624
  msgstr "Dosya yüklenirken oluşan hata için hata mesajı"
625
 
626
- #: contact_form.php:996
627
- #: contact_form.php:1026
628
  msgid "Error message while moving the file for the Attachment field"
629
  msgstr "Yüklenecek dosya seçilirken oluşan hata için hata mesajı"
630
 
631
- #: contact_form.php:997
632
- #: contact_form.php:1027
633
  msgid "Error message when file size limit for the Attachment field is exceeded"
634
  msgstr "En fazla dosya yükleme boyutu sınırı açıldığında oluşan hata mesajı"
635
 
636
- #: contact_form.php:998
637
- #: contact_form.php:1028
638
  msgid "Error message for the Captcha field"
639
  msgstr "CAPTCHA alanı için hata mesajı"
640
 
641
- #: contact_form.php:999
642
- #: contact_form.php:1029
643
  msgid "Error message for the whole form"
644
  msgstr "Formun geneli için hata mesajı"
645
 
646
- #: contact_form.php:1001
647
- #: contact_form.php:1031
648
- #: contact_form.php:1050
649
- #: contact_form.php:1056
 
 
 
 
650
  msgid "Use shortcode"
651
  msgstr "Kısa kodu kullan"
652
 
653
- #: contact_form.php:1001
654
- #: contact_form.php:1031
655
- #: contact_form.php:1050
656
- #: contact_form.php:1056
 
 
 
 
657
  msgid "for this language"
658
  msgstr "bu dil için"
659
 
660
- #: contact_form.php:1038
661
  msgid "Action after email is sent"
662
  msgstr "E-posta gönderildikten sonra ne yapılsın?"
663
 
664
- #: contact_form.php:1040
665
  msgid "Display text"
666
  msgstr "Metin göster"
667
 
668
- #: contact_form.php:1049
669
- #: contact_form.php:1055
670
  msgid "Text"
671
  msgstr "Metin"
672
 
673
- #: contact_form.php:1062
674
  msgid "Redirect to the page"
675
  msgstr "Sayfaya yönlendir"
676
 
677
- #: contact_form.php:1063
678
  msgid "Url"
679
  msgstr "URL"
680
 
681
- #: contact_form.php:1067
682
  msgid "The $_SERVER variable that is used to build a URL of the form"
683
  msgstr ""
684
 
685
- #: contact_form.php:1071
686
  msgid "If you are not sure whether to change this setting or not, please do not do that."
687
  msgstr ""
688
 
689
- #: contact_form.php:1077
690
- #: contact_form.php:1252
691
  msgid "Save Changes"
692
  msgstr "Değişiklikleri Kaydet"
693
 
694
- #: contact_form.php:1082
695
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
696
  msgstr "Eğer eklentiyi beğenerek kullanıyorsanız, lütfen Wordpress'te eklentiye 5 yıldız verin"
697
 
698
- #: contact_form.php:1083
699
  msgid "Rate the plugin"
700
  msgstr "Eklentiyi değerlendir"
701
 
702
- #: contact_form.php:1086
703
  msgid "If there is something wrong about it, please contact us"
704
  msgstr "Eğer eklenti hakkında problem tespit ederseniz lütfen bizimle iletişime geçin"
705
 
706
- #: contact_form.php:1101
707
  msgid "Errors output"
708
  msgstr "Hata çıktısı"
709
 
710
- #: contact_form.php:1104
711
  msgid "Display error messages"
712
  msgstr "Hata mesajlarını göster"
713
 
714
- #: contact_form.php:1105
715
  msgid "Color of the input field errors."
716
  msgstr "Giriş alanlarının hata rengi"
717
 
718
- #: contact_form.php:1106
719
  msgid "Display error messages & color of the input field errors"
720
  msgstr "Hata mesajlarını ve giriş alanı hata rengini göster"
721
 
722
- #: contact_form.php:1111
723
  msgid "Add placeholder to the input blocks"
724
  msgstr "Giriş alanlarına bilgilendirme notu ekle"
725
 
726
- #: contact_form.php:1117
727
  msgid "Add tooltips"
728
  msgstr "Şunları ekle:"
729
 
730
- #: contact_form.php:1131
731
  msgid "Email address"
732
  msgstr "E-posta adresi"
733
 
734
- #: contact_form.php:1136
735
  msgid "Phone Number"
736
  msgstr "Telefon Numarası"
737
 
738
- #: contact_form.php:1150
739
  msgid "Attachment"
740
  msgstr "Dosya Yükleme"
741
 
742
- #: contact_form.php:1155
743
  msgid "(powered by bestwebsoft.com)"
744
  msgstr "(Geliştirici bestwebsoft.com)"
745
 
746
- #: contact_form.php:1160
747
  msgid "Style options"
748
  msgstr "Tasarım ayarları"
749
 
750
- #: contact_form.php:1163
751
  msgid "Text color"
752
  msgstr "Metin rengi"
753
 
754
- #: contact_form.php:1166
755
- #: contact_form.php:1171
756
- #: contact_form.php:1181
757
- #: contact_form.php:1186
758
- #: contact_form.php:1191
759
- #: contact_form.php:1196
760
- #: contact_form.php:1206
761
- #: contact_form.php:1211
762
- #: contact_form.php:1217
763
- #: contact_form.php:1228
764
- #: contact_form.php:1233
765
- #: contact_form.php:1238
766
  msgid "Default"
767
  msgstr "Varsayılan"
768
 
769
- #: contact_form.php:1168
770
  msgid "Label text color"
771
  msgstr "Etiket metninin rengi"
772
 
773
- #: contact_form.php:1173
774
  msgid "Placeholder color"
775
  msgstr "Bilgilendirme notu rengi"
776
 
777
- #: contact_form.php:1178
778
  msgid "Errors color"
779
  msgstr "Hataların renkleri"
780
 
781
- #: contact_form.php:1183
782
  msgid "Error text color"
783
  msgstr "Hata metni rengi"
784
 
785
- #: contact_form.php:1188
786
  msgid "Background color of the input field errors"
787
  msgstr "giriş alanı hataları için arka plan rengi"
788
 
789
- #: contact_form.php:1193
790
  msgid "Border color of the input field errors"
791
  msgstr "Giriş alanı hataları için border rengi"
792
 
793
- #: contact_form.php:1198
794
  msgid "Placeholder color of the input field errors"
795
  msgstr "Giriş alanı hataları için bilgilendirme notu rengi"
796
 
797
- #: contact_form.php:1203
798
  msgid "Input fields"
799
  msgstr "Giriş alanları"
800
 
801
- #: contact_form.php:1208
802
  msgid "Input fields background color"
803
  msgstr "Giriş alanları arka plan rengi"
804
 
805
- #: contact_form.php:1213
806
  msgid "Text fields color"
807
  msgstr "Metin alanlarının rengi"
808
 
809
- #: contact_form.php:1215
810
  msgid "Border width in px, numbers only"
811
  msgstr "Bırder genişliği, piksel cinsinden, sadece sayı"
812
 
813
- #: contact_form.php:1219
814
- #: contact_form.php:1240
815
  msgid "Border color"
816
  msgstr "Border rengi"
817
 
818
- #: contact_form.php:1224
819
  msgid "Submit button"
820
  msgstr "Gönderme butonu"
821
 
822
  # #: contact_form.php:928
823
- #: contact_form.php:1226
824
  msgid "Width in px, numbers only"
825
  msgstr "Piksel cinsinden genişlik, sadece sayı"
826
 
827
- #: contact_form.php:1230
828
  msgid "Button color"
829
  msgstr "Buton rengi"
830
 
831
- #: contact_form.php:1235
832
  msgid "Button text color"
833
  msgstr "Buton yazı rengi"
834
 
835
- #: contact_form.php:1256
836
  msgid "Contact Form Pro | Preview"
837
  msgstr "İletişim Formu PRO | Ön İzleme"
838
 
839
- #: contact_form.php:1259
840
  msgid "Show with errors"
841
  msgstr "Hatalarla göster"
842
 
843
- #: contact_form.php:1267
844
- #: contact_form.php:1269
845
  msgid "Please enter your full name..."
846
  msgstr "Lütfen tam adınızı yazın"
847
 
848
- #: contact_form.php:1280
849
- #: contact_form.php:1282
850
  msgid "Please enter your address..."
851
  msgstr "Lütfen adresinizi yazın"
852
 
853
- #: contact_form.php:1291
854
- #: contact_form.php:1293
855
  msgid "Please enter your email address..."
856
  msgstr "Lütfen e-posta adresinizi yazın"
857
 
858
- #: contact_form.php:1302
859
- #: contact_form.php:1304
860
  msgid "Please enter your phone number..."
861
  msgstr "Lütfen telefon numaranızı yazın"
862
 
863
- #: contact_form.php:1313
864
- #: contact_form.php:1315
865
  msgid "Please enter subject..."
866
  msgstr "Lütfen başlık yazın"
867
 
868
- #: contact_form.php:1323
869
- #: contact_form.php:1325
870
  msgid "Please enter your message..."
871
  msgstr "Lütfen mesajınızı yazın"
872
 
873
- #: contact_form.php:1367
874
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
875
  msgstr ""
876
 
877
- #: contact_form.php:1369
878
  msgid "Please, go to"
879
  msgstr ""
880
 
881
- #: contact_form.php:1369
882
  #, fuzzy
883
  msgid "the setting page"
884
  msgstr "Ekstra ayarlar"
885
 
886
- #: contact_form.php:1370
887
  msgid "You will be redirected automatically in 5 seconds."
888
  msgstr ""
889
 
890
- #: contact_form.php:1375
891
  msgid "You can download and activate"
892
  msgstr ""
893
 
894
- #: contact_form.php:1377
895
  msgid "version of this plugin by entering Your license key."
896
  msgstr ""
897
 
898
- #: contact_form.php:1379
899
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
900
  msgstr ""
901
 
902
- #: contact_form.php:1381
903
  msgid "(your username is the email you specify when purchasing the product)."
904
  msgstr ""
905
 
906
- #: contact_form.php:1389
907
- #: contact_form.php:1399
908
  msgid "Go!"
909
  msgstr ""
910
 
911
- #: contact_form.php:1449
912
  msgid "Sorry, email message could not be delivered."
913
  msgstr "Üzgünüz, e-posta mesajınız gönderilemedi."
914
 
915
- #: contact_form.php:1835
916
  msgid "Contact from"
917
  msgstr "İletişim Formu"
918
 
919
- #: contact_form.php:1848
920
- #: contact_form.php:1874
921
  msgid "Email"
922
  msgstr "E-Posta Adresi"
923
 
924
- #: contact_form.php:1852
925
- #: contact_form.php:1876
926
  msgid "Phone"
927
  msgstr "Telefon"
928
 
929
- #: contact_form.php:1861
930
- #: contact_form.php:1879
931
  msgid "Site"
932
  msgstr "Website"
933
 
934
- #: contact_form.php:1941
935
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
936
  msgstr "Eğer bu MIME'ı görüyorsanız, bu e-posta sunucunuzun MIME'ı desteklemediği anlamına gelir!"
937
 
938
- #: contact_form.php:2009
939
  msgid "FAQ"
940
  msgstr "SSS"
941
 
942
- #: contact_form.php:2010
943
  msgid "Support"
944
  msgstr "Destek"
945
 
946
- #: contact_form.php:2068
947
  msgid "Are you sure that you want to delete this language data?"
948
  msgstr "Bu dile ait verileri silmek istediğinize emin misiniz?"
949
 
950
- #: contact_form.php:2223
951
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
952
  msgstr ""
953
 
954
- #: contact_form.php:2224
955
  msgid "Extend standard plugin functionality with new great options."
956
  msgstr ""
957
 
958
- #: contact_form.php:2233
959
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
960
  msgstr ""
961
 
962
- #: contact_form.php:2234
963
  msgid "Manage messages that have been sent from your website."
964
  msgstr ""
965
 
 
 
 
 
 
 
 
 
 
966
  #~ msgid "Contact Form Pro Extra Settings"
967
  #~ msgstr "İletişim Formu PRO Ekstra Ayarları"
968
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:41+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:41+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@candanblog.com>\n"
9
  "Language: ca_ES\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  msgid "Contact Form Settings"
22
  msgstr "İletişim Formu Ayarları"
23
 
24
+ #: contact_form.php:73
25
  msgid "Contact Form"
26
  msgstr "İletişim Formu"
27
 
28
+ #: contact_form.php:149
29
+ #: contact_form.php:1131
30
+ #: contact_form.php:1165
31
  msgid "Name:"
32
  msgstr "İsim:"
33
 
34
+ #: contact_form.php:150
35
+ #: contact_form.php:1132
36
+ #: contact_form.php:1166
37
  msgid "Address:"
38
  msgstr "Adres:"
39
 
40
+ #: contact_form.php:151
41
+ #: contact_form.php:1133
42
+ #: contact_form.php:1167
43
  msgid "Email Address:"
44
  msgstr "E-posta Adresi:"
45
 
46
+ #: contact_form.php:152
47
+ #: contact_form.php:1134
48
+ #: contact_form.php:1168
49
  msgid "Phone number:"
50
  msgstr "Telefon Numarası:"
51
 
52
+ #: contact_form.php:153
53
+ #: contact_form.php:1135
54
+ #: contact_form.php:1169
55
  msgid "Subject:"
56
  msgstr "Başlık:"
57
 
58
+ #: contact_form.php:154
59
+ #: contact_form.php:1136
60
+ #: contact_form.php:1170
61
  msgid "Message:"
62
  msgstr "Mesaj:"
63
 
64
+ #: contact_form.php:155
65
+ #: contact_form.php:1137
66
+ #: contact_form.php:1171
67
  msgid "Attachment:"
68
  msgstr "Eklenecek Dosya:"
69
 
70
+ #: contact_form.php:156
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Desteklenen dosya uzantıları: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. En büyük dosya boyutu: 2MB"
73
 
74
+ #: contact_form.php:157
75
+ #: contact_form.php:1139
76
+ #: contact_form.php:1173
77
  msgid "Send me a copy"
78
  msgstr "Bana bir kopyasını gönder"
79
 
80
+ #: contact_form.php:158
81
+ #: contact_form.php:1140
82
+ #: contact_form.php:1174
83
  msgid "Submit"
84
  msgstr "Gönder"
85
 
86
+ #: contact_form.php:159
87
  msgid "Your name is required."
88
  msgstr "İsminizi yazmanız gerekiyor."
89
 
90
+ #: contact_form.php:160
91
  msgid "Address is required."
92
  msgstr "Adresinizi yazmanız gerekiyor."
93
 
94
+ #: contact_form.php:161
95
  msgid "A valid email address is required."
96
  msgstr "Geçerli bir e-posta adresi yazmanız gerekiyor."
97
 
98
+ #: contact_form.php:162
99
  msgid "Phone number is required."
100
  msgstr "Telefon numaranızı yazmanız gerekiyor."
101
 
102
+ #: contact_form.php:163
103
  msgid "Subject is required."
104
  msgstr "Başlık kısmını doldurmanız gerekiyor."
105
 
106
+ #: contact_form.php:164
107
  msgid "Message text is required."
108
  msgstr "Mesaj kısmını doldurmanız gerekiyor."
109
 
110
+ #: contact_form.php:165
111
  msgid "File format is not valid."
112
  msgstr "Dosya uzantısı uygun değil."
113
 
114
+ #: contact_form.php:166
115
  msgid "File upload error."
116
  msgstr "Dosya yükleme hatası."
117
 
118
+ #: contact_form.php:167
119
  msgid "The file could not be uploaded."
120
  msgstr "Dosya yüklenemedi."
121
 
122
+ #: contact_form.php:168
123
  msgid "This file is too large."
124
  msgstr "Dosyanın boyutu çok büyük."
125
 
126
+ #: contact_form.php:169
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Lütfen CAPTCHA kısmını doldurun."
129
 
130
+ #: contact_form.php:170
131
  msgid "Please make corrections below and try again."
132
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve yeniden deneyin."
133
 
134
+ #: contact_form.php:172
135
  msgid "Thank you for contacting us."
136
  msgstr "İletişime geçtiğiniz için teşekkürler."
137
 
138
+ #: contact_form.php:322
139
  msgid "requires"
140
  msgstr "Gerekli"
141
 
142
+ #: contact_form.php:322
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "ya da daha üstü, pasifleştirilmesinin sebebi bu! Lütfen Wordpress'i güncelleyin ve yeniden deneyin."
145
 
146
+ #: contact_form.php:322
147
  msgid "Back to the WordPress"
148
  msgstr "Wordpress'e geri dön"
149
 
150
+ #: contact_form.php:322
151
  msgid "Plugins page"
152
  msgstr "Eklenti Sayfası"
153
 
154
+ #: contact_form.php:626
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "Eğer 'Sayfaya Yönlendir' seçeneği seçilmişse, URL alanı şu formatta olmalı:"
157
 
158
+ #: contact_form.php:635
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "Böyle bir kullanıcı adı bulunamadı. Ayarlar kaydedilmedi."
161
 
162
+ #: contact_form.php:639
163
+ #: contact_form.php:645
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "Lütfen 'GÖNDERİCİ' alanına geçerli bir e-posta adresi girin. Ayarlar kaydedilmedi."
166
 
167
+ #: contact_form.php:661
168
  msgid "Settings saved."
169
  msgstr "Ayarlar kaydedildi."
170
 
171
+ #: contact_form.php:688
172
+ #: contact_form.php:720
173
  msgid "Wrong license key"
174
  msgstr ""
175
 
176
+ #: contact_form.php:713
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr ""
179
 
180
+ #: contact_form.php:722
181
  msgid "This license key is bind to another site"
182
  msgstr ""
183
 
184
+ #: contact_form.php:724
185
+ #: contact_form.php:1570
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr ""
188
 
189
+ #: contact_form.php:741
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr ""
192
 
193
+ #: contact_form.php:747
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr ""
196
 
197
+ #: contact_form.php:751
198
+ #: contact_form.php:760
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
 
202
+ #: contact_form.php:764
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr ""
205
 
206
+ #: contact_form.php:779
207
  #, fuzzy
208
  msgid "Please, enter Your license key"
209
  msgstr "Lütfen mesajınızı yazın"
210
 
211
+ #: contact_form.php:787
212
+ #: contact_form.php:2216
213
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
214
  msgid "Settings"
215
  msgstr "Ayarlar"
216
 
217
+ #: contact_form.php:788
218
  msgid "Extra settings"
219
  msgstr "Ekstra ayarlar"
220
 
221
+ #: contact_form.php:789
222
  msgid "Go PRO"
223
  msgstr ""
224
 
225
+ #: contact_form.php:792
226
+ msgid "Notice:"
227
+ msgstr "Bilgi Notu:"
228
+
229
+ #: contact_form.php:792
230
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
231
+ msgstr "Eklentinin ayarları değiştirildi. Değişiklikleri kaydetmek için 'Değişiklikleri Kaydet' butonuna basmayı unutmayın."
232
+
233
+ #: contact_form.php:798
234
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
235
+ msgstr ""
236
+
237
+ #: contact_form.php:804
238
+ #: contact_form.php:809
239
+ #: contact_form.php:1529
240
  msgid "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:"
241
  msgstr "Eğer sitenize iletişim formu eklemek istiyorsanız, şu kısa kodu yazınıza, sayfanıza ya da bileşen alanınıza eklemeniz yeterli."
242
 
243
+ #: contact_form.php:804
244
+ #: contact_form.php:805
245
+ #: contact_form.php:809
246
+ #: contact_form.php:810
247
+ #: contact_form.php:1155
248
+ #: contact_form.php:1157
249
+ #: contact_form.php:1212
250
+ #: contact_form.php:1214
251
  msgid "or"
252
  msgstr "ya da"
253
 
254
+ #: contact_form.php:805
255
+ #: contact_form.php:810
256
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
257
  msgstr "Eğer standart [contact_form] kısa koduyla ilgili bir sorun yaşarsanız, şunlardan birini kullanmalısınız"
258
 
259
+ #: contact_form.php:806
260
+ #: contact_form.php:811
261
  msgid "They work the same way."
262
  msgstr "Aynı şekilde çalışırlar."
263
 
264
+ #: contact_form.php:807
265
+ #: contact_form.php:812
266
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
267
  msgstr "Eğer aşağıdaki alanları boş bırakırsanız, kullanıcının mesajı kayıt sırasında girilen e-posta adresine gönderilecek."
268
 
269
+ #: contact_form.php:817
270
  msgid "The user's email address:"
271
  msgstr "Kullanıcının e-posta adresine:"
272
 
273
+ #: contact_form.php:821
274
  msgid "Create a username"
275
  msgstr "Kullanıcı oluştur"
276
 
277
+ #: contact_form.php:828
278
  msgid "Enter a username of the person who should get the messages from the contact form."
279
  msgstr "İletişim Formu ile gönderilen mesajı almasını istediğiniz kullanıcının adını girin."
280
 
281
+ #: contact_form.php:832
282
  msgid "Use this email address:"
283
  msgstr "Mesaj bu e-posta adresine gönderilsin:"
284
 
285
+ #: contact_form.php:835
286
  msgid "Enter the email address you want the messages forwarded to."
287
  msgstr "Mesajın gönderilmesini istediğiniz e-posta adresini girin."
288
 
289
+ #: contact_form.php:844
290
  msgid "Add department selectbox to the contact form:"
291
  msgstr "İletişim Formu'na departman seçenekleri ekleyin"
292
 
293
+ #: contact_form.php:852
294
+ #: contact_form.php:1412
295
  msgid "If you upgrade to Pro version all your settings will be saved."
296
  msgstr "Ücretli sürümü satın alırsanız tüm değişiklikler kaydedilecek."
297
 
298
+ #: contact_form.php:859
299
+ #: contact_form.php:997
300
+ #: contact_form.php:1071
301
+ #: contact_form.php:1419
302
+ msgid "Unlock premium options by upgrading to a PRO version."
303
+ msgstr ""
304
 
305
+ #: contact_form.php:860
306
+ #: contact_form.php:998
307
+ #: contact_form.php:1072
308
+ #: contact_form.php:1420
309
+ #: contact_form.php:2473
310
+ #: contact_form.php:2489
311
+ msgid "Learn More"
312
+ msgstr ""
313
 
314
+ #: contact_form.php:863
315
+ #: contact_form.php:1001
316
+ #: contact_form.php:1075
317
+ #: contact_form.php:1423
318
+ msgid "Go"
319
+ msgstr ""
320
+
321
+ #: contact_form.php:870
322
  msgid "Save emails to the database"
323
  msgstr "E-postaları veritabanına kaydet"
324
 
325
+ #: contact_form.php:876
326
  msgid "Using"
327
  msgstr ""
328
 
329
+ #: contact_form.php:876
330
+ #: contact_form.php:1048
331
+ #: contact_form.php:1051
332
+ #: contact_form.php:1055
333
  msgid "powered by"
334
  msgstr "geliştirici: "
335
 
336
+ #: contact_form.php:879
337
+ #: contact_form.php:883
338
  msgid "Using Contact Form to DB powered by"
339
  msgstr "Contact Form to DB eklentisi ile,"
340
 
341
+ #: contact_form.php:879
342
  msgid "Activate Contact Form to DB"
343
  msgstr "Contact Form to DB eklentisini aktifleştir"
344
 
345
+ #: contact_form.php:883
346
  msgid "Download Contact Form to DB"
347
  msgstr "Contact Form to DB eklentisini yükle"
348
 
349
+ #: contact_form.php:888
350
  msgid "Additional options"
351
  msgstr "Ek seçenekler"
352
 
353
+ #: contact_form.php:890
354
  msgid "Show"
355
  msgstr "Göster"
356
 
357
+ #: contact_form.php:891
358
  msgid "Hide"
359
  msgstr "Gizle"
360
 
361
+ #: contact_form.php:895
362
  msgid "What to use?"
363
  msgstr "Hangi yöntem?"
364
 
365
+ #: contact_form.php:898
366
  msgid "Wp-mail"
367
  msgstr "Wp-Mail"
368
 
369
+ #: contact_form.php:898
370
  msgid "You can use the wp_mail function for mailing"
371
  msgstr "E-postanın gönderimi için wp_mail fonksiyonunu kullanabilirsiniz."
372
 
373
+ #: contact_form.php:900
374
  msgid "Mail"
375
  msgstr "Mail"
376
 
377
+ #: contact_form.php:900
378
  msgid "To send mail you can use the php mail function"
379
  msgstr "E-postanın gönderimi için PHP Mail fonksiyonunu kullanabilirsiniz."
380
 
381
+ #: contact_form.php:904
382
  msgid "The text in the 'From' field"
383
  msgstr "'Gönderici' alanındaki metin"
384
 
385
+ #: contact_form.php:906
386
  msgid "User name"
387
  msgstr "Kullanıcı adı"
388
 
389
+ #: contact_form.php:907
390
  msgid "The name of the user who fills the form will be used in the field 'From'."
391
  msgstr "'Gönderici' alanında formu dolduran ziyaretçinin adı kullanılacak."
392
 
393
+ #: contact_form.php:910
394
  msgid "This text will be used in the 'FROM' field"
395
  msgstr "'GÖNDERİCİ' alanında bu metin kullanılacak"
396
 
397
+ #: contact_form.php:914
398
  msgid "The email address in the 'From' field"
399
  msgstr "'Gönderen' alanındaki e-posta adresi"
400
 
401
+ #: contact_form.php:916
402
  msgid "User email"
403
  msgstr "Kullanıcı e-postası"
404
 
405
+ #: contact_form.php:917
406
  msgid "The email address of the user who fills the form will be used in the field 'From'."
407
  msgstr "'Gönderici' alanında formu dolduran kullanıcının e-posta adresi gösterilecek."
408
 
409
+ #: contact_form.php:920
410
  msgid "This email address will be used in the 'From' field."
411
  msgstr "'Gönderici' alanında bu e-posta adresi gösterilecek."
412
 
413
+ #: contact_form.php:924
414
  msgid "Required symbol"
415
  msgstr "Zorunlu işareti"
416
 
417
+ #: contact_form.php:934
418
  msgid "Fields"
419
  msgstr "Alanlar"
420
 
421
+ #: contact_form.php:935
422
  msgid "Used"
423
  msgstr "Kullanılsın mı?"
424
 
425
+ #: contact_form.php:936
426
  msgid "Required"
427
  msgstr "Zorunlu"
428
 
429
+ #: contact_form.php:937
430
  msgid "Visible"
431
  msgstr "Görünür"
432
 
433
+ #: contact_form.php:938
434
  msgid "Disabled for editing"
435
  msgstr "Düzenlemeye kapatılmış"
436
 
437
+ #: contact_form.php:939
438
  msgid "Field's default value"
439
  msgstr "Alanın varsayılan değeri"
440
 
441
+ #: contact_form.php:944
442
+ #: contact_form.php:1287
443
+ #: contact_form.php:2059
444
+ #: contact_form.php:2089
445
  msgid "Name"
446
  msgstr "İsim"
447
 
448
+ #: contact_form.php:952
449
+ #: contact_form.php:1292
450
+ #: contact_form.php:2063
451
+ #: contact_form.php:2091
452
  msgid "Address"
453
  msgstr "Adres:"
454
 
455
+ #: contact_form.php:960
456
  msgid "Email Address"
457
  msgstr "E-posta Adresi"
458
 
459
+ #: contact_form.php:968
460
  msgid "Phone number"
461
  msgstr "Telefon numarası"
462
 
463
+ #: contact_form.php:976
464
+ #: contact_form.php:1307
465
+ #: contact_form.php:2073
466
+ #: contact_form.php:2095
467
  msgid "Subject"
468
  msgstr "Başlık"
469
 
470
+ #: contact_form.php:984
471
+ #: contact_form.php:1311
472
+ #: contact_form.php:2076
473
+ #: contact_form.php:2096
474
  msgid "Message"
475
  msgstr "Mesaj"
476
 
477
+ #: contact_form.php:1008
478
  msgid "Attachment block"
479
  msgstr "Dosya Yükleme"
480
 
481
+ #: contact_form.php:1010
482
  msgid "Users can attach the following file formats"
483
  msgstr "Kullanıcılar şu uzantılardaki dosyaları yükleyebilirler"
484
 
485
+ #: contact_form.php:1023
486
  msgid "Add to the form"
487
  msgstr "Forma ekle"
488
 
489
+ #: contact_form.php:1028
490
  msgid "Tips below the Attachment"
491
  msgstr "Dosya yükleme alanı altında açıklama"
492
 
493
+ #: contact_form.php:1037
494
  msgid "'Send me a copy' block"
495
  msgstr "'Mesajın bir kopyasını e-posta adresime gönder' seçeneği"
496
 
497
+ #: contact_form.php:1048
498
+ #: contact_form.php:1051
499
+ #: contact_form.php:1055
500
+ #: contact_form.php:1321
501
  msgid "Captcha"
502
  msgstr "CAPTCHA"
503
 
504
+ #: contact_form.php:1051
505
  msgid "Activate captcha"
506
  msgstr "CAPTCHA'yı etkinleştir"
507
 
508
+ #: contact_form.php:1055
509
  msgid "Download captcha"
510
  msgstr "CAPTCHA'yı yükle"
511
 
512
+ #: contact_form.php:1063
513
  msgid "Agreement checkbox"
514
  msgstr "Onay kutusu"
515
 
516
+ #: contact_form.php:1063
517
  msgid "Required checkbox for submitting the form"
518
  msgstr "Formu göndermek için işaretlenmesi gereken onay kutusu"
519
 
520
+ #: contact_form.php:1064
521
  msgid "Optional checkbox"
522
  msgstr "İsteğe bağlı onay kutusu"
523
 
524
+ #: contact_form.php:1064
525
  msgid "Optional checkbox, the results of which will be displayed in email"
526
  msgstr "E-posta'da gösterilecek, isteğe bağlı onay kutusu"
527
 
528
+ #: contact_form.php:1081
529
  msgid "Delete an attachment file from the server after the email is sent"
530
  msgstr "E-posta gönderildikten sonra eklenen dosyayı sunucudan sil"
531
 
532
+ #: contact_form.php:1087
533
  msgid "Email in HTML format sending"
534
  msgstr "E-postayı HTML formatında gönder"
535
 
536
+ #: contact_form.php:1091
537
  msgid "Display additional info in the email"
538
  msgstr "E-postanın içerisinde ek bilgiler göster"
539
 
540
+ #: contact_form.php:1096
541
+ #: contact_form.php:2026
542
+ #: contact_form.php:2028
543
  msgid "Sent from (ip address)"
544
  msgstr "Gönderilen (IP Adresi)"
545
 
546
+ #: contact_form.php:1096
547
  msgid "Example: Sent from (IP address):\t127.0.0.1"
548
  msgstr "Örnek: Şu IP adresinden gönderildi:\t127.0.0.1"
549
 
550
+ #: contact_form.php:1097
551
+ #: contact_form.php:2032
552
+ #: contact_form.php:2034
553
  msgid "Date/Time"
554
  msgstr "Tarih/Zaman"
555
 
556
+ #: contact_form.php:1097
557
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
558
  msgstr "Örnek: Tarih/Saat:\t19 Ağustos, 2013 - 8:50 ÖS"
559
 
560
+ #: contact_form.php:1098
561
+ #: contact_form.php:2038
562
+ #: contact_form.php:2040
563
  msgid "Sent from (referer)"
564
  msgstr "Gönderilen (referer)"
565
 
566
+ #: contact_form.php:1098
567
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
568
  msgstr "Örnek: Gönderici:\thttp://bestwebsoft.com/contacts/contact-us/"
569
 
570
+ #: contact_form.php:1099
571
+ #: contact_form.php:2044
572
+ #: contact_form.php:2046
573
  msgid "Using (user agent)"
574
  msgstr "Şununla: "
575
 
576
+ #: contact_form.php:1099
577
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
578
  msgstr "Örnek: Şunu kullanarak:\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
579
 
580
+ #: contact_form.php:1103
581
  msgid "Language settings for the field names in the form"
582
  msgstr "Formdaki alan adları için dil ayarları 8aşağıdaki iki seçenek için)"
583
 
584
+ #: contact_form.php:1112
585
  msgid "Add a language"
586
  msgstr "Bir dil ekle"
587
 
588
+ #: contact_form.php:1116
589
  msgid "Change the names of the contact form fields and error messages"
590
  msgstr "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata mesajlarını değiştir"
591
 
592
+ #: contact_form.php:1121
593
+ #: contact_form.php:1202
594
  msgid "English"
595
  msgstr "İngilizce"
596
 
597
+ #: contact_form.php:1129
598
+ #: contact_form.php:1163
599
  msgid "click to expand/hide the list"
600
  msgstr ""
601
 
602
+ #: contact_form.php:1138
603
+ #: contact_form.php:1172
604
  msgid "Tips below the Attachment block"
605
  msgstr "Dosya yükleme alanı altında gösterilecek açıklamalar"
606
 
607
+ #: contact_form.php:1141
608
+ #: contact_form.php:1175
609
  msgid "Error message for the Name field"
610
  msgstr "'İsim' alanı için hata mesajı"
611
 
612
+ #: contact_form.php:1142
613
+ #: contact_form.php:1176
614
  msgid "Error message for the Address field"
615
  msgstr "'Adres' alanı için hata mesajı"
616
 
617
+ #: contact_form.php:1143
618
+ #: contact_form.php:1177
619
  msgid "Error message for the Email field"
620
  msgstr "'E-posta adresş' alanı için hata mesajı"
621
 
622
+ #: contact_form.php:1144
623
+ #: contact_form.php:1178
624
  msgid "Error message for the Phone field"
625
  msgstr "'Telefon numarası' alanı için hata mesajı"
626
 
627
+ #: contact_form.php:1145
628
+ #: contact_form.php:1179
629
  msgid "Error message for the Subject field"
630
  msgstr "'Başlık' alanı için hata mesajı"
631
 
632
+ #: contact_form.php:1146
633
+ #: contact_form.php:1180
634
  msgid "Error message for the Message field"
635
  msgstr "'Mesaj' alanı için hata mesajı"
636
 
637
+ #: contact_form.php:1147
638
+ #: contact_form.php:1181
639
  msgid "Error message about the file type for the Attachment field"
640
  msgstr "Yüklenen dosyanın uzantısıyla ilgili hata mesajı"
641
 
642
+ #: contact_form.php:1148
643
+ #: contact_form.php:1182
644
  msgid "Error message while uploading a file for the Attachment field to the server"
645
  msgstr "Dosya yüklenirken oluşan hata için hata mesajı"
646
 
647
+ #: contact_form.php:1149
648
+ #: contact_form.php:1183
649
  msgid "Error message while moving the file for the Attachment field"
650
  msgstr "Yüklenecek dosya seçilirken oluşan hata için hata mesajı"
651
 
652
+ #: contact_form.php:1150
653
+ #: contact_form.php:1184
654
  msgid "Error message when file size limit for the Attachment field is exceeded"
655
  msgstr "En fazla dosya yükleme boyutu sınırı açıldığında oluşan hata mesajı"
656
 
657
+ #: contact_form.php:1151
658
+ #: contact_form.php:1185
659
  msgid "Error message for the Captcha field"
660
  msgstr "CAPTCHA alanı için hata mesajı"
661
 
662
+ #: contact_form.php:1152
663
+ #: contact_form.php:1186
664
  msgid "Error message for the whole form"
665
  msgstr "Formun geneli için hata mesajı"
666
 
667
+ #: contact_form.php:1155
668
+ #: contact_form.php:1157
669
+ #: contact_form.php:1189
670
+ #: contact_form.php:1191
671
+ #: contact_form.php:1212
672
+ #: contact_form.php:1214
673
+ #: contact_form.php:1222
674
+ #: contact_form.php:1224
675
  msgid "Use shortcode"
676
  msgstr "Kısa kodu kullan"
677
 
678
+ #: contact_form.php:1155
679
+ #: contact_form.php:1157
680
+ #: contact_form.php:1189
681
+ #: contact_form.php:1191
682
+ #: contact_form.php:1212
683
+ #: contact_form.php:1214
684
+ #: contact_form.php:1222
685
+ #: contact_form.php:1224
686
  msgid "for this language"
687
  msgstr "bu dil için"
688
 
689
+ #: contact_form.php:1199
690
  msgid "Action after email is sent"
691
  msgstr "E-posta gönderildikten sonra ne yapılsın?"
692
 
693
+ #: contact_form.php:1201
694
  msgid "Display text"
695
  msgstr "Metin göster"
696
 
697
+ #: contact_form.php:1210
698
+ #: contact_form.php:1220
699
  msgid "Text"
700
  msgstr "Metin"
701
 
702
+ #: contact_form.php:1231
703
  msgid "Redirect to the page"
704
  msgstr "Sayfaya yönlendir"
705
 
706
+ #: contact_form.php:1232
707
  msgid "Url"
708
  msgstr "URL"
709
 
710
+ #: contact_form.php:1236
711
  msgid "The $_SERVER variable that is used to build a URL of the form"
712
  msgstr ""
713
 
714
+ #: contact_form.php:1240
715
  msgid "If you are not sure whether to change this setting or not, please do not do that."
716
  msgstr ""
717
 
718
+ #: contact_form.php:1246
719
+ #: contact_form.php:1430
720
  msgid "Save Changes"
721
  msgstr "Değişiklikleri Kaydet"
722
 
723
+ #: contact_form.php:1251
724
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
725
  msgstr "Eğer eklentiyi beğenerek kullanıyorsanız, lütfen Wordpress'te eklentiye 5 yıldız verin"
726
 
727
+ #: contact_form.php:1252
728
  msgid "Rate the plugin"
729
  msgstr "Eklentiyi değerlendir"
730
 
731
+ #: contact_form.php:1255
732
  msgid "If there is something wrong about it, please contact us"
733
  msgstr "Eğer eklenti hakkında problem tespit ederseniz lütfen bizimle iletişime geçin"
734
 
735
+ #: contact_form.php:1267
736
  msgid "Errors output"
737
  msgstr "Hata çıktısı"
738
 
739
+ #: contact_form.php:1270
740
  msgid "Display error messages"
741
  msgstr "Hata mesajlarını göster"
742
 
743
+ #: contact_form.php:1271
744
  msgid "Color of the input field errors."
745
  msgstr "Giriş alanlarının hata rengi"
746
 
747
+ #: contact_form.php:1272
748
  msgid "Display error messages & color of the input field errors"
749
  msgstr "Hata mesajlarını ve giriş alanı hata rengini göster"
750
 
751
+ #: contact_form.php:1277
752
  msgid "Add placeholder to the input blocks"
753
  msgstr "Giriş alanlarına bilgilendirme notu ekle"
754
 
755
+ #: contact_form.php:1283
756
  msgid "Add tooltips"
757
  msgstr "Şunları ekle:"
758
 
759
+ #: contact_form.php:1297
760
  msgid "Email address"
761
  msgstr "E-posta adresi"
762
 
763
+ #: contact_form.php:1302
764
  msgid "Phone Number"
765
  msgstr "Telefon Numarası"
766
 
767
+ #: contact_form.php:1316
768
  msgid "Attachment"
769
  msgstr "Dosya Yükleme"
770
 
771
+ #: contact_form.php:1321
772
  msgid "(powered by bestwebsoft.com)"
773
  msgstr "(Geliştirici bestwebsoft.com)"
774
 
775
+ #: contact_form.php:1326
776
  msgid "Style options"
777
  msgstr "Tasarım ayarları"
778
 
779
+ #: contact_form.php:1329
780
  msgid "Text color"
781
  msgstr "Metin rengi"
782
 
783
+ #: contact_form.php:1332
784
+ #: contact_form.php:1337
785
+ #: contact_form.php:1347
786
+ #: contact_form.php:1352
787
+ #: contact_form.php:1357
788
+ #: contact_form.php:1362
789
+ #: contact_form.php:1372
790
+ #: contact_form.php:1377
791
+ #: contact_form.php:1383
792
+ #: contact_form.php:1394
793
+ #: contact_form.php:1399
794
+ #: contact_form.php:1404
795
  msgid "Default"
796
  msgstr "Varsayılan"
797
 
798
+ #: contact_form.php:1334
799
  msgid "Label text color"
800
  msgstr "Etiket metninin rengi"
801
 
802
+ #: contact_form.php:1339
803
  msgid "Placeholder color"
804
  msgstr "Bilgilendirme notu rengi"
805
 
806
+ #: contact_form.php:1344
807
  msgid "Errors color"
808
  msgstr "Hataların renkleri"
809
 
810
+ #: contact_form.php:1349
811
  msgid "Error text color"
812
  msgstr "Hata metni rengi"
813
 
814
+ #: contact_form.php:1354
815
  msgid "Background color of the input field errors"
816
  msgstr "giriş alanı hataları için arka plan rengi"
817
 
818
+ #: contact_form.php:1359
819
  msgid "Border color of the input field errors"
820
  msgstr "Giriş alanı hataları için border rengi"
821
 
822
+ #: contact_form.php:1364
823
  msgid "Placeholder color of the input field errors"
824
  msgstr "Giriş alanı hataları için bilgilendirme notu rengi"
825
 
826
+ #: contact_form.php:1369
827
  msgid "Input fields"
828
  msgstr "Giriş alanları"
829
 
830
+ #: contact_form.php:1374
831
  msgid "Input fields background color"
832
  msgstr "Giriş alanları arka plan rengi"
833
 
834
+ #: contact_form.php:1379
835
  msgid "Text fields color"
836
  msgstr "Metin alanlarının rengi"
837
 
838
+ #: contact_form.php:1381
839
  msgid "Border width in px, numbers only"
840
  msgstr "Bırder genişliği, piksel cinsinden, sadece sayı"
841
 
842
+ #: contact_form.php:1385
843
+ #: contact_form.php:1406
844
  msgid "Border color"
845
  msgstr "Border rengi"
846
 
847
+ #: contact_form.php:1390
848
  msgid "Submit button"
849
  msgstr "Gönderme butonu"
850
 
851
  # #: contact_form.php:928
852
+ #: contact_form.php:1392
853
  msgid "Width in px, numbers only"
854
  msgstr "Piksel cinsinden genişlik, sadece sayı"
855
 
856
+ #: contact_form.php:1396
857
  msgid "Button color"
858
  msgstr "Buton rengi"
859
 
860
+ #: contact_form.php:1401
861
  msgid "Button text color"
862
  msgstr "Buton yazı rengi"
863
 
864
+ #: contact_form.php:1434
865
  msgid "Contact Form Pro | Preview"
866
  msgstr "İletişim Formu PRO | Ön İzleme"
867
 
868
+ #: contact_form.php:1437
869
  msgid "Show with errors"
870
  msgstr "Hatalarla göster"
871
 
872
+ #: contact_form.php:1445
873
+ #: contact_form.php:1447
874
  msgid "Please enter your full name..."
875
  msgstr "Lütfen tam adınızı yazın"
876
 
877
+ #: contact_form.php:1458
878
+ #: contact_form.php:1460
879
  msgid "Please enter your address..."
880
  msgstr "Lütfen adresinizi yazın"
881
 
882
+ #: contact_form.php:1469
883
+ #: contact_form.php:1471
884
  msgid "Please enter your email address..."
885
  msgstr "Lütfen e-posta adresinizi yazın"
886
 
887
+ #: contact_form.php:1480
888
+ #: contact_form.php:1482
889
  msgid "Please enter your phone number..."
890
  msgstr "Lütfen telefon numaranızı yazın"
891
 
892
+ #: contact_form.php:1491
893
+ #: contact_form.php:1493
894
  msgid "Please enter subject..."
895
  msgstr "Lütfen başlık yazın"
896
 
897
+ #: contact_form.php:1501
898
+ #: contact_form.php:1503
899
  msgid "Please enter your message..."
900
  msgstr "Lütfen mesajınızı yazın"
901
 
902
+ #: contact_form.php:1545
903
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
904
  msgstr ""
905
 
906
+ #: contact_form.php:1547
907
  msgid "Please, go to"
908
  msgstr ""
909
 
910
+ #: contact_form.php:1547
911
  #, fuzzy
912
  msgid "the setting page"
913
  msgstr "Ekstra ayarlar"
914
 
915
+ #: contact_form.php:1548
916
  msgid "You will be redirected automatically in 5 seconds."
917
  msgstr ""
918
 
919
+ #: contact_form.php:1553
920
  msgid "You can download and activate"
921
  msgstr ""
922
 
923
+ #: contact_form.php:1555
924
  msgid "version of this plugin by entering Your license key."
925
  msgstr ""
926
 
927
+ #: contact_form.php:1557
928
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
929
  msgstr ""
930
 
931
+ #: contact_form.php:1559
932
  msgid "(your username is the email you specify when purchasing the product)."
933
  msgstr ""
934
 
935
+ #: contact_form.php:1567
936
+ #: contact_form.php:1577
937
  msgid "Go!"
938
  msgstr ""
939
 
940
+ #: contact_form.php:1647
941
  msgid "Sorry, email message could not be delivered."
942
  msgstr "Üzgünüz, e-posta mesajınız gönderilemedi."
943
 
944
+ #: contact_form.php:2053
945
  msgid "Contact from"
946
  msgstr "İletişim Formu"
947
 
948
+ #: contact_form.php:2066
949
+ #: contact_form.php:2092
950
  msgid "Email"
951
  msgstr "E-Posta Adresi"
952
 
953
+ #: contact_form.php:2070
954
+ #: contact_form.php:2094
955
  msgid "Phone"
956
  msgstr "Telefon"
957
 
958
+ #: contact_form.php:2079
959
+ #: contact_form.php:2097
960
  msgid "Site"
961
  msgstr "Website"
962
 
963
+ #: contact_form.php:2160
964
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
965
  msgstr "Eğer bu MIME'ı görüyorsanız, bu e-posta sunucunuzun MIME'ı desteklemediği anlamına gelir!"
966
 
967
+ #: contact_form.php:2229
968
  msgid "FAQ"
969
  msgstr "SSS"
970
 
971
+ #: contact_form.php:2230
972
  msgid "Support"
973
  msgstr "Destek"
974
 
975
+ #: contact_form.php:2280
976
  msgid "Are you sure that you want to delete this language data?"
977
  msgstr "Bu dile ait verileri silmek istediğinize emin misiniz?"
978
 
979
+ #: contact_form.php:2476
980
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
981
  msgstr ""
982
 
983
+ #: contact_form.php:2477
984
  msgid "Extend standard plugin functionality with new great options."
985
  msgstr ""
986
 
987
+ #: contact_form.php:2492
988
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
989
  msgstr ""
990
 
991
+ #: contact_form.php:2493
992
  msgid "Manage messages that have been sent from your website."
993
  msgstr ""
994
 
995
+ #~ msgid ""
996
+ #~ "This functionality is available in the Pro version of the plugin. For "
997
+ #~ "more details, please follow the link"
998
+ #~ msgstr ""
999
+ #~ "Bu seçenek sadece PRO versiyonunda kullanılabilir. Detaylı bilgi için, "
1000
+
1001
+ #~ msgid "Contact Form Pro"
1002
+ #~ msgstr "İletişim Formu PRO"
1003
+
1004
  #~ msgid "Contact Form Pro Extra Settings"
1005
  #~ msgstr "İletişim Formu PRO Ekstra Ayarları"
1006
 
languages/contact_form-uk.mo CHANGED
Binary file
languages/contact_form-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: 2014-02-20 14:08+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:08+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Andrew Yaschuk <xxxxAndyxxxx@gmail.com>\n"
9
  "Language: ua_UA\n"
@@ -16,958 +16,997 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  msgid "Contact Form Settings"
22
  msgstr "Установки Contact Form"
23
 
24
- #: contact_form.php:33
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
- #: contact_form.php:80
29
- #: contact_form.php:978
30
- #: contact_form.php:1008
31
  msgid "Name:"
32
  msgstr "Ім'я:"
33
 
34
- #: contact_form.php:81
35
- #: contact_form.php:979
36
- #: contact_form.php:1009
37
  msgid "Address:"
38
  msgstr "Адреса:"
39
 
40
- #: contact_form.php:82
41
- #: contact_form.php:980
42
- #: contact_form.php:1010
43
  msgid "Email Address:"
44
  msgstr "E-mail адреса:"
45
 
46
- #: contact_form.php:83
47
- #: contact_form.php:981
48
- #: contact_form.php:1011
49
  msgid "Phone number:"
50
  msgstr "Номер телефону:"
51
 
52
- #: contact_form.php:84
53
- #: contact_form.php:982
54
- #: contact_form.php:1012
55
  msgid "Subject:"
56
  msgstr "Тема:"
57
 
58
- #: contact_form.php:85
59
- #: contact_form.php:983
60
- #: contact_form.php:1013
61
  msgid "Message:"
62
  msgstr "Повідомлення:"
63
 
64
- #: contact_form.php:86
65
- #: contact_form.php:984
66
- #: contact_form.php:1014
67
  msgid "Attachment:"
68
  msgstr "Вкладений файл:"
69
 
70
- #: contact_form.php:87
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Типи файлів, що підтримуються: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Максимальний розмір: 2MB"
73
 
74
- #: contact_form.php:88
75
- #: contact_form.php:986
76
- #: contact_form.php:1016
77
  msgid "Send me a copy"
78
  msgstr "Надіслати мені копію"
79
 
80
- #: contact_form.php:89
81
- #: contact_form.php:987
82
- #: contact_form.php:1017
83
  msgid "Submit"
84
  msgstr "Підтвердити"
85
 
86
- #: contact_form.php:90
87
  msgid "Your name is required."
88
  msgstr "Необхідно вказати своє ім'я."
89
 
90
- #: contact_form.php:91
91
  msgid "Address is required."
92
  msgstr "Необхідно вказати правильну адресу."
93
 
94
- #: contact_form.php:92
95
  msgid "A valid email address is required."
96
  msgstr "Необхідно вказати правильну адресу ел.пошти."
97
 
98
- #: contact_form.php:93
99
  msgid "Phone number is required."
100
  msgstr "Необхідно вказати номер телефону."
101
 
102
- #: contact_form.php:94
103
  msgid "Subject is required."
104
  msgstr "Необхідно вказати тему."
105
 
106
- #: contact_form.php:95
107
  msgid "Message text is required."
108
  msgstr "Повідомлення не може бути порожнім."
109
 
110
- #: contact_form.php:96
111
  msgid "File format is not valid."
112
  msgstr "Неправильний формат файлу."
113
 
114
- #: contact_form.php:97
115
  msgid "File upload error."
116
  msgstr "Помилка завантаження файлу."
117
 
118
- #: contact_form.php:98
119
  msgid "The file could not be uploaded."
120
  msgstr "Файл не вдалося завантажити."
121
 
122
- #: contact_form.php:99
123
  msgid "This file is too large."
124
  msgstr "Файл занадто великий."
125
 
126
- #: contact_form.php:100
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Будь ласка, введіть код CAPTCHA."
129
 
130
- #: contact_form.php:101
131
  msgid "Please make corrections below and try again."
132
  msgstr "Будь ласка, внесіть поправки у відмічені поля і спробуйте знову."
133
 
134
- #: contact_form.php:103
135
  msgid "Thank you for contacting us."
136
  msgstr "Дякуємо, що зв'язалися з нами."
137
 
138
- #: contact_form.php:203
139
  msgid "requires"
140
  msgstr "потребує"
141
 
142
- #: contact_form.php:203
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "або вище, ось чому його було деактивовано! Будь ласка, оновіть WordPress та спробуйте ще раз. "
145
 
146
- #: contact_form.php:203
147
  msgid "Back to the WordPress"
148
  msgstr "Назад до WordPress"
149
 
150
- #: contact_form.php:203
151
  msgid "Plugins page"
152
  msgstr "Сторінка плагінів"
153
 
154
- #: contact_form.php:494
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "Якщо опція \"Перенаправлення на сторінку\" вибрана, то поле URL повинне бути заповнене в наступному форматі"
157
 
158
- #: contact_form.php:503
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "Такого користувача не існує. Установки не збережені"
161
 
162
- #: contact_form.php:507
163
- #: contact_form.php:513
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "Будь ласка, введіть правильну ел.адресу у полі \"Відправник\". Установки не збережені."
166
 
167
- #: contact_form.php:518
168
  msgid "Settings saved."
169
  msgstr "Установки збережені."
170
 
171
- #: contact_form.php:554
172
- #: contact_form.php:593
173
  msgid "Wrong license key"
174
  msgstr ""
175
 
176
- #: contact_form.php:586
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr ""
179
 
180
- #: contact_form.php:595
181
  msgid "This license key is bind to another site"
182
  msgstr ""
183
 
184
- #: contact_form.php:597
185
- #: contact_form.php:1392
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr ""
188
 
189
- #: contact_form.php:615
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr ""
192
 
193
- #: contact_form.php:621
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr ""
196
 
197
- #: contact_form.php:625
198
- #: contact_form.php:634
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
 
202
- #: contact_form.php:638
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr ""
205
 
206
- #: contact_form.php:653
207
  #, fuzzy
208
  msgid "Please, enter Your license key"
209
  msgstr "Будь ласка, напишіть своє повідомлення..."
210
 
211
- #: contact_form.php:662
212
- msgid "Notice:"
213
- msgstr ""
214
-
215
- #: contact_form.php:662
216
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
217
- msgstr ""
218
-
219
- #: contact_form.php:665
220
- #: contact_form.php:1997
221
- #: contact_form.php:2008
222
  msgid "Settings"
223
  msgstr "Установки"
224
 
225
- #: contact_form.php:666
226
  msgid "Extra settings"
227
  msgstr "Розширені установки"
228
 
229
- #: contact_form.php:667
230
  msgid "Go PRO"
231
  msgstr ""
232
 
233
- #: contact_form.php:673
234
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  msgid "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:"
236
  msgstr "Якщо Ви хочете додати контактну форму на свій сайт, просто скопіюйте і вставите цей шорткод у Вашу публікацію, сторінку або віджет:"
237
 
238
- #: contact_form.php:673
239
- #: contact_form.php:674
240
- #: contact_form.php:1001
241
- #: contact_form.php:1050
 
 
 
 
242
  msgid "or"
243
  msgstr "або"
244
 
245
- #: contact_form.php:674
 
246
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
247
  msgstr "Якщо виникли якісь проблеми зі стандартним шорткодом [contact_form], ви можете використати шорткод"
248
 
249
- #: contact_form.php:675
 
250
  msgid "They work the same way."
251
  msgstr "Вони працюють однаково."
252
 
253
- #: contact_form.php:676
 
254
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
255
  msgstr "Якщо Ви залишите поля порожніми, повідомлення буде надіслано на адресу ел.пошти, вказану під час реєстрації."
256
 
257
- #: contact_form.php:680
258
  msgid "The user's email address:"
259
  msgstr "Адреса ел.пошти користувача:"
260
 
261
- #: contact_form.php:684
262
  msgid "Create a username"
263
  msgstr "Виберіть ім'я користувача"
264
 
265
- #: contact_form.php:689
266
  msgid "Enter a username of the person who should get the messages from the contact form."
267
  msgstr "Введіть ім'я користувача, який повинен одержувати повідомлення з контактної форми."
268
 
269
- #: contact_form.php:693
270
  msgid "Use this email address:"
271
  msgstr "Використовувати цю адресу ел.пошти:"
272
 
273
- #: contact_form.php:696
274
  msgid "Enter the email address you want the messages forwarded to."
275
  msgstr "Вкажіть адресу ел.пошти, на яку бажаєте отримувати повідомлення."
276
 
277
- #: contact_form.php:702
278
  msgid "Add department selectbox to the contact form:"
279
  msgstr "Додати поле для вибору департаменту до контактної форми:"
280
 
281
- #: contact_form.php:710
282
- #: contact_form.php:1246
283
  msgid "If you upgrade to Pro version all your settings will be saved."
284
  msgstr ""
285
 
286
- #: contact_form.php:715
287
- #: contact_form.php:852
288
- #: contact_form.php:923
289
- #: contact_form.php:1096
290
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
291
- msgstr "Ця функціональність доступна у Pro версії плагіну. Для додаткових подробиць, будь ласка, перейдіть за посиланням"
292
 
293
- #: contact_form.php:716
294
- #: contact_form.php:853
295
- #: contact_form.php:924
296
- #: contact_form.php:1097
297
- msgid "Contact Form Pro"
298
- msgstr "Contact Form Pro"
 
 
299
 
300
- #: contact_form.php:722
 
 
 
 
 
 
 
301
  msgid "Save emails to the database"
302
  msgstr "Зберігати електронні повідомлення у базі даних"
303
 
304
- #: contact_form.php:732
305
  msgid "Using"
306
  msgstr ""
307
 
308
- #: contact_form.php:732
309
- #: contact_form.php:901
310
- #: contact_form.php:904
311
- #: contact_form.php:908
312
  msgid "powered by"
313
  msgstr "за підтримки"
314
 
315
- #: contact_form.php:735
316
- #: contact_form.php:739
317
  msgid "Using Contact Form to DB powered by"
318
  msgstr "Використовуючи Contact Form to DB, розроблену"
319
 
320
- #: contact_form.php:735
321
  msgid "Activate Contact Form to DB"
322
  msgstr "Активувати Contact Form to DB"
323
 
324
- #: contact_form.php:739
325
  msgid "Download Contact Form to DB"
326
  msgstr "Завантажити Contact Form to DB"
327
 
328
- #: contact_form.php:744
329
  msgid "Additional options"
330
  msgstr "Додаткові опції"
331
 
332
- #: contact_form.php:746
333
  msgid "Show"
334
  msgstr "Показувати"
335
 
336
- #: contact_form.php:747
337
  msgid "Hide"
338
  msgstr "Сховати"
339
 
340
- #: contact_form.php:751
341
  msgid "What to use?"
342
  msgstr "Що використовувати?"
343
 
344
- #: contact_form.php:754
345
  msgid "Wp-mail"
346
  msgstr "Wp-mail"
347
 
348
- #: contact_form.php:754
349
  msgid "You can use the wp_mail function for mailing"
350
  msgstr "Для відправлення пошти ви можете використовувати функцію WordPress wp_mail"
351
 
352
- #: contact_form.php:756
353
  msgid "Mail"
354
  msgstr "Пошта"
355
 
356
- #: contact_form.php:756
357
  msgid "To send mail you can use the php mail function"
358
  msgstr "Для відправлення пошти Ви можете використовувати функцію php mail"
359
 
360
- #: contact_form.php:760
361
  msgid "The text in the 'From' field"
362
  msgstr "Текст поля \"Відправник\""
363
 
364
- #: contact_form.php:762
365
  msgid "User name"
366
  msgstr "Ім’я користувача"
367
 
368
- #: contact_form.php:763
369
  msgid "The name of the user who fills the form will be used in the field 'From'."
370
  msgstr "Email-адреса користувача, який заповнює форму, буде використана у полі \"Відправник\"."
371
 
372
- #: contact_form.php:766
373
  msgid "This text will be used in the 'FROM' field"
374
  msgstr "Ця адреса ел.пошти буде використана у полі \"Відправник\"."
375
 
376
- #: contact_form.php:770
377
  msgid "The email address in the 'From' field"
378
  msgstr "Адреса ел.пошти в полі \"Відправник\""
379
 
380
- #: contact_form.php:772
381
  msgid "User email"
382
  msgstr "Ел.пошта користувача"
383
 
384
- #: contact_form.php:773
385
  msgid "The email address of the user who fills the form will be used in the field 'From'."
386
  msgstr "Email-адреса користувача, який заповнює форму, буде використана у полі \"Відправник\"."
387
 
388
- #: contact_form.php:776
389
  msgid "This email address will be used in the 'From' field."
390
  msgstr "Ця адреса ел.пошти буде використана у полі \"Відправник\"."
391
 
392
- #: contact_form.php:780
393
  msgid "Required symbol"
394
  msgstr "Обов'язковий символ"
395
 
396
- #: contact_form.php:790
397
  msgid "Fields"
398
  msgstr ""
399
 
400
- #: contact_form.php:791
401
  msgid "Used"
402
  msgstr ""
403
 
404
- #: contact_form.php:792
405
  #, fuzzy
406
  msgid "Required"
407
  msgstr "потребує"
408
 
409
- #: contact_form.php:793
410
  msgid "Visible"
411
  msgstr ""
412
 
413
- #: contact_form.php:794
414
  msgid "Disabled for editing"
415
  msgstr ""
416
 
417
- #: contact_form.php:795
418
  msgid "Field's default value"
419
  msgstr ""
420
 
421
- #: contact_form.php:800
422
- #: contact_form.php:1121
423
- #: contact_form.php:1841
424
- #: contact_form.php:1871
425
  msgid "Name"
426
  msgstr "Ім'я"
427
 
428
- #: contact_form.php:808
429
- #: contact_form.php:1126
430
- #: contact_form.php:1845
431
- #: contact_form.php:1873
432
  msgid "Address"
433
  msgstr "Адреса"
434
 
435
- #: contact_form.php:816
436
  msgid "Email Address"
437
  msgstr "Адреса ел.пошти"
438
 
439
- #: contact_form.php:824
440
  #, fuzzy
441
  msgid "Phone number"
442
  msgstr "Номер телефону:"
443
 
444
- #: contact_form.php:832
445
- #: contact_form.php:1141
446
- #: contact_form.php:1855
447
- #: contact_form.php:1877
448
  msgid "Subject"
449
  msgstr "Тема"
450
 
451
- #: contact_form.php:840
452
- #: contact_form.php:1145
453
- #: contact_form.php:1858
454
- #: contact_form.php:1878
455
  msgid "Message"
456
  msgstr "Повідомлення"
457
 
458
- #: contact_form.php:858
459
  msgid "Attachment block"
460
  msgstr "Блок \"Прикріпити файл\" "
461
 
462
- #: contact_form.php:860
463
  msgid "Users can attach the following file formats"
464
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
465
 
466
- #: contact_form.php:874
467
  msgid "Add to the form"
468
  msgstr ""
469
 
470
- #: contact_form.php:879
471
  #, fuzzy
472
  msgid "Tips below the Attachment"
473
  msgstr "Показувати підказки під блоком \"Прикріпити файл\""
474
 
475
- #: contact_form.php:888
476
  #, fuzzy
477
  msgid "'Send me a copy' block"
478
  msgstr "Показати блок \"Надіслати мені копію\""
479
 
480
- #: contact_form.php:901
481
- #: contact_form.php:904
482
- #: contact_form.php:908
483
- #: contact_form.php:1155
484
  msgid "Captcha"
485
  msgstr "Captcha"
486
 
487
- #: contact_form.php:904
488
  msgid "Activate captcha"
489
  msgstr "Активувати captcha"
490
 
491
- #: contact_form.php:908
492
  msgid "Download captcha"
493
  msgstr "Завантажити captcha"
494
 
495
- #: contact_form.php:916
496
  msgid "Agreement checkbox"
497
  msgstr ""
498
 
499
- #: contact_form.php:916
500
  msgid "Required checkbox for submitting the form"
501
  msgstr ""
502
 
503
- #: contact_form.php:917
504
  msgid "Optional checkbox"
505
  msgstr ""
506
 
507
- #: contact_form.php:917
508
  msgid "Optional checkbox, the results of which will be displayed in email"
509
  msgstr ""
510
 
511
- #: contact_form.php:928
512
  msgid "Delete an attachment file from the server after the email is sent"
513
  msgstr "Видаляти прикріплений файл з серверу після того, як ел.пошта відправлена"
514
 
515
- #: contact_form.php:934
516
  msgid "Email in HTML format sending"
517
  msgstr ""
518
 
519
- #: contact_form.php:938
520
  msgid "Display additional info in the email"
521
  msgstr "Відображати додаткову інформацію в ел.пошті"
522
 
523
- #: contact_form.php:943
524
- #: contact_form.php:1808
525
- #: contact_form.php:1810
526
  msgid "Sent from (ip address)"
527
  msgstr "Надіслано від (ip адреса)"
528
 
529
- #: contact_form.php:943
530
  msgid "Example: Sent from (IP address):\t127.0.0.1"
531
  msgstr "Приклад: Надіслано від (IP адреса):\t127.0.0.1"
532
 
533
- #: contact_form.php:944
534
- #: contact_form.php:1814
535
- #: contact_form.php:1816
536
  msgid "Date/Time"
537
  msgstr "Дата/Час"
538
 
539
- #: contact_form.php:944
540
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
541
  msgstr "Приклад: Date/Time:\tAugust 19, 2013 8:50 pm"
542
 
543
- #: contact_form.php:945
544
- #: contact_form.php:1820
545
- #: contact_form.php:1822
546
  msgid "Sent from (referer)"
547
  msgstr "Надіслано від (реферер)"
548
 
549
- #: contact_form.php:945
550
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
551
  msgstr "Приклад: Надіслано від (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
552
 
553
- #: contact_form.php:946
554
- #: contact_form.php:1826
555
- #: contact_form.php:1828
556
  msgid "Using (user agent)"
557
  msgstr "Використовується (user agent)"
558
 
559
- #: contact_form.php:946
560
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
561
  msgstr "Приклад: Використовує (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
562
 
563
- #: contact_form.php:950
564
  msgid "Language settings for the field names in the form"
565
  msgstr "Налаштування мови для назв полів форми"
566
 
567
- #: contact_form.php:959
568
  msgid "Add a language"
569
  msgstr "Додати мову"
570
 
571
- #: contact_form.php:963
572
  msgid "Change the names of the contact form fields and error messages"
573
  msgstr "Змінити назви полів контактної форми і повідомлення про помилку"
574
 
575
- #: contact_form.php:968
576
- #: contact_form.php:1041
577
  msgid "English"
578
  msgstr "Англійська"
579
 
580
- #: contact_form.php:976
581
- #: contact_form.php:1006
582
  msgid "click to expand/hide the list"
583
  msgstr ""
584
 
585
- #: contact_form.php:985
586
- #: contact_form.php:1015
587
  msgid "Tips below the Attachment block"
588
  msgstr "Показувати підказки під блоком \"Прикріпити файл\""
589
 
590
- #: contact_form.php:988
591
- #: contact_form.php:1018
592
  msgid "Error message for the Name field"
593
  msgstr "Повідомлення про помилку для поля Ім'я"
594
 
595
- #: contact_form.php:989
596
- #: contact_form.php:1019
597
  msgid "Error message for the Address field"
598
  msgstr "Повідомлення про помилку для поля Адреса"
599
 
600
- #: contact_form.php:990
601
- #: contact_form.php:1020
602
  msgid "Error message for the Email field"
603
  msgstr "Повідомлення про помилку для поля Email"
604
 
605
- #: contact_form.php:991
606
- #: contact_form.php:1021
607
  msgid "Error message for the Phone field"
608
  msgstr "Повідомлення про помилку для поля Номер телефону"
609
 
610
- #: contact_form.php:992
611
- #: contact_form.php:1022
612
  msgid "Error message for the Subject field"
613
  msgstr "Повідомлення про помилку для поля Тема"
614
 
615
- #: contact_form.php:993
616
- #: contact_form.php:1023
617
  msgid "Error message for the Message field"
618
  msgstr "Повідомлення про помилку для поля Повідомлення"
619
 
620
- #: contact_form.php:994
621
- #: contact_form.php:1024
622
  msgid "Error message about the file type for the Attachment field"
623
  msgstr "Повідомлення про помилку для поля Вкладені файли"
624
 
625
- #: contact_form.php:995
626
- #: contact_form.php:1025
627
  msgid "Error message while uploading a file for the Attachment field to the server"
628
  msgstr "Повідомлення про помилку під час завантаження файлу на сервер для поля Вкладені файли"
629
 
630
- #: contact_form.php:996
631
- #: contact_form.php:1026
632
  msgid "Error message while moving the file for the Attachment field"
633
  msgstr "Повідомлення про помилку під час переміщення файлу для поля Вкладені файли"
634
 
635
- #: contact_form.php:997
636
- #: contact_form.php:1027
637
  msgid "Error message when file size limit for the Attachment field is exceeded"
638
  msgstr "Повідомлення про помилку для поля Вкладені файли, коли розмір файлу перевищує допустимий"
639
 
640
- #: contact_form.php:998
641
- #: contact_form.php:1028
642
  msgid "Error message for the Captcha field"
643
  msgstr "Повідомлення про помилку для поля Captcha"
644
 
645
- #: contact_form.php:999
646
- #: contact_form.php:1029
647
  msgid "Error message for the whole form"
648
  msgstr "Повідомлення про помилку для всієї форми"
649
 
650
- #: contact_form.php:1001
651
- #: contact_form.php:1031
652
- #: contact_form.php:1050
653
- #: contact_form.php:1056
 
 
 
 
654
  msgid "Use shortcode"
655
  msgstr "Використовувати шорткод"
656
 
657
- #: contact_form.php:1001
658
- #: contact_form.php:1031
659
- #: contact_form.php:1050
660
- #: contact_form.php:1056
 
 
 
 
661
  msgid "for this language"
662
  msgstr "для цієї мови"
663
 
664
- #: contact_form.php:1038
665
  msgid "Action after email is sent"
666
  msgstr "Дія після відправлення ел.листа"
667
 
668
- #: contact_form.php:1040
669
  msgid "Display text"
670
  msgstr "Показати текст"
671
 
672
- #: contact_form.php:1049
673
- #: contact_form.php:1055
674
  msgid "Text"
675
  msgstr "Текст"
676
 
677
- #: contact_form.php:1062
678
  msgid "Redirect to the page"
679
  msgstr "Перенаправлення на сторінку"
680
 
681
- #: contact_form.php:1063
682
  msgid "Url"
683
  msgstr "Url"
684
 
685
- #: contact_form.php:1067
686
  msgid "The $_SERVER variable that is used to build a URL of the form"
687
  msgstr ""
688
 
689
- #: contact_form.php:1071
690
  msgid "If you are not sure whether to change this setting or not, please do not do that."
691
  msgstr ""
692
 
693
- #: contact_form.php:1077
694
- #: contact_form.php:1252
695
  msgid "Save Changes"
696
  msgstr "Зберегти зміни"
697
 
698
- #: contact_form.php:1082
699
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
700
  msgstr ""
701
 
702
- #: contact_form.php:1083
703
  #, fuzzy
704
  msgid "Rate the plugin"
705
  msgstr "Рекомендовані плагіни"
706
 
707
- #: contact_form.php:1086
708
  #, fuzzy
709
  msgid "If there is something wrong about it, please contact us"
710
  msgstr "Якщо у вас є запитання, звертайтесь на plugin@bestwebsoft.com або заповніть контактну форму на нашому сайті"
711
 
712
- #: contact_form.php:1101
713
  msgid "Errors output"
714
  msgstr "Виведення помилок"
715
 
716
- #: contact_form.php:1104
717
  msgid "Display error messages"
718
  msgstr "Показ повідомлень про помилки"
719
 
720
- #: contact_form.php:1105
721
  msgid "Color of the input field errors."
722
  msgstr "Колір для помилок у полях введення."
723
 
724
- #: contact_form.php:1106
725
  msgid "Display error messages & color of the input field errors"
726
  msgstr "Відображення повідомлень про помилку і колір для полів з помилками введення"
727
 
728
- #: contact_form.php:1111
729
  msgid "Add placeholder to the input blocks"
730
  msgstr "Додати текст заміщення для блоків введення"
731
 
732
- #: contact_form.php:1117
733
  msgid "Add tooltips"
734
  msgstr "Додати підказки"
735
 
736
- #: contact_form.php:1131
737
  msgid "Email address"
738
  msgstr "Адреса ел.пошти"
739
 
740
- #: contact_form.php:1136
741
  msgid "Phone Number"
742
  msgstr "Номер телефону"
743
 
744
- #: contact_form.php:1150
745
  msgid "Attachment"
746
  msgstr "Вкладений файл"
747
 
748
- #: contact_form.php:1155
749
  msgid "(powered by bestwebsoft.com)"
750
  msgstr "(розроблено компанією bestwebsoft.com)"
751
 
752
- #: contact_form.php:1160
753
  msgid "Style options"
754
  msgstr "Опції для стилю"
755
 
756
- #: contact_form.php:1163
757
  msgid "Text color"
758
  msgstr "Колір тексту"
759
 
760
- #: contact_form.php:1166
761
- #: contact_form.php:1171
762
- #: contact_form.php:1181
763
- #: contact_form.php:1186
764
- #: contact_form.php:1191
765
- #: contact_form.php:1196
766
- #: contact_form.php:1206
767
- #: contact_form.php:1211
768
- #: contact_form.php:1217
769
- #: contact_form.php:1228
770
- #: contact_form.php:1233
771
- #: contact_form.php:1238
772
  msgid "Default"
773
  msgstr "Стандартно"
774
 
775
- #: contact_form.php:1168
776
  msgid "Label text color"
777
  msgstr "Колір написів"
778
 
779
- #: contact_form.php:1173
780
  msgid "Placeholder color"
781
  msgstr "Колір тексту заміщення"
782
 
783
- #: contact_form.php:1178
784
  msgid "Errors color"
785
  msgstr "Колір помилок"
786
 
787
- #: contact_form.php:1183
788
  msgid "Error text color"
789
  msgstr "Колір тексту помилок"
790
 
791
- #: contact_form.php:1188
792
  msgid "Background color of the input field errors"
793
  msgstr "Колір заднього фону для полів введення з помилками"
794
 
795
- #: contact_form.php:1193
796
  msgid "Border color of the input field errors"
797
  msgstr "Колір рамки для полів введення з помилками"
798
 
799
- #: contact_form.php:1198
800
  msgid "Placeholder color of the input field errors"
801
  msgstr "Колір тексту заміщення для полів введення з помилками"
802
 
803
- #: contact_form.php:1203
804
  msgid "Input fields"
805
  msgstr "Поля введення тексту"
806
 
807
- #: contact_form.php:1208
808
  msgid "Input fields background color"
809
  msgstr "Колір фону полів введення"
810
 
811
- #: contact_form.php:1213
812
  msgid "Text fields color"
813
  msgstr "Колір текстових полів"
814
 
815
- #: contact_form.php:1215
816
  msgid "Border width in px, numbers only"
817
  msgstr "Ширина рамки в точках, тільки числа"
818
 
819
- #: contact_form.php:1219
820
- #: contact_form.php:1240
821
  msgid "Border color"
822
  msgstr "Колір рамки"
823
 
824
- #: contact_form.php:1224
825
  msgid "Submit button"
826
  msgstr "Кнопка підтвердження"
827
 
828
- #: contact_form.php:1226
829
  msgid "Width in px, numbers only"
830
  msgstr "Ширина в точках, тільки числа"
831
 
832
- #: contact_form.php:1230
833
  msgid "Button color"
834
  msgstr "Колір кнопок"
835
 
836
- #: contact_form.php:1235
837
  msgid "Button text color"
838
  msgstr "Колір тексту кнопок"
839
 
840
- #: contact_form.php:1256
841
  msgid "Contact Form Pro | Preview"
842
  msgstr "Contact Form Pro | Попередній перегляд"
843
 
844
- #: contact_form.php:1259
845
  msgid "Show with errors"
846
  msgstr "Показувати з помилками"
847
 
848
- #: contact_form.php:1267
849
- #: contact_form.php:1269
850
  msgid "Please enter your full name..."
851
  msgstr "Будь ласка, вкажіть своє повне ім'я..."
852
 
853
- #: contact_form.php:1280
854
- #: contact_form.php:1282
855
  msgid "Please enter your address..."
856
  msgstr "Будь ласка, вкажіть свою адресу..."
857
 
858
- #: contact_form.php:1291
859
- #: contact_form.php:1293
860
  msgid "Please enter your email address..."
861
  msgstr "Будь ласка, введіть свою адресу ел.пошти:"
862
 
863
- #: contact_form.php:1302
864
- #: contact_form.php:1304
865
  msgid "Please enter your phone number..."
866
  msgstr "Будь ласка, вкажіть свій номер телефону..."
867
 
868
- #: contact_form.php:1313
869
- #: contact_form.php:1315
870
  msgid "Please enter subject..."
871
  msgstr "Будь ласка, вкажіть тему..."
872
 
873
- #: contact_form.php:1323
874
- #: contact_form.php:1325
875
  msgid "Please enter your message..."
876
  msgstr "Будь ласка, напишіть своє повідомлення..."
877
 
878
- #: contact_form.php:1367
879
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
880
  msgstr ""
881
 
882
- #: contact_form.php:1369
883
  msgid "Please, go to"
884
  msgstr ""
885
 
886
- #: contact_form.php:1369
887
  #, fuzzy
888
  msgid "the setting page"
889
  msgstr "Розширені установки"
890
 
891
- #: contact_form.php:1370
892
  msgid "You will be redirected automatically in 5 seconds."
893
  msgstr ""
894
 
895
- #: contact_form.php:1375
896
  msgid "You can download and activate"
897
  msgstr ""
898
 
899
- #: contact_form.php:1377
900
  msgid "version of this plugin by entering Your license key."
901
  msgstr ""
902
 
903
- #: contact_form.php:1379
904
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
905
  msgstr ""
906
 
907
- #: contact_form.php:1381
908
  msgid "(your username is the email you specify when purchasing the product)."
909
  msgstr ""
910
 
911
- #: contact_form.php:1389
912
- #: contact_form.php:1399
913
  msgid "Go!"
914
  msgstr ""
915
 
916
- #: contact_form.php:1449
917
  msgid "Sorry, email message could not be delivered."
918
  msgstr "Вибачте, ваше повідомлення ел.пошти не може бути доставлене."
919
 
920
- #: contact_form.php:1835
921
  msgid "Contact from"
922
  msgstr "Контактна форма"
923
 
924
- #: contact_form.php:1848
925
- #: contact_form.php:1874
926
  msgid "Email"
927
  msgstr "Ел.пошта"
928
 
929
- #: contact_form.php:1852
930
- #: contact_form.php:1876
931
  msgid "Phone"
932
  msgstr "Телефон"
933
 
934
- #: contact_form.php:1861
935
- #: contact_form.php:1879
936
  msgid "Site"
937
  msgstr "Сайт"
938
 
939
- #: contact_form.php:1941
940
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
941
  msgstr "Якщо Ви не бачите цей MIME, це означає, що цей MIME тип не підтримується Вашим поштовим клієнтом!"
942
 
943
- #: contact_form.php:2009
944
  msgid "FAQ"
945
  msgstr "Часті питання"
946
 
947
- #: contact_form.php:2010
948
  msgid "Support"
949
  msgstr "Підтримка"
950
 
951
- #: contact_form.php:2068
952
  msgid "Are you sure that you want to delete this language data?"
953
  msgstr "Ви справді хочете видалити дані для цієї мови?"
954
 
955
- #: contact_form.php:2223
956
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
957
  msgstr ""
958
 
959
- #: contact_form.php:2224
960
  msgid "Extend standard plugin functionality with new great options."
961
  msgstr ""
962
 
963
- #: contact_form.php:2233
964
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
965
  msgstr ""
966
 
967
- #: contact_form.php:2234
968
  msgid "Manage messages that have been sent from your website."
969
  msgstr ""
970
 
 
 
 
 
 
 
 
 
 
 
971
  #~ msgid "Contact Form Pro Extra Settings"
972
  #~ msgstr "Додаткові установки Contact Form Pro"
973
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:41+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:41+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Andrew Yaschuk <xxxxAndyxxxx@gmail.com>\n"
9
  "Language: ua_UA\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  msgid "Contact Form Settings"
22
  msgstr "Установки Contact Form"
23
 
24
+ #: contact_form.php:73
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
+ #: contact_form.php:149
29
+ #: contact_form.php:1131
30
+ #: contact_form.php:1165
31
  msgid "Name:"
32
  msgstr "Ім'я:"
33
 
34
+ #: contact_form.php:150
35
+ #: contact_form.php:1132
36
+ #: contact_form.php:1166
37
  msgid "Address:"
38
  msgstr "Адреса:"
39
 
40
+ #: contact_form.php:151
41
+ #: contact_form.php:1133
42
+ #: contact_form.php:1167
43
  msgid "Email Address:"
44
  msgstr "E-mail адреса:"
45
 
46
+ #: contact_form.php:152
47
+ #: contact_form.php:1134
48
+ #: contact_form.php:1168
49
  msgid "Phone number:"
50
  msgstr "Номер телефону:"
51
 
52
+ #: contact_form.php:153
53
+ #: contact_form.php:1135
54
+ #: contact_form.php:1169
55
  msgid "Subject:"
56
  msgstr "Тема:"
57
 
58
+ #: contact_form.php:154
59
+ #: contact_form.php:1136
60
+ #: contact_form.php:1170
61
  msgid "Message:"
62
  msgstr "Повідомлення:"
63
 
64
+ #: contact_form.php:155
65
+ #: contact_form.php:1137
66
+ #: contact_form.php:1171
67
  msgid "Attachment:"
68
  msgstr "Вкладений файл:"
69
 
70
+ #: contact_form.php:156
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Типи файлів, що підтримуються: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Максимальний розмір: 2MB"
73
 
74
+ #: contact_form.php:157
75
+ #: contact_form.php:1139
76
+ #: contact_form.php:1173
77
  msgid "Send me a copy"
78
  msgstr "Надіслати мені копію"
79
 
80
+ #: contact_form.php:158
81
+ #: contact_form.php:1140
82
+ #: contact_form.php:1174
83
  msgid "Submit"
84
  msgstr "Підтвердити"
85
 
86
+ #: contact_form.php:159
87
  msgid "Your name is required."
88
  msgstr "Необхідно вказати своє ім'я."
89
 
90
+ #: contact_form.php:160
91
  msgid "Address is required."
92
  msgstr "Необхідно вказати правильну адресу."
93
 
94
+ #: contact_form.php:161
95
  msgid "A valid email address is required."
96
  msgstr "Необхідно вказати правильну адресу ел.пошти."
97
 
98
+ #: contact_form.php:162
99
  msgid "Phone number is required."
100
  msgstr "Необхідно вказати номер телефону."
101
 
102
+ #: contact_form.php:163
103
  msgid "Subject is required."
104
  msgstr "Необхідно вказати тему."
105
 
106
+ #: contact_form.php:164
107
  msgid "Message text is required."
108
  msgstr "Повідомлення не може бути порожнім."
109
 
110
+ #: contact_form.php:165
111
  msgid "File format is not valid."
112
  msgstr "Неправильний формат файлу."
113
 
114
+ #: contact_form.php:166
115
  msgid "File upload error."
116
  msgstr "Помилка завантаження файлу."
117
 
118
+ #: contact_form.php:167
119
  msgid "The file could not be uploaded."
120
  msgstr "Файл не вдалося завантажити."
121
 
122
+ #: contact_form.php:168
123
  msgid "This file is too large."
124
  msgstr "Файл занадто великий."
125
 
126
+ #: contact_form.php:169
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Будь ласка, введіть код CAPTCHA."
129
 
130
+ #: contact_form.php:170
131
  msgid "Please make corrections below and try again."
132
  msgstr "Будь ласка, внесіть поправки у відмічені поля і спробуйте знову."
133
 
134
+ #: contact_form.php:172
135
  msgid "Thank you for contacting us."
136
  msgstr "Дякуємо, що зв'язалися з нами."
137
 
138
+ #: contact_form.php:322
139
  msgid "requires"
140
  msgstr "потребує"
141
 
142
+ #: contact_form.php:322
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "або вище, ось чому його було деактивовано! Будь ласка, оновіть WordPress та спробуйте ще раз. "
145
 
146
+ #: contact_form.php:322
147
  msgid "Back to the WordPress"
148
  msgstr "Назад до WordPress"
149
 
150
+ #: contact_form.php:322
151
  msgid "Plugins page"
152
  msgstr "Сторінка плагінів"
153
 
154
+ #: contact_form.php:626
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "Якщо опція \"Перенаправлення на сторінку\" вибрана, то поле URL повинне бути заповнене в наступному форматі"
157
 
158
+ #: contact_form.php:635
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "Такого користувача не існує. Установки не збережені"
161
 
162
+ #: contact_form.php:639
163
+ #: contact_form.php:645
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "Будь ласка, введіть правильну ел.адресу у полі \"Відправник\". Установки не збережені."
166
 
167
+ #: contact_form.php:661
168
  msgid "Settings saved."
169
  msgstr "Установки збережені."
170
 
171
+ #: contact_form.php:688
172
+ #: contact_form.php:720
173
  msgid "Wrong license key"
174
  msgstr ""
175
 
176
+ #: contact_form.php:713
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr ""
179
 
180
+ #: contact_form.php:722
181
  msgid "This license key is bind to another site"
182
  msgstr ""
183
 
184
+ #: contact_form.php:724
185
+ #: contact_form.php:1570
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr ""
188
 
189
+ #: contact_form.php:741
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr ""
192
 
193
+ #: contact_form.php:747
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr ""
196
 
197
+ #: contact_form.php:751
198
+ #: contact_form.php:760
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
 
202
+ #: contact_form.php:764
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr ""
205
 
206
+ #: contact_form.php:779
207
  #, fuzzy
208
  msgid "Please, enter Your license key"
209
  msgstr "Будь ласка, напишіть своє повідомлення..."
210
 
211
+ #: contact_form.php:787
212
+ #: contact_form.php:2216
213
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
214
  msgid "Settings"
215
  msgstr "Установки"
216
 
217
+ #: contact_form.php:788
218
  msgid "Extra settings"
219
  msgstr "Розширені установки"
220
 
221
+ #: contact_form.php:789
222
  msgid "Go PRO"
223
  msgstr ""
224
 
225
+ #: contact_form.php:792
226
+ msgid "Notice:"
227
+ msgstr ""
228
+
229
+ #: contact_form.php:792
230
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
231
+ msgstr ""
232
+
233
+ #: contact_form.php:798
234
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
235
+ msgstr ""
236
+
237
+ #: contact_form.php:804
238
+ #: contact_form.php:809
239
+ #: contact_form.php:1529
240
  msgid "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:"
241
  msgstr "Якщо Ви хочете додати контактну форму на свій сайт, просто скопіюйте і вставите цей шорткод у Вашу публікацію, сторінку або віджет:"
242
 
243
+ #: contact_form.php:804
244
+ #: contact_form.php:805
245
+ #: contact_form.php:809
246
+ #: contact_form.php:810
247
+ #: contact_form.php:1155
248
+ #: contact_form.php:1157
249
+ #: contact_form.php:1212
250
+ #: contact_form.php:1214
251
  msgid "or"
252
  msgstr "або"
253
 
254
+ #: contact_form.php:805
255
+ #: contact_form.php:810
256
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
257
  msgstr "Якщо виникли якісь проблеми зі стандартним шорткодом [contact_form], ви можете використати шорткод"
258
 
259
+ #: contact_form.php:806
260
+ #: contact_form.php:811
261
  msgid "They work the same way."
262
  msgstr "Вони працюють однаково."
263
 
264
+ #: contact_form.php:807
265
+ #: contact_form.php:812
266
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
267
  msgstr "Якщо Ви залишите поля порожніми, повідомлення буде надіслано на адресу ел.пошти, вказану під час реєстрації."
268
 
269
+ #: contact_form.php:817
270
  msgid "The user's email address:"
271
  msgstr "Адреса ел.пошти користувача:"
272
 
273
+ #: contact_form.php:821
274
  msgid "Create a username"
275
  msgstr "Виберіть ім'я користувача"
276
 
277
+ #: contact_form.php:828
278
  msgid "Enter a username of the person who should get the messages from the contact form."
279
  msgstr "Введіть ім'я користувача, який повинен одержувати повідомлення з контактної форми."
280
 
281
+ #: contact_form.php:832
282
  msgid "Use this email address:"
283
  msgstr "Використовувати цю адресу ел.пошти:"
284
 
285
+ #: contact_form.php:835
286
  msgid "Enter the email address you want the messages forwarded to."
287
  msgstr "Вкажіть адресу ел.пошти, на яку бажаєте отримувати повідомлення."
288
 
289
+ #: contact_form.php:844
290
  msgid "Add department selectbox to the contact form:"
291
  msgstr "Додати поле для вибору департаменту до контактної форми:"
292
 
293
+ #: contact_form.php:852
294
+ #: contact_form.php:1412
295
  msgid "If you upgrade to Pro version all your settings will be saved."
296
  msgstr ""
297
 
298
+ #: contact_form.php:859
299
+ #: contact_form.php:997
300
+ #: contact_form.php:1071
301
+ #: contact_form.php:1419
302
+ msgid "Unlock premium options by upgrading to a PRO version."
303
+ msgstr ""
304
 
305
+ #: contact_form.php:860
306
+ #: contact_form.php:998
307
+ #: contact_form.php:1072
308
+ #: contact_form.php:1420
309
+ #: contact_form.php:2473
310
+ #: contact_form.php:2489
311
+ msgid "Learn More"
312
+ msgstr ""
313
 
314
+ #: contact_form.php:863
315
+ #: contact_form.php:1001
316
+ #: contact_form.php:1075
317
+ #: contact_form.php:1423
318
+ msgid "Go"
319
+ msgstr ""
320
+
321
+ #: contact_form.php:870
322
  msgid "Save emails to the database"
323
  msgstr "Зберігати електронні повідомлення у базі даних"
324
 
325
+ #: contact_form.php:876
326
  msgid "Using"
327
  msgstr ""
328
 
329
+ #: contact_form.php:876
330
+ #: contact_form.php:1048
331
+ #: contact_form.php:1051
332
+ #: contact_form.php:1055
333
  msgid "powered by"
334
  msgstr "за підтримки"
335
 
336
+ #: contact_form.php:879
337
+ #: contact_form.php:883
338
  msgid "Using Contact Form to DB powered by"
339
  msgstr "Використовуючи Contact Form to DB, розроблену"
340
 
341
+ #: contact_form.php:879
342
  msgid "Activate Contact Form to DB"
343
  msgstr "Активувати Contact Form to DB"
344
 
345
+ #: contact_form.php:883
346
  msgid "Download Contact Form to DB"
347
  msgstr "Завантажити Contact Form to DB"
348
 
349
+ #: contact_form.php:888
350
  msgid "Additional options"
351
  msgstr "Додаткові опції"
352
 
353
+ #: contact_form.php:890
354
  msgid "Show"
355
  msgstr "Показувати"
356
 
357
+ #: contact_form.php:891
358
  msgid "Hide"
359
  msgstr "Сховати"
360
 
361
+ #: contact_form.php:895
362
  msgid "What to use?"
363
  msgstr "Що використовувати?"
364
 
365
+ #: contact_form.php:898
366
  msgid "Wp-mail"
367
  msgstr "Wp-mail"
368
 
369
+ #: contact_form.php:898
370
  msgid "You can use the wp_mail function for mailing"
371
  msgstr "Для відправлення пошти ви можете використовувати функцію WordPress wp_mail"
372
 
373
+ #: contact_form.php:900
374
  msgid "Mail"
375
  msgstr "Пошта"
376
 
377
+ #: contact_form.php:900
378
  msgid "To send mail you can use the php mail function"
379
  msgstr "Для відправлення пошти Ви можете використовувати функцію php mail"
380
 
381
+ #: contact_form.php:904
382
  msgid "The text in the 'From' field"
383
  msgstr "Текст поля \"Відправник\""
384
 
385
+ #: contact_form.php:906
386
  msgid "User name"
387
  msgstr "Ім’я користувача"
388
 
389
+ #: contact_form.php:907
390
  msgid "The name of the user who fills the form will be used in the field 'From'."
391
  msgstr "Email-адреса користувача, який заповнює форму, буде використана у полі \"Відправник\"."
392
 
393
+ #: contact_form.php:910
394
  msgid "This text will be used in the 'FROM' field"
395
  msgstr "Ця адреса ел.пошти буде використана у полі \"Відправник\"."
396
 
397
+ #: contact_form.php:914
398
  msgid "The email address in the 'From' field"
399
  msgstr "Адреса ел.пошти в полі \"Відправник\""
400
 
401
+ #: contact_form.php:916
402
  msgid "User email"
403
  msgstr "Ел.пошта користувача"
404
 
405
+ #: contact_form.php:917
406
  msgid "The email address of the user who fills the form will be used in the field 'From'."
407
  msgstr "Email-адреса користувача, який заповнює форму, буде використана у полі \"Відправник\"."
408
 
409
+ #: contact_form.php:920
410
  msgid "This email address will be used in the 'From' field."
411
  msgstr "Ця адреса ел.пошти буде використана у полі \"Відправник\"."
412
 
413
+ #: contact_form.php:924
414
  msgid "Required symbol"
415
  msgstr "Обов'язковий символ"
416
 
417
+ #: contact_form.php:934
418
  msgid "Fields"
419
  msgstr ""
420
 
421
+ #: contact_form.php:935
422
  msgid "Used"
423
  msgstr ""
424
 
425
+ #: contact_form.php:936
426
  #, fuzzy
427
  msgid "Required"
428
  msgstr "потребує"
429
 
430
+ #: contact_form.php:937
431
  msgid "Visible"
432
  msgstr ""
433
 
434
+ #: contact_form.php:938
435
  msgid "Disabled for editing"
436
  msgstr ""
437
 
438
+ #: contact_form.php:939
439
  msgid "Field's default value"
440
  msgstr ""
441
 
442
+ #: contact_form.php:944
443
+ #: contact_form.php:1287
444
+ #: contact_form.php:2059
445
+ #: contact_form.php:2089
446
  msgid "Name"
447
  msgstr "Ім'я"
448
 
449
+ #: contact_form.php:952
450
+ #: contact_form.php:1292
451
+ #: contact_form.php:2063
452
+ #: contact_form.php:2091
453
  msgid "Address"
454
  msgstr "Адреса"
455
 
456
+ #: contact_form.php:960
457
  msgid "Email Address"
458
  msgstr "Адреса ел.пошти"
459
 
460
+ #: contact_form.php:968
461
  #, fuzzy
462
  msgid "Phone number"
463
  msgstr "Номер телефону:"
464
 
465
+ #: contact_form.php:976
466
+ #: contact_form.php:1307
467
+ #: contact_form.php:2073
468
+ #: contact_form.php:2095
469
  msgid "Subject"
470
  msgstr "Тема"
471
 
472
+ #: contact_form.php:984
473
+ #: contact_form.php:1311
474
+ #: contact_form.php:2076
475
+ #: contact_form.php:2096
476
  msgid "Message"
477
  msgstr "Повідомлення"
478
 
479
+ #: contact_form.php:1008
480
  msgid "Attachment block"
481
  msgstr "Блок \"Прикріпити файл\" "
482
 
483
+ #: contact_form.php:1010
484
  msgid "Users can attach the following file formats"
485
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
486
 
487
+ #: contact_form.php:1023
488
  msgid "Add to the form"
489
  msgstr ""
490
 
491
+ #: contact_form.php:1028
492
  #, fuzzy
493
  msgid "Tips below the Attachment"
494
  msgstr "Показувати підказки під блоком \"Прикріпити файл\""
495
 
496
+ #: contact_form.php:1037
497
  #, fuzzy
498
  msgid "'Send me a copy' block"
499
  msgstr "Показати блок \"Надіслати мені копію\""
500
 
501
+ #: contact_form.php:1048
502
+ #: contact_form.php:1051
503
+ #: contact_form.php:1055
504
+ #: contact_form.php:1321
505
  msgid "Captcha"
506
  msgstr "Captcha"
507
 
508
+ #: contact_form.php:1051
509
  msgid "Activate captcha"
510
  msgstr "Активувати captcha"
511
 
512
+ #: contact_form.php:1055
513
  msgid "Download captcha"
514
  msgstr "Завантажити captcha"
515
 
516
+ #: contact_form.php:1063
517
  msgid "Agreement checkbox"
518
  msgstr ""
519
 
520
+ #: contact_form.php:1063
521
  msgid "Required checkbox for submitting the form"
522
  msgstr ""
523
 
524
+ #: contact_form.php:1064
525
  msgid "Optional checkbox"
526
  msgstr ""
527
 
528
+ #: contact_form.php:1064
529
  msgid "Optional checkbox, the results of which will be displayed in email"
530
  msgstr ""
531
 
532
+ #: contact_form.php:1081
533
  msgid "Delete an attachment file from the server after the email is sent"
534
  msgstr "Видаляти прикріплений файл з серверу після того, як ел.пошта відправлена"
535
 
536
+ #: contact_form.php:1087
537
  msgid "Email in HTML format sending"
538
  msgstr ""
539
 
540
+ #: contact_form.php:1091
541
  msgid "Display additional info in the email"
542
  msgstr "Відображати додаткову інформацію в ел.пошті"
543
 
544
+ #: contact_form.php:1096
545
+ #: contact_form.php:2026
546
+ #: contact_form.php:2028
547
  msgid "Sent from (ip address)"
548
  msgstr "Надіслано від (ip адреса)"
549
 
550
+ #: contact_form.php:1096
551
  msgid "Example: Sent from (IP address):\t127.0.0.1"
552
  msgstr "Приклад: Надіслано від (IP адреса):\t127.0.0.1"
553
 
554
+ #: contact_form.php:1097
555
+ #: contact_form.php:2032
556
+ #: contact_form.php:2034
557
  msgid "Date/Time"
558
  msgstr "Дата/Час"
559
 
560
+ #: contact_form.php:1097
561
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
562
  msgstr "Приклад: Date/Time:\tAugust 19, 2013 8:50 pm"
563
 
564
+ #: contact_form.php:1098
565
+ #: contact_form.php:2038
566
+ #: contact_form.php:2040
567
  msgid "Sent from (referer)"
568
  msgstr "Надіслано від (реферер)"
569
 
570
+ #: contact_form.php:1098
571
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
572
  msgstr "Приклад: Надіслано від (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
573
 
574
+ #: contact_form.php:1099
575
+ #: contact_form.php:2044
576
+ #: contact_form.php:2046
577
  msgid "Using (user agent)"
578
  msgstr "Використовується (user agent)"
579
 
580
+ #: contact_form.php:1099
581
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
582
  msgstr "Приклад: Використовує (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
583
 
584
+ #: contact_form.php:1103
585
  msgid "Language settings for the field names in the form"
586
  msgstr "Налаштування мови для назв полів форми"
587
 
588
+ #: contact_form.php:1112
589
  msgid "Add a language"
590
  msgstr "Додати мову"
591
 
592
+ #: contact_form.php:1116
593
  msgid "Change the names of the contact form fields and error messages"
594
  msgstr "Змінити назви полів контактної форми і повідомлення про помилку"
595
 
596
+ #: contact_form.php:1121
597
+ #: contact_form.php:1202
598
  msgid "English"
599
  msgstr "Англійська"
600
 
601
+ #: contact_form.php:1129
602
+ #: contact_form.php:1163
603
  msgid "click to expand/hide the list"
604
  msgstr ""
605
 
606
+ #: contact_form.php:1138
607
+ #: contact_form.php:1172
608
  msgid "Tips below the Attachment block"
609
  msgstr "Показувати підказки під блоком \"Прикріпити файл\""
610
 
611
+ #: contact_form.php:1141
612
+ #: contact_form.php:1175
613
  msgid "Error message for the Name field"
614
  msgstr "Повідомлення про помилку для поля Ім'я"
615
 
616
+ #: contact_form.php:1142
617
+ #: contact_form.php:1176
618
  msgid "Error message for the Address field"
619
  msgstr "Повідомлення про помилку для поля Адреса"
620
 
621
+ #: contact_form.php:1143
622
+ #: contact_form.php:1177
623
  msgid "Error message for the Email field"
624
  msgstr "Повідомлення про помилку для поля Email"
625
 
626
+ #: contact_form.php:1144
627
+ #: contact_form.php:1178
628
  msgid "Error message for the Phone field"
629
  msgstr "Повідомлення про помилку для поля Номер телефону"
630
 
631
+ #: contact_form.php:1145
632
+ #: contact_form.php:1179
633
  msgid "Error message for the Subject field"
634
  msgstr "Повідомлення про помилку для поля Тема"
635
 
636
+ #: contact_form.php:1146
637
+ #: contact_form.php:1180
638
  msgid "Error message for the Message field"
639
  msgstr "Повідомлення про помилку для поля Повідомлення"
640
 
641
+ #: contact_form.php:1147
642
+ #: contact_form.php:1181
643
  msgid "Error message about the file type for the Attachment field"
644
  msgstr "Повідомлення про помилку для поля Вкладені файли"
645
 
646
+ #: contact_form.php:1148
647
+ #: contact_form.php:1182
648
  msgid "Error message while uploading a file for the Attachment field to the server"
649
  msgstr "Повідомлення про помилку під час завантаження файлу на сервер для поля Вкладені файли"
650
 
651
+ #: contact_form.php:1149
652
+ #: contact_form.php:1183
653
  msgid "Error message while moving the file for the Attachment field"
654
  msgstr "Повідомлення про помилку під час переміщення файлу для поля Вкладені файли"
655
 
656
+ #: contact_form.php:1150
657
+ #: contact_form.php:1184
658
  msgid "Error message when file size limit for the Attachment field is exceeded"
659
  msgstr "Повідомлення про помилку для поля Вкладені файли, коли розмір файлу перевищує допустимий"
660
 
661
+ #: contact_form.php:1151
662
+ #: contact_form.php:1185
663
  msgid "Error message for the Captcha field"
664
  msgstr "Повідомлення про помилку для поля Captcha"
665
 
666
+ #: contact_form.php:1152
667
+ #: contact_form.php:1186
668
  msgid "Error message for the whole form"
669
  msgstr "Повідомлення про помилку для всієї форми"
670
 
671
+ #: contact_form.php:1155
672
+ #: contact_form.php:1157
673
+ #: contact_form.php:1189
674
+ #: contact_form.php:1191
675
+ #: contact_form.php:1212
676
+ #: contact_form.php:1214
677
+ #: contact_form.php:1222
678
+ #: contact_form.php:1224
679
  msgid "Use shortcode"
680
  msgstr "Використовувати шорткод"
681
 
682
+ #: contact_form.php:1155
683
+ #: contact_form.php:1157
684
+ #: contact_form.php:1189
685
+ #: contact_form.php:1191
686
+ #: contact_form.php:1212
687
+ #: contact_form.php:1214
688
+ #: contact_form.php:1222
689
+ #: contact_form.php:1224
690
  msgid "for this language"
691
  msgstr "для цієї мови"
692
 
693
+ #: contact_form.php:1199
694
  msgid "Action after email is sent"
695
  msgstr "Дія після відправлення ел.листа"
696
 
697
+ #: contact_form.php:1201
698
  msgid "Display text"
699
  msgstr "Показати текст"
700
 
701
+ #: contact_form.php:1210
702
+ #: contact_form.php:1220
703
  msgid "Text"
704
  msgstr "Текст"
705
 
706
+ #: contact_form.php:1231
707
  msgid "Redirect to the page"
708
  msgstr "Перенаправлення на сторінку"
709
 
710
+ #: contact_form.php:1232
711
  msgid "Url"
712
  msgstr "Url"
713
 
714
+ #: contact_form.php:1236
715
  msgid "The $_SERVER variable that is used to build a URL of the form"
716
  msgstr ""
717
 
718
+ #: contact_form.php:1240
719
  msgid "If you are not sure whether to change this setting or not, please do not do that."
720
  msgstr ""
721
 
722
+ #: contact_form.php:1246
723
+ #: contact_form.php:1430
724
  msgid "Save Changes"
725
  msgstr "Зберегти зміни"
726
 
727
+ #: contact_form.php:1251
728
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
729
  msgstr ""
730
 
731
+ #: contact_form.php:1252
732
  #, fuzzy
733
  msgid "Rate the plugin"
734
  msgstr "Рекомендовані плагіни"
735
 
736
+ #: contact_form.php:1255
737
  #, fuzzy
738
  msgid "If there is something wrong about it, please contact us"
739
  msgstr "Якщо у вас є запитання, звертайтесь на plugin@bestwebsoft.com або заповніть контактну форму на нашому сайті"
740
 
741
+ #: contact_form.php:1267
742
  msgid "Errors output"
743
  msgstr "Виведення помилок"
744
 
745
+ #: contact_form.php:1270
746
  msgid "Display error messages"
747
  msgstr "Показ повідомлень про помилки"
748
 
749
+ #: contact_form.php:1271
750
  msgid "Color of the input field errors."
751
  msgstr "Колір для помилок у полях введення."
752
 
753
+ #: contact_form.php:1272
754
  msgid "Display error messages & color of the input field errors"
755
  msgstr "Відображення повідомлень про помилку і колір для полів з помилками введення"
756
 
757
+ #: contact_form.php:1277
758
  msgid "Add placeholder to the input blocks"
759
  msgstr "Додати текст заміщення для блоків введення"
760
 
761
+ #: contact_form.php:1283
762
  msgid "Add tooltips"
763
  msgstr "Додати підказки"
764
 
765
+ #: contact_form.php:1297
766
  msgid "Email address"
767
  msgstr "Адреса ел.пошти"
768
 
769
+ #: contact_form.php:1302
770
  msgid "Phone Number"
771
  msgstr "Номер телефону"
772
 
773
+ #: contact_form.php:1316
774
  msgid "Attachment"
775
  msgstr "Вкладений файл"
776
 
777
+ #: contact_form.php:1321
778
  msgid "(powered by bestwebsoft.com)"
779
  msgstr "(розроблено компанією bestwebsoft.com)"
780
 
781
+ #: contact_form.php:1326
782
  msgid "Style options"
783
  msgstr "Опції для стилю"
784
 
785
+ #: contact_form.php:1329
786
  msgid "Text color"
787
  msgstr "Колір тексту"
788
 
789
+ #: contact_form.php:1332
790
+ #: contact_form.php:1337
791
+ #: contact_form.php:1347
792
+ #: contact_form.php:1352
793
+ #: contact_form.php:1357
794
+ #: contact_form.php:1362
795
+ #: contact_form.php:1372
796
+ #: contact_form.php:1377
797
+ #: contact_form.php:1383
798
+ #: contact_form.php:1394
799
+ #: contact_form.php:1399
800
+ #: contact_form.php:1404
801
  msgid "Default"
802
  msgstr "Стандартно"
803
 
804
+ #: contact_form.php:1334
805
  msgid "Label text color"
806
  msgstr "Колір написів"
807
 
808
+ #: contact_form.php:1339
809
  msgid "Placeholder color"
810
  msgstr "Колір тексту заміщення"
811
 
812
+ #: contact_form.php:1344
813
  msgid "Errors color"
814
  msgstr "Колір помилок"
815
 
816
+ #: contact_form.php:1349
817
  msgid "Error text color"
818
  msgstr "Колір тексту помилок"
819
 
820
+ #: contact_form.php:1354
821
  msgid "Background color of the input field errors"
822
  msgstr "Колір заднього фону для полів введення з помилками"
823
 
824
+ #: contact_form.php:1359
825
  msgid "Border color of the input field errors"
826
  msgstr "Колір рамки для полів введення з помилками"
827
 
828
+ #: contact_form.php:1364
829
  msgid "Placeholder color of the input field errors"
830
  msgstr "Колір тексту заміщення для полів введення з помилками"
831
 
832
+ #: contact_form.php:1369
833
  msgid "Input fields"
834
  msgstr "Поля введення тексту"
835
 
836
+ #: contact_form.php:1374
837
  msgid "Input fields background color"
838
  msgstr "Колір фону полів введення"
839
 
840
+ #: contact_form.php:1379
841
  msgid "Text fields color"
842
  msgstr "Колір текстових полів"
843
 
844
+ #: contact_form.php:1381
845
  msgid "Border width in px, numbers only"
846
  msgstr "Ширина рамки в точках, тільки числа"
847
 
848
+ #: contact_form.php:1385
849
+ #: contact_form.php:1406
850
  msgid "Border color"
851
  msgstr "Колір рамки"
852
 
853
+ #: contact_form.php:1390
854
  msgid "Submit button"
855
  msgstr "Кнопка підтвердження"
856
 
857
+ #: contact_form.php:1392
858
  msgid "Width in px, numbers only"
859
  msgstr "Ширина в точках, тільки числа"
860
 
861
+ #: contact_form.php:1396
862
  msgid "Button color"
863
  msgstr "Колір кнопок"
864
 
865
+ #: contact_form.php:1401
866
  msgid "Button text color"
867
  msgstr "Колір тексту кнопок"
868
 
869
+ #: contact_form.php:1434
870
  msgid "Contact Form Pro | Preview"
871
  msgstr "Contact Form Pro | Попередній перегляд"
872
 
873
+ #: contact_form.php:1437
874
  msgid "Show with errors"
875
  msgstr "Показувати з помилками"
876
 
877
+ #: contact_form.php:1445
878
+ #: contact_form.php:1447
879
  msgid "Please enter your full name..."
880
  msgstr "Будь ласка, вкажіть своє повне ім'я..."
881
 
882
+ #: contact_form.php:1458
883
+ #: contact_form.php:1460
884
  msgid "Please enter your address..."
885
  msgstr "Будь ласка, вкажіть свою адресу..."
886
 
887
+ #: contact_form.php:1469
888
+ #: contact_form.php:1471
889
  msgid "Please enter your email address..."
890
  msgstr "Будь ласка, введіть свою адресу ел.пошти:"
891
 
892
+ #: contact_form.php:1480
893
+ #: contact_form.php:1482
894
  msgid "Please enter your phone number..."
895
  msgstr "Будь ласка, вкажіть свій номер телефону..."
896
 
897
+ #: contact_form.php:1491
898
+ #: contact_form.php:1493
899
  msgid "Please enter subject..."
900
  msgstr "Будь ласка, вкажіть тему..."
901
 
902
+ #: contact_form.php:1501
903
+ #: contact_form.php:1503
904
  msgid "Please enter your message..."
905
  msgstr "Будь ласка, напишіть своє повідомлення..."
906
 
907
+ #: contact_form.php:1545
908
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
909
  msgstr ""
910
 
911
+ #: contact_form.php:1547
912
  msgid "Please, go to"
913
  msgstr ""
914
 
915
+ #: contact_form.php:1547
916
  #, fuzzy
917
  msgid "the setting page"
918
  msgstr "Розширені установки"
919
 
920
+ #: contact_form.php:1548
921
  msgid "You will be redirected automatically in 5 seconds."
922
  msgstr ""
923
 
924
+ #: contact_form.php:1553
925
  msgid "You can download and activate"
926
  msgstr ""
927
 
928
+ #: contact_form.php:1555
929
  msgid "version of this plugin by entering Your license key."
930
  msgstr ""
931
 
932
+ #: contact_form.php:1557
933
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
934
  msgstr ""
935
 
936
+ #: contact_form.php:1559
937
  msgid "(your username is the email you specify when purchasing the product)."
938
  msgstr ""
939
 
940
+ #: contact_form.php:1567
941
+ #: contact_form.php:1577
942
  msgid "Go!"
943
  msgstr ""
944
 
945
+ #: contact_form.php:1647
946
  msgid "Sorry, email message could not be delivered."
947
  msgstr "Вибачте, ваше повідомлення ел.пошти не може бути доставлене."
948
 
949
+ #: contact_form.php:2053
950
  msgid "Contact from"
951
  msgstr "Контактна форма"
952
 
953
+ #: contact_form.php:2066
954
+ #: contact_form.php:2092
955
  msgid "Email"
956
  msgstr "Ел.пошта"
957
 
958
+ #: contact_form.php:2070
959
+ #: contact_form.php:2094
960
  msgid "Phone"
961
  msgstr "Телефон"
962
 
963
+ #: contact_form.php:2079
964
+ #: contact_form.php:2097
965
  msgid "Site"
966
  msgstr "Сайт"
967
 
968
+ #: contact_form.php:2160
969
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
970
  msgstr "Якщо Ви не бачите цей MIME, це означає, що цей MIME тип не підтримується Вашим поштовим клієнтом!"
971
 
972
+ #: contact_form.php:2229
973
  msgid "FAQ"
974
  msgstr "Часті питання"
975
 
976
+ #: contact_form.php:2230
977
  msgid "Support"
978
  msgstr "Підтримка"
979
 
980
+ #: contact_form.php:2280
981
  msgid "Are you sure that you want to delete this language data?"
982
  msgstr "Ви справді хочете видалити дані для цієї мови?"
983
 
984
+ #: contact_form.php:2476
985
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
986
  msgstr ""
987
 
988
+ #: contact_form.php:2477
989
  msgid "Extend standard plugin functionality with new great options."
990
  msgstr ""
991
 
992
+ #: contact_form.php:2492
993
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
994
  msgstr ""
995
 
996
+ #: contact_form.php:2493
997
  msgid "Manage messages that have been sent from your website."
998
  msgstr ""
999
 
1000
+ #~ msgid ""
1001
+ #~ "This functionality is available in the Pro version of the plugin. For "
1002
+ #~ "more details, please follow the link"
1003
+ #~ msgstr ""
1004
+ #~ "Ця функціональність доступна у Pro версії плагіну. Для додаткових "
1005
+ #~ "подробиць, будь ласка, перейдіть за посиланням"
1006
+
1007
+ #~ msgid "Contact Form Pro"
1008
+ #~ msgstr "Contact Form Pro"
1009
+
1010
  #~ msgid "Contact Form Pro Extra Settings"
1011
  #~ msgstr "Додаткові установки Contact Form Pro"
1012
 
languages/contact_form-vi.mo CHANGED
Binary file
languages/contact_form-vi.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: 2014-02-20 14:08+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:08+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Localization blog | http://bizover.net <contact@bizover.net>\n"
9
  "Language: \n"
@@ -16,952 +16,991 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  msgid "Contact Form Settings"
22
  msgstr "Cài đặt hình thức liên lạc"
23
 
24
- #: contact_form.php:33
25
  msgid "Contact Form"
26
  msgstr "Mẫu liên hệ"
27
 
28
- #: contact_form.php:80
29
- #: contact_form.php:978
30
- #: contact_form.php:1008
31
  msgid "Name:"
32
  msgstr "Tên:"
33
 
34
- #: contact_form.php:81
35
- #: contact_form.php:979
36
- #: contact_form.php:1009
37
  msgid "Address:"
38
  msgstr "Địa chỉ:"
39
 
40
- #: contact_form.php:82
41
- #: contact_form.php:980
42
- #: contact_form.php:1010
43
  msgid "Email Address:"
44
  msgstr "Địa chỉ email:"
45
 
46
- #: contact_form.php:83
47
- #: contact_form.php:981
48
- #: contact_form.php:1011
49
  msgid "Phone number:"
50
  msgstr "Số điện thoại:"
51
 
52
- #: contact_form.php:84
53
- #: contact_form.php:982
54
- #: contact_form.php:1012
55
  msgid "Subject:"
56
  msgstr "Tiêu đề:"
57
 
58
- #: contact_form.php:85
59
- #: contact_form.php:983
60
- #: contact_form.php:1013
61
  msgid "Message:"
62
  msgstr "Thông báo:"
63
 
64
- #: contact_form.php:86
65
- #: contact_form.php:984
66
- #: contact_form.php:1014
67
  msgid "Attachment:"
68
  msgstr "File đính kèm:"
69
 
70
- #: contact_form.php:87
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Hỗ trợ các loại tập tin: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, vùng tối đa kích thước: 2MB"
73
 
74
- #: contact_form.php:88
75
- #: contact_form.php:986
76
- #: contact_form.php:1016
77
  msgid "Send me a copy"
78
  msgstr "Gửi cho tôi một bản sao"
79
 
80
- #: contact_form.php:89
81
- #: contact_form.php:987
82
- #: contact_form.php:1017
83
  msgid "Submit"
84
  msgstr "Gửi"
85
 
86
- #: contact_form.php:90
87
  msgid "Your name is required."
88
  msgstr "Tên của bạn là cần thiết."
89
 
90
- #: contact_form.php:91
91
  msgid "Address is required."
92
  msgstr "Địa chỉ được yêu cầu."
93
 
94
- #: contact_form.php:92
95
  msgid "A valid email address is required."
96
  msgstr "Một địa chỉ email hợp lệ là bắt buộc."
97
 
98
- #: contact_form.php:93
99
  msgid "Phone number is required."
100
  msgstr "Số điện thoại được yêu cầu."
101
 
102
- #: contact_form.php:94
103
  msgid "Subject is required."
104
  msgstr "Chủ đề là bắt buộc."
105
 
106
- #: contact_form.php:95
107
  msgid "Message text is required."
108
  msgstr "Tin nhắn văn bản được yêu cầu."
109
 
110
- #: contact_form.php:96
111
  msgid "File format is not valid."
112
  msgstr "Định dạng tập tin là không hợp lệ."
113
 
114
- #: contact_form.php:97
115
  msgid "File upload error."
116
  msgstr "Lỗi tải lên tệp."
117
 
118
- #: contact_form.php:98
119
  msgid "The file could not be uploaded."
120
  msgstr "Không thể tải các tập tin."
121
 
122
- #: contact_form.php:99
123
  msgid "This file is too large."
124
  msgstr "Tập tin này là quá lớn."
125
 
126
- #: contact_form.php:100
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Xin vui lòng điền CAPTCHA."
129
 
130
- #: contact_form.php:101
131
  msgid "Please make corrections below and try again."
132
  msgstr "Xin vui lòng làm cho chỉnh dưới đây và thử lại."
133
 
134
- #: contact_form.php:103
135
  msgid "Thank you for contacting us."
136
  msgstr "Cảm ơn bạn đã liên hệ với chúng tôi."
137
 
138
- #: contact_form.php:203
139
  msgid "requires"
140
  msgstr "yêu cầu"
141
 
142
- #: contact_form.php:203
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "hoặc cao hơn, đó là lý do tại sao nó đã bị ngừng hoạt động! Xin vui lòng nâng cấp WordPress và thử lại."
145
 
146
- #: contact_form.php:203
147
  msgid "Back to the WordPress"
148
  msgstr "Quay lại WordPress"
149
 
150
- #: contact_form.php:203
151
  msgid "Plugins page"
152
  msgstr "Trang Plugins"
153
 
154
- #: contact_form.php:494
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "Nếu tùy chọn 'Chuyển hướng đến trang' được chọn thì trường URL nên ở định dạng sau"
157
 
158
- #: contact_form.php:503
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "Người dùng như vậy không tồn tại. Cài đặt không được lưu."
161
 
162
- #: contact_form.php:507
163
- #: contact_form.php:513
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "Vui lòng nhập một địa chỉ email hợp lệ trong trường 'Từ'. Cài đặt không được lưu."
166
 
167
- #: contact_form.php:518
168
  msgid "Settings saved."
169
  msgstr "Cài đặt đã lưu."
170
 
171
- #: contact_form.php:554
172
- #: contact_form.php:593
173
  msgid "Wrong license key"
174
  msgstr ""
175
 
176
- #: contact_form.php:586
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr ""
179
 
180
- #: contact_form.php:595
181
  msgid "This license key is bind to another site"
182
  msgstr ""
183
 
184
- #: contact_form.php:597
185
- #: contact_form.php:1392
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr ""
188
 
189
- #: contact_form.php:615
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr ""
192
 
193
- #: contact_form.php:621
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr ""
196
 
197
- #: contact_form.php:625
198
- #: contact_form.php:634
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
 
202
- #: contact_form.php:638
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr ""
205
 
206
- #: contact_form.php:653
207
  #, fuzzy
208
  msgid "Please, enter Your license key"
209
  msgstr "Vui lòng nhập tin nhắn của bạn..."
210
 
211
- #: contact_form.php:662
212
- msgid "Notice:"
213
- msgstr "Thông báo:"
214
-
215
- #: contact_form.php:662
216
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
217
- msgstr "Cài đặt của plugin đã được thay đổi. Để tiết kiệm họ xin đừng quên để nhấp vào nút 'Lưu thay đổi'."
218
-
219
- #: contact_form.php:665
220
- #: contact_form.php:1997
221
- #: contact_form.php:2008
222
  msgid "Settings"
223
  msgstr "Cài đặt"
224
 
225
- #: contact_form.php:666
226
  msgid "Extra settings"
227
  msgstr "Cài đặt phụ"
228
 
229
- #: contact_form.php:667
230
  msgid "Go PRO"
231
  msgstr ""
232
 
233
- #: contact_form.php:673
234
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  msgid "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:"
236
  msgstr "Nếu bạn muốn thêm các hình thức liên lạc để trang web của bạn, chỉ cần sao chép và dán này shortcode để đăng bài hay trang hoặc phụ tùng của bạn:"
237
 
238
- #: contact_form.php:673
239
- #: contact_form.php:674
240
- #: contact_form.php:1001
241
- #: contact_form.php:1050
 
 
 
 
242
  msgid "or"
243
  msgstr "hoặc"
244
 
245
- #: contact_form.php:674
 
246
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
247
  msgstr "Nếu có bất kỳ vấn đề với tiêu chuẩn shortcode [contact_form], bạn nên sử dụng shortcode"
248
 
249
- #: contact_form.php:675
 
250
  msgid "They work the same way."
251
  msgstr "Họ làm việc cùng một cách."
252
 
253
- #: contact_form.php:676
 
254
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
255
  msgstr "Nếu bạn để các lĩnh vực trống, các tin nhắn sẽ được gửi đến địa chỉ email được chỉ định trong quá trình đăng ký."
256
 
257
- #: contact_form.php:680
258
  msgid "The user's email address:"
259
  msgstr "Các địa chỉ email của người dùng:"
260
 
261
- #: contact_form.php:684
262
  msgid "Create a username"
263
  msgstr "Tạo một tên người dùng"
264
 
265
- #: contact_form.php:689
266
  msgid "Enter a username of the person who should get the messages from the contact form."
267
  msgstr "Nhập tên người dùng của người sẽ nhận được các tin nhắn từ hình thức liên lạc."
268
 
269
- #: contact_form.php:693
270
  msgid "Use this email address:"
271
  msgstr "Sử dụng địa chỉ email này:"
272
 
273
- #: contact_form.php:696
274
  msgid "Enter the email address you want the messages forwarded to."
275
  msgstr "Nhập địa chỉ email mà bạn muốn các thư được chuyển tiếp đến."
276
 
277
- #: contact_form.php:702
278
  msgid "Add department selectbox to the contact form:"
279
  msgstr "Địa chỉ sở selectbox để hình thức liên lạc:"
280
 
281
- #: contact_form.php:710
282
- #: contact_form.php:1246
283
  msgid "If you upgrade to Pro version all your settings will be saved."
284
  msgstr "Nếu bạn nâng cấp lên phiên bản Pro, tất cả các thiết lập của bạn sẽ được lưu."
285
 
286
- #: contact_form.php:715
287
- #: contact_form.php:852
288
- #: contact_form.php:923
289
- #: contact_form.php:1096
290
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
291
- msgstr "Chức năng này có sẵn trong phiên bản Pro của plugin. Để biết thêm chi tiết, hãy làm theo các liên kết"
292
 
293
- #: contact_form.php:716
294
- #: contact_form.php:853
295
- #: contact_form.php:924
296
- #: contact_form.php:1097
297
- msgid "Contact Form Pro"
298
- msgstr "Liên hệ tạo thành Pro"
 
 
299
 
300
- #: contact_form.php:722
 
 
 
 
 
 
 
301
  msgid "Save emails to the database"
302
  msgstr "Lưu email vào cơ sở dữ liệu"
303
 
304
- #: contact_form.php:732
305
  msgid "Using"
306
  msgstr ""
307
 
308
- #: contact_form.php:732
309
- #: contact_form.php:901
310
- #: contact_form.php:904
311
- #: contact_form.php:908
312
  msgid "powered by"
313
  msgstr "Được tài trợ bởi"
314
 
315
- #: contact_form.php:735
316
- #: contact_form.php:739
317
  msgid "Using Contact Form to DB powered by"
318
  msgstr "Bằng cách sử dụng mẫu liên hệ để DB được tài trợ bởi"
319
 
320
- #: contact_form.php:735
321
  msgid "Activate Contact Form to DB"
322
  msgstr "Kích hoạt các hình thức liên lạc để DB"
323
 
324
- #: contact_form.php:739
325
  msgid "Download Contact Form to DB"
326
  msgstr "Tải về hình thức liên lạc để DB"
327
 
328
- #: contact_form.php:744
329
  msgid "Additional options"
330
  msgstr "Tùy chọn bổ sung"
331
 
332
- #: contact_form.php:746
333
  msgid "Show"
334
  msgstr "Hiển thị"
335
 
336
- #: contact_form.php:747
337
  msgid "Hide"
338
  msgstr "Ẩn"
339
 
340
- #: contact_form.php:751
341
  msgid "What to use?"
342
  msgstr "Những gì để sử dụng?"
343
 
344
- #: contact_form.php:754
345
  msgid "Wp-mail"
346
  msgstr "WP-thư"
347
 
348
- #: contact_form.php:754
349
  msgid "You can use the wp_mail function for mailing"
350
  msgstr "Bạn có thể sử dụng các chức năng wp_mail để gửi thư"
351
 
352
- #: contact_form.php:756
353
  msgid "Mail"
354
  msgstr "Thư"
355
 
356
- #: contact_form.php:756
357
  msgid "To send mail you can use the php mail function"
358
  msgstr "Để gửi thư, bạn có thể sử dụng chức năng php thư"
359
 
360
- #: contact_form.php:760
361
  msgid "The text in the 'From' field"
362
  msgstr "Các văn bản trong trường 'Từ'"
363
 
364
- #: contact_form.php:762
365
  msgid "User name"
366
  msgstr "Tên người dùng"
367
 
368
- #: contact_form.php:763
369
  msgid "The name of the user who fills the form will be used in the field 'From'."
370
  msgstr "Tên người dùng đã điền vào các hình thức sẽ được sử dụng trong trường 'Từ'."
371
 
372
- #: contact_form.php:766
373
  msgid "This text will be used in the 'FROM' field"
374
  msgstr "Văn bản này sẽ được sử dụng trong trường 'Từ'"
375
 
376
- #: contact_form.php:770
377
  msgid "The email address in the 'From' field"
378
  msgstr "Địa chỉ email vào trường 'Từ'"
379
 
380
- #: contact_form.php:772
381
  msgid "User email"
382
  msgstr "Người dùng thư điện tử"
383
 
384
- #: contact_form.php:773
385
  msgid "The email address of the user who fills the form will be used in the field 'From'."
386
  msgstr "Địa chỉ email của người dùng đã điền vào các hình thức sẽ được sử dụng trong trường 'Từ'."
387
 
388
- #: contact_form.php:776
389
  msgid "This email address will be used in the 'From' field."
390
  msgstr "Địa chỉ email này sẽ được sử dụng trong trường 'Từ'."
391
 
392
- #: contact_form.php:780
393
  msgid "Required symbol"
394
  msgstr "Biểu tượng yêu cầu"
395
 
396
- #: contact_form.php:790
397
  msgid "Fields"
398
  msgstr "Lĩnh vực"
399
 
400
- #: contact_form.php:791
401
  msgid "Used"
402
  msgstr "Sử dụng"
403
 
404
- #: contact_form.php:792
405
  msgid "Required"
406
  msgstr "Yêu cầu"
407
 
408
- #: contact_form.php:793
409
  msgid "Visible"
410
  msgstr "Có thể nhìn thấy"
411
 
412
- #: contact_form.php:794
413
  msgid "Disabled for editing"
414
  msgstr "Khuyết tật để chỉnh sửa"
415
 
416
- #: contact_form.php:795
417
  msgid "Field's default value"
418
  msgstr "Giá trị mặc định của trường"
419
 
420
- #: contact_form.php:800
421
- #: contact_form.php:1121
422
- #: contact_form.php:1841
423
- #: contact_form.php:1871
424
  msgid "Name"
425
  msgstr "Tên"
426
 
427
- #: contact_form.php:808
428
- #: contact_form.php:1126
429
- #: contact_form.php:1845
430
- #: contact_form.php:1873
431
  msgid "Address"
432
  msgstr "Địa chỉ"
433
 
434
- #: contact_form.php:816
435
  msgid "Email Address"
436
  msgstr "Địa chỉ email"
437
 
438
- #: contact_form.php:824
439
  msgid "Phone number"
440
  msgstr "Số điện thoại"
441
 
442
- #: contact_form.php:832
443
- #: contact_form.php:1141
444
- #: contact_form.php:1855
445
- #: contact_form.php:1877
446
  msgid "Subject"
447
  msgstr "Chủ đề"
448
 
449
- #: contact_form.php:840
450
- #: contact_form.php:1145
451
- #: contact_form.php:1858
452
- #: contact_form.php:1878
453
  msgid "Message"
454
  msgstr "Tin nhắn"
455
 
456
- #: contact_form.php:858
457
  msgid "Attachment block"
458
  msgstr "Tập tin đính kèm khối"
459
 
460
- #: contact_form.php:860
461
  msgid "Users can attach the following file formats"
462
  msgstr "Người dùng có thể đính kèm các định dạng tệp sau"
463
 
464
- #: contact_form.php:874
465
  msgid "Add to the form"
466
  msgstr "Thêm vào các hình thức"
467
 
468
- #: contact_form.php:879
469
  msgid "Tips below the Attachment"
470
  msgstr "Mẹo bên dưới phần đính kèm"
471
 
472
- #: contact_form.php:888
473
  msgid "'Send me a copy' block"
474
  msgstr "'Gửi tôi một bản sao' khối"
475
 
476
- #: contact_form.php:901
477
- #: contact_form.php:904
478
- #: contact_form.php:908
479
- #: contact_form.php:1155
480
  msgid "Captcha"
481
  msgstr "CAPTCHA"
482
 
483
- #: contact_form.php:904
484
  msgid "Activate captcha"
485
  msgstr "Kích hoạt captcha"
486
 
487
- #: contact_form.php:908
488
  msgid "Download captcha"
489
  msgstr "Tải về captcha"
490
 
491
- #: contact_form.php:916
492
  msgid "Agreement checkbox"
493
  msgstr "Thỏa thuận hộp kiểm"
494
 
495
- #: contact_form.php:916
496
  msgid "Required checkbox for submitting the form"
497
  msgstr "Các hộp kiểm yêu cầu để gửi biểu mẫu"
498
 
499
- #: contact_form.php:917
500
  msgid "Optional checkbox"
501
  msgstr "Tùy chọn hộp kiểm"
502
 
503
- #: contact_form.php:917
504
  msgid "Optional checkbox, the results of which will be displayed in email"
505
  msgstr "Tùy chọn hộp kiểm, kết quả trong đó sẽ được hiển thị trong email"
506
 
507
- #: contact_form.php:928
508
  msgid "Delete an attachment file from the server after the email is sent"
509
  msgstr "Xóa một tập tin đính kèm từ hệ phục vụ sau khi các email được gửi"
510
 
511
- #: contact_form.php:934
512
  msgid "Email in HTML format sending"
513
  msgstr "Gửi email cho HTML định dạng gửi"
514
 
515
- #: contact_form.php:938
516
  msgid "Display additional info in the email"
517
  msgstr "Hiển thị thông tin bổ sung trong email"
518
 
519
- #: contact_form.php:943
520
- #: contact_form.php:1808
521
- #: contact_form.php:1810
522
  msgid "Sent from (ip address)"
523
  msgstr "Gửi từ (địa chỉ ip)"
524
 
525
- #: contact_form.php:943
526
  msgid "Example: Sent from (IP address):\t127.0.0.1"
527
  msgstr "Ví dụ: Gửi từ (địa chỉ IP):\t127.0.0.1"
528
 
529
- #: contact_form.php:944
530
- #: contact_form.php:1814
531
- #: contact_form.php:1816
532
  msgid "Date/Time"
533
  msgstr "Ngày/thời gian"
534
 
535
- #: contact_form.php:944
536
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
537
  msgstr "Ví dụ: Ngày/thời gian:\tngày 19 tháng 8 năm 2013 8:50 pm"
538
 
539
- #: contact_form.php:945
540
- #: contact_form.php:1820
541
- #: contact_form.php:1822
542
  msgid "Sent from (referer)"
543
  msgstr "Gửi từ (referer)"
544
 
545
- #: contact_form.php:945
546
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
547
  msgstr "Ví dụ: Gửi từ (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
548
 
549
- #: contact_form.php:946
550
- #: contact_form.php:1826
551
- #: contact_form.php:1828
552
  msgid "Using (user agent)"
553
  msgstr "Sử dụng (người sử dụng đại lý)"
554
 
555
- #: contact_form.php:946
556
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
557
  msgstr "Ví dụ: Sử dụng (người sử dụng đại lý):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, như Gecko) Chrome/28.0.1500.95 Safari/537.36"
558
 
559
- #: contact_form.php:950
560
  msgid "Language settings for the field names in the form"
561
  msgstr "Cài đặt ngôn ngữ cho tên trường trong các hình thức"
562
 
563
- #: contact_form.php:959
564
  msgid "Add a language"
565
  msgstr "Thêm một ngôn ngữ"
566
 
567
- #: contact_form.php:963
568
  msgid "Change the names of the contact form fields and error messages"
569
  msgstr "Thay đổi tên của các lĩnh vực hình thức liên lạc và thông báo lỗi"
570
 
571
- #: contact_form.php:968
572
- #: contact_form.php:1041
573
  msgid "English"
574
  msgstr "Tiếng Anh"
575
 
576
- #: contact_form.php:976
577
- #: contact_form.php:1006
578
  msgid "click to expand/hide the list"
579
  msgstr ""
580
 
581
- #: contact_form.php:985
582
- #: contact_form.php:1015
583
  msgid "Tips below the Attachment block"
584
  msgstr "Lời khuyên dưới đây khối tập tin đính kèm"
585
 
586
- #: contact_form.php:988
587
- #: contact_form.php:1018
588
  msgid "Error message for the Name field"
589
  msgstr "Thông báo lỗi cho trường tên"
590
 
591
- #: contact_form.php:989
592
- #: contact_form.php:1019
593
  msgid "Error message for the Address field"
594
  msgstr "Thông báo lỗi cho trường địa chỉ"
595
 
596
- #: contact_form.php:990
597
- #: contact_form.php:1020
598
  msgid "Error message for the Email field"
599
  msgstr "Thông báo lỗi cho trường Email"
600
 
601
- #: contact_form.php:991
602
- #: contact_form.php:1021
603
  msgid "Error message for the Phone field"
604
  msgstr "Thông báo lỗi cho lĩnh vực điện thoại"
605
 
606
- #: contact_form.php:992
607
- #: contact_form.php:1022
608
  msgid "Error message for the Subject field"
609
  msgstr "Thông báo lỗi cho trường chủ đề"
610
 
611
- #: contact_form.php:993
612
- #: contact_form.php:1023
613
  msgid "Error message for the Message field"
614
  msgstr "Thông báo lỗi cho trường tin nhắn"
615
 
616
- #: contact_form.php:994
617
- #: contact_form.php:1024
618
  msgid "Error message about the file type for the Attachment field"
619
  msgstr "Thông báo lỗi về các loại tập tin cho trường đính kèm"
620
 
621
- #: contact_form.php:995
622
- #: contact_form.php:1025
623
  msgid "Error message while uploading a file for the Attachment field to the server"
624
  msgstr "Thông báo lỗi trong khi tải lên một tập tin cho trường đính kèm vào hệ phục vụ"
625
 
626
- #: contact_form.php:996
627
- #: contact_form.php:1026
628
  msgid "Error message while moving the file for the Attachment field"
629
  msgstr "Thông báo lỗi trong khi di chuyển tập tin đối với lĩnh vực tập tin đính kèm"
630
 
631
- #: contact_form.php:997
632
- #: contact_form.php:1027
633
  msgid "Error message when file size limit for the Attachment field is exceeded"
634
  msgstr "Thông báo lỗi khi vượt quá giới hạn kích thước tập tin cho trường đính kèm"
635
 
636
- #: contact_form.php:998
637
- #: contact_form.php:1028
638
  msgid "Error message for the Captcha field"
639
  msgstr "Thông báo lỗi cho lĩnh vực Captcha"
640
 
641
- #: contact_form.php:999
642
- #: contact_form.php:1029
643
  msgid "Error message for the whole form"
644
  msgstr "Thông báo lỗi cho các hình thức toàn bộ"
645
 
646
- #: contact_form.php:1001
647
- #: contact_form.php:1031
648
- #: contact_form.php:1050
649
- #: contact_form.php:1056
 
 
 
 
650
  msgid "Use shortcode"
651
  msgstr "Sử dụng shortcode"
652
 
653
- #: contact_form.php:1001
654
- #: contact_form.php:1031
655
- #: contact_form.php:1050
656
- #: contact_form.php:1056
 
 
 
 
657
  msgid "for this language"
658
  msgstr "cho ngôn ngữ này"
659
 
660
- #: contact_form.php:1038
661
  msgid "Action after email is sent"
662
  msgstr "Hành động sau khi email được gửi"
663
 
664
- #: contact_form.php:1040
665
  msgid "Display text"
666
  msgstr "Hiển thị văn bản"
667
 
668
- #: contact_form.php:1049
669
- #: contact_form.php:1055
670
  msgid "Text"
671
  msgstr "Văn bản"
672
 
673
- #: contact_form.php:1062
674
  msgid "Redirect to the page"
675
  msgstr "Chuyển hướng đến trang"
676
 
677
- #: contact_form.php:1063
678
  msgid "Url"
679
  msgstr "URL"
680
 
681
- #: contact_form.php:1067
682
  msgid "The $_SERVER variable that is used to build a URL of the form"
683
  msgstr ""
684
 
685
- #: contact_form.php:1071
686
  msgid "If you are not sure whether to change this setting or not, please do not do that."
687
  msgstr ""
688
 
689
- #: contact_form.php:1077
690
- #: contact_form.php:1252
691
  msgid "Save Changes"
692
  msgstr "Lưu thay đổi"
693
 
694
- #: contact_form.php:1082
695
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
696
  msgstr "Nếu bạn thích plugin của chúng tôi, xin vui lòng cho nó 5 sao trên WordPress"
697
 
698
- #: contact_form.php:1083
699
  msgid "Rate the plugin"
700
  msgstr "Tỷ lệ plugin"
701
 
702
- #: contact_form.php:1086
703
  msgid "If there is something wrong about it, please contact us"
704
  msgstr "Nếu có điều gì sai về nó, xin vui lòng liên hệ với chúng tôi"
705
 
706
- #: contact_form.php:1101
707
  msgid "Errors output"
708
  msgstr "Đầu ra lỗi"
709
 
710
- #: contact_form.php:1104
711
  msgid "Display error messages"
712
  msgstr "Hiển thị thông báo lỗi"
713
 
714
- #: contact_form.php:1105
715
  msgid "Color of the input field errors."
716
  msgstr "Màu sắc của trường nhập lỗi."
717
 
718
- #: contact_form.php:1106
719
  msgid "Display error messages & color of the input field errors"
720
  msgstr "Hiển thị thông báo lỗi và màu sắc của trường nhập lỗi"
721
 
722
- #: contact_form.php:1111
723
  msgid "Add placeholder to the input blocks"
724
  msgstr "Thêm giữ chỗ để các khối đầu vào"
725
 
726
- #: contact_form.php:1117
727
  msgid "Add tooltips"
728
  msgstr "Thêm chú giải công cụ"
729
 
730
- #: contact_form.php:1131
731
  msgid "Email address"
732
  msgstr "Địa chỉ email"
733
 
734
- #: contact_form.php:1136
735
  msgid "Phone Number"
736
  msgstr "Số điện thoại"
737
 
738
- #: contact_form.php:1150
739
  msgid "Attachment"
740
  msgstr "Tập tin đính kèm"
741
 
742
- #: contact_form.php:1155
743
  msgid "(powered by bestwebsoft.com)"
744
  msgstr "(cung cấp bởi bestwebsoft.com)"
745
 
746
- #: contact_form.php:1160
747
  msgid "Style options"
748
  msgstr "Tùy chọn phong cách"
749
 
750
- #: contact_form.php:1163
751
  msgid "Text color"
752
  msgstr "Văn bản màu"
753
 
754
- #: contact_form.php:1166
755
- #: contact_form.php:1171
756
- #: contact_form.php:1181
757
- #: contact_form.php:1186
758
- #: contact_form.php:1191
759
- #: contact_form.php:1196
760
- #: contact_form.php:1206
761
- #: contact_form.php:1211
762
- #: contact_form.php:1217
763
- #: contact_form.php:1228
764
- #: contact_form.php:1233
765
- #: contact_form.php:1238
766
  msgid "Default"
767
  msgstr "Mặc định"
768
 
769
- #: contact_form.php:1168
770
  msgid "Label text color"
771
  msgstr "Nhãn văn bản màu"
772
 
773
- #: contact_form.php:1173
774
  msgid "Placeholder color"
775
  msgstr "Giữ chỗ màu"
776
 
777
- #: contact_form.php:1178
778
  msgid "Errors color"
779
  msgstr "Lỗi màu"
780
 
781
- #: contact_form.php:1183
782
  msgid "Error text color"
783
  msgstr "Lỗi văn bản màu"
784
 
785
- #: contact_form.php:1188
786
  msgid "Background color of the input field errors"
787
  msgstr "Màu nền của trường nhập lỗi"
788
 
789
- #: contact_form.php:1193
790
  msgid "Border color of the input field errors"
791
  msgstr "Biên giới màu sắc của trường nhập lỗi"
792
 
793
- #: contact_form.php:1198
794
  msgid "Placeholder color of the input field errors"
795
  msgstr "Giữ chỗ màu sắc của trường nhập lỗi"
796
 
797
- #: contact_form.php:1203
798
  msgid "Input fields"
799
  msgstr "Lĩnh vực đầu vào"
800
 
801
- #: contact_form.php:1208
802
  msgid "Input fields background color"
803
  msgstr "Lĩnh vực đầu vào nền màu"
804
 
805
- #: contact_form.php:1213
806
  msgid "Text fields color"
807
  msgstr "Văn bản lĩnh vực màu"
808
 
809
- #: contact_form.php:1215
810
  msgid "Border width in px, numbers only"
811
  msgstr "Chiều rộng biên giới ở px, chỉ có số điện thoại"
812
 
813
- #: contact_form.php:1219
814
- #: contact_form.php:1240
815
  msgid "Border color"
816
  msgstr "Biên giới màu sắc"
817
 
818
- #: contact_form.php:1224
819
  msgid "Submit button"
820
  msgstr "Gửi nút"
821
 
822
- #: contact_form.php:1226
823
  msgid "Width in px, numbers only"
824
  msgstr "Chiều rộng trong px, chỉ có số điện thoại"
825
 
826
- #: contact_form.php:1230
827
  msgid "Button color"
828
  msgstr "Nút màu"
829
 
830
- #: contact_form.php:1235
831
  msgid "Button text color"
832
  msgstr "Nút màu chữ"
833
 
834
- #: contact_form.php:1256
835
  msgid "Contact Form Pro | Preview"
836
  msgstr "Liên hệ tạo thành Pro | Xem trước"
837
 
838
- #: contact_form.php:1259
839
  msgid "Show with errors"
840
  msgstr "Hiển thị lỗi"
841
 
842
- #: contact_form.php:1267
843
- #: contact_form.php:1269
844
  msgid "Please enter your full name..."
845
  msgstr "Vui lòng nhập tên đầy đủ của bạn..."
846
 
847
- #: contact_form.php:1280
848
- #: contact_form.php:1282
849
  msgid "Please enter your address..."
850
  msgstr "Vui lòng nhập địa chỉ của bạn..."
851
 
852
- #: contact_form.php:1291
853
- #: contact_form.php:1293
854
  msgid "Please enter your email address..."
855
  msgstr "Vui lòng nhập địa chỉ email của bạn..."
856
 
857
- #: contact_form.php:1302
858
- #: contact_form.php:1304
859
  msgid "Please enter your phone number..."
860
  msgstr "Vui lòng nhập số điện thoại của bạn..."
861
 
862
- #: contact_form.php:1313
863
- #: contact_form.php:1315
864
  msgid "Please enter subject..."
865
  msgstr "Vui lòng nhập Chủ đề..."
866
 
867
- #: contact_form.php:1323
868
- #: contact_form.php:1325
869
  msgid "Please enter your message..."
870
  msgstr "Vui lòng nhập tin nhắn của bạn..."
871
 
872
- #: contact_form.php:1367
873
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
874
  msgstr ""
875
 
876
- #: contact_form.php:1369
877
  msgid "Please, go to"
878
  msgstr ""
879
 
880
- #: contact_form.php:1369
881
  #, fuzzy
882
  msgid "the setting page"
883
  msgstr "Cài đặt phụ"
884
 
885
- #: contact_form.php:1370
886
  msgid "You will be redirected automatically in 5 seconds."
887
  msgstr ""
888
 
889
- #: contact_form.php:1375
890
  msgid "You can download and activate"
891
  msgstr ""
892
 
893
- #: contact_form.php:1377
894
  msgid "version of this plugin by entering Your license key."
895
  msgstr ""
896
 
897
- #: contact_form.php:1379
898
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
899
  msgstr ""
900
 
901
- #: contact_form.php:1381
902
  msgid "(your username is the email you specify when purchasing the product)."
903
  msgstr ""
904
 
905
- #: contact_form.php:1389
906
- #: contact_form.php:1399
907
  msgid "Go!"
908
  msgstr ""
909
 
910
- #: contact_form.php:1449
911
  msgid "Sorry, email message could not be delivered."
912
  msgstr "Xin lỗi, không thể gửi được thư email."
913
 
914
- #: contact_form.php:1835
915
  msgid "Contact from"
916
  msgstr "Liên hệ với từ"
917
 
918
- #: contact_form.php:1848
919
- #: contact_form.php:1874
920
  msgid "Email"
921
  msgstr "Thư điện tử"
922
 
923
- #: contact_form.php:1852
924
- #: contact_form.php:1876
925
  msgid "Phone"
926
  msgstr "Điện thoại"
927
 
928
- #: contact_form.php:1861
929
- #: contact_form.php:1879
930
  msgid "Site"
931
  msgstr "Trang web"
932
 
933
- #: contact_form.php:1941
934
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
935
  msgstr "Nếu bạn có thể thấy MIME này, nó có nghĩa là rằng loại MIME không được hỗ trợ bởi ứng dụng email của bạn!"
936
 
937
- #: contact_form.php:2009
938
  msgid "FAQ"
939
  msgstr "CÂU HỎI THƯỜNG GẶP"
940
 
941
- #: contact_form.php:2010
942
  msgid "Support"
943
  msgstr "Hỗ trợ"
944
 
945
- #: contact_form.php:2068
946
  msgid "Are you sure that you want to delete this language data?"
947
  msgstr "Bạn có chắc rằng bạn muốn xóa dữ liệu ngôn ngữ này không?"
948
 
949
- #: contact_form.php:2223
950
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
951
  msgstr ""
952
 
953
- #: contact_form.php:2224
954
  msgid "Extend standard plugin functionality with new great options."
955
  msgstr ""
956
 
957
- #: contact_form.php:2233
958
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
959
  msgstr ""
960
 
961
- #: contact_form.php:2234
962
  msgid "Manage messages that have been sent from your website."
963
  msgstr ""
964
 
 
 
 
 
 
 
 
 
 
 
965
  #~ msgid "Contact Form Pro Extra Settings"
966
  #~ msgstr "Liên hệ với hình thức cài đặt chuyên nghiệp phụ"
967
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:41+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:41+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Localization blog | http://bizover.net <contact@bizover.net>\n"
9
  "Language: \n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  msgid "Contact Form Settings"
22
  msgstr "Cài đặt hình thức liên lạc"
23
 
24
+ #: contact_form.php:73
25
  msgid "Contact Form"
26
  msgstr "Mẫu liên hệ"
27
 
28
+ #: contact_form.php:149
29
+ #: contact_form.php:1131
30
+ #: contact_form.php:1165
31
  msgid "Name:"
32
  msgstr "Tên:"
33
 
34
+ #: contact_form.php:150
35
+ #: contact_form.php:1132
36
+ #: contact_form.php:1166
37
  msgid "Address:"
38
  msgstr "Địa chỉ:"
39
 
40
+ #: contact_form.php:151
41
+ #: contact_form.php:1133
42
+ #: contact_form.php:1167
43
  msgid "Email Address:"
44
  msgstr "Địa chỉ email:"
45
 
46
+ #: contact_form.php:152
47
+ #: contact_form.php:1134
48
+ #: contact_form.php:1168
49
  msgid "Phone number:"
50
  msgstr "Số điện thoại:"
51
 
52
+ #: contact_form.php:153
53
+ #: contact_form.php:1135
54
+ #: contact_form.php:1169
55
  msgid "Subject:"
56
  msgstr "Tiêu đề:"
57
 
58
+ #: contact_form.php:154
59
+ #: contact_form.php:1136
60
+ #: contact_form.php:1170
61
  msgid "Message:"
62
  msgstr "Thông báo:"
63
 
64
+ #: contact_form.php:155
65
+ #: contact_form.php:1137
66
+ #: contact_form.php:1171
67
  msgid "Attachment:"
68
  msgstr "File đính kèm:"
69
 
70
+ #: contact_form.php:156
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "Hỗ trợ các loại tập tin: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, vùng tối đa kích thước: 2MB"
73
 
74
+ #: contact_form.php:157
75
+ #: contact_form.php:1139
76
+ #: contact_form.php:1173
77
  msgid "Send me a copy"
78
  msgstr "Gửi cho tôi một bản sao"
79
 
80
+ #: contact_form.php:158
81
+ #: contact_form.php:1140
82
+ #: contact_form.php:1174
83
  msgid "Submit"
84
  msgstr "Gửi"
85
 
86
+ #: contact_form.php:159
87
  msgid "Your name is required."
88
  msgstr "Tên của bạn là cần thiết."
89
 
90
+ #: contact_form.php:160
91
  msgid "Address is required."
92
  msgstr "Địa chỉ được yêu cầu."
93
 
94
+ #: contact_form.php:161
95
  msgid "A valid email address is required."
96
  msgstr "Một địa chỉ email hợp lệ là bắt buộc."
97
 
98
+ #: contact_form.php:162
99
  msgid "Phone number is required."
100
  msgstr "Số điện thoại được yêu cầu."
101
 
102
+ #: contact_form.php:163
103
  msgid "Subject is required."
104
  msgstr "Chủ đề là bắt buộc."
105
 
106
+ #: contact_form.php:164
107
  msgid "Message text is required."
108
  msgstr "Tin nhắn văn bản được yêu cầu."
109
 
110
+ #: contact_form.php:165
111
  msgid "File format is not valid."
112
  msgstr "Định dạng tập tin là không hợp lệ."
113
 
114
+ #: contact_form.php:166
115
  msgid "File upload error."
116
  msgstr "Lỗi tải lên tệp."
117
 
118
+ #: contact_form.php:167
119
  msgid "The file could not be uploaded."
120
  msgstr "Không thể tải các tập tin."
121
 
122
+ #: contact_form.php:168
123
  msgid "This file is too large."
124
  msgstr "Tập tin này là quá lớn."
125
 
126
+ #: contact_form.php:169
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Xin vui lòng điền CAPTCHA."
129
 
130
+ #: contact_form.php:170
131
  msgid "Please make corrections below and try again."
132
  msgstr "Xin vui lòng làm cho chỉnh dưới đây và thử lại."
133
 
134
+ #: contact_form.php:172
135
  msgid "Thank you for contacting us."
136
  msgstr "Cảm ơn bạn đã liên hệ với chúng tôi."
137
 
138
+ #: contact_form.php:322
139
  msgid "requires"
140
  msgstr "yêu cầu"
141
 
142
+ #: contact_form.php:322
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "hoặc cao hơn, đó là lý do tại sao nó đã bị ngừng hoạt động! Xin vui lòng nâng cấp WordPress và thử lại."
145
 
146
+ #: contact_form.php:322
147
  msgid "Back to the WordPress"
148
  msgstr "Quay lại WordPress"
149
 
150
+ #: contact_form.php:322
151
  msgid "Plugins page"
152
  msgstr "Trang Plugins"
153
 
154
+ #: contact_form.php:626
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "Nếu tùy chọn 'Chuyển hướng đến trang' được chọn thì trường URL nên ở định dạng sau"
157
 
158
+ #: contact_form.php:635
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "Người dùng như vậy không tồn tại. Cài đặt không được lưu."
161
 
162
+ #: contact_form.php:639
163
+ #: contact_form.php:645
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "Vui lòng nhập một địa chỉ email hợp lệ trong trường 'Từ'. Cài đặt không được lưu."
166
 
167
+ #: contact_form.php:661
168
  msgid "Settings saved."
169
  msgstr "Cài đặt đã lưu."
170
 
171
+ #: contact_form.php:688
172
+ #: contact_form.php:720
173
  msgid "Wrong license key"
174
  msgstr ""
175
 
176
+ #: contact_form.php:713
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr ""
179
 
180
+ #: contact_form.php:722
181
  msgid "This license key is bind to another site"
182
  msgstr ""
183
 
184
+ #: contact_form.php:724
185
+ #: contact_form.php:1570
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr ""
188
 
189
+ #: contact_form.php:741
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr ""
192
 
193
+ #: contact_form.php:747
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr ""
196
 
197
+ #: contact_form.php:751
198
+ #: contact_form.php:760
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
 
202
+ #: contact_form.php:764
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr ""
205
 
206
+ #: contact_form.php:779
207
  #, fuzzy
208
  msgid "Please, enter Your license key"
209
  msgstr "Vui lòng nhập tin nhắn của bạn..."
210
 
211
+ #: contact_form.php:787
212
+ #: contact_form.php:2216
213
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
214
  msgid "Settings"
215
  msgstr "Cài đặt"
216
 
217
+ #: contact_form.php:788
218
  msgid "Extra settings"
219
  msgstr "Cài đặt phụ"
220
 
221
+ #: contact_form.php:789
222
  msgid "Go PRO"
223
  msgstr ""
224
 
225
+ #: contact_form.php:792
226
+ msgid "Notice:"
227
+ msgstr "Thông báo:"
228
+
229
+ #: contact_form.php:792
230
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
231
+ msgstr "Cài đặt của plugin đã được thay đổi. Để tiết kiệm họ xin đừng quên để nhấp vào nút 'Lưu thay đổi'."
232
+
233
+ #: contact_form.php:798
234
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
235
+ msgstr ""
236
+
237
+ #: contact_form.php:804
238
+ #: contact_form.php:809
239
+ #: contact_form.php:1529
240
  msgid "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:"
241
  msgstr "Nếu bạn muốn thêm các hình thức liên lạc để trang web của bạn, chỉ cần sao chép và dán này shortcode để đăng bài hay trang hoặc phụ tùng của bạn:"
242
 
243
+ #: contact_form.php:804
244
+ #: contact_form.php:805
245
+ #: contact_form.php:809
246
+ #: contact_form.php:810
247
+ #: contact_form.php:1155
248
+ #: contact_form.php:1157
249
+ #: contact_form.php:1212
250
+ #: contact_form.php:1214
251
  msgid "or"
252
  msgstr "hoặc"
253
 
254
+ #: contact_form.php:805
255
+ #: contact_form.php:810
256
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
257
  msgstr "Nếu có bất kỳ vấn đề với tiêu chuẩn shortcode [contact_form], bạn nên sử dụng shortcode"
258
 
259
+ #: contact_form.php:806
260
+ #: contact_form.php:811
261
  msgid "They work the same way."
262
  msgstr "Họ làm việc cùng một cách."
263
 
264
+ #: contact_form.php:807
265
+ #: contact_form.php:812
266
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
267
  msgstr "Nếu bạn để các lĩnh vực trống, các tin nhắn sẽ được gửi đến địa chỉ email được chỉ định trong quá trình đăng ký."
268
 
269
+ #: contact_form.php:817
270
  msgid "The user's email address:"
271
  msgstr "Các địa chỉ email của người dùng:"
272
 
273
+ #: contact_form.php:821
274
  msgid "Create a username"
275
  msgstr "Tạo một tên người dùng"
276
 
277
+ #: contact_form.php:828
278
  msgid "Enter a username of the person who should get the messages from the contact form."
279
  msgstr "Nhập tên người dùng của người sẽ nhận được các tin nhắn từ hình thức liên lạc."
280
 
281
+ #: contact_form.php:832
282
  msgid "Use this email address:"
283
  msgstr "Sử dụng địa chỉ email này:"
284
 
285
+ #: contact_form.php:835
286
  msgid "Enter the email address you want the messages forwarded to."
287
  msgstr "Nhập địa chỉ email mà bạn muốn các thư được chuyển tiếp đến."
288
 
289
+ #: contact_form.php:844
290
  msgid "Add department selectbox to the contact form:"
291
  msgstr "Địa chỉ sở selectbox để hình thức liên lạc:"
292
 
293
+ #: contact_form.php:852
294
+ #: contact_form.php:1412
295
  msgid "If you upgrade to Pro version all your settings will be saved."
296
  msgstr "Nếu bạn nâng cấp lên phiên bản Pro, tất cả các thiết lập của bạn sẽ được lưu."
297
 
298
+ #: contact_form.php:859
299
+ #: contact_form.php:997
300
+ #: contact_form.php:1071
301
+ #: contact_form.php:1419
302
+ msgid "Unlock premium options by upgrading to a PRO version."
303
+ msgstr ""
304
 
305
+ #: contact_form.php:860
306
+ #: contact_form.php:998
307
+ #: contact_form.php:1072
308
+ #: contact_form.php:1420
309
+ #: contact_form.php:2473
310
+ #: contact_form.php:2489
311
+ msgid "Learn More"
312
+ msgstr ""
313
 
314
+ #: contact_form.php:863
315
+ #: contact_form.php:1001
316
+ #: contact_form.php:1075
317
+ #: contact_form.php:1423
318
+ msgid "Go"
319
+ msgstr ""
320
+
321
+ #: contact_form.php:870
322
  msgid "Save emails to the database"
323
  msgstr "Lưu email vào cơ sở dữ liệu"
324
 
325
+ #: contact_form.php:876
326
  msgid "Using"
327
  msgstr ""
328
 
329
+ #: contact_form.php:876
330
+ #: contact_form.php:1048
331
+ #: contact_form.php:1051
332
+ #: contact_form.php:1055
333
  msgid "powered by"
334
  msgstr "Được tài trợ bởi"
335
 
336
+ #: contact_form.php:879
337
+ #: contact_form.php:883
338
  msgid "Using Contact Form to DB powered by"
339
  msgstr "Bằng cách sử dụng mẫu liên hệ để DB được tài trợ bởi"
340
 
341
+ #: contact_form.php:879
342
  msgid "Activate Contact Form to DB"
343
  msgstr "Kích hoạt các hình thức liên lạc để DB"
344
 
345
+ #: contact_form.php:883
346
  msgid "Download Contact Form to DB"
347
  msgstr "Tải về hình thức liên lạc để DB"
348
 
349
+ #: contact_form.php:888
350
  msgid "Additional options"
351
  msgstr "Tùy chọn bổ sung"
352
 
353
+ #: contact_form.php:890
354
  msgid "Show"
355
  msgstr "Hiển thị"
356
 
357
+ #: contact_form.php:891
358
  msgid "Hide"
359
  msgstr "Ẩn"
360
 
361
+ #: contact_form.php:895
362
  msgid "What to use?"
363
  msgstr "Những gì để sử dụng?"
364
 
365
+ #: contact_form.php:898
366
  msgid "Wp-mail"
367
  msgstr "WP-thư"
368
 
369
+ #: contact_form.php:898
370
  msgid "You can use the wp_mail function for mailing"
371
  msgstr "Bạn có thể sử dụng các chức năng wp_mail để gửi thư"
372
 
373
+ #: contact_form.php:900
374
  msgid "Mail"
375
  msgstr "Thư"
376
 
377
+ #: contact_form.php:900
378
  msgid "To send mail you can use the php mail function"
379
  msgstr "Để gửi thư, bạn có thể sử dụng chức năng php thư"
380
 
381
+ #: contact_form.php:904
382
  msgid "The text in the 'From' field"
383
  msgstr "Các văn bản trong trường 'Từ'"
384
 
385
+ #: contact_form.php:906
386
  msgid "User name"
387
  msgstr "Tên người dùng"
388
 
389
+ #: contact_form.php:907
390
  msgid "The name of the user who fills the form will be used in the field 'From'."
391
  msgstr "Tên người dùng đã điền vào các hình thức sẽ được sử dụng trong trường 'Từ'."
392
 
393
+ #: contact_form.php:910
394
  msgid "This text will be used in the 'FROM' field"
395
  msgstr "Văn bản này sẽ được sử dụng trong trường 'Từ'"
396
 
397
+ #: contact_form.php:914
398
  msgid "The email address in the 'From' field"
399
  msgstr "Địa chỉ email vào trường 'Từ'"
400
 
401
+ #: contact_form.php:916
402
  msgid "User email"
403
  msgstr "Người dùng thư điện tử"
404
 
405
+ #: contact_form.php:917
406
  msgid "The email address of the user who fills the form will be used in the field 'From'."
407
  msgstr "Địa chỉ email của người dùng đã điền vào các hình thức sẽ được sử dụng trong trường 'Từ'."
408
 
409
+ #: contact_form.php:920
410
  msgid "This email address will be used in the 'From' field."
411
  msgstr "Địa chỉ email này sẽ được sử dụng trong trường 'Từ'."
412
 
413
+ #: contact_form.php:924
414
  msgid "Required symbol"
415
  msgstr "Biểu tượng yêu cầu"
416
 
417
+ #: contact_form.php:934
418
  msgid "Fields"
419
  msgstr "Lĩnh vực"
420
 
421
+ #: contact_form.php:935
422
  msgid "Used"
423
  msgstr "Sử dụng"
424
 
425
+ #: contact_form.php:936
426
  msgid "Required"
427
  msgstr "Yêu cầu"
428
 
429
+ #: contact_form.php:937
430
  msgid "Visible"
431
  msgstr "Có thể nhìn thấy"
432
 
433
+ #: contact_form.php:938
434
  msgid "Disabled for editing"
435
  msgstr "Khuyết tật để chỉnh sửa"
436
 
437
+ #: contact_form.php:939
438
  msgid "Field's default value"
439
  msgstr "Giá trị mặc định của trường"
440
 
441
+ #: contact_form.php:944
442
+ #: contact_form.php:1287
443
+ #: contact_form.php:2059
444
+ #: contact_form.php:2089
445
  msgid "Name"
446
  msgstr "Tên"
447
 
448
+ #: contact_form.php:952
449
+ #: contact_form.php:1292
450
+ #: contact_form.php:2063
451
+ #: contact_form.php:2091
452
  msgid "Address"
453
  msgstr "Địa chỉ"
454
 
455
+ #: contact_form.php:960
456
  msgid "Email Address"
457
  msgstr "Địa chỉ email"
458
 
459
+ #: contact_form.php:968
460
  msgid "Phone number"
461
  msgstr "Số điện thoại"
462
 
463
+ #: contact_form.php:976
464
+ #: contact_form.php:1307
465
+ #: contact_form.php:2073
466
+ #: contact_form.php:2095
467
  msgid "Subject"
468
  msgstr "Chủ đề"
469
 
470
+ #: contact_form.php:984
471
+ #: contact_form.php:1311
472
+ #: contact_form.php:2076
473
+ #: contact_form.php:2096
474
  msgid "Message"
475
  msgstr "Tin nhắn"
476
 
477
+ #: contact_form.php:1008
478
  msgid "Attachment block"
479
  msgstr "Tập tin đính kèm khối"
480
 
481
+ #: contact_form.php:1010
482
  msgid "Users can attach the following file formats"
483
  msgstr "Người dùng có thể đính kèm các định dạng tệp sau"
484
 
485
+ #: contact_form.php:1023
486
  msgid "Add to the form"
487
  msgstr "Thêm vào các hình thức"
488
 
489
+ #: contact_form.php:1028
490
  msgid "Tips below the Attachment"
491
  msgstr "Mẹo bên dưới phần đính kèm"
492
 
493
+ #: contact_form.php:1037
494
  msgid "'Send me a copy' block"
495
  msgstr "'Gửi tôi một bản sao' khối"
496
 
497
+ #: contact_form.php:1048
498
+ #: contact_form.php:1051
499
+ #: contact_form.php:1055
500
+ #: contact_form.php:1321
501
  msgid "Captcha"
502
  msgstr "CAPTCHA"
503
 
504
+ #: contact_form.php:1051
505
  msgid "Activate captcha"
506
  msgstr "Kích hoạt captcha"
507
 
508
+ #: contact_form.php:1055
509
  msgid "Download captcha"
510
  msgstr "Tải về captcha"
511
 
512
+ #: contact_form.php:1063
513
  msgid "Agreement checkbox"
514
  msgstr "Thỏa thuận hộp kiểm"
515
 
516
+ #: contact_form.php:1063
517
  msgid "Required checkbox for submitting the form"
518
  msgstr "Các hộp kiểm yêu cầu để gửi biểu mẫu"
519
 
520
+ #: contact_form.php:1064
521
  msgid "Optional checkbox"
522
  msgstr "Tùy chọn hộp kiểm"
523
 
524
+ #: contact_form.php:1064
525
  msgid "Optional checkbox, the results of which will be displayed in email"
526
  msgstr "Tùy chọn hộp kiểm, kết quả trong đó sẽ được hiển thị trong email"
527
 
528
+ #: contact_form.php:1081
529
  msgid "Delete an attachment file from the server after the email is sent"
530
  msgstr "Xóa một tập tin đính kèm từ hệ phục vụ sau khi các email được gửi"
531
 
532
+ #: contact_form.php:1087
533
  msgid "Email in HTML format sending"
534
  msgstr "Gửi email cho HTML định dạng gửi"
535
 
536
+ #: contact_form.php:1091
537
  msgid "Display additional info in the email"
538
  msgstr "Hiển thị thông tin bổ sung trong email"
539
 
540
+ #: contact_form.php:1096
541
+ #: contact_form.php:2026
542
+ #: contact_form.php:2028
543
  msgid "Sent from (ip address)"
544
  msgstr "Gửi từ (địa chỉ ip)"
545
 
546
+ #: contact_form.php:1096
547
  msgid "Example: Sent from (IP address):\t127.0.0.1"
548
  msgstr "Ví dụ: Gửi từ (địa chỉ IP):\t127.0.0.1"
549
 
550
+ #: contact_form.php:1097
551
+ #: contact_form.php:2032
552
+ #: contact_form.php:2034
553
  msgid "Date/Time"
554
  msgstr "Ngày/thời gian"
555
 
556
+ #: contact_form.php:1097
557
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
558
  msgstr "Ví dụ: Ngày/thời gian:\tngày 19 tháng 8 năm 2013 8:50 pm"
559
 
560
+ #: contact_form.php:1098
561
+ #: contact_form.php:2038
562
+ #: contact_form.php:2040
563
  msgid "Sent from (referer)"
564
  msgstr "Gửi từ (referer)"
565
 
566
+ #: contact_form.php:1098
567
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
568
  msgstr "Ví dụ: Gửi từ (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
569
 
570
+ #: contact_form.php:1099
571
+ #: contact_form.php:2044
572
+ #: contact_form.php:2046
573
  msgid "Using (user agent)"
574
  msgstr "Sử dụng (người sử dụng đại lý)"
575
 
576
+ #: contact_form.php:1099
577
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
578
  msgstr "Ví dụ: Sử dụng (người sử dụng đại lý):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, như Gecko) Chrome/28.0.1500.95 Safari/537.36"
579
 
580
+ #: contact_form.php:1103
581
  msgid "Language settings for the field names in the form"
582
  msgstr "Cài đặt ngôn ngữ cho tên trường trong các hình thức"
583
 
584
+ #: contact_form.php:1112
585
  msgid "Add a language"
586
  msgstr "Thêm một ngôn ngữ"
587
 
588
+ #: contact_form.php:1116
589
  msgid "Change the names of the contact form fields and error messages"
590
  msgstr "Thay đổi tên của các lĩnh vực hình thức liên lạc và thông báo lỗi"
591
 
592
+ #: contact_form.php:1121
593
+ #: contact_form.php:1202
594
  msgid "English"
595
  msgstr "Tiếng Anh"
596
 
597
+ #: contact_form.php:1129
598
+ #: contact_form.php:1163
599
  msgid "click to expand/hide the list"
600
  msgstr ""
601
 
602
+ #: contact_form.php:1138
603
+ #: contact_form.php:1172
604
  msgid "Tips below the Attachment block"
605
  msgstr "Lời khuyên dưới đây khối tập tin đính kèm"
606
 
607
+ #: contact_form.php:1141
608
+ #: contact_form.php:1175
609
  msgid "Error message for the Name field"
610
  msgstr "Thông báo lỗi cho trường tên"
611
 
612
+ #: contact_form.php:1142
613
+ #: contact_form.php:1176
614
  msgid "Error message for the Address field"
615
  msgstr "Thông báo lỗi cho trường địa chỉ"
616
 
617
+ #: contact_form.php:1143
618
+ #: contact_form.php:1177
619
  msgid "Error message for the Email field"
620
  msgstr "Thông báo lỗi cho trường Email"
621
 
622
+ #: contact_form.php:1144
623
+ #: contact_form.php:1178
624
  msgid "Error message for the Phone field"
625
  msgstr "Thông báo lỗi cho lĩnh vực điện thoại"
626
 
627
+ #: contact_form.php:1145
628
+ #: contact_form.php:1179
629
  msgid "Error message for the Subject field"
630
  msgstr "Thông báo lỗi cho trường chủ đề"
631
 
632
+ #: contact_form.php:1146
633
+ #: contact_form.php:1180
634
  msgid "Error message for the Message field"
635
  msgstr "Thông báo lỗi cho trường tin nhắn"
636
 
637
+ #: contact_form.php:1147
638
+ #: contact_form.php:1181
639
  msgid "Error message about the file type for the Attachment field"
640
  msgstr "Thông báo lỗi về các loại tập tin cho trường đính kèm"
641
 
642
+ #: contact_form.php:1148
643
+ #: contact_form.php:1182
644
  msgid "Error message while uploading a file for the Attachment field to the server"
645
  msgstr "Thông báo lỗi trong khi tải lên một tập tin cho trường đính kèm vào hệ phục vụ"
646
 
647
+ #: contact_form.php:1149
648
+ #: contact_form.php:1183
649
  msgid "Error message while moving the file for the Attachment field"
650
  msgstr "Thông báo lỗi trong khi di chuyển tập tin đối với lĩnh vực tập tin đính kèm"
651
 
652
+ #: contact_form.php:1150
653
+ #: contact_form.php:1184
654
  msgid "Error message when file size limit for the Attachment field is exceeded"
655
  msgstr "Thông báo lỗi khi vượt quá giới hạn kích thước tập tin cho trường đính kèm"
656
 
657
+ #: contact_form.php:1151
658
+ #: contact_form.php:1185
659
  msgid "Error message for the Captcha field"
660
  msgstr "Thông báo lỗi cho lĩnh vực Captcha"
661
 
662
+ #: contact_form.php:1152
663
+ #: contact_form.php:1186
664
  msgid "Error message for the whole form"
665
  msgstr "Thông báo lỗi cho các hình thức toàn bộ"
666
 
667
+ #: contact_form.php:1155
668
+ #: contact_form.php:1157
669
+ #: contact_form.php:1189
670
+ #: contact_form.php:1191
671
+ #: contact_form.php:1212
672
+ #: contact_form.php:1214
673
+ #: contact_form.php:1222
674
+ #: contact_form.php:1224
675
  msgid "Use shortcode"
676
  msgstr "Sử dụng shortcode"
677
 
678
+ #: contact_form.php:1155
679
+ #: contact_form.php:1157
680
+ #: contact_form.php:1189
681
+ #: contact_form.php:1191
682
+ #: contact_form.php:1212
683
+ #: contact_form.php:1214
684
+ #: contact_form.php:1222
685
+ #: contact_form.php:1224
686
  msgid "for this language"
687
  msgstr "cho ngôn ngữ này"
688
 
689
+ #: contact_form.php:1199
690
  msgid "Action after email is sent"
691
  msgstr "Hành động sau khi email được gửi"
692
 
693
+ #: contact_form.php:1201
694
  msgid "Display text"
695
  msgstr "Hiển thị văn bản"
696
 
697
+ #: contact_form.php:1210
698
+ #: contact_form.php:1220
699
  msgid "Text"
700
  msgstr "Văn bản"
701
 
702
+ #: contact_form.php:1231
703
  msgid "Redirect to the page"
704
  msgstr "Chuyển hướng đến trang"
705
 
706
+ #: contact_form.php:1232
707
  msgid "Url"
708
  msgstr "URL"
709
 
710
+ #: contact_form.php:1236
711
  msgid "The $_SERVER variable that is used to build a URL of the form"
712
  msgstr ""
713
 
714
+ #: contact_form.php:1240
715
  msgid "If you are not sure whether to change this setting or not, please do not do that."
716
  msgstr ""
717
 
718
+ #: contact_form.php:1246
719
+ #: contact_form.php:1430
720
  msgid "Save Changes"
721
  msgstr "Lưu thay đổi"
722
 
723
+ #: contact_form.php:1251
724
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
725
  msgstr "Nếu bạn thích plugin của chúng tôi, xin vui lòng cho nó 5 sao trên WordPress"
726
 
727
+ #: contact_form.php:1252
728
  msgid "Rate the plugin"
729
  msgstr "Tỷ lệ plugin"
730
 
731
+ #: contact_form.php:1255
732
  msgid "If there is something wrong about it, please contact us"
733
  msgstr "Nếu có điều gì sai về nó, xin vui lòng liên hệ với chúng tôi"
734
 
735
+ #: contact_form.php:1267
736
  msgid "Errors output"
737
  msgstr "Đầu ra lỗi"
738
 
739
+ #: contact_form.php:1270
740
  msgid "Display error messages"
741
  msgstr "Hiển thị thông báo lỗi"
742
 
743
+ #: contact_form.php:1271
744
  msgid "Color of the input field errors."
745
  msgstr "Màu sắc của trường nhập lỗi."
746
 
747
+ #: contact_form.php:1272
748
  msgid "Display error messages & color of the input field errors"
749
  msgstr "Hiển thị thông báo lỗi và màu sắc của trường nhập lỗi"
750
 
751
+ #: contact_form.php:1277
752
  msgid "Add placeholder to the input blocks"
753
  msgstr "Thêm giữ chỗ để các khối đầu vào"
754
 
755
+ #: contact_form.php:1283
756
  msgid "Add tooltips"
757
  msgstr "Thêm chú giải công cụ"
758
 
759
+ #: contact_form.php:1297
760
  msgid "Email address"
761
  msgstr "Địa chỉ email"
762
 
763
+ #: contact_form.php:1302
764
  msgid "Phone Number"
765
  msgstr "Số điện thoại"
766
 
767
+ #: contact_form.php:1316
768
  msgid "Attachment"
769
  msgstr "Tập tin đính kèm"
770
 
771
+ #: contact_form.php:1321
772
  msgid "(powered by bestwebsoft.com)"
773
  msgstr "(cung cấp bởi bestwebsoft.com)"
774
 
775
+ #: contact_form.php:1326
776
  msgid "Style options"
777
  msgstr "Tùy chọn phong cách"
778
 
779
+ #: contact_form.php:1329
780
  msgid "Text color"
781
  msgstr "Văn bản màu"
782
 
783
+ #: contact_form.php:1332
784
+ #: contact_form.php:1337
785
+ #: contact_form.php:1347
786
+ #: contact_form.php:1352
787
+ #: contact_form.php:1357
788
+ #: contact_form.php:1362
789
+ #: contact_form.php:1372
790
+ #: contact_form.php:1377
791
+ #: contact_form.php:1383
792
+ #: contact_form.php:1394
793
+ #: contact_form.php:1399
794
+ #: contact_form.php:1404
795
  msgid "Default"
796
  msgstr "Mặc định"
797
 
798
+ #: contact_form.php:1334
799
  msgid "Label text color"
800
  msgstr "Nhãn văn bản màu"
801
 
802
+ #: contact_form.php:1339
803
  msgid "Placeholder color"
804
  msgstr "Giữ chỗ màu"
805
 
806
+ #: contact_form.php:1344
807
  msgid "Errors color"
808
  msgstr "Lỗi màu"
809
 
810
+ #: contact_form.php:1349
811
  msgid "Error text color"
812
  msgstr "Lỗi văn bản màu"
813
 
814
+ #: contact_form.php:1354
815
  msgid "Background color of the input field errors"
816
  msgstr "Màu nền của trường nhập lỗi"
817
 
818
+ #: contact_form.php:1359
819
  msgid "Border color of the input field errors"
820
  msgstr "Biên giới màu sắc của trường nhập lỗi"
821
 
822
+ #: contact_form.php:1364
823
  msgid "Placeholder color of the input field errors"
824
  msgstr "Giữ chỗ màu sắc của trường nhập lỗi"
825
 
826
+ #: contact_form.php:1369
827
  msgid "Input fields"
828
  msgstr "Lĩnh vực đầu vào"
829
 
830
+ #: contact_form.php:1374
831
  msgid "Input fields background color"
832
  msgstr "Lĩnh vực đầu vào nền màu"
833
 
834
+ #: contact_form.php:1379
835
  msgid "Text fields color"
836
  msgstr "Văn bản lĩnh vực màu"
837
 
838
+ #: contact_form.php:1381
839
  msgid "Border width in px, numbers only"
840
  msgstr "Chiều rộng biên giới ở px, chỉ có số điện thoại"
841
 
842
+ #: contact_form.php:1385
843
+ #: contact_form.php:1406
844
  msgid "Border color"
845
  msgstr "Biên giới màu sắc"
846
 
847
+ #: contact_form.php:1390
848
  msgid "Submit button"
849
  msgstr "Gửi nút"
850
 
851
+ #: contact_form.php:1392
852
  msgid "Width in px, numbers only"
853
  msgstr "Chiều rộng trong px, chỉ có số điện thoại"
854
 
855
+ #: contact_form.php:1396
856
  msgid "Button color"
857
  msgstr "Nút màu"
858
 
859
+ #: contact_form.php:1401
860
  msgid "Button text color"
861
  msgstr "Nút màu chữ"
862
 
863
+ #: contact_form.php:1434
864
  msgid "Contact Form Pro | Preview"
865
  msgstr "Liên hệ tạo thành Pro | Xem trước"
866
 
867
+ #: contact_form.php:1437
868
  msgid "Show with errors"
869
  msgstr "Hiển thị lỗi"
870
 
871
+ #: contact_form.php:1445
872
+ #: contact_form.php:1447
873
  msgid "Please enter your full name..."
874
  msgstr "Vui lòng nhập tên đầy đủ của bạn..."
875
 
876
+ #: contact_form.php:1458
877
+ #: contact_form.php:1460
878
  msgid "Please enter your address..."
879
  msgstr "Vui lòng nhập địa chỉ của bạn..."
880
 
881
+ #: contact_form.php:1469
882
+ #: contact_form.php:1471
883
  msgid "Please enter your email address..."
884
  msgstr "Vui lòng nhập địa chỉ email của bạn..."
885
 
886
+ #: contact_form.php:1480
887
+ #: contact_form.php:1482
888
  msgid "Please enter your phone number..."
889
  msgstr "Vui lòng nhập số điện thoại của bạn..."
890
 
891
+ #: contact_form.php:1491
892
+ #: contact_form.php:1493
893
  msgid "Please enter subject..."
894
  msgstr "Vui lòng nhập Chủ đề..."
895
 
896
+ #: contact_form.php:1501
897
+ #: contact_form.php:1503
898
  msgid "Please enter your message..."
899
  msgstr "Vui lòng nhập tin nhắn của bạn..."
900
 
901
+ #: contact_form.php:1545
902
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
903
  msgstr ""
904
 
905
+ #: contact_form.php:1547
906
  msgid "Please, go to"
907
  msgstr ""
908
 
909
+ #: contact_form.php:1547
910
  #, fuzzy
911
  msgid "the setting page"
912
  msgstr "Cài đặt phụ"
913
 
914
+ #: contact_form.php:1548
915
  msgid "You will be redirected automatically in 5 seconds."
916
  msgstr ""
917
 
918
+ #: contact_form.php:1553
919
  msgid "You can download and activate"
920
  msgstr ""
921
 
922
+ #: contact_form.php:1555
923
  msgid "version of this plugin by entering Your license key."
924
  msgstr ""
925
 
926
+ #: contact_form.php:1557
927
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
928
  msgstr ""
929
 
930
+ #: contact_form.php:1559
931
  msgid "(your username is the email you specify when purchasing the product)."
932
  msgstr ""
933
 
934
+ #: contact_form.php:1567
935
+ #: contact_form.php:1577
936
  msgid "Go!"
937
  msgstr ""
938
 
939
+ #: contact_form.php:1647
940
  msgid "Sorry, email message could not be delivered."
941
  msgstr "Xin lỗi, không thể gửi được thư email."
942
 
943
+ #: contact_form.php:2053
944
  msgid "Contact from"
945
  msgstr "Liên hệ với từ"
946
 
947
+ #: contact_form.php:2066
948
+ #: contact_form.php:2092
949
  msgid "Email"
950
  msgstr "Thư điện tử"
951
 
952
+ #: contact_form.php:2070
953
+ #: contact_form.php:2094
954
  msgid "Phone"
955
  msgstr "Điện thoại"
956
 
957
+ #: contact_form.php:2079
958
+ #: contact_form.php:2097
959
  msgid "Site"
960
  msgstr "Trang web"
961
 
962
+ #: contact_form.php:2160
963
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
964
  msgstr "Nếu bạn có thể thấy MIME này, nó có nghĩa là rằng loại MIME không được hỗ trợ bởi ứng dụng email của bạn!"
965
 
966
+ #: contact_form.php:2229
967
  msgid "FAQ"
968
  msgstr "CÂU HỎI THƯỜNG GẶP"
969
 
970
+ #: contact_form.php:2230
971
  msgid "Support"
972
  msgstr "Hỗ trợ"
973
 
974
+ #: contact_form.php:2280
975
  msgid "Are you sure that you want to delete this language data?"
976
  msgstr "Bạn có chắc rằng bạn muốn xóa dữ liệu ngôn ngữ này không?"
977
 
978
+ #: contact_form.php:2476
979
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
980
  msgstr ""
981
 
982
+ #: contact_form.php:2477
983
  msgid "Extend standard plugin functionality with new great options."
984
  msgstr ""
985
 
986
+ #: contact_form.php:2492
987
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
988
  msgstr ""
989
 
990
+ #: contact_form.php:2493
991
  msgid "Manage messages that have been sent from your website."
992
  msgstr ""
993
 
994
+ #~ msgid ""
995
+ #~ "This functionality is available in the Pro version of the plugin. For "
996
+ #~ "more details, please follow the link"
997
+ #~ msgstr ""
998
+ #~ "Chức năng này có sẵn trong phiên bản Pro của plugin. Để biết thêm chi "
999
+ #~ "tiết, hãy làm theo các liên kết"
1000
+
1001
+ #~ msgid "Contact Form Pro"
1002
+ #~ msgstr "Liên hệ tạo thành Pro"
1003
+
1004
  #~ msgid "Contact Form Pro Extra Settings"
1005
  #~ msgstr "Liên hệ với hình thức cài đặt chuyên nghiệp phụ"
1006
 
languages/contact_form-zh_CN.mo CHANGED
Binary file
languages/contact_form-zh_CN.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: 2014-02-20 14:08+0300\n"
6
- "PO-Revision-Date: 2014-02-20 14:08+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: kplam <kplam@qq.com>\n"
9
  "Language: zh_CN\n"
@@ -16,958 +16,995 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:33
20
- #: contact_form.php:660
21
  msgid "Contact Form Settings"
22
  msgstr "联系表单设置"
23
 
24
- #: contact_form.php:33
25
  msgid "Contact Form"
26
  msgstr "联系表单"
27
 
28
- #: contact_form.php:80
29
- #: contact_form.php:978
30
- #: contact_form.php:1008
31
  msgid "Name:"
32
  msgstr "姓名:"
33
 
34
- #: contact_form.php:81
35
- #: contact_form.php:979
36
- #: contact_form.php:1009
37
  msgid "Address:"
38
  msgstr "地址:"
39
 
40
- #: contact_form.php:82
41
- #: contact_form.php:980
42
- #: contact_form.php:1010
43
  msgid "Email Address:"
44
  msgstr "电子邮箱:"
45
 
46
- #: contact_form.php:83
47
- #: contact_form.php:981
48
- #: contact_form.php:1011
49
  msgid "Phone number:"
50
  msgstr "电话:"
51
 
52
- #: contact_form.php:84
53
- #: contact_form.php:982
54
- #: contact_form.php:1012
55
  msgid "Subject:"
56
  msgstr "主题:"
57
 
58
- #: contact_form.php:85
59
- #: contact_form.php:983
60
- #: contact_form.php:1013
61
  msgid "Message:"
62
  msgstr "内容:"
63
 
64
- #: contact_form.php:86
65
- #: contact_form.php:984
66
- #: contact_form.php:1014
67
  msgid "Attachment:"
68
  msgstr "附件:"
69
 
70
- #: contact_form.php:87
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "支持的文件类型: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. 最大文件限制: 2MB"
73
 
74
- #: contact_form.php:88
75
- #: contact_form.php:986
76
- #: contact_form.php:1016
77
  msgid "Send me a copy"
78
  msgstr "抄送一份给我"
79
 
80
- #: contact_form.php:89
81
- #: contact_form.php:987
82
- #: contact_form.php:1017
83
  msgid "Submit"
84
  msgstr "提交"
85
 
86
- #: contact_form.php:90
87
  msgid "Your name is required."
88
  msgstr "姓名是必需的。"
89
 
90
- #: contact_form.php:91
91
  msgid "Address is required."
92
  msgstr "地址是必需的。"
93
 
94
- #: contact_form.php:92
95
  msgid "A valid email address is required."
96
  msgstr "一个有效的电子邮件地址是必需的。"
97
 
98
- #: contact_form.php:93
99
  msgid "Phone number is required."
100
  msgstr "电话号码是必需的。"
101
 
102
- #: contact_form.php:94
103
  msgid "Subject is required."
104
  msgstr "主题是必需的。"
105
 
106
- #: contact_form.php:95
107
  msgid "Message text is required."
108
  msgstr "内容是必需的。"
109
 
110
- #: contact_form.php:96
111
  msgid "File format is not valid."
112
  msgstr "文件格式是无效的。"
113
 
114
- #: contact_form.php:97
115
  msgid "File upload error."
116
  msgstr "文件上传错误。"
117
 
118
- #: contact_form.php:98
119
  msgid "The file could not be uploaded."
120
  msgstr "文件不能上传。"
121
 
122
- #: contact_form.php:99
123
  msgid "This file is too large."
124
  msgstr "此文件太大。"
125
 
126
- #: contact_form.php:100
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "请填写验证码。"
129
 
130
- #: contact_form.php:101
131
  msgid "Please make corrections below and try again."
132
  msgstr "请改正,然后再试一次。"
133
 
134
- #: contact_form.php:103
135
  msgid "Thank you for contacting us."
136
  msgstr "感谢您与我们联系。"
137
 
138
- #: contact_form.php:203
139
  msgid "requires"
140
  msgstr "必填"
141
 
142
- #: contact_form.php:203
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "或更高,这就是为什么它已停用!请升级WordPress和再试一次。"
145
 
146
- #: contact_form.php:203
147
  msgid "Back to the WordPress"
148
  msgstr "回到 WordPress"
149
 
150
- #: contact_form.php:203
151
  msgid "Plugins page"
152
  msgstr "插件页面"
153
 
154
- #: contact_form.php:494
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "如果'重定向到页面“选项被选中,那么URL字段应为以下格式。"
157
 
158
- #: contact_form.php:503
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "用户不存在。设置不被保存。"
161
 
162
- #: contact_form.php:507
163
- #: contact_form.php:513
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "请在“发件人”字段输入一个有效的电子邮件地址。设置不被保存。"
166
 
167
- #: contact_form.php:518
168
  msgid "Settings saved."
169
  msgstr "设置已保存。"
170
 
171
- #: contact_form.php:554
172
- #: contact_form.php:593
173
  msgid "Wrong license key"
174
  msgstr ""
175
 
176
- #: contact_form.php:586
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr ""
179
 
180
- #: contact_form.php:595
181
  msgid "This license key is bind to another site"
182
  msgstr ""
183
 
184
- #: contact_form.php:597
185
- #: contact_form.php:1392
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr ""
188
 
189
- #: contact_form.php:615
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr ""
192
 
193
- #: contact_form.php:621
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr ""
196
 
197
- #: contact_form.php:625
198
- #: contact_form.php:634
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
 
202
- #: contact_form.php:638
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr ""
205
 
206
- #: contact_form.php:653
207
  #, fuzzy
208
  msgid "Please, enter Your license key"
209
  msgstr "请输入你的信息"
210
 
211
- #: contact_form.php:662
212
- msgid "Notice:"
213
- msgstr ""
214
-
215
- #: contact_form.php:662
216
- msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
217
- msgstr ""
218
-
219
- #: contact_form.php:665
220
- #: contact_form.php:1997
221
- #: contact_form.php:2008
222
  msgid "Settings"
223
  msgstr "设置"
224
 
225
- #: contact_form.php:666
226
  msgid "Extra settings"
227
  msgstr "额外的设置"
228
 
229
- #: contact_form.php:667
230
  msgid "Go PRO"
231
  msgstr ""
232
 
233
- #: contact_form.php:673
234
- #: contact_form.php:1351
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  msgid "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:"
236
  msgstr "如果你想添加联系表单到你的网站,只需复制并粘贴短码到您的文章、页面或部件:"
237
 
238
- #: contact_form.php:673
239
- #: contact_form.php:674
240
- #: contact_form.php:1001
241
- #: contact_form.php:1050
 
 
 
 
242
  msgid "or"
243
  msgstr "或"
244
 
245
- #: contact_form.php:674
 
246
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
247
  msgstr "如果用标准短码[contact_form]遇到任何问题,你应该使用短代码"
248
 
249
- #: contact_form.php:675
 
250
  msgid "They work the same way."
251
  msgstr "他们的运作方式相同。"
252
 
253
- #: contact_form.php:676
 
254
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
255
  msgstr "如果你留下字段为空,消息将在注册过程中被发送到指定的电子邮件地址。"
256
 
257
- #: contact_form.php:680
258
  msgid "The user's email address:"
259
  msgstr "用户的电子邮件地址:"
260
 
261
- #: contact_form.php:684
262
  msgid "Create a username"
263
  msgstr "新建一个用户名"
264
 
265
- #: contact_form.php:689
266
  msgid "Enter a username of the person who should get the messages from the contact form."
267
  msgstr "请输入从联系的表单获得消息的人的名字。"
268
 
269
- #: contact_form.php:693
270
  msgid "Use this email address:"
271
  msgstr "使用这个邮箱地址:"
272
 
273
- #: contact_form.php:696
274
  msgid "Enter the email address you want the messages forwarded to."
275
  msgstr "输入你要转发消息的电子邮件地址。"
276
 
277
- #: contact_form.php:702
278
  msgid "Add department selectbox to the contact form:"
279
  msgstr "添加部门选择框到联系表单:"
280
 
281
- #: contact_form.php:710
282
- #: contact_form.php:1246
283
  msgid "If you upgrade to Pro version all your settings will be saved."
284
  msgstr ""
285
 
286
- #: contact_form.php:715
287
- #: contact_form.php:852
288
- #: contact_form.php:923
289
- #: contact_form.php:1096
290
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
291
- msgstr "此功能在Pro版本的插件可用。有关详细信息,请参考链接"
292
 
293
- #: contact_form.php:716
294
- #: contact_form.php:853
295
- #: contact_form.php:924
296
- #: contact_form.php:1097
297
- msgid "Contact Form Pro"
298
- msgstr "联系表格(Pro)"
 
 
299
 
300
- #: contact_form.php:722
 
 
 
 
 
 
 
301
  msgid "Save emails to the database"
302
  msgstr "将邮件保存到数据库"
303
 
304
- #: contact_form.php:732
305
  msgid "Using"
306
  msgstr ""
307
 
308
- #: contact_form.php:732
309
- #: contact_form.php:901
310
- #: contact_form.php:904
311
- #: contact_form.php:908
312
  msgid "powered by"
313
  msgstr "powered by"
314
 
315
- #: contact_form.php:735
316
- #: contact_form.php:739
317
  msgid "Using Contact Form to DB powered by"
318
  msgstr "使用联系表单到DB powered by"
319
 
320
- #: contact_form.php:735
321
  msgid "Activate Contact Form to DB"
322
  msgstr "激活联系表单到DB"
323
 
324
- #: contact_form.php:739
325
  msgid "Download Contact Form to DB"
326
  msgstr "下载联系表单到DB"
327
 
328
- #: contact_form.php:744
329
  msgid "Additional options"
330
  msgstr "附加选项"
331
 
332
- #: contact_form.php:746
333
  msgid "Show"
334
  msgstr "显示"
335
 
336
- #: contact_form.php:747
337
  msgid "Hide"
338
  msgstr "隐藏"
339
 
340
- #: contact_form.php:751
341
  msgid "What to use?"
342
  msgstr "使用什么呢?"
343
 
344
- #: contact_form.php:754
345
  msgid "Wp-mail"
346
  msgstr "Wp-mail"
347
 
348
- #: contact_form.php:754
349
  msgid "You can use the wp_mail function for mailing"
350
  msgstr "您可以使用wp_mail的邮件功能"
351
 
352
- #: contact_form.php:756
353
  msgid "Mail"
354
  msgstr "邮件"
355
 
356
- #: contact_form.php:756
357
  msgid "To send mail you can use the php mail function"
358
  msgstr "要发送邮件,可以使用PHP的邮件功能"
359
 
360
- #: contact_form.php:760
361
  msgid "The text in the 'From' field"
362
  msgstr "“发件人”字段中的文本"
363
 
364
- #: contact_form.php:762
365
  msgid "User name"
366
  msgstr "用户名"
367
 
368
- #: contact_form.php:763
369
  msgid "The name of the user who fills the form will be used in the field 'From'."
370
  msgstr "填充表单的用户的名字将被显示为'发件人'"
371
 
372
- #: contact_form.php:766
373
  msgid "This text will be used in the 'FROM' field"
374
  msgstr "此文字将用于 'FROM' 栏"
375
 
376
- #: contact_form.php:770
377
  msgid "The email address in the 'From' field"
378
  msgstr "“发件人”字段中的电子邮件地址"
379
 
380
- #: contact_form.php:772
381
  msgid "User email"
382
  msgstr "用户的电子邮件"
383
 
384
- #: contact_form.php:773
385
  msgid "The email address of the user who fills the form will be used in the field 'From'."
386
  msgstr "填充表单的用户的电子邮箱地址将被显示为'发件人'"
387
 
388
- #: contact_form.php:776
389
  msgid "This email address will be used in the 'From' field."
390
  msgstr "此电子邮件地址将被用于在“发件人”字段。"
391
 
392
- #: contact_form.php:780
393
  msgid "Required symbol"
394
  msgstr "必填符号"
395
 
396
- #: contact_form.php:790
397
  msgid "Fields"
398
  msgstr ""
399
 
400
- #: contact_form.php:791
401
  msgid "Used"
402
  msgstr ""
403
 
404
- #: contact_form.php:792
405
  #, fuzzy
406
  msgid "Required"
407
  msgstr "必填"
408
 
409
- #: contact_form.php:793
410
  msgid "Visible"
411
  msgstr ""
412
 
413
- #: contact_form.php:794
414
  msgid "Disabled for editing"
415
  msgstr ""
416
 
417
- #: contact_form.php:795
418
  msgid "Field's default value"
419
  msgstr ""
420
 
421
- #: contact_form.php:800
422
- #: contact_form.php:1121
423
- #: contact_form.php:1841
424
- #: contact_form.php:1871
425
  msgid "Name"
426
  msgstr "姓名"
427
 
428
- #: contact_form.php:808
429
- #: contact_form.php:1126
430
- #: contact_form.php:1845
431
- #: contact_form.php:1873
432
  msgid "Address"
433
  msgstr "地址"
434
 
435
- #: contact_form.php:816
436
  msgid "Email Address"
437
  msgstr "电子邮箱"
438
 
439
- #: contact_form.php:824
440
  #, fuzzy
441
  msgid "Phone number"
442
  msgstr "电话:"
443
 
444
- #: contact_form.php:832
445
- #: contact_form.php:1141
446
- #: contact_form.php:1855
447
- #: contact_form.php:1877
448
  msgid "Subject"
449
  msgstr "主题"
450
 
451
- #: contact_form.php:840
452
- #: contact_form.php:1145
453
- #: contact_form.php:1858
454
- #: contact_form.php:1878
455
  msgid "Message"
456
  msgstr "内容"
457
 
458
- #: contact_form.php:858
459
  msgid "Attachment block"
460
  msgstr "附件区块"
461
 
462
- #: contact_form.php:860
463
  msgid "Users can attach the following file formats"
464
  msgstr "用户可以将以下文件格式"
465
 
466
- #: contact_form.php:874
467
  msgid "Add to the form"
468
  msgstr ""
469
 
470
- #: contact_form.php:879
471
  #, fuzzy
472
  msgid "Tips below the Attachment"
473
  msgstr "下面的附件块的提示"
474
 
475
- #: contact_form.php:888
476
  #, fuzzy
477
  msgid "'Send me a copy' block"
478
  msgstr "显示'发送副本给我'区块"
479
 
480
- #: contact_form.php:901
481
- #: contact_form.php:904
482
- #: contact_form.php:908
483
- #: contact_form.php:1155
484
  msgid "Captcha"
485
  msgstr "Captcha"
486
 
487
- #: contact_form.php:904
488
  msgid "Activate captcha"
489
  msgstr "激活captcha"
490
 
491
- #: contact_form.php:908
492
  msgid "Download captcha"
493
  msgstr "下载captcha"
494
 
495
- #: contact_form.php:916
496
  msgid "Agreement checkbox"
497
  msgstr ""
498
 
499
- #: contact_form.php:916
500
  msgid "Required checkbox for submitting the form"
501
  msgstr ""
502
 
503
- #: contact_form.php:917
504
  msgid "Optional checkbox"
505
  msgstr ""
506
 
507
- #: contact_form.php:917
508
  msgid "Optional checkbox, the results of which will be displayed in email"
509
  msgstr ""
510
 
511
- #: contact_form.php:928
512
  msgid "Delete an attachment file from the server after the email is sent"
513
  msgstr "发送的电子邮件后从服务器删除附件文件"
514
 
515
- #: contact_form.php:934
516
  msgid "Email in HTML format sending"
517
  msgstr ""
518
 
519
- #: contact_form.php:938
520
  msgid "Display additional info in the email"
521
  msgstr "在电子邮件中显示附加信息"
522
 
523
- #: contact_form.php:943
524
- #: contact_form.php:1808
525
- #: contact_form.php:1810
526
  msgid "Sent from (ip address)"
527
  msgstr "发送(IP地址)"
528
 
529
- #: contact_form.php:943
530
  msgid "Example: Sent from (IP address):\t127.0.0.1"
531
  msgstr "例如: 发送 (IP地址):\t127.0.0.1"
532
 
533
- #: contact_form.php:944
534
- #: contact_form.php:1814
535
- #: contact_form.php:1816
536
  msgid "Date/Time"
537
  msgstr "日期/时间"
538
 
539
- #: contact_form.php:944
540
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
541
  msgstr "例如:日期/时间:\tAugust 19, 2013 8:50 pm"
542
 
543
- #: contact_form.php:945
544
- #: contact_form.php:1820
545
- #: contact_form.php:1822
546
  msgid "Sent from (referer)"
547
  msgstr "发送 (请求)"
548
 
549
- #: contact_form.php:945
550
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
551
  msgstr "示例:发送 (请求):\thttp://bestwebsoft.com/contacts/contact-us/"
552
 
553
- #: contact_form.php:946
554
- #: contact_form.php:1826
555
- #: contact_form.php:1828
556
  msgid "Using (user agent)"
557
  msgstr "使用(用户代理)"
558
 
559
- #: contact_form.php:946
560
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
561
  msgstr "示例:使用(用户代理):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
562
 
563
- #: contact_form.php:950
564
  msgid "Language settings for the field names in the form"
565
  msgstr "表单中的字段名语言设置"
566
 
567
- #: contact_form.php:959
568
  msgid "Add a language"
569
  msgstr "添加一种语言"
570
 
571
- #: contact_form.php:963
572
  msgid "Change the names of the contact form fields and error messages"
573
  msgstr "更改联系表单字段和错误消息和名称"
574
 
575
- #: contact_form.php:968
576
- #: contact_form.php:1041
577
  msgid "English"
578
  msgstr "英语"
579
 
580
- #: contact_form.php:976
581
- #: contact_form.php:1006
582
  msgid "click to expand/hide the list"
583
  msgstr ""
584
 
585
- #: contact_form.php:985
586
- #: contact_form.php:1015
587
  msgid "Tips below the Attachment block"
588
  msgstr "下面的附件块的提示"
589
 
590
- #: contact_form.php:988
591
- #: contact_form.php:1018
592
  msgid "Error message for the Name field"
593
  msgstr "“姓名”字段中的错误消息"
594
 
595
- #: contact_form.php:989
596
- #: contact_form.php:1019
597
  msgid "Error message for the Address field"
598
  msgstr "“地址”字段的错误信息"
599
 
600
- #: contact_form.php:990
601
- #: contact_form.php:1020
602
  msgid "Error message for the Email field"
603
  msgstr "“电子邮件”字段的错误消息"
604
 
605
- #: contact_form.php:991
606
- #: contact_form.php:1021
607
  msgid "Error message for the Phone field"
608
  msgstr "“电话”字段的错误信息"
609
 
610
- #: contact_form.php:992
611
- #: contact_form.php:1022
612
  msgid "Error message for the Subject field"
613
  msgstr "“主题”字段的错误消息"
614
 
615
- #: contact_form.php:993
616
- #: contact_form.php:1023
617
  msgid "Error message for the Message field"
618
  msgstr "“消息”字段的错误消息"
619
 
620
- #: contact_form.php:994
621
- #: contact_form.php:1024
622
  msgid "Error message about the file type for the Attachment field"
623
  msgstr "附件栏的文件类型错误讯息"
624
 
625
- #: contact_form.php:995
626
- #: contact_form.php:1025
627
  msgid "Error message while uploading a file for the Attachment field to the server"
628
  msgstr "从附件栏上传一个文件到服务器的错误信息"
629
 
630
- #: contact_form.php:996
631
- #: contact_form.php:1026
632
  msgid "Error message while moving the file for the Attachment field"
633
  msgstr "从附件栏移动文件的错误信息"
634
 
635
- #: contact_form.php:997
636
- #: contact_form.php:1027
637
  msgid "Error message when file size limit for the Attachment field is exceeded"
638
  msgstr "超过文件大小限制附件字段时出现错误消息"
639
 
640
- #: contact_form.php:998
641
- #: contact_form.php:1028
642
  msgid "Error message for the Captcha field"
643
  msgstr "Captcha字段的错误消息"
644
 
645
- #: contact_form.php:999
646
- #: contact_form.php:1029
647
  msgid "Error message for the whole form"
648
  msgstr "整个表单的错误消息"
649
 
650
- #: contact_form.php:1001
651
- #: contact_form.php:1031
652
- #: contact_form.php:1050
653
- #: contact_form.php:1056
 
 
 
 
654
  msgid "Use shortcode"
655
  msgstr "使用简码"
656
 
657
- #: contact_form.php:1001
658
- #: contact_form.php:1031
659
- #: contact_form.php:1050
660
- #: contact_form.php:1056
 
 
 
 
661
  msgid "for this language"
662
  msgstr "此语言"
663
 
664
- #: contact_form.php:1038
665
  msgid "Action after email is sent"
666
  msgstr "发送电子邮件后行动"
667
 
668
- #: contact_form.php:1040
669
  msgid "Display text"
670
  msgstr "显示文本"
671
 
672
- #: contact_form.php:1049
673
- #: contact_form.php:1055
674
  msgid "Text"
675
  msgstr "文本"
676
 
677
- #: contact_form.php:1062
678
  msgid "Redirect to the page"
679
  msgstr "重定向到的页面"
680
 
681
- #: contact_form.php:1063
682
  msgid "Url"
683
  msgstr "Url"
684
 
685
- #: contact_form.php:1067
686
  msgid "The $_SERVER variable that is used to build a URL of the form"
687
  msgstr ""
688
 
689
- #: contact_form.php:1071
690
  msgid "If you are not sure whether to change this setting or not, please do not do that."
691
  msgstr ""
692
 
693
- #: contact_form.php:1077
694
- #: contact_form.php:1252
695
  msgid "Save Changes"
696
  msgstr "保存更改"
697
 
698
- #: contact_form.php:1082
699
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
700
  msgstr ""
701
 
702
- #: contact_form.php:1083
703
  #, fuzzy
704
  msgid "Rate the plugin"
705
  msgstr "Рекомендовані плагіни"
706
 
707
- #: contact_form.php:1086
708
  #, fuzzy
709
  msgid "If there is something wrong about it, please contact us"
710
  msgstr "Якщо у вас є запитання, звертайтесь на plugin@bestwebsoft.com або заповніть контактну форму на нашому сайті"
711
 
712
- #: contact_form.php:1101
713
  msgid "Errors output"
714
  msgstr "错误输出"
715
 
716
- #: contact_form.php:1104
717
  msgid "Display error messages"
718
  msgstr "显示错误消息"
719
 
720
- #: contact_form.php:1105
721
  msgid "Color of the input field errors."
722
  msgstr "输入栏错误的颜色。"
723
 
724
- #: contact_form.php:1106
725
  msgid "Display error messages & color of the input field errors"
726
  msgstr "显示输入栏错误的错误消息和颜色"
727
 
728
- #: contact_form.php:1111
729
  msgid "Add placeholder to the input blocks"
730
  msgstr "添加占位符输入块"
731
 
732
- #: contact_form.php:1117
733
  msgid "Add tooltips"
734
  msgstr "添加工具提示"
735
 
736
- #: contact_form.php:1131
737
  msgid "Email address"
738
  msgstr "电子邮箱"
739
 
740
- #: contact_form.php:1136
741
  msgid "Phone Number"
742
  msgstr "电话号码"
743
 
744
- #: contact_form.php:1150
745
  msgid "Attachment"
746
  msgstr "附件"
747
 
748
- #: contact_form.php:1155
749
  msgid "(powered by bestwebsoft.com)"
750
  msgstr "(powered by bestwebsoft.com)"
751
 
752
- #: contact_form.php:1160
753
  msgid "Style options"
754
  msgstr "风格选择"
755
 
756
- #: contact_form.php:1163
757
  msgid "Text color"
758
  msgstr "文字颜色"
759
 
760
- #: contact_form.php:1166
761
- #: contact_form.php:1171
762
- #: contact_form.php:1181
763
- #: contact_form.php:1186
764
- #: contact_form.php:1191
765
- #: contact_form.php:1196
766
- #: contact_form.php:1206
767
- #: contact_form.php:1211
768
- #: contact_form.php:1217
769
- #: contact_form.php:1228
770
- #: contact_form.php:1233
771
- #: contact_form.php:1238
772
  msgid "Default"
773
  msgstr "默认"
774
 
775
- #: contact_form.php:1168
776
  msgid "Label text color"
777
  msgstr "标签文字颜色"
778
 
779
- #: contact_form.php:1173
780
  msgid "Placeholder color"
781
  msgstr "占位符的颜色"
782
 
783
- #: contact_form.php:1178
784
  msgid "Errors color"
785
  msgstr "错误颜色"
786
 
787
- #: contact_form.php:1183
788
  msgid "Error text color"
789
  msgstr "错误文字颜色"
790
 
791
- #: contact_form.php:1188
792
  msgid "Background color of the input field errors"
793
  msgstr "输入栏错误的背景颜色"
794
 
795
- #: contact_form.php:1193
796
  msgid "Border color of the input field errors"
797
  msgstr "输入栏错误的边框颜色"
798
 
799
- #: contact_form.php:1198
800
  msgid "Placeholder color of the input field errors"
801
  msgstr "输入栏错误的占位符颜色"
802
 
803
- #: contact_form.php:1203
804
  msgid "Input fields"
805
  msgstr "输入栏"
806
 
807
- #: contact_form.php:1208
808
  msgid "Input fields background color"
809
  msgstr "输入栏的背景颜色"
810
 
811
- #: contact_form.php:1213
812
  msgid "Text fields color"
813
  msgstr "文本字段颜色"
814
 
815
- #: contact_form.php:1215
816
  msgid "Border width in px, numbers only"
817
  msgstr "边框宽度(像素,数字)"
818
 
819
- #: contact_form.php:1219
820
- #: contact_form.php:1240
821
  msgid "Border color"
822
  msgstr "边框颜色"
823
 
824
- #: contact_form.php:1224
825
  msgid "Submit button"
826
  msgstr "“提交”按钮"
827
 
828
- #: contact_form.php:1226
829
  msgid "Width in px, numbers only"
830
  msgstr "Width in px, numbers only"
831
 
832
- #: contact_form.php:1230
833
  msgid "Button color"
834
  msgstr "按钮的颜色"
835
 
836
- #: contact_form.php:1235
837
  msgid "Button text color"
838
  msgstr "按钮的文字颜色"
839
 
840
- #: contact_form.php:1256
841
  msgid "Contact Form Pro | Preview"
842
  msgstr "联系表单(Pro) | 预览"
843
 
844
- #: contact_form.php:1259
845
  msgid "Show with errors"
846
  msgstr "显示错误"
847
 
848
- #: contact_form.php:1267
849
- #: contact_form.php:1269
850
  msgid "Please enter your full name..."
851
  msgstr "请输入您的全名..."
852
 
853
- #: contact_form.php:1280
854
- #: contact_form.php:1282
855
  msgid "Please enter your address..."
856
  msgstr "请输入您的地址..."
857
 
858
- #: contact_form.php:1291
859
- #: contact_form.php:1293
860
  msgid "Please enter your email address..."
861
  msgstr "请输入你的电子邮件地址..."
862
 
863
- #: contact_form.php:1302
864
- #: contact_form.php:1304
865
  msgid "Please enter your phone number..."
866
  msgstr "请输入你的手机号码..."
867
 
868
- #: contact_form.php:1313
869
- #: contact_form.php:1315
870
  msgid "Please enter subject..."
871
  msgstr "请输入主题..."
872
 
873
- #: contact_form.php:1323
874
- #: contact_form.php:1325
875
  msgid "Please enter your message..."
876
  msgstr "请输入你的信息"
877
 
878
- #: contact_form.php:1367
879
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
880
  msgstr ""
881
 
882
- #: contact_form.php:1369
883
  msgid "Please, go to"
884
  msgstr ""
885
 
886
- #: contact_form.php:1369
887
  #, fuzzy
888
  msgid "the setting page"
889
  msgstr "额外的设置"
890
 
891
- #: contact_form.php:1370
892
  msgid "You will be redirected automatically in 5 seconds."
893
  msgstr ""
894
 
895
- #: contact_form.php:1375
896
  msgid "You can download and activate"
897
  msgstr ""
898
 
899
- #: contact_form.php:1377
900
  msgid "version of this plugin by entering Your license key."
901
  msgstr ""
902
 
903
- #: contact_form.php:1379
904
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
905
  msgstr ""
906
 
907
- #: contact_form.php:1381
908
  msgid "(your username is the email you specify when purchasing the product)."
909
  msgstr ""
910
 
911
- #: contact_form.php:1389
912
- #: contact_form.php:1399
913
  msgid "Go!"
914
  msgstr ""
915
 
916
- #: contact_form.php:1449
917
  msgid "Sorry, email message could not be delivered."
918
  msgstr "对不起,电子邮件讯息无法传递。"
919
 
920
- #: contact_form.php:1835
921
  msgid "Contact from"
922
  msgstr "联系表单"
923
 
924
- #: contact_form.php:1848
925
- #: contact_form.php:1874
926
  msgid "Email"
927
  msgstr "邮箱"
928
 
929
- #: contact_form.php:1852
930
- #: contact_form.php:1876
931
  msgid "Phone"
932
  msgstr "电话"
933
 
934
- #: contact_form.php:1861
935
- #: contact_form.php:1879
936
  msgid "Site"
937
  msgstr "站点"
938
 
939
- #: contact_form.php:1941
940
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
941
  msgstr "如果你能看到这个MIME,这意味着你的电子邮件客户端不支持该MIME类型!"
942
 
943
- #: contact_form.php:2009
944
  msgid "FAQ"
945
  msgstr "常问问题"
946
 
947
- #: contact_form.php:2010
948
  msgid "Support"
949
  msgstr "支持"
950
 
951
- #: contact_form.php:2068
952
  msgid "Are you sure that you want to delete this language data?"
953
  msgstr "您确定要删除此语言数据吗"
954
 
955
- #: contact_form.php:2223
956
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
957
  msgstr ""
958
 
959
- #: contact_form.php:2224
960
  msgid "Extend standard plugin functionality with new great options."
961
  msgstr ""
962
 
963
- #: contact_form.php:2233
964
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
965
  msgstr ""
966
 
967
- #: contact_form.php:2234
968
  msgid "Manage messages that have been sent from your website."
969
  msgstr ""
970
 
 
 
 
 
 
 
 
 
971
  #~ msgid "Contact Form Pro Extra Settings"
972
  #~ msgstr "联系表单(Pro)的额外设置"
973
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-14 15:41+0300\n"
6
+ "PO-Revision-Date: 2014-04-14 15:41+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: kplam <kplam@qq.com>\n"
9
  "Language: zh_CN\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:73
20
+ #: contact_form.php:785
21
  msgid "Contact Form Settings"
22
  msgstr "联系表单设置"
23
 
24
+ #: contact_form.php:73
25
  msgid "Contact Form"
26
  msgstr "联系表单"
27
 
28
+ #: contact_form.php:149
29
+ #: contact_form.php:1131
30
+ #: contact_form.php:1165
31
  msgid "Name:"
32
  msgstr "姓名:"
33
 
34
+ #: contact_form.php:150
35
+ #: contact_form.php:1132
36
+ #: contact_form.php:1166
37
  msgid "Address:"
38
  msgstr "地址:"
39
 
40
+ #: contact_form.php:151
41
+ #: contact_form.php:1133
42
+ #: contact_form.php:1167
43
  msgid "Email Address:"
44
  msgstr "电子邮箱:"
45
 
46
+ #: contact_form.php:152
47
+ #: contact_form.php:1134
48
+ #: contact_form.php:1168
49
  msgid "Phone number:"
50
  msgstr "电话:"
51
 
52
+ #: contact_form.php:153
53
+ #: contact_form.php:1135
54
+ #: contact_form.php:1169
55
  msgid "Subject:"
56
  msgstr "主题:"
57
 
58
+ #: contact_form.php:154
59
+ #: contact_form.php:1136
60
+ #: contact_form.php:1170
61
  msgid "Message:"
62
  msgstr "内容:"
63
 
64
+ #: contact_form.php:155
65
+ #: contact_form.php:1137
66
+ #: contact_form.php:1171
67
  msgid "Attachment:"
68
  msgstr "附件:"
69
 
70
+ #: contact_form.php:156
71
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
  msgstr "支持的文件类型: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. 最大文件限制: 2MB"
73
 
74
+ #: contact_form.php:157
75
+ #: contact_form.php:1139
76
+ #: contact_form.php:1173
77
  msgid "Send me a copy"
78
  msgstr "抄送一份给我"
79
 
80
+ #: contact_form.php:158
81
+ #: contact_form.php:1140
82
+ #: contact_form.php:1174
83
  msgid "Submit"
84
  msgstr "提交"
85
 
86
+ #: contact_form.php:159
87
  msgid "Your name is required."
88
  msgstr "姓名是必需的。"
89
 
90
+ #: contact_form.php:160
91
  msgid "Address is required."
92
  msgstr "地址是必需的。"
93
 
94
+ #: contact_form.php:161
95
  msgid "A valid email address is required."
96
  msgstr "一个有效的电子邮件地址是必需的。"
97
 
98
+ #: contact_form.php:162
99
  msgid "Phone number is required."
100
  msgstr "电话号码是必需的。"
101
 
102
+ #: contact_form.php:163
103
  msgid "Subject is required."
104
  msgstr "主题是必需的。"
105
 
106
+ #: contact_form.php:164
107
  msgid "Message text is required."
108
  msgstr "内容是必需的。"
109
 
110
+ #: contact_form.php:165
111
  msgid "File format is not valid."
112
  msgstr "文件格式是无效的。"
113
 
114
+ #: contact_form.php:166
115
  msgid "File upload error."
116
  msgstr "文件上传错误。"
117
 
118
+ #: contact_form.php:167
119
  msgid "The file could not be uploaded."
120
  msgstr "文件不能上传。"
121
 
122
+ #: contact_form.php:168
123
  msgid "This file is too large."
124
  msgstr "此文件太大。"
125
 
126
+ #: contact_form.php:169
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "请填写验证码。"
129
 
130
+ #: contact_form.php:170
131
  msgid "Please make corrections below and try again."
132
  msgstr "请改正,然后再试一次。"
133
 
134
+ #: contact_form.php:172
135
  msgid "Thank you for contacting us."
136
  msgstr "感谢您与我们联系。"
137
 
138
+ #: contact_form.php:322
139
  msgid "requires"
140
  msgstr "必填"
141
 
142
+ #: contact_form.php:322
143
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
  msgstr "或更高,这就是为什么它已停用!请升级WordPress和再试一次。"
145
 
146
+ #: contact_form.php:322
147
  msgid "Back to the WordPress"
148
  msgstr "回到 WordPress"
149
 
150
+ #: contact_form.php:322
151
  msgid "Plugins page"
152
  msgstr "插件页面"
153
 
154
+ #: contact_form.php:626
155
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
  msgstr "如果'重定向到页面“选项被选中,那么URL字段应为以下格式。"
157
 
158
+ #: contact_form.php:635
159
  msgid "Such user does not exist. Settings are not saved."
160
  msgstr "用户不存在。设置不被保存。"
161
 
162
+ #: contact_form.php:639
163
+ #: contact_form.php:645
164
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
  msgstr "请在“发件人”字段输入一个有效的电子邮件地址。设置不被保存。"
166
 
167
+ #: contact_form.php:661
168
  msgid "Settings saved."
169
  msgstr "设置已保存。"
170
 
171
+ #: contact_form.php:688
172
+ #: contact_form.php:720
173
  msgid "Wrong license key"
174
  msgstr ""
175
 
176
+ #: contact_form.php:713
177
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
  msgstr ""
179
 
180
+ #: contact_form.php:722
181
  msgid "This license key is bind to another site"
182
  msgstr ""
183
 
184
+ #: contact_form.php:724
185
+ #: contact_form.php:1570
186
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
  msgstr ""
188
 
189
+ #: contact_form.php:741
190
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
  msgstr ""
192
 
193
+ #: contact_form.php:747
194
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
  msgstr ""
196
 
197
+ #: contact_form.php:751
198
+ #: contact_form.php:760
199
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
 
202
+ #: contact_form.php:764
203
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
  msgstr ""
205
 
206
+ #: contact_form.php:779
207
  #, fuzzy
208
  msgid "Please, enter Your license key"
209
  msgstr "请输入你的信息"
210
 
211
+ #: contact_form.php:787
212
+ #: contact_form.php:2216
213
+ #: contact_form.php:2228
 
 
 
 
 
 
 
 
214
  msgid "Settings"
215
  msgstr "设置"
216
 
217
+ #: contact_form.php:788
218
  msgid "Extra settings"
219
  msgstr "额外的设置"
220
 
221
+ #: contact_form.php:789
222
  msgid "Go PRO"
223
  msgstr ""
224
 
225
+ #: contact_form.php:792
226
+ msgid "Notice:"
227
+ msgstr ""
228
+
229
+ #: contact_form.php:792
230
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
231
+ msgstr ""
232
+
233
+ #: contact_form.php:798
234
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
235
+ msgstr ""
236
+
237
+ #: contact_form.php:804
238
+ #: contact_form.php:809
239
+ #: contact_form.php:1529
240
  msgid "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:"
241
  msgstr "如果你想添加联系表单到你的网站,只需复制并粘贴短码到您的文章、页面或部件:"
242
 
243
+ #: contact_form.php:804
244
+ #: contact_form.php:805
245
+ #: contact_form.php:809
246
+ #: contact_form.php:810
247
+ #: contact_form.php:1155
248
+ #: contact_form.php:1157
249
+ #: contact_form.php:1212
250
+ #: contact_form.php:1214
251
  msgid "or"
252
  msgstr "或"
253
 
254
+ #: contact_form.php:805
255
+ #: contact_form.php:810
256
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
257
  msgstr "如果用标准短码[contact_form]遇到任何问题,你应该使用短代码"
258
 
259
+ #: contact_form.php:806
260
+ #: contact_form.php:811
261
  msgid "They work the same way."
262
  msgstr "他们的运作方式相同。"
263
 
264
+ #: contact_form.php:807
265
+ #: contact_form.php:812
266
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
267
  msgstr "如果你留下字段为空,消息将在注册过程中被发送到指定的电子邮件地址。"
268
 
269
+ #: contact_form.php:817
270
  msgid "The user's email address:"
271
  msgstr "用户的电子邮件地址:"
272
 
273
+ #: contact_form.php:821
274
  msgid "Create a username"
275
  msgstr "新建一个用户名"
276
 
277
+ #: contact_form.php:828
278
  msgid "Enter a username of the person who should get the messages from the contact form."
279
  msgstr "请输入从联系的表单获得消息的人的名字。"
280
 
281
+ #: contact_form.php:832
282
  msgid "Use this email address:"
283
  msgstr "使用这个邮箱地址:"
284
 
285
+ #: contact_form.php:835
286
  msgid "Enter the email address you want the messages forwarded to."
287
  msgstr "输入你要转发消息的电子邮件地址。"
288
 
289
+ #: contact_form.php:844
290
  msgid "Add department selectbox to the contact form:"
291
  msgstr "添加部门选择框到联系表单:"
292
 
293
+ #: contact_form.php:852
294
+ #: contact_form.php:1412
295
  msgid "If you upgrade to Pro version all your settings will be saved."
296
  msgstr ""
297
 
298
+ #: contact_form.php:859
299
+ #: contact_form.php:997
300
+ #: contact_form.php:1071
301
+ #: contact_form.php:1419
302
+ msgid "Unlock premium options by upgrading to a PRO version."
303
+ msgstr ""
304
 
305
+ #: contact_form.php:860
306
+ #: contact_form.php:998
307
+ #: contact_form.php:1072
308
+ #: contact_form.php:1420
309
+ #: contact_form.php:2473
310
+ #: contact_form.php:2489
311
+ msgid "Learn More"
312
+ msgstr ""
313
 
314
+ #: contact_form.php:863
315
+ #: contact_form.php:1001
316
+ #: contact_form.php:1075
317
+ #: contact_form.php:1423
318
+ msgid "Go"
319
+ msgstr ""
320
+
321
+ #: contact_form.php:870
322
  msgid "Save emails to the database"
323
  msgstr "将邮件保存到数据库"
324
 
325
+ #: contact_form.php:876
326
  msgid "Using"
327
  msgstr ""
328
 
329
+ #: contact_form.php:876
330
+ #: contact_form.php:1048
331
+ #: contact_form.php:1051
332
+ #: contact_form.php:1055
333
  msgid "powered by"
334
  msgstr "powered by"
335
 
336
+ #: contact_form.php:879
337
+ #: contact_form.php:883
338
  msgid "Using Contact Form to DB powered by"
339
  msgstr "使用联系表单到DB powered by"
340
 
341
+ #: contact_form.php:879
342
  msgid "Activate Contact Form to DB"
343
  msgstr "激活联系表单到DB"
344
 
345
+ #: contact_form.php:883
346
  msgid "Download Contact Form to DB"
347
  msgstr "下载联系表单到DB"
348
 
349
+ #: contact_form.php:888
350
  msgid "Additional options"
351
  msgstr "附加选项"
352
 
353
+ #: contact_form.php:890
354
  msgid "Show"
355
  msgstr "显示"
356
 
357
+ #: contact_form.php:891
358
  msgid "Hide"
359
  msgstr "隐藏"
360
 
361
+ #: contact_form.php:895
362
  msgid "What to use?"
363
  msgstr "使用什么呢?"
364
 
365
+ #: contact_form.php:898
366
  msgid "Wp-mail"
367
  msgstr "Wp-mail"
368
 
369
+ #: contact_form.php:898
370
  msgid "You can use the wp_mail function for mailing"
371
  msgstr "您可以使用wp_mail的邮件功能"
372
 
373
+ #: contact_form.php:900
374
  msgid "Mail"
375
  msgstr "邮件"
376
 
377
+ #: contact_form.php:900
378
  msgid "To send mail you can use the php mail function"
379
  msgstr "要发送邮件,可以使用PHP的邮件功能"
380
 
381
+ #: contact_form.php:904
382
  msgid "The text in the 'From' field"
383
  msgstr "“发件人”字段中的文本"
384
 
385
+ #: contact_form.php:906
386
  msgid "User name"
387
  msgstr "用户名"
388
 
389
+ #: contact_form.php:907
390
  msgid "The name of the user who fills the form will be used in the field 'From'."
391
  msgstr "填充表单的用户的名字将被显示为'发件人'"
392
 
393
+ #: contact_form.php:910
394
  msgid "This text will be used in the 'FROM' field"
395
  msgstr "此文字将用于 'FROM' 栏"
396
 
397
+ #: contact_form.php:914
398
  msgid "The email address in the 'From' field"
399
  msgstr "“发件人”字段中的电子邮件地址"
400
 
401
+ #: contact_form.php:916
402
  msgid "User email"
403
  msgstr "用户的电子邮件"
404
 
405
+ #: contact_form.php:917
406
  msgid "The email address of the user who fills the form will be used in the field 'From'."
407
  msgstr "填充表单的用户的电子邮箱地址将被显示为'发件人'"
408
 
409
+ #: contact_form.php:920
410
  msgid "This email address will be used in the 'From' field."
411
  msgstr "此电子邮件地址将被用于在“发件人”字段。"
412
 
413
+ #: contact_form.php:924
414
  msgid "Required symbol"
415
  msgstr "必填符号"
416
 
417
+ #: contact_form.php:934
418
  msgid "Fields"
419
  msgstr ""
420
 
421
+ #: contact_form.php:935
422
  msgid "Used"
423
  msgstr ""
424
 
425
+ #: contact_form.php:936
426
  #, fuzzy
427
  msgid "Required"
428
  msgstr "必填"
429
 
430
+ #: contact_form.php:937
431
  msgid "Visible"
432
  msgstr ""
433
 
434
+ #: contact_form.php:938
435
  msgid "Disabled for editing"
436
  msgstr ""
437
 
438
+ #: contact_form.php:939
439
  msgid "Field's default value"
440
  msgstr ""
441
 
442
+ #: contact_form.php:944
443
+ #: contact_form.php:1287
444
+ #: contact_form.php:2059
445
+ #: contact_form.php:2089
446
  msgid "Name"
447
  msgstr "姓名"
448
 
449
+ #: contact_form.php:952
450
+ #: contact_form.php:1292
451
+ #: contact_form.php:2063
452
+ #: contact_form.php:2091
453
  msgid "Address"
454
  msgstr "地址"
455
 
456
+ #: contact_form.php:960
457
  msgid "Email Address"
458
  msgstr "电子邮箱"
459
 
460
+ #: contact_form.php:968
461
  #, fuzzy
462
  msgid "Phone number"
463
  msgstr "电话:"
464
 
465
+ #: contact_form.php:976
466
+ #: contact_form.php:1307
467
+ #: contact_form.php:2073
468
+ #: contact_form.php:2095
469
  msgid "Subject"
470
  msgstr "主题"
471
 
472
+ #: contact_form.php:984
473
+ #: contact_form.php:1311
474
+ #: contact_form.php:2076
475
+ #: contact_form.php:2096
476
  msgid "Message"
477
  msgstr "内容"
478
 
479
+ #: contact_form.php:1008
480
  msgid "Attachment block"
481
  msgstr "附件区块"
482
 
483
+ #: contact_form.php:1010
484
  msgid "Users can attach the following file formats"
485
  msgstr "用户可以将以下文件格式"
486
 
487
+ #: contact_form.php:1023
488
  msgid "Add to the form"
489
  msgstr ""
490
 
491
+ #: contact_form.php:1028
492
  #, fuzzy
493
  msgid "Tips below the Attachment"
494
  msgstr "下面的附件块的提示"
495
 
496
+ #: contact_form.php:1037
497
  #, fuzzy
498
  msgid "'Send me a copy' block"
499
  msgstr "显示'发送副本给我'区块"
500
 
501
+ #: contact_form.php:1048
502
+ #: contact_form.php:1051
503
+ #: contact_form.php:1055
504
+ #: contact_form.php:1321
505
  msgid "Captcha"
506
  msgstr "Captcha"
507
 
508
+ #: contact_form.php:1051
509
  msgid "Activate captcha"
510
  msgstr "激活captcha"
511
 
512
+ #: contact_form.php:1055
513
  msgid "Download captcha"
514
  msgstr "下载captcha"
515
 
516
+ #: contact_form.php:1063
517
  msgid "Agreement checkbox"
518
  msgstr ""
519
 
520
+ #: contact_form.php:1063
521
  msgid "Required checkbox for submitting the form"
522
  msgstr ""
523
 
524
+ #: contact_form.php:1064
525
  msgid "Optional checkbox"
526
  msgstr ""
527
 
528
+ #: contact_form.php:1064
529
  msgid "Optional checkbox, the results of which will be displayed in email"
530
  msgstr ""
531
 
532
+ #: contact_form.php:1081
533
  msgid "Delete an attachment file from the server after the email is sent"
534
  msgstr "发送的电子邮件后从服务器删除附件文件"
535
 
536
+ #: contact_form.php:1087
537
  msgid "Email in HTML format sending"
538
  msgstr ""
539
 
540
+ #: contact_form.php:1091
541
  msgid "Display additional info in the email"
542
  msgstr "在电子邮件中显示附加信息"
543
 
544
+ #: contact_form.php:1096
545
+ #: contact_form.php:2026
546
+ #: contact_form.php:2028
547
  msgid "Sent from (ip address)"
548
  msgstr "发送(IP地址)"
549
 
550
+ #: contact_form.php:1096
551
  msgid "Example: Sent from (IP address):\t127.0.0.1"
552
  msgstr "例如: 发送 (IP地址):\t127.0.0.1"
553
 
554
+ #: contact_form.php:1097
555
+ #: contact_form.php:2032
556
+ #: contact_form.php:2034
557
  msgid "Date/Time"
558
  msgstr "日期/时间"
559
 
560
+ #: contact_form.php:1097
561
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
562
  msgstr "例如:日期/时间:\tAugust 19, 2013 8:50 pm"
563
 
564
+ #: contact_form.php:1098
565
+ #: contact_form.php:2038
566
+ #: contact_form.php:2040
567
  msgid "Sent from (referer)"
568
  msgstr "发送 (请求)"
569
 
570
+ #: contact_form.php:1098
571
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
572
  msgstr "示例:发送 (请求):\thttp://bestwebsoft.com/contacts/contact-us/"
573
 
574
+ #: contact_form.php:1099
575
+ #: contact_form.php:2044
576
+ #: contact_form.php:2046
577
  msgid "Using (user agent)"
578
  msgstr "使用(用户代理)"
579
 
580
+ #: contact_form.php:1099
581
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
582
  msgstr "示例:使用(用户代理):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
583
 
584
+ #: contact_form.php:1103
585
  msgid "Language settings for the field names in the form"
586
  msgstr "表单中的字段名语言设置"
587
 
588
+ #: contact_form.php:1112
589
  msgid "Add a language"
590
  msgstr "添加一种语言"
591
 
592
+ #: contact_form.php:1116
593
  msgid "Change the names of the contact form fields and error messages"
594
  msgstr "更改联系表单字段和错误消息和名称"
595
 
596
+ #: contact_form.php:1121
597
+ #: contact_form.php:1202
598
  msgid "English"
599
  msgstr "英语"
600
 
601
+ #: contact_form.php:1129
602
+ #: contact_form.php:1163
603
  msgid "click to expand/hide the list"
604
  msgstr ""
605
 
606
+ #: contact_form.php:1138
607
+ #: contact_form.php:1172
608
  msgid "Tips below the Attachment block"
609
  msgstr "下面的附件块的提示"
610
 
611
+ #: contact_form.php:1141
612
+ #: contact_form.php:1175
613
  msgid "Error message for the Name field"
614
  msgstr "“姓名”字段中的错误消息"
615
 
616
+ #: contact_form.php:1142
617
+ #: contact_form.php:1176
618
  msgid "Error message for the Address field"
619
  msgstr "“地址”字段的错误信息"
620
 
621
+ #: contact_form.php:1143
622
+ #: contact_form.php:1177
623
  msgid "Error message for the Email field"
624
  msgstr "“电子邮件”字段的错误消息"
625
 
626
+ #: contact_form.php:1144
627
+ #: contact_form.php:1178
628
  msgid "Error message for the Phone field"
629
  msgstr "“电话”字段的错误信息"
630
 
631
+ #: contact_form.php:1145
632
+ #: contact_form.php:1179
633
  msgid "Error message for the Subject field"
634
  msgstr "“主题”字段的错误消息"
635
 
636
+ #: contact_form.php:1146
637
+ #: contact_form.php:1180
638
  msgid "Error message for the Message field"
639
  msgstr "“消息”字段的错误消息"
640
 
641
+ #: contact_form.php:1147
642
+ #: contact_form.php:1181
643
  msgid "Error message about the file type for the Attachment field"
644
  msgstr "附件栏的文件类型错误讯息"
645
 
646
+ #: contact_form.php:1148
647
+ #: contact_form.php:1182
648
  msgid "Error message while uploading a file for the Attachment field to the server"
649
  msgstr "从附件栏上传一个文件到服务器的错误信息"
650
 
651
+ #: contact_form.php:1149
652
+ #: contact_form.php:1183
653
  msgid "Error message while moving the file for the Attachment field"
654
  msgstr "从附件栏移动文件的错误信息"
655
 
656
+ #: contact_form.php:1150
657
+ #: contact_form.php:1184
658
  msgid "Error message when file size limit for the Attachment field is exceeded"
659
  msgstr "超过文件大小限制附件字段时出现错误消息"
660
 
661
+ #: contact_form.php:1151
662
+ #: contact_form.php:1185
663
  msgid "Error message for the Captcha field"
664
  msgstr "Captcha字段的错误消息"
665
 
666
+ #: contact_form.php:1152
667
+ #: contact_form.php:1186
668
  msgid "Error message for the whole form"
669
  msgstr "整个表单的错误消息"
670
 
671
+ #: contact_form.php:1155
672
+ #: contact_form.php:1157
673
+ #: contact_form.php:1189
674
+ #: contact_form.php:1191
675
+ #: contact_form.php:1212
676
+ #: contact_form.php:1214
677
+ #: contact_form.php:1222
678
+ #: contact_form.php:1224
679
  msgid "Use shortcode"
680
  msgstr "使用简码"
681
 
682
+ #: contact_form.php:1155
683
+ #: contact_form.php:1157
684
+ #: contact_form.php:1189
685
+ #: contact_form.php:1191
686
+ #: contact_form.php:1212
687
+ #: contact_form.php:1214
688
+ #: contact_form.php:1222
689
+ #: contact_form.php:1224
690
  msgid "for this language"
691
  msgstr "此语言"
692
 
693
+ #: contact_form.php:1199
694
  msgid "Action after email is sent"
695
  msgstr "发送电子邮件后行动"
696
 
697
+ #: contact_form.php:1201
698
  msgid "Display text"
699
  msgstr "显示文本"
700
 
701
+ #: contact_form.php:1210
702
+ #: contact_form.php:1220
703
  msgid "Text"
704
  msgstr "文本"
705
 
706
+ #: contact_form.php:1231
707
  msgid "Redirect to the page"
708
  msgstr "重定向到的页面"
709
 
710
+ #: contact_form.php:1232
711
  msgid "Url"
712
  msgstr "Url"
713
 
714
+ #: contact_form.php:1236
715
  msgid "The $_SERVER variable that is used to build a URL of the form"
716
  msgstr ""
717
 
718
+ #: contact_form.php:1240
719
  msgid "If you are not sure whether to change this setting or not, please do not do that."
720
  msgstr ""
721
 
722
+ #: contact_form.php:1246
723
+ #: contact_form.php:1430
724
  msgid "Save Changes"
725
  msgstr "保存更改"
726
 
727
+ #: contact_form.php:1251
728
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
729
  msgstr ""
730
 
731
+ #: contact_form.php:1252
732
  #, fuzzy
733
  msgid "Rate the plugin"
734
  msgstr "Рекомендовані плагіни"
735
 
736
+ #: contact_form.php:1255
737
  #, fuzzy
738
  msgid "If there is something wrong about it, please contact us"
739
  msgstr "Якщо у вас є запитання, звертайтесь на plugin@bestwebsoft.com або заповніть контактну форму на нашому сайті"
740
 
741
+ #: contact_form.php:1267
742
  msgid "Errors output"
743
  msgstr "错误输出"
744
 
745
+ #: contact_form.php:1270
746
  msgid "Display error messages"
747
  msgstr "显示错误消息"
748
 
749
+ #: contact_form.php:1271
750
  msgid "Color of the input field errors."
751
  msgstr "输入栏错误的颜色。"
752
 
753
+ #: contact_form.php:1272
754
  msgid "Display error messages & color of the input field errors"
755
  msgstr "显示输入栏错误的错误消息和颜色"
756
 
757
+ #: contact_form.php:1277
758
  msgid "Add placeholder to the input blocks"
759
  msgstr "添加占位符输入块"
760
 
761
+ #: contact_form.php:1283
762
  msgid "Add tooltips"
763
  msgstr "添加工具提示"
764
 
765
+ #: contact_form.php:1297
766
  msgid "Email address"
767
  msgstr "电子邮箱"
768
 
769
+ #: contact_form.php:1302
770
  msgid "Phone Number"
771
  msgstr "电话号码"
772
 
773
+ #: contact_form.php:1316
774
  msgid "Attachment"
775
  msgstr "附件"
776
 
777
+ #: contact_form.php:1321
778
  msgid "(powered by bestwebsoft.com)"
779
  msgstr "(powered by bestwebsoft.com)"
780
 
781
+ #: contact_form.php:1326
782
  msgid "Style options"
783
  msgstr "风格选择"
784
 
785
+ #: contact_form.php:1329
786
  msgid "Text color"
787
  msgstr "文字颜色"
788
 
789
+ #: contact_form.php:1332
790
+ #: contact_form.php:1337
791
+ #: contact_form.php:1347
792
+ #: contact_form.php:1352
793
+ #: contact_form.php:1357
794
+ #: contact_form.php:1362
795
+ #: contact_form.php:1372
796
+ #: contact_form.php:1377
797
+ #: contact_form.php:1383
798
+ #: contact_form.php:1394
799
+ #: contact_form.php:1399
800
+ #: contact_form.php:1404
801
  msgid "Default"
802
  msgstr "默认"
803
 
804
+ #: contact_form.php:1334
805
  msgid "Label text color"
806
  msgstr "标签文字颜色"
807
 
808
+ #: contact_form.php:1339
809
  msgid "Placeholder color"
810
  msgstr "占位符的颜色"
811
 
812
+ #: contact_form.php:1344
813
  msgid "Errors color"
814
  msgstr "错误颜色"
815
 
816
+ #: contact_form.php:1349
817
  msgid "Error text color"
818
  msgstr "错误文字颜色"
819
 
820
+ #: contact_form.php:1354
821
  msgid "Background color of the input field errors"
822
  msgstr "输入栏错误的背景颜色"
823
 
824
+ #: contact_form.php:1359
825
  msgid "Border color of the input field errors"
826
  msgstr "输入栏错误的边框颜色"
827
 
828
+ #: contact_form.php:1364
829
  msgid "Placeholder color of the input field errors"
830
  msgstr "输入栏错误的占位符颜色"
831
 
832
+ #: contact_form.php:1369
833
  msgid "Input fields"
834
  msgstr "输入栏"
835
 
836
+ #: contact_form.php:1374
837
  msgid "Input fields background color"
838
  msgstr "输入栏的背景颜色"
839
 
840
+ #: contact_form.php:1379
841
  msgid "Text fields color"
842
  msgstr "文本字段颜色"
843
 
844
+ #: contact_form.php:1381
845
  msgid "Border width in px, numbers only"
846
  msgstr "边框宽度(像素,数字)"
847
 
848
+ #: contact_form.php:1385
849
+ #: contact_form.php:1406
850
  msgid "Border color"
851
  msgstr "边框颜色"
852
 
853
+ #: contact_form.php:1390
854
  msgid "Submit button"
855
  msgstr "“提交”按钮"
856
 
857
+ #: contact_form.php:1392
858
  msgid "Width in px, numbers only"
859
  msgstr "Width in px, numbers only"
860
 
861
+ #: contact_form.php:1396
862
  msgid "Button color"
863
  msgstr "按钮的颜色"
864
 
865
+ #: contact_form.php:1401
866
  msgid "Button text color"
867
  msgstr "按钮的文字颜色"
868
 
869
+ #: contact_form.php:1434
870
  msgid "Contact Form Pro | Preview"
871
  msgstr "联系表单(Pro) | 预览"
872
 
873
+ #: contact_form.php:1437
874
  msgid "Show with errors"
875
  msgstr "显示错误"
876
 
877
+ #: contact_form.php:1445
878
+ #: contact_form.php:1447
879
  msgid "Please enter your full name..."
880
  msgstr "请输入您的全名..."
881
 
882
+ #: contact_form.php:1458
883
+ #: contact_form.php:1460
884
  msgid "Please enter your address..."
885
  msgstr "请输入您的地址..."
886
 
887
+ #: contact_form.php:1469
888
+ #: contact_form.php:1471
889
  msgid "Please enter your email address..."
890
  msgstr "请输入你的电子邮件地址..."
891
 
892
+ #: contact_form.php:1480
893
+ #: contact_form.php:1482
894
  msgid "Please enter your phone number..."
895
  msgstr "请输入你的手机号码..."
896
 
897
+ #: contact_form.php:1491
898
+ #: contact_form.php:1493
899
  msgid "Please enter subject..."
900
  msgstr "请输入主题..."
901
 
902
+ #: contact_form.php:1501
903
+ #: contact_form.php:1503
904
  msgid "Please enter your message..."
905
  msgstr "请输入你的信息"
906
 
907
+ #: contact_form.php:1545
908
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
909
  msgstr ""
910
 
911
+ #: contact_form.php:1547
912
  msgid "Please, go to"
913
  msgstr ""
914
 
915
+ #: contact_form.php:1547
916
  #, fuzzy
917
  msgid "the setting page"
918
  msgstr "额外的设置"
919
 
920
+ #: contact_form.php:1548
921
  msgid "You will be redirected automatically in 5 seconds."
922
  msgstr ""
923
 
924
+ #: contact_form.php:1553
925
  msgid "You can download and activate"
926
  msgstr ""
927
 
928
+ #: contact_form.php:1555
929
  msgid "version of this plugin by entering Your license key."
930
  msgstr ""
931
 
932
+ #: contact_form.php:1557
933
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
934
  msgstr ""
935
 
936
+ #: contact_form.php:1559
937
  msgid "(your username is the email you specify when purchasing the product)."
938
  msgstr ""
939
 
940
+ #: contact_form.php:1567
941
+ #: contact_form.php:1577
942
  msgid "Go!"
943
  msgstr ""
944
 
945
+ #: contact_form.php:1647
946
  msgid "Sorry, email message could not be delivered."
947
  msgstr "对不起,电子邮件讯息无法传递。"
948
 
949
+ #: contact_form.php:2053
950
  msgid "Contact from"
951
  msgstr "联系表单"
952
 
953
+ #: contact_form.php:2066
954
+ #: contact_form.php:2092
955
  msgid "Email"
956
  msgstr "邮箱"
957
 
958
+ #: contact_form.php:2070
959
+ #: contact_form.php:2094
960
  msgid "Phone"
961
  msgstr "电话"
962
 
963
+ #: contact_form.php:2079
964
+ #: contact_form.php:2097
965
  msgid "Site"
966
  msgstr "站点"
967
 
968
+ #: contact_form.php:2160
969
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
970
  msgstr "如果你能看到这个MIME,这意味着你的电子邮件客户端不支持该MIME类型!"
971
 
972
+ #: contact_form.php:2229
973
  msgid "FAQ"
974
  msgstr "常问问题"
975
 
976
+ #: contact_form.php:2230
977
  msgid "Support"
978
  msgstr "支持"
979
 
980
+ #: contact_form.php:2280
981
  msgid "Are you sure that you want to delete this language data?"
982
  msgstr "您确定要删除此语言数据吗"
983
 
984
+ #: contact_form.php:2476
985
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
986
  msgstr ""
987
 
988
+ #: contact_form.php:2477
989
  msgid "Extend standard plugin functionality with new great options."
990
  msgstr ""
991
 
992
+ #: contact_form.php:2492
993
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
994
  msgstr ""
995
 
996
+ #: contact_form.php:2493
997
  msgid "Manage messages that have been sent from your website."
998
  msgstr ""
999
 
1000
+ #~ msgid ""
1001
+ #~ "This functionality is available in the Pro version of the plugin. For "
1002
+ #~ "more details, please follow the link"
1003
+ #~ msgstr "此功能在Pro版本的插件可用。有关详细信息,请参考链接"
1004
+
1005
+ #~ msgid "Contact Form Pro"
1006
+ #~ msgstr "联系表格(Pro)"
1007
+
1008
  #~ msgid "Contact Form Pro Extra Settings"
1009
  #~ msgstr "联系表单(Pro)的额外设置"
1010
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
4
  Tags: Contact Form, text, contact, form, contacts, contact form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, attachment, send copy
5
  Requires at least: 3.0
6
- Tested up to: 3.8.1
7
- Stable tag: 3.75
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -154,6 +154,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
154
 
155
  == Changelog ==
156
 
 
 
 
157
  = V3.75 - 08.04.2014 =
158
  * NEW : The Afrikaans language file is added.
159
  * Bugfix : We fixed the bug of the user's list on multisite.
@@ -490,6 +493,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
490
 
491
  == Upgrade Notice ==
492
 
 
 
 
493
  = V3.75 =
494
  The Afrikaans language file is added. We fixed the bug of the user's list on multisite.
495
 
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
4
  Tags: Contact Form, text, contact, form, contacts, contact form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, attachment, send copy
5
  Requires at least: 3.0
6
+ Tested up to: 3.8.2
7
+ Stable tag: 3.76
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
154
 
155
  == Changelog ==
156
 
157
+ = V3.76 - 14.04.2014 =
158
+ * Update : We updated all functionality for wordpress 3.8.2.
159
+
160
  = V3.75 - 08.04.2014 =
161
  * NEW : The Afrikaans language file is added.
162
  * Bugfix : We fixed the bug of the user's list on multisite.
493
 
494
  == Upgrade Notice ==
495
 
496
+ = V3.76 =
497
+ We updated all functionality for wordpress 3.8.2.
498
+
499
  = V3.75 =
500
  The Afrikaans language file is added. We fixed the bug of the user's list on multisite.
501
 
screenshot-1.png CHANGED
File without changes
screenshot-2.png CHANGED
File without changes
screenshot-3.png CHANGED
File without changes
screenshot-4.png CHANGED
File without changes
screenshot-5.png CHANGED
File without changes
screenshot-6.png CHANGED
File without changes