Contact Form by BestWebSoft - Version 3.49

Version Description

  • 22.07.2013 =
  • NEW : Added an ability to view and send system information by mail.
Download this release

Release Info

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

Code changes from version 3.48 to 3.49

Files changed (64) hide show
  1. contact_form.php +225 -11
  2. css/style.css +29 -12
  3. js/bws_menu.js +14 -0
  4. languages/contact_form-ar.mo +0 -0
  5. languages/contact_form-ar.po +430 -265
  6. languages/contact_form-be_BY.mo +0 -0
  7. languages/contact_form-be_BY.po +430 -265
  8. languages/contact_form-bg_BG.mo +0 -0
  9. languages/contact_form-bg_BG.po +430 -265
  10. languages/contact_form-ca.mo +0 -0
  11. languages/contact_form-ca.po +430 -265
  12. languages/contact_form-cs_CZ.mo +0 -0
  13. languages/contact_form-cs_CZ.po +430 -265
  14. languages/contact_form-da_DK.mo +0 -0
  15. languages/contact_form-da_DK.po +430 -265
  16. languages/contact_form-de_DE.mo +0 -0
  17. languages/contact_form-de_DE.po +430 -265
  18. languages/contact_form-el_GR.mo +0 -0
  19. languages/contact_form-el_GR.po +430 -265
  20. languages/contact_form-es_ES.mo +0 -0
  21. languages/contact_form-es_ES.po +430 -265
  22. languages/contact_form-fa_IR.mo +0 -0
  23. languages/contact_form-fa_IR.po +430 -265
  24. languages/contact_form-fi.mo +0 -0
  25. languages/contact_form-fi.po +430 -265
  26. languages/contact_form-fr_FR.mo +0 -0
  27. languages/contact_form-fr_FR.po +430 -265
  28. languages/contact_form-gl_ES.mo +0 -0
  29. languages/contact_form-gl_ES.po +430 -265
  30. languages/contact_form-he_IL.mo +0 -0
  31. languages/contact_form-he_IL.po +438 -267
  32. languages/contact_form-hi_IN.mo +0 -0
  33. languages/contact_form-hi_IN.po +430 -265
  34. languages/contact_form-hu_HU.mo +0 -0
  35. languages/contact_form-hu_HU.po +430 -265
  36. languages/contact_form-it_IT.mo +0 -0
  37. languages/contact_form-it_IT.po +430 -265
  38. languages/contact_form-ja.mo +0 -0
  39. languages/contact_form-ja.po +430 -265
  40. languages/contact_form-lt_LT.mo +0 -0
  41. languages/contact_form-lt_LT.po +430 -265
  42. languages/contact_form-nb_NO.mo +0 -0
  43. languages/contact_form-nb_NO.po +430 -265
  44. languages/contact_form-nl_NL.mo +0 -0
  45. languages/contact_form-nl_NL.po +430 -265
  46. languages/contact_form-pl_PL.mo +0 -0
  47. languages/contact_form-pl_PL.po +438 -267
  48. languages/contact_form-pt_BR.mo +0 -0
  49. languages/contact_form-pt_BR.po +430 -265
  50. languages/contact_form-pt_PT.mo +0 -0
  51. languages/contact_form-pt_PT.po +430 -265
  52. languages/contact_form-ro_RO.mo +0 -0
  53. languages/contact_form-ro_RO.po +430 -265
  54. languages/contact_form-ru_RU.mo +0 -0
  55. languages/contact_form-ru_RU.po +424 -265
  56. languages/contact_form-sr_RS.mo +0 -0
  57. languages/contact_form-sr_RS.po +430 -265
  58. languages/contact_form-sv_SE.mo +0 -0
  59. languages/contact_form-sv_SE.po +430 -265
  60. languages/contact_form-tr_TR.mo +0 -0
  61. languages/contact_form-tr_TR.po +430 -265
  62. languages/contact_form-uk.mo +0 -0
  63. languages/contact_form-uk.po +430 -265
  64. readme.txt +7 -1
contact_form.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form Plugin
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
- Version: 3.48
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -26,9 +26,12 @@ License: GPLv2 or later
26
 
27
  if ( ! function_exists( 'bws_add_menu_render' ) ) {
28
  function bws_add_menu_render() {
29
- global $title;
30
  $active_plugins = get_option('active_plugins');
31
  $all_plugins = get_plugins();
 
 
 
32
 
33
  $array_activate = array();
34
  $array_install = array();
@@ -48,13 +51,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
48
  array( 'updater\/updater.php', 'Updater', 'http://bestwebsoft.com/plugin/updater-plugin/', 'http://bestwebsoft.com/plugin/updater-plugin/#download', '/wp-admin/plugin-install.php?tab=search&s=updater+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=updater-options' )
49
  );
50
  foreach ( $array_plugins as $plugins ) {
51
- if ( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
52
  $array_activate[$count_activate]["title"] = $plugins[1];
53
  $array_activate[$count_activate]["link"] = $plugins[2];
54
  $array_activate[$count_activate]["href"] = $plugins[3];
55
  $array_activate[$count_activate]["url"] = $plugins[5];
56
  $count_activate++;
57
- } elseif ( array_key_exists(str_replace( "\\", "", $plugins[0]), $all_plugins ) ) {
58
  $array_install[$count_install]["title"] = $plugins[1];
59
  $array_install[$count_install]["link"] = $plugins[2];
60
  $array_install[$count_install]["href"] = $plugins[3];
@@ -72,17 +75,17 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
72
  $array_recomend_pro = array();
73
  $count_activate_pro = $count_install_pro = $count_recomend_pro = 0;
74
  $array_plugins_pro = array(
75
- array( 'gallery-plugin-pro\/gallery-plugin-pro.php', 'Gallery Pro', 'http://bestwebsoft.com/plugin/gallery-pro/', 'http://bestwebsoft.com/plugin/gallery-pro/#purchase', 'admin.php?page=gallery-plugin-pro.php' ),
76
- array( 'contact-form-pro\/contact_form_pro.php', 'Contact Form Pro', 'http://bestwebsoft.com/plugin/contact-form-pro/', 'http://bestwebsoft.com/plugin/contact-form-pro/#purchase', 'admin.php?page=contact_form_pro.php' )
77
  );
78
  foreach ( $array_plugins_pro as $plugins ) {
79
- if ( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
80
  $array_activate_pro[$count_activate_pro]["title"] = $plugins[1];
81
  $array_activate_pro[$count_activate_pro]["link"] = $plugins[2];
82
  $array_activate_pro[$count_activate_pro]["href"] = $plugins[3];
83
  $array_activate_pro[$count_activate_pro]["url"] = $plugins[4];
84
  $count_activate_pro++;
85
- } elseif( array_key_exists(str_replace( "\\", "", $plugins[0]), $all_plugins ) ) {
86
  $array_install_pro[$count_install_pro]["title"] = $plugins[1];
87
  $array_install_pro[$count_install_pro]["link"] = $plugins[2];
88
  $array_install_pro[$count_install_pro]["href"] = $plugins[3];
@@ -93,11 +96,158 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
93
  $array_recomend_pro[$count_recomend_pro]["href"] = $plugins[3];
94
  $count_recomend_pro++;
95
  }
96
- } ?>
97
- <div class="wrap">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
99
  <h2><?php echo $title;?></h2>
100
- <h3 style="color: blue"><?php _e( 'Pro plugins', 'contact_form' ); ?></h3>
 
 
101
  <?php if( 0 < $count_activate_pro ) { ?>
102
  <div style="padding-left:15px;">
103
  <h4><?php _e( 'Activated plugins', 'contact_form' ); ?></h4>
@@ -150,6 +300,67 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
150
  <?php } ?>
151
  <br />
152
  <span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via', 'contact_form' ); ?> <a href="http://support.bestwebsoft.com">http://support.bestwebsoft.com</a></span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
  </div>
154
  <?php }
155
  }
@@ -1646,6 +1857,9 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
1646
  wp_enqueue_script( 'cntctfrmScript', plugins_url( 'js/script.js', __FILE__ ) );
1647
  echo '<script type="text/javascript">var confirm_text = "'.__('Are you sure that you want to delete this language data?', 'contact_form').'"</script>';
1648
  }
 
 
 
1649
  }
1650
  }
1651
 
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.49
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
26
 
27
  if ( ! function_exists( 'bws_add_menu_render' ) ) {
28
  function bws_add_menu_render() {
29
+ global $wpdb, $wp_version, $title;
30
  $active_plugins = get_option('active_plugins');
31
  $all_plugins = get_plugins();
32
+ $error = '';
33
+ $message = '';
34
+ $bwsmn_form_email = '';
35
 
36
  $array_activate = array();
37
  $array_install = array();
51
  array( 'updater\/updater.php', 'Updater', 'http://bestwebsoft.com/plugin/updater-plugin/', 'http://bestwebsoft.com/plugin/updater-plugin/#download', '/wp-admin/plugin-install.php?tab=search&s=updater+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=updater-options' )
52
  );
53
  foreach ( $array_plugins as $plugins ) {
54
+ if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
55
  $array_activate[$count_activate]["title"] = $plugins[1];
56
  $array_activate[$count_activate]["link"] = $plugins[2];
57
  $array_activate[$count_activate]["href"] = $plugins[3];
58
  $array_activate[$count_activate]["url"] = $plugins[5];
59
  $count_activate++;
60
+ } else if ( array_key_exists(str_replace( "\\", "", $plugins[0]), $all_plugins ) ) {
61
  $array_install[$count_install]["title"] = $plugins[1];
62
  $array_install[$count_install]["link"] = $plugins[2];
63
  $array_install[$count_install]["href"] = $plugins[3];
75
  $array_recomend_pro = array();
76
  $count_activate_pro = $count_install_pro = $count_recomend_pro = 0;
77
  $array_plugins_pro = array(
78
+ array( 'gallery-plugin-pro\/gallery-plugin-pro.php', 'Gallery Pro', 'http://bestwebsoft.com/plugin/gallery-pro/?k=382e5ce7c96a6391f5ffa5e116b37fe0', 'http://bestwebsoft.com/plugin/gallery-pro/?k=382e5ce7c96a6391f5ffa5e116b37fe0#purchase', 'admin.php?page=gallery-plugin-pro.php' ),
79
+ array( 'contact-form-pro\/contact_form_pro.php', 'Contact Form Pro', 'http://bestwebsoft.com/plugin/contact-form-pro/?k=773dc97bb3551975db0e32edca1a6d71', 'http://bestwebsoft.com/plugin/contact-form-pro/?k=773dc97bb3551975db0e32edca1a6d71#purchase', 'admin.php?page=contact_form_pro.php' )
80
  );
81
  foreach ( $array_plugins_pro as $plugins ) {
82
+ if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
83
  $array_activate_pro[$count_activate_pro]["title"] = $plugins[1];
84
  $array_activate_pro[$count_activate_pro]["link"] = $plugins[2];
85
  $array_activate_pro[$count_activate_pro]["href"] = $plugins[3];
86
  $array_activate_pro[$count_activate_pro]["url"] = $plugins[4];
87
  $count_activate_pro++;
88
+ } else if( array_key_exists(str_replace( "\\", "", $plugins[0]), $all_plugins ) ) {
89
  $array_install_pro[$count_install_pro]["title"] = $plugins[1];
90
  $array_install_pro[$count_install_pro]["link"] = $plugins[2];
91
  $array_install_pro[$count_install_pro]["href"] = $plugins[3];
96
  $array_recomend_pro[$count_recomend_pro]["href"] = $plugins[3];
97
  $count_recomend_pro++;
98
  }
99
+ }
100
+
101
+ $sql_version = $wpdb->get_var( "SELECT VERSION() AS version" );
102
+ $mysql_info = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
103
+ if ( is_array( $mysql_info) )
104
+ $sql_mode = $mysql_info[0]->Value;
105
+ if ( empty( $sql_mode ) )
106
+ $sql_mode = __( 'Not set', 'contact_form' );
107
+ if ( ini_get( 'safe_mode' ) )
108
+ $safe_mode = __( 'On', 'contact_form' );
109
+ else
110
+ $safe_mode = __( 'Off', 'contact_form' );
111
+ if ( ini_get( 'allow_url_fopen' ) )
112
+ $allow_url_fopen = __( 'On', 'contact_form' );
113
+ else
114
+ $allow_url_fopen = __( 'Off', 'contact_form' );
115
+ if ( ini_get( 'upload_max_filesize' ) )
116
+ $upload_max_filesize = ini_get( 'upload_max_filesize' );
117
+ else
118
+ $upload_max_filesize = __( 'N/A', 'contact_form' );
119
+ if ( ini_get('post_max_size') )
120
+ $post_max_size = ini_get('post_max_size');
121
+ else
122
+ $post_max_size = __( 'N/A', 'contact_form' );
123
+ if ( ini_get( 'max_execution_time' ) )
124
+ $max_execution_time = ini_get( 'max_execution_time' );
125
+ else
126
+ $max_execution_time = __( 'N/A', 'contact_form' );
127
+ if ( ini_get( 'memory_limit' ) )
128
+ $memory_limit = ini_get( 'memory_limit' );
129
+ else
130
+ $memory_limit = __( 'N/A', 'contact_form' );
131
+ if ( function_exists( 'memory_get_usage' ) )
132
+ $memory_usage = round( memory_get_usage() / 1024 / 1024, 2 ) . __(' Mb', 'contact_form' );
133
+ else
134
+ $memory_usage = __( 'N/A', 'contact_form' );
135
+ if ( is_callable( 'exif_read_data' ) )
136
+ $exif_read_data = __( 'Yes', 'contact_form' ) . " ( V" . substr( phpversion( 'exif' ), 0,4 ) . ")" ;
137
+ else
138
+ $exif_read_data = __( 'No', 'contact_form' );
139
+ if ( is_callable( 'iptcparse' ) )
140
+ $iptcparse = __( 'Yes', 'contact_form' );
141
+ else
142
+ $iptcparse = __( 'No', 'contact_form' );
143
+ if ( is_callable( 'xml_parser_create' ) )
144
+ $xml_parser_create = __( 'Yes', 'contact_form' );
145
+ else
146
+ $xml_parser_create = __( 'No', 'contact_form' );
147
+
148
+ if ( function_exists( 'wp_get_theme' ) )
149
+ $theme = wp_get_theme();
150
+ else
151
+ $theme = get_theme( get_current_theme() );
152
+
153
+ if ( function_exists( 'is_multisite' ) ) {
154
+ if ( is_multisite() ) {
155
+ $multisite = __( 'Yes', 'contact_form' );
156
+ } else {
157
+ $multisite = __( 'No', 'contact_form' );
158
+ }
159
+ } else
160
+ $multisite = __( 'N/A', 'contact_form' );
161
+
162
+ $site_url = get_option( 'siteurl' );
163
+ $home_url = get_option( 'home' );
164
+ $db_version = get_option( 'db_version' );
165
+ $system_info = array(
166
+ 'system_info' => '',
167
+ 'active_plugins' => '',
168
+ 'inactive_plugins' => ''
169
+ );
170
+ $system_info['system_info'] = array(
171
+ __( 'Operating System', 'contact_form' ) => PHP_OS,
172
+ __( 'Server', 'contact_form' ) => $_SERVER["SERVER_SOFTWARE"],
173
+ __( 'Memory usage', 'contact_form' ) => $memory_usage,
174
+ __( 'MYSQL Version', 'contact_form' ) => $sql_version,
175
+ __( 'SQL Mode', 'contact_form' ) => $sql_mode,
176
+ __( 'PHP Version', 'contact_form' ) => PHP_VERSION,
177
+ __( 'PHP Safe Mode', 'contact_form' ) => $safe_mode,
178
+ __( 'PHP Allow URL fopen', 'contact_form' ) => $allow_url_fopen,
179
+ __( 'PHP Memory Limit', 'contact_form' ) => $memory_limit,
180
+ __( 'PHP Max Upload Size', 'contact_form' ) => $upload_max_filesize,
181
+ __( 'PHP Max Post Size', 'contact_form' ) => $post_max_size,
182
+ __( 'PHP Max Script Execute Time', 'contact_form' ) => $max_execution_time,
183
+ __( 'PHP Exif support', 'contact_form' ) => $exif_read_data,
184
+ __( 'PHP IPTC support', 'contact_form' ) => $iptcparse,
185
+ __( 'PHP XML support', 'contact_form' ) => $xml_parser_create,
186
+ __( 'Site URL', 'contact_form' ) => $site_url,
187
+ __( 'Home URL', 'contact_form' ) => $home_url,
188
+ __( 'WordPress Version', 'contact_form' ) => $wp_version,
189
+ __( 'WordPress DB Version', 'contact_form' ) => $db_version,
190
+ __( 'Multisite', 'contact_form' ) => $multisite,
191
+ __( 'Active Theme', 'contact_form' ) => $theme['Name'].' '.$theme['Version']
192
+ );
193
+ foreach ( $all_plugins as $path => $plugin ) {
194
+ if ( is_plugin_active( $path ) ) {
195
+ $system_info['active_plugins'][ $plugin['Name'] ] = $plugin['Version'];
196
+ } else {
197
+ $system_info['inactive_plugins'][ $plugin['Name'] ] = $plugin['Version'];
198
+ }
199
+ }
200
+
201
+ if ( ( isset( $_REQUEST['bwsmn_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ) ) ||
202
+ ( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
203
+ if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
204
+ $bwsmn_form_email = trim( $_REQUEST['bwsmn_form_email'] );
205
+ if( $bwsmn_form_email == "" || !preg_match( "/^((?:[a-z0-9']+(?:[a-z0-9\-_\.']+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})[, ]*)+$/i", $bwsmn_form_email ) ) {
206
+ $error = __( "Please enter a valid email address.", 'contact_form' );
207
+ } else {
208
+ $email = $bwsmn_form_email;
209
+ $bwsmn_form_email = '';
210
+ $message = __( 'Email with system info is sent to ', 'contact_form' ) . $email;
211
+ }
212
+ } else {
213
+ $email = 'plugin_system_status@bestwebsoft.com';
214
+ $message = __( 'Thank you for contacting us.', 'contact_form' );
215
+ }
216
+
217
+ if ( $error == '' ) {
218
+ $headers = 'MIME-Version: 1.0' . "\n";
219
+ $headers .= 'Content-type: text/html; charset=utf-8' . "\n";
220
+ $headers .= 'From: ' . get_option( 'admin_email' );
221
+ $message_text = '<html><head><title>System Info From ' . $home_url . '</title></head><body>
222
+ <h4>Environment</h4>
223
+ <table>';
224
+ foreach ( $system_info['system_info'] as $key => $value ) {
225
+ $message_text .= '<tr><td>'. $key .'</td><td>'. $value .'</td></tr>';
226
+ }
227
+ $message_text .= '</table>
228
+ <h4>Active Plugins</h4>
229
+ <table>';
230
+ foreach ( $system_info['active_plugins'] as $key => $value ) {
231
+ $message_text .= '<tr><td scope="row">'. $key .'</td><td scope="row">'. $value .'</td></tr>';
232
+ }
233
+ $message_text .= '</table>
234
+ <h4>Inactive Plugins</h4>
235
+ <table>';
236
+ foreach ( $system_info['inactive_plugins'] as $key => $value ) {
237
+ $message_text .= '<tr><td scope="row">'. $key .'</td><td scope="row">'. $value .'</td></tr>';
238
+ }
239
+ $message_text .= '</table></body></html>';
240
+ $result = wp_mail( $email, 'System Info From ' . $home_url, $message_text, $headers );
241
+ if ( $result != true )
242
+ $error = __( "Sorry, email message could not be delivered.", 'contact_form' );
243
+ }
244
+ }
245
+ ?><div class="wrap">
246
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
247
  <h2><?php echo $title;?></h2>
248
+ <div class="updated fade" <?php if( !( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
249
+ <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
250
+ <h3 style="color: blue;"><?php _e( 'Pro plugins', 'contact_form' ); ?></h3>
251
  <?php if( 0 < $count_activate_pro ) { ?>
252
  <div style="padding-left:15px;">
253
  <h4><?php _e( 'Activated plugins', 'contact_form' ); ?></h4>
300
  <?php } ?>
301
  <br />
302
  <span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via', 'contact_form' ); ?> <a href="http://support.bestwebsoft.com">http://support.bestwebsoft.com</a></span>
303
+ <div id="poststuff" class="bws_system_info_mata_box">
304
+ <div class="postbox">
305
+ <div class="handlediv" title="Click to toggle">
306
+ <br>
307
+ </div>
308
+ <h3 class="hndle">
309
+ <span><?php _e( 'System status', 'contact_form' ); ?></span>
310
+ </h3>
311
+ <div class="inside">
312
+ <table class="bws_system_info">
313
+ <thead><tr><th><?php _e( 'Environment', 'contact_form' ); ?></th><td></td></tr></thead>
314
+ <tbody>
315
+ <?php foreach ( $system_info['system_info'] as $key => $value ) { ?>
316
+ <tr>
317
+ <td scope="row"><?php echo $key; ?></td>
318
+ <td scope="row"><?php echo $value; ?></td>
319
+ </tr>
320
+ <?php } ?>
321
+ </tbody>
322
+ </table>
323
+ <table class="bws_system_info">
324
+ <thead><tr><th><?php _e( 'Active Plugins', 'contact_form' ); ?></th><th></th></tr></thead>
325
+ <tbody>
326
+ <?php foreach ( $system_info['active_plugins'] as $key => $value ) { ?>
327
+ <tr>
328
+ <td scope="row"><?php echo $key; ?></td>
329
+ <td scope="row"><?php echo $value; ?></td>
330
+ </tr>
331
+ <?php } ?>
332
+ </tbody>
333
+ </table>
334
+ <table class="bws_system_info">
335
+ <thead><tr><th><?php _e( 'Inactive Plugins', 'contact_form' ); ?></th><th></th></tr></thead>
336
+ <tbody>
337
+ <?php foreach ( $system_info['inactive_plugins'] as $key => $value ) { ?>
338
+ <tr>
339
+ <td scope="row"><?php echo $key; ?></td>
340
+ <td scope="row"><?php echo $value; ?></td>
341
+ </tr>
342
+ <?php } ?>
343
+ </tbody>
344
+ </table>
345
+ <div class="clear"></div>
346
+ <form method="post" action="admin.php?page=bws_plugins">
347
+ <p>
348
+ <input type="hidden" name="bwsmn_form_submit" value="submit" />
349
+ <input type="submit" class="button-primary" value="<?php _e( 'Send to support', 'contact_form' ) ?>" />
350
+ <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ); ?>
351
+ </p>
352
+ </form>
353
+ <form method="post" action="admin.php?page=bws_plugins">
354
+ <p>
355
+ <input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
356
+ <input type="submit" class="button" value="<?php _e( 'Send to custom email &#187;', 'contact_form' ) ?>" />
357
+ <input type="text" value="<?php echo $bwsmn_form_email; ?>" name="bwsmn_form_email" />
358
+ <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
359
+ </p>
360
+ </form>
361
+ </div>
362
+ </div>
363
+ </div>
364
  </div>
365
  <?php }
366
  }
1857
  wp_enqueue_script( 'cntctfrmScript', plugins_url( 'js/script.js', __FILE__ ) );
1858
  echo '<script type="text/javascript">var confirm_text = "'.__('Are you sure that you want to delete this language data?', 'contact_form').'"</script>';
1859
  }
1860
+
1861
+ if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" )
1862
+ wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
1863
  }
1864
  }
1865
 
css/style.css CHANGED
@@ -1,15 +1,3 @@
1
- #cntctfrm_contact_form input.text,
2
- #cntctfrm_contact_form textarea,
3
- #cntctfrm_contact_message,
4
- #cntctfrm_contact_name,
5
- #cntctfrm_contact_email,
6
- #cntctfrm_contact_subject {
7
- width:320px;
8
- }
9
- .bws-plugins_page_contact_form input[type="checkbox"], .bws-plugins_page_contact_form input[type="radio"]{
10
- position:relative;
11
- top:-2px
12
- }
13
  #adminmenu #toplevel_page_bws_plugins div.wp-menu-image {
14
  background: url("../images/icon_16.png") no-repeat scroll center center transparent;
15
  }
@@ -28,6 +16,35 @@
28
  #toplevel_page_bws_plugins .wp-submenu .wp-first-item, .cntctfrm_hidden {
29
  display:none;
30
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  .cntctfrm_info {
32
  color: rgb(136, 136, 136);
33
  font-size: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
1
  #adminmenu #toplevel_page_bws_plugins div.wp-menu-image {
2
  background: url("../images/icon_16.png") no-repeat scroll center center transparent;
3
  }
16
  #toplevel_page_bws_plugins .wp-submenu .wp-first-item, .cntctfrm_hidden {
17
  display:none;
18
  }
19
+ .bws_system_info_mata_box {
20
+ width: 850px;
21
+ }
22
+ .bws_system_info {
23
+ float: left;
24
+ margin-right: 10px;
25
+ width: 400px;
26
+ }
27
+ .bws_system_info th {
28
+ padding: 10px 0;
29
+ text-align: left;
30
+ width: 50%;
31
+ }
32
+ .bws_system_info tbody td {
33
+ border-bottom: 1px solid #DFDFDF;
34
+ }
35
+
36
+ .bws-plugins_page_contact_form input[type="checkbox"], .bws-plugins_page_contact_form input[type="radio"]{
37
+ position:relative;
38
+ top:-2px
39
+ }
40
+ #cntctfrm_contact_form input.text,
41
+ #cntctfrm_contact_form textarea,
42
+ #cntctfrm_contact_message,
43
+ #cntctfrm_contact_name,
44
+ #cntctfrm_contact_email,
45
+ #cntctfrm_contact_subject {
46
+ width:320px;
47
+ }
48
  .cntctfrm_info {
49
  color: rgb(136, 136, 136);
50
  font-size: 10px;
js/bws_menu.js ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function($) {
2
+ $(document).ready(function(){
3
+ if ( $('input[name="bwsmn_form_email"]').val() == '' )
4
+ $('.bws_system_info_mata_box .inside').css('display','none');
5
+
6
+ $('.bws_system_info_mata_box .handlediv').click( function(){
7
+ if ( $('.bws_system_info_mata_box .inside').is(":visible") ) {
8
+ $('.bws_system_info_mata_box .inside').css('display','none');
9
+ } else {
10
+ $('.bws_system_info_mata_box .inside').css('display','block');
11
+ }
12
+ });
13
+ });
14
+ })(jQuery);
languages/contact_form-ar.mo CHANGED
Binary file
languages/contact_form-ar.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-16 16:03+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:03+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz.com@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,757 +16,922 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "تفعيل الإضافات"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "اقرأ المزيد"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "إعدادات"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "تثبيت الإضافات"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "اضافات موصى بها"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "اضافات موصى بها"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "تحميل"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "تنصيب %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "تثبيت من wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء استمارة الاتصال على موقعنا"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "خيارات نموذج اتصل بنا"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "نموذج الاتصال"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "خيارات نموذج اتصل بنا"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "نموذج الاتصال"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "الأسم:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "البريد الالكتروني:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "البريد الالكتروني:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "موضوع الرسالة:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "الرسالة:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "المرفقات:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "أرسل لي نسخة"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "تقدم"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "مطلوب اسمك."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "مطلوب بريد الكتروني صحيح."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "مطلوب بريد الكتروني صحيح."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "مطلوب اسمك."
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "مطلوب نص الموضوع."
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "مطلوب نص الرسالة."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "المرفق تعطل."
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "يرجى استكمال رمز التحقق."
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr ""
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "الخيارات حُفظت."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "إعدادات"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق هذا الرمز القصير:"
251
 
252
- #: contact_form.php:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي تم تحديده أثناء التسجيل."
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "أستخدم بريد العضو في وورد بريس:"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "اختر اسم المستخدم"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "استخدام هذا البريد الالكتروني:"
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "خيارات إضافية"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr "ماذا تستخدم؟"
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "Mail"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "تغيير من الحقول من نموذج الاتصال"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "عرض حقل المرفقات"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "البريد الالكتروني:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr ""
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "عرض حقل المرفقات"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "عرض حقل المرفقات"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "عرض خيار (أرسل لي نسخة)"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "تفعيل الإضافات"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "تحميل"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "الأسم"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "البريد الالكتروني:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "موضوع الرسالة"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "الرسالة"
409
 
410
- #: contact_form.php:646
411
  #, fuzzy
412
  msgid "Display additional info in the email"
413
  msgstr "عرض معلومات اضافية في البريد الالكتروني"
414
 
415
- #: contact_form.php:651
416
- #: contact_form.php:1447
417
  msgid "Sent from (ip address)"
418
  msgstr "ارسلت من (عنوان IP)"
419
 
420
- #: contact_form.php:652
421
- #: contact_form.php:1452
422
  msgid "Date/Time"
423
  msgstr "الوقت/التاريخ"
424
 
425
- #: contact_form.php:653
426
- #: contact_form.php:1457
427
  msgid "Sent from (referer)"
428
  msgstr "Sent from (referer)"
429
 
430
- #: contact_form.php:654
431
- #: contact_form.php:1462
432
  msgid "Using (user agent)"
433
  msgstr "باستخدام (وكيل المستخدم)"
434
 
435
- #: contact_form.php:658
436
  msgid "Language settings for the field names in the form"
437
  msgstr ""
438
 
439
- #: contact_form.php:667
440
  msgid "Add a language"
441
  msgstr ""
442
 
443
- #: contact_form.php:671
444
  #, fuzzy
445
  msgid "Change the names of the contact form fields and error messages"
446
  msgstr "تغيير تسمية حقول نموذج الاتصال"
447
 
448
- #: contact_form.php:676
449
- #: contact_form.php:747
450
  msgid "English"
451
  msgstr ""
452
 
453
- #: contact_form.php:695
454
- #: contact_form.php:724
455
  msgid "Error message for the Name field"
456
  msgstr ""
457
 
458
- #: contact_form.php:696
459
- #: contact_form.php:725
460
  msgid "Error message for the Address field"
461
  msgstr ""
462
 
463
- #: contact_form.php:697
464
- #: contact_form.php:726
465
  msgid "Error message for the Email field"
466
  msgstr ""
467
 
468
- #: contact_form.php:698
469
- #: contact_form.php:727
470
  msgid "Error message for the Phone field"
471
  msgstr ""
472
 
473
- #: contact_form.php:699
474
- #: contact_form.php:728
475
  msgid "Error message for the Subject field"
476
  msgstr ""
477
 
478
- #: contact_form.php:700
479
- #: contact_form.php:729
480
  msgid "Error message for the Message field"
481
  msgstr ""
482
 
483
- #: contact_form.php:701
484
- #: contact_form.php:730
485
  msgid "Error message about the file type for the Attachment field"
486
  msgstr ""
487
 
488
- #: contact_form.php:702
489
- #: contact_form.php:731
490
  msgid "Error message while uploading a file for the Attachment field to the server"
491
  msgstr ""
492
 
493
- #: contact_form.php:703
494
- #: contact_form.php:732
495
  msgid "Error message while moving the file for the Attachment field"
496
  msgstr ""
497
 
498
- #: contact_form.php:704
499
- #: contact_form.php:733
500
  msgid "Error message when file size limit for the Attachment field is exceeded"
501
  msgstr ""
502
 
503
- #: contact_form.php:705
504
- #: contact_form.php:734
505
  msgid "Error message for the Captcha field"
506
  msgstr ""
507
 
508
- #: contact_form.php:706
509
- #: contact_form.php:735
510
  msgid "Error message for the whole form"
511
  msgstr ""
512
 
513
- #: contact_form.php:708
514
- #: contact_form.php:737
515
- #: contact_form.php:756
516
- #: contact_form.php:762
517
  msgid "Use shortcode"
518
  msgstr ""
519
 
520
- #: contact_form.php:708
521
- #: contact_form.php:737
522
- #: contact_form.php:756
523
- #: contact_form.php:762
524
  msgid "for this language"
525
  msgstr ""
526
 
527
- #: contact_form.php:744
528
  msgid "Action after email is sent"
529
  msgstr ""
530
 
531
- #: contact_form.php:746
532
  #, fuzzy
533
  msgid "Display text"
534
  msgstr "عرض حقل المرفقات"
535
 
536
- #: contact_form.php:755
537
- #: contact_form.php:761
538
  msgid "Text"
539
  msgstr ""
540
 
541
- #: contact_form.php:768
542
  msgid "Redirect to the page"
543
  msgstr ""
544
 
545
- #: contact_form.php:769
546
  msgid "Url"
547
  msgstr ""
548
 
549
- #: contact_form.php:774
550
- #: contact_form.php:949
551
  msgid "Save Changes"
552
  msgstr "حفظ التغييرات"
553
 
554
- #: contact_form.php:789
555
  #, fuzzy
556
  msgid "Contact Form Pro | Extra Settings"
557
  msgstr "خيارات نموذج اتصل بنا"
558
 
559
- #: contact_form.php:796
560
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
561
  msgstr ""
562
 
563
- #: contact_form.php:803
564
  msgid "Errors output"
565
  msgstr ""
566
 
567
- #: contact_form.php:806
568
  msgid "Display error messages"
569
  msgstr ""
570
 
571
- #: contact_form.php:807
572
  msgid "Color of the input field errors."
573
  msgstr ""
574
 
575
- #: contact_form.php:808
576
  msgid "Display error messages & color of the input field errors"
577
  msgstr ""
578
 
579
- #: contact_form.php:813
580
  msgid "Add placeholder to the input blocks"
581
  msgstr ""
582
 
583
- #: contact_form.php:819
584
  #, fuzzy
585
  msgid "Add tooltips"
586
  msgstr "خيارات إضافية"
587
 
588
- #: contact_form.php:833
589
  #, fuzzy
590
  msgid "Email address"
591
  msgstr "البريد الالكتروني:"
592
 
593
- #: contact_form.php:838
594
  msgid "Phone Number"
595
  msgstr ""
596
 
597
- #: contact_form.php:852
598
  #, fuzzy
599
  msgid "Attachment"
600
  msgstr "المرفقات:"
601
 
602
- #: contact_form.php:862
603
  #, fuzzy
604
  msgid "Style options"
605
  msgstr "خيارات إضافية"
606
 
607
- #: contact_form.php:865
608
  msgid "Text color"
609
  msgstr ""
610
 
611
- #: contact_form.php:868
612
- #: contact_form.php:873
613
- #: contact_form.php:883
614
- #: contact_form.php:888
615
- #: contact_form.php:893
616
- #: contact_form.php:898
617
- #: contact_form.php:908
618
- #: contact_form.php:913
619
- #: contact_form.php:919
620
- #: contact_form.php:930
621
- #: contact_form.php:935
622
- #: contact_form.php:940
623
  msgid "Default"
624
  msgstr ""
625
 
626
- #: contact_form.php:870
627
  msgid "Label text color"
628
  msgstr ""
629
 
630
- #: contact_form.php:875
631
  msgid "Placeholder color"
632
  msgstr ""
633
 
634
- #: contact_form.php:880
635
  msgid "Errors color"
636
  msgstr ""
637
 
638
- #: contact_form.php:885
639
  msgid "Error text color"
640
  msgstr ""
641
 
642
- #: contact_form.php:890
643
  msgid "Background color of the input field errors"
644
  msgstr ""
645
 
646
- #: contact_form.php:895
647
  msgid "Border color of the input field errors"
648
  msgstr ""
649
 
650
- #: contact_form.php:900
651
  msgid "Placeholder color of the input field errors"
652
  msgstr ""
653
 
654
- #: contact_form.php:905
655
  #, fuzzy
656
  msgid "Input fields"
657
  msgstr "عرض حقل المرفقات"
658
 
659
- #: contact_form.php:910
660
  msgid "Input fields background color"
661
  msgstr ""
662
 
663
- #: contact_form.php:915
664
  msgid "Text fields color"
665
  msgstr ""
666
 
667
- #: contact_form.php:917
668
  msgid "Border width in px, numbers only"
669
  msgstr ""
670
 
671
- #: contact_form.php:921
672
- #: contact_form.php:942
673
  msgid "Border color"
674
  msgstr ""
675
 
676
- #: contact_form.php:926
677
  #, fuzzy
678
  msgid "Submit button"
679
  msgstr "تقدم"
680
 
681
- #: contact_form.php:928
682
  msgid "Width in px, numbers only"
683
  msgstr ""
684
 
685
- #: contact_form.php:932
686
  msgid "Button color"
687
  msgstr ""
688
 
689
- #: contact_form.php:937
690
  msgid "Button text color"
691
  msgstr ""
692
 
693
- #: contact_form.php:953
694
  #, fuzzy
695
  msgid "Contact Form Pro | Preview"
696
  msgstr "نموذج الاتصال"
697
 
698
- #: contact_form.php:956
699
  msgid "Show with errors"
700
  msgstr ""
701
 
702
- #: contact_form.php:964
703
- #: contact_form.php:966
704
  msgid "Please enter your full name..."
705
  msgstr ""
706
 
707
- #: contact_form.php:977
708
- #: contact_form.php:979
709
  msgid "Please enter your address..."
710
  msgstr ""
711
 
712
- #: contact_form.php:988
713
- #: contact_form.php:990
714
  #, fuzzy
715
  msgid "Please enter your email address..."
716
  msgstr "استخدام هذا البريد الالكتروني:"
717
 
718
- #: contact_form.php:999
719
- #: contact_form.php:1001
720
  msgid "Please enter your phone number..."
721
  msgstr ""
722
 
723
- #: contact_form.php:1010
724
- #: contact_form.php:1012
725
  msgid "Please enter subject..."
726
  msgstr ""
727
 
728
- #: contact_form.php:1020
729
- #: contact_form.php:1022
730
  msgid "Please enter your message..."
731
  msgstr ""
732
 
733
- #: contact_form.php:1033
734
  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"
735
  msgstr ""
736
 
737
- #: contact_form.php:1102
738
- msgid "Sorry, email message could not be delivered."
739
- msgstr "عذراً, لم نستطيع تسليم رسالتك."
740
-
741
- #: contact_form.php:1186
742
  msgid "You can attach the following file formats"
743
  msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
744
 
745
- #: contact_form.php:1470
746
  msgid "Contact from"
747
  msgstr "اتصل من"
748
 
749
- #: contact_form.php:1483
750
  msgid "Email"
751
  msgstr "البريد الألكتروني"
752
 
753
- #: contact_form.php:1497
754
  msgid "Site"
755
  msgstr "الموقع"
756
 
757
- #: contact_form.php:1547
758
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
759
  msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
760
 
761
- #: contact_form.php:1598
762
  msgid "FAQ"
763
  msgstr "أسئلة وأجوبة"
764
 
765
- #: contact_form.php:1599
766
  msgid "Support"
767
  msgstr "دعم"
768
 
769
- #: contact_form.php:1647
770
  msgid "Are you sure that you want to delete this language data?"
771
  msgstr ""
772
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:54+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:54+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz.com@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "الرسالة"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "الموقع"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "استخدام هذا البريد الالكتروني:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "عذراً, لم نستطيع تسليم رسالتك."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "تفعيل الإضافات"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "اقرأ المزيد"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "إعدادات"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "تثبيت الإضافات"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "اضافات موصى بها"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "اضافات موصى بها"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "تحميل"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "تنصيب %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "تثبيت من wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء استمارة الاتصال على موقعنا"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "تفعيل الإضافات"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "تفعيل الإضافات"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "دعم"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "خيارات نموذج اتصل بنا"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "نموذج الاتصال"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "خيارات نموذج اتصل بنا"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "نموذج الاتصال"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "الأسم:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "البريد الالكتروني:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "البريد الالكتروني:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "موضوع الرسالة:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "الرسالة:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "المرفقات:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "أرسل لي نسخة"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "تقدم"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "مطلوب اسمك."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "مطلوب بريد الكتروني صحيح."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "مطلوب بريد الكتروني صحيح."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "مطلوب اسمك."
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "مطلوب نص الموضوع."
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "مطلوب نص الرسالة."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "المرفق تعطل."
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "يرجى استكمال رمز التحقق."
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr ""
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "الخيارات حُفظت."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "إعدادات"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق هذا الرمز القصير:"
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي تم تحديده أثناء التسجيل."
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "أستخدم بريد العضو في وورد بريس:"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "اختر اسم المستخدم"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "استخدام هذا البريد الالكتروني:"
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "خيارات إضافية"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr "ماذا تستخدم؟"
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "Mail"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "تغيير من الحقول من نموذج الاتصال"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "عرض حقل المرفقات"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "البريد الالكتروني:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr ""
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "عرض حقل المرفقات"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "عرض حقل المرفقات"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "عرض خيار (أرسل لي نسخة)"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "تفعيل الإضافات"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "تحميل"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "الأسم"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "البريد الالكتروني:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "موضوع الرسالة"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "الرسالة"
578
 
579
+ #: contact_form.php:857
580
  #, fuzzy
581
  msgid "Display additional info in the email"
582
  msgstr "عرض معلومات اضافية في البريد الالكتروني"
583
 
584
+ #: contact_form.php:862
585
+ #: contact_form.php:1658
586
  msgid "Sent from (ip address)"
587
  msgstr "ارسلت من (عنوان IP)"
588
 
589
+ #: contact_form.php:863
590
+ #: contact_form.php:1663
591
  msgid "Date/Time"
592
  msgstr "الوقت/التاريخ"
593
 
594
+ #: contact_form.php:864
595
+ #: contact_form.php:1668
596
  msgid "Sent from (referer)"
597
  msgstr "Sent from (referer)"
598
 
599
+ #: contact_form.php:865
600
+ #: contact_form.php:1673
601
  msgid "Using (user agent)"
602
  msgstr "باستخدام (وكيل المستخدم)"
603
 
604
+ #: contact_form.php:869
605
  msgid "Language settings for the field names in the form"
606
  msgstr ""
607
 
608
+ #: contact_form.php:878
609
  msgid "Add a language"
610
  msgstr ""
611
 
612
+ #: contact_form.php:882
613
  #, fuzzy
614
  msgid "Change the names of the contact form fields and error messages"
615
  msgstr "تغيير تسمية حقول نموذج الاتصال"
616
 
617
+ #: contact_form.php:887
618
+ #: contact_form.php:958
619
  msgid "English"
620
  msgstr ""
621
 
622
+ #: contact_form.php:906
623
+ #: contact_form.php:935
624
  msgid "Error message for the Name field"
625
  msgstr ""
626
 
627
+ #: contact_form.php:907
628
+ #: contact_form.php:936
629
  msgid "Error message for the Address field"
630
  msgstr ""
631
 
632
+ #: contact_form.php:908
633
+ #: contact_form.php:937
634
  msgid "Error message for the Email field"
635
  msgstr ""
636
 
637
+ #: contact_form.php:909
638
+ #: contact_form.php:938
639
  msgid "Error message for the Phone field"
640
  msgstr ""
641
 
642
+ #: contact_form.php:910
643
+ #: contact_form.php:939
644
  msgid "Error message for the Subject field"
645
  msgstr ""
646
 
647
+ #: contact_form.php:911
648
+ #: contact_form.php:940
649
  msgid "Error message for the Message field"
650
  msgstr ""
651
 
652
+ #: contact_form.php:912
653
+ #: contact_form.php:941
654
  msgid "Error message about the file type for the Attachment field"
655
  msgstr ""
656
 
657
+ #: contact_form.php:913
658
+ #: contact_form.php:942
659
  msgid "Error message while uploading a file for the Attachment field to the server"
660
  msgstr ""
661
 
662
+ #: contact_form.php:914
663
+ #: contact_form.php:943
664
  msgid "Error message while moving the file for the Attachment field"
665
  msgstr ""
666
 
667
+ #: contact_form.php:915
668
+ #: contact_form.php:944
669
  msgid "Error message when file size limit for the Attachment field is exceeded"
670
  msgstr ""
671
 
672
+ #: contact_form.php:916
673
+ #: contact_form.php:945
674
  msgid "Error message for the Captcha field"
675
  msgstr ""
676
 
677
+ #: contact_form.php:917
678
+ #: contact_form.php:946
679
  msgid "Error message for the whole form"
680
  msgstr ""
681
 
682
+ #: contact_form.php:919
683
+ #: contact_form.php:948
684
+ #: contact_form.php:967
685
+ #: contact_form.php:973
686
  msgid "Use shortcode"
687
  msgstr ""
688
 
689
+ #: contact_form.php:919
690
+ #: contact_form.php:948
691
+ #: contact_form.php:967
692
+ #: contact_form.php:973
693
  msgid "for this language"
694
  msgstr ""
695
 
696
+ #: contact_form.php:955
697
  msgid "Action after email is sent"
698
  msgstr ""
699
 
700
+ #: contact_form.php:957
701
  #, fuzzy
702
  msgid "Display text"
703
  msgstr "عرض حقل المرفقات"
704
 
705
+ #: contact_form.php:966
706
+ #: contact_form.php:972
707
  msgid "Text"
708
  msgstr ""
709
 
710
+ #: contact_form.php:979
711
  msgid "Redirect to the page"
712
  msgstr ""
713
 
714
+ #: contact_form.php:980
715
  msgid "Url"
716
  msgstr ""
717
 
718
+ #: contact_form.php:985
719
+ #: contact_form.php:1160
720
  msgid "Save Changes"
721
  msgstr "حفظ التغييرات"
722
 
723
+ #: contact_form.php:1000
724
  #, fuzzy
725
  msgid "Contact Form Pro | Extra Settings"
726
  msgstr "خيارات نموذج اتصل بنا"
727
 
728
+ #: contact_form.php:1007
729
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
730
  msgstr ""
731
 
732
+ #: contact_form.php:1014
733
  msgid "Errors output"
734
  msgstr ""
735
 
736
+ #: contact_form.php:1017
737
  msgid "Display error messages"
738
  msgstr ""
739
 
740
+ #: contact_form.php:1018
741
  msgid "Color of the input field errors."
742
  msgstr ""
743
 
744
+ #: contact_form.php:1019
745
  msgid "Display error messages & color of the input field errors"
746
  msgstr ""
747
 
748
+ #: contact_form.php:1024
749
  msgid "Add placeholder to the input blocks"
750
  msgstr ""
751
 
752
+ #: contact_form.php:1030
753
  #, fuzzy
754
  msgid "Add tooltips"
755
  msgstr "خيارات إضافية"
756
 
757
+ #: contact_form.php:1044
758
  #, fuzzy
759
  msgid "Email address"
760
  msgstr "البريد الالكتروني:"
761
 
762
+ #: contact_form.php:1049
763
  msgid "Phone Number"
764
  msgstr ""
765
 
766
+ #: contact_form.php:1063
767
  #, fuzzy
768
  msgid "Attachment"
769
  msgstr "المرفقات:"
770
 
771
+ #: contact_form.php:1073
772
  #, fuzzy
773
  msgid "Style options"
774
  msgstr "خيارات إضافية"
775
 
776
+ #: contact_form.php:1076
777
  msgid "Text color"
778
  msgstr ""
779
 
780
+ #: contact_form.php:1079
781
+ #: contact_form.php:1084
782
+ #: contact_form.php:1094
783
+ #: contact_form.php:1099
784
+ #: contact_form.php:1104
785
+ #: contact_form.php:1109
786
+ #: contact_form.php:1119
787
+ #: contact_form.php:1124
788
+ #: contact_form.php:1130
789
+ #: contact_form.php:1141
790
+ #: contact_form.php:1146
791
+ #: contact_form.php:1151
792
  msgid "Default"
793
  msgstr ""
794
 
795
+ #: contact_form.php:1081
796
  msgid "Label text color"
797
  msgstr ""
798
 
799
+ #: contact_form.php:1086
800
  msgid "Placeholder color"
801
  msgstr ""
802
 
803
+ #: contact_form.php:1091
804
  msgid "Errors color"
805
  msgstr ""
806
 
807
+ #: contact_form.php:1096
808
  msgid "Error text color"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1101
812
  msgid "Background color of the input field errors"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1106
816
  msgid "Border color of the input field errors"
817
  msgstr ""
818
 
819
+ #: contact_form.php:1111
820
  msgid "Placeholder color of the input field errors"
821
  msgstr ""
822
 
823
+ #: contact_form.php:1116
824
  #, fuzzy
825
  msgid "Input fields"
826
  msgstr "عرض حقل المرفقات"
827
 
828
+ #: contact_form.php:1121
829
  msgid "Input fields background color"
830
  msgstr ""
831
 
832
+ #: contact_form.php:1126
833
  msgid "Text fields color"
834
  msgstr ""
835
 
836
+ #: contact_form.php:1128
837
  msgid "Border width in px, numbers only"
838
  msgstr ""
839
 
840
+ #: contact_form.php:1132
841
+ #: contact_form.php:1153
842
  msgid "Border color"
843
  msgstr ""
844
 
845
+ #: contact_form.php:1137
846
  #, fuzzy
847
  msgid "Submit button"
848
  msgstr "تقدم"
849
 
850
+ #: contact_form.php:1139
851
  msgid "Width in px, numbers only"
852
  msgstr ""
853
 
854
+ #: contact_form.php:1143
855
  msgid "Button color"
856
  msgstr ""
857
 
858
+ #: contact_form.php:1148
859
  msgid "Button text color"
860
  msgstr ""
861
 
862
+ #: contact_form.php:1164
863
  #, fuzzy
864
  msgid "Contact Form Pro | Preview"
865
  msgstr "نموذج الاتصال"
866
 
867
+ #: contact_form.php:1167
868
  msgid "Show with errors"
869
  msgstr ""
870
 
871
+ #: contact_form.php:1175
872
+ #: contact_form.php:1177
873
  msgid "Please enter your full name..."
874
  msgstr ""
875
 
876
+ #: contact_form.php:1188
877
+ #: contact_form.php:1190
878
  msgid "Please enter your address..."
879
  msgstr ""
880
 
881
+ #: contact_form.php:1199
882
+ #: contact_form.php:1201
883
  #, fuzzy
884
  msgid "Please enter your email address..."
885
  msgstr "استخدام هذا البريد الالكتروني:"
886
 
887
+ #: contact_form.php:1210
888
+ #: contact_form.php:1212
889
  msgid "Please enter your phone number..."
890
  msgstr ""
891
 
892
+ #: contact_form.php:1221
893
+ #: contact_form.php:1223
894
  msgid "Please enter subject..."
895
  msgstr ""
896
 
897
+ #: contact_form.php:1231
898
+ #: contact_form.php:1233
899
  msgid "Please enter your message..."
900
  msgstr ""
901
 
902
+ #: contact_form.php:1244
903
  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"
904
  msgstr ""
905
 
906
+ #: contact_form.php:1397
 
 
 
 
907
  msgid "You can attach the following file formats"
908
  msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
909
 
910
+ #: contact_form.php:1681
911
  msgid "Contact from"
912
  msgstr "اتصل من"
913
 
914
+ #: contact_form.php:1694
915
  msgid "Email"
916
  msgstr "البريد الألكتروني"
917
 
918
+ #: contact_form.php:1708
919
  msgid "Site"
920
  msgstr "الموقع"
921
 
922
+ #: contact_form.php:1758
923
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
924
  msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
925
 
926
+ #: contact_form.php:1809
927
  msgid "FAQ"
928
  msgstr "أسئلة وأجوبة"
929
 
930
+ #: contact_form.php:1810
931
  msgid "Support"
932
  msgstr "دعم"
933
 
934
+ #: contact_form.php:1858
935
  msgid "Are you sure that you want to delete this language data?"
936
  msgstr ""
937
 
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: 2013-07-16 16:03+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:03+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Sakałoŭ Alaksiej <nullbsd@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,761 +16,926 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "Плагины BWS"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Актываваныя пашырэньні"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Чытаць далей"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Наладкі"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Усталяваныя пашырэньні"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Рэкамэндаваныя да ўсталёўкі пашырэньні"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Рэкамэндаваныя да ўсталёўкі пашырэньні"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Спампаваць"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Усталявана %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Усталяваць з wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Калі ў вас ёсьць якія небудзь пытаньні, зьвяртайцеся да plugin@bestwebsoft.com ці запоўніце кантактную форму на нашым сайце"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Наладкі кантактнай формы"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Кантактная форма"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Наладкі кантактнай формы"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Кантактная форма"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Імя:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "E-mail адрас:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "E-mail адрас:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr "Тэлефон:"
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Тэма:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Паведамленьне:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Прычапіць файл:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Адправіць мне копію"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Адправіць"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Вашае імя - гэта абавязковы радок."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Радок e-mail адраса - обавязковы да запаўненьня"
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "Радок e-mail адраса - обавязковы да запаўненьня"
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  msgid "Phone number is required."
179
  msgstr "Вашае імя - абавязковае поле."
180
 
181
- #: contact_form.php:214
182
- #: contact_form.php:257
183
- #: contact_form.php:260
184
  msgid "Subject is required."
185
  msgstr "Поле Тэма - абавязковае."
186
 
187
- #: contact_form.php:215
188
- #: contact_form.php:256
189
- #: contact_form.php:259
190
  msgid "Message text is required."
191
  msgstr "Радок паведамленьня - абавязковы."
192
 
193
- #: contact_form.php:216
194
  msgid "File format is not valid."
195
  msgstr "Фармат файла не зьяўляецца дапушчальным."
196
 
197
- #: contact_form.php:217
198
  msgid "File upload error."
199
  msgstr ""
200
 
201
- #: contact_form.php:218
202
  msgid "The file could not be uploaded."
203
  msgstr ""
204
 
205
- #: contact_form.php:219
206
  msgid "This file is too large."
207
  msgstr ""
208
 
209
- #: contact_form.php:220
210
  msgid "Please fill out the CAPTCHA."
211
  msgstr "Калі ласка, запоўніце сымбалі з выявы."
212
 
213
- #: contact_form.php:221
214
  msgid "Please make corrections below and try again."
215
  msgstr "Калі ласка, зрабіце выпраўленьне ў радках ніжэй ды паўтарыце працэдуру"
216
 
217
- #: contact_form.php:223
218
- msgid "Thank you for contacting us."
219
- msgstr "Дзякуем за кантакт з намі."
220
-
221
- #: contact_form.php:494
222
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
223
  msgstr "Калі наладка 'Перайсьці на старонку' абрана, тады URL павінен быць запоўнены ў наступным фармаце"
224
 
225
- #: contact_form.php:503
226
  msgid "Such user does not exist. Settings are not saved."
227
  msgstr "Дадзены карыстальнік ня знойдзен. Наладкі не захаваны"
228
 
229
- #: contact_form.php:508
230
- #: contact_form.php:514
231
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
232
  msgstr "Калі ласка, увядзіце карэктны адрас для радка 'FROM'. Наладкі не захаваны."
233
 
234
- #: contact_form.php:519
235
  #, fuzzy
236
  msgid "Settings saved."
237
  msgstr "Наладкі захаваны."
238
 
239
- #: contact_form.php:544
240
- #: contact_form.php:792
241
  #, fuzzy
242
  msgid "Extra settings"
243
  msgstr "Наладкі"
244
 
245
- #: contact_form.php:549
246
- #: contact_form.php:1048
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 "Калі вы жадаеце дадаць Кантактную Форму на свой сайт, тады вам неабходна толькі скапіяваць ды ўставіць Shortcode у канктэнт старонкі, ці запісу, ці аздабленьня:"
249
 
250
- #: contact_form.php:550
251
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
252
  msgstr "Калі інфармацыя ў палях ніжэй адсутнічае, паведамленьне будзе адпраўлена на email адрас, які быў указаны пры рэгістрацыі на сайце."
253
 
254
- #: contact_form.php:554
255
  msgid "The user's email address:"
256
  msgstr "Электронны адрас карыстальніка:"
257
 
258
- #: contact_form.php:558
259
  msgid "Create a username"
260
  msgstr "Абярыце імя карыстальніка"
261
 
262
- #: contact_form.php:563
263
  msgid "Enter a username of the person who should get the messages from the contact form."
264
  msgstr "Увядзіце імя карыстальніка, які будзе атрымліваць паведамленьні кантактнай формы."
265
 
266
- #: contact_form.php:567
267
  msgid "Use this email address:"
268
  msgstr "Выкарыстоўваць гэты email-адрас:"
269
 
270
- #: contact_form.php:570
271
  msgid "Enter the email address you want the messages forwarded to."
272
  msgstr "Увядзіце адрас, на які хочаце перанакіраваць паведамленьне."
273
 
274
- #: contact_form.php:574
275
  msgid "Additional options"
276
  msgstr "Дадатковыя наладкі"
277
 
278
- #: contact_form.php:577
279
  msgid "What to use?"
280
  msgstr "Што выкарыстоўваць?"
281
 
282
- #: contact_form.php:580
283
  msgid "Wp-mail"
284
  msgstr "Wp-mail"
285
 
286
- #: contact_form.php:581
287
  msgid "You can use the wp_mail function for mailing"
288
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
289
 
290
- #: contact_form.php:587
291
  msgid "Mail"
292
  msgstr "Mail"
293
 
294
- #: contact_form.php:588
295
  msgid "To send mail you can use the php mail function"
296
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
297
 
298
- #: contact_form.php:592
299
  msgid "Change text of the 'FROM' field"
300
  msgstr "Зьмяніць тэкст для радка 'FROM' у лісьце"
301
 
302
- #: contact_form.php:598
303
  msgid "Enter the email address in the 'From' field"
304
  msgstr "Калі ласка, увядзіце адрас электроннай пошты ў поле 'From'"
305
 
306
- #: contact_form.php:600
307
  msgid "User email"
308
  msgstr ""
309
 
310
- #: contact_form.php:600
311
  #, fuzzy
312
  msgid "The email address of the user who fills the form will be used in the field 'From'."
313
  msgstr "Адрас электроннай пошты карыстальніка, які запаўняе форму будзе выкарыстоўвацца ў поле 'From'."
314
 
315
- #: contact_form.php:602
316
  msgid "This email address will be used in the 'From' field."
317
  msgstr "Гэты адрас будзе выкарыстоўвацца ў поле 'From'"
318
 
319
- #: contact_form.php:606
320
  #, fuzzy
321
  msgid "Display fields"
322
  msgstr "Адлюстраваць тэкст"
323
 
324
- #: contact_form.php:608
325
- #: contact_form.php:638
326
- #: contact_form.php:828
327
- #: contact_form.php:1480
328
  #, fuzzy
329
  msgid "Address"
330
  msgstr "E-mail адрас:"
331
 
332
- #: contact_form.php:609
333
- #: contact_form.php:640
334
- #: contact_form.php:1488
335
  msgid "Phone"
336
  msgstr "Тэлефон"
337
 
338
- #: contact_form.php:610
339
  #, fuzzy
340
  msgid "Attachment block"
341
  msgstr "Паказваць блок Прычапіць Файл"
342
 
343
- #: contact_form.php:610
344
  msgid "Users can attach the following file formats"
345
  msgstr "Карыстальнікі могуць прычапляць файлы наступных тыпаў"
346
 
347
- #: contact_form.php:611
348
  #, fuzzy
349
  msgid "Tips below the Attachment block"
350
  msgstr "Паказваць блок Прычапіць Файл"
351
 
352
- #: contact_form.php:612
353
  #, fuzzy
354
  msgid "Send me a copy block"
355
  msgstr "Паказаць блок Адправіць мне копію"
356
 
357
- #: contact_form.php:624
358
- #: contact_form.php:627
359
- #: contact_form.php:630
360
- #: contact_form.php:857
361
  msgid "Captcha"
362
  msgstr ""
363
 
364
- #: contact_form.php:624
365
- #: contact_form.php:627
366
- #: contact_form.php:630
367
- #: contact_form.php:857
368
  msgid "(powered by bestwebsoft.com)"
369
  msgstr ""
370
 
371
- #: contact_form.php:627
372
  #, fuzzy
373
  msgid "Activate captcha"
374
  msgstr "Актываваныя пашырэньні"
375
 
376
- #: contact_form.php:630
377
  #, fuzzy
378
  msgid "Download captcha"
379
  msgstr "Спампаваць"
380
 
381
- #: contact_form.php:635
382
  msgid "Required fields"
383
  msgstr "Абавязковыя палі"
384
 
385
- #: contact_form.php:637
386
- #: contact_form.php:823
387
- #: contact_form.php:1475
388
  msgid "Name"
389
  msgstr "Імя"
390
 
391
- #: contact_form.php:639
392
  #, fuzzy
393
  msgid "Email Address"
394
  msgstr "E-mail адрас:"
395
 
396
- #: contact_form.php:641
397
- #: contact_form.php:843
398
- #: contact_form.php:1491
399
  msgid "Subject"
400
  msgstr "Тэма"
401
 
402
- #: contact_form.php:642
403
- #: contact_form.php:847
404
- #: contact_form.php:1494
405
  msgid "Message"
406
  msgstr "Паведамленьне"
407
 
408
- #: contact_form.php:646
409
  #, fuzzy
410
  msgid "Display additional info in the email"
411
  msgstr "Паказ дадатковай інфармацыі ў лісьце"
412
 
413
- #: contact_form.php:651
414
- #: contact_form.php:1447
415
  msgid "Sent from (ip address)"
416
  msgstr "Адпраўлена ад (IP адрас)"
417
 
418
- #: contact_form.php:652
419
- #: contact_form.php:1452
420
  msgid "Date/Time"
421
  msgstr "Дата/Час"
422
 
423
- #: contact_form.php:653
424
- #: contact_form.php:1457
425
  msgid "Sent from (referer)"
426
  msgstr "Прыйшло з "
427
 
428
- #: contact_form.php:654
429
- #: contact_form.php:1462
430
  msgid "Using (user agent)"
431
  msgstr "Выкарыстоўваць (user agent)"
432
 
433
- #: contact_form.php:658
434
  msgid "Language settings for the field names in the form"
435
  msgstr "Моўныя наладкі для палёў у форме"
436
 
437
- #: contact_form.php:667
438
  #, fuzzy
439
  msgid "Add a language"
440
  msgstr "Дадаць мову"
441
 
442
- #: contact_form.php:671
443
  msgid "Change the names of the contact form fields and error messages"
444
  msgstr "Зьмяніць назвы палёў кантактнай формы й паведамленьняў аб памылках"
445
 
446
- #: contact_form.php:676
447
- #: contact_form.php:747
448
  msgid "English"
449
  msgstr "Ангельская"
450
 
451
- #: contact_form.php:695
452
- #: contact_form.php:724
453
  msgid "Error message for the Name field"
454
  msgstr "Паведамленьне аб памылкі для поля Імя Карыстальніка"
455
 
456
- #: contact_form.php:696
457
- #: contact_form.php:725
458
  #, fuzzy
459
  msgid "Error message for the Address field"
460
  msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
461
 
462
- #: contact_form.php:697
463
- #: contact_form.php:726
464
  msgid "Error message for the Email field"
465
  msgstr "Паведамленьне аб памылкі для поля Электронная Пошта"
466
 
467
- #: contact_form.php:698
468
- #: contact_form.php:727
469
  msgid "Error message for the Phone field"
470
  msgstr "Паведамленьне аб памылкі для поля Тэлефон"
471
 
472
- #: contact_form.php:699
473
- #: contact_form.php:728
474
  msgid "Error message for the Subject field"
475
  msgstr "Паведамленьне аб памылкі для поля Тэма"
476
 
477
- #: contact_form.php:700
478
- #: contact_form.php:729
479
  msgid "Error message for the Message field"
480
  msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
481
 
482
- #: contact_form.php:701
483
- #: contact_form.php:730
484
  #, fuzzy
485
  msgid "Error message about the file type for the Attachment field"
486
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
487
 
488
- #: contact_form.php:702
489
- #: contact_form.php:731
490
  #, fuzzy
491
  msgid "Error message while uploading a file for the Attachment field to the server"
492
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
493
 
494
- #: contact_form.php:703
495
- #: contact_form.php:732
496
  #, fuzzy
497
  msgid "Error message while moving the file for the Attachment field"
498
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
499
 
500
- #: contact_form.php:704
501
- #: contact_form.php:733
502
  #, fuzzy
503
  msgid "Error message when file size limit for the Attachment field is exceeded"
504
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
505
 
506
- #: contact_form.php:705
507
- #: contact_form.php:734
508
  msgid "Error message for the Captcha field"
509
  msgstr "Паведамленьне аб памылкі для поля Captcha"
510
 
511
- #: contact_form.php:706
512
- #: contact_form.php:735
513
  msgid "Error message for the whole form"
514
  msgstr "Паведамленьне аб памылцы для усёй формы"
515
 
516
- #: contact_form.php:708
517
- #: contact_form.php:737
518
- #: contact_form.php:756
519
- #: contact_form.php:762
520
  msgid "Use shortcode"
521
  msgstr "Выкарыстоўваць shortcode"
522
 
523
- #: contact_form.php:708
524
- #: contact_form.php:737
525
- #: contact_form.php:756
526
- #: contact_form.php:762
527
  msgid "for this language"
528
  msgstr "для дадзенай мовы"
529
 
530
- #: contact_form.php:744
531
  msgid "Action after email is sent"
532
  msgstr "Дзеяньні пасьля адпраўкі ліста"
533
 
534
- #: contact_form.php:746
535
  msgid "Display text"
536
  msgstr "Адлюстраваць тэкст"
537
 
538
- #: contact_form.php:755
539
- #: contact_form.php:761
540
  msgid "Text"
541
  msgstr "Тэкст"
542
 
543
- #: contact_form.php:768
544
  msgid "Redirect to the page"
545
  msgstr "Перакінуць на старонку"
546
 
547
- #: contact_form.php:769
548
  msgid "Url"
549
  msgstr "www-адрас"
550
 
551
- #: contact_form.php:774
552
- #: contact_form.php:949
553
  msgid "Save Changes"
554
  msgstr "Захаваць зьмены"
555
 
556
- #: contact_form.php:789
557
  #, fuzzy
558
  msgid "Contact Form Pro | Extra Settings"
559
  msgstr "Наладкі кантактнай формы"
560
 
561
- #: contact_form.php:796
562
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
563
  msgstr ""
564
 
565
- #: contact_form.php:803
566
  msgid "Errors output"
567
  msgstr ""
568
 
569
- #: contact_form.php:806
570
  msgid "Display error messages"
571
  msgstr ""
572
 
573
- #: contact_form.php:807
574
  msgid "Color of the input field errors."
575
  msgstr ""
576
 
577
- #: contact_form.php:808
578
  #, fuzzy
579
  msgid "Display error messages & color of the input field errors"
580
  msgstr "Паведамленьне аб памылкі для поля Тэма"
581
 
582
- #: contact_form.php:813
583
  msgid "Add placeholder to the input blocks"
584
  msgstr ""
585
 
586
- #: contact_form.php:819
587
  #, fuzzy
588
  msgid "Add tooltips"
589
  msgstr "Дадатковыя наладкі"
590
 
591
- #: contact_form.php:833
592
  #, fuzzy
593
  msgid "Email address"
594
  msgstr "E-mail адрас:"
595
 
596
- #: contact_form.php:838
597
  #, fuzzy
598
  msgid "Phone Number"
599
  msgstr "Тэлефон:"
600
 
601
- #: contact_form.php:852
602
  #, fuzzy
603
  msgid "Attachment"
604
  msgstr "Прычапіць файл:"
605
 
606
- #: contact_form.php:862
607
  #, fuzzy
608
  msgid "Style options"
609
  msgstr "Дадатковыя наладкі"
610
 
611
- #: contact_form.php:865
612
  msgid "Text color"
613
  msgstr ""
614
 
615
- #: contact_form.php:868
616
- #: contact_form.php:873
617
- #: contact_form.php:883
618
- #: contact_form.php:888
619
- #: contact_form.php:893
620
- #: contact_form.php:898
621
- #: contact_form.php:908
622
- #: contact_form.php:913
623
- #: contact_form.php:919
624
- #: contact_form.php:930
625
- #: contact_form.php:935
626
- #: contact_form.php:940
627
  msgid "Default"
628
  msgstr ""
629
 
630
- #: contact_form.php:870
631
  msgid "Label text color"
632
  msgstr ""
633
 
634
- #: contact_form.php:875
635
  msgid "Placeholder color"
636
  msgstr ""
637
 
638
- #: contact_form.php:880
639
  msgid "Errors color"
640
  msgstr ""
641
 
642
- #: contact_form.php:885
643
  msgid "Error text color"
644
  msgstr ""
645
 
646
- #: contact_form.php:890
647
  msgid "Background color of the input field errors"
648
  msgstr ""
649
 
650
- #: contact_form.php:895
651
  msgid "Border color of the input field errors"
652
  msgstr ""
653
 
654
- #: contact_form.php:900
655
  msgid "Placeholder color of the input field errors"
656
  msgstr ""
657
 
658
- #: contact_form.php:905
659
  #, fuzzy
660
  msgid "Input fields"
661
  msgstr "Адлюстраваць тэкст"
662
 
663
- #: contact_form.php:910
664
  msgid "Input fields background color"
665
  msgstr ""
666
 
667
- #: contact_form.php:915
668
  msgid "Text fields color"
669
  msgstr ""
670
 
671
- #: contact_form.php:917
672
  msgid "Border width in px, numbers only"
673
  msgstr ""
674
 
675
- #: contact_form.php:921
676
- #: contact_form.php:942
677
  msgid "Border color"
678
  msgstr ""
679
 
680
- #: contact_form.php:926
681
  #, fuzzy
682
  msgid "Submit button"
683
  msgstr "Адправіць"
684
 
685
- #: contact_form.php:928
686
  msgid "Width in px, numbers only"
687
  msgstr ""
688
 
689
- #: contact_form.php:932
690
  msgid "Button color"
691
  msgstr ""
692
 
693
- #: contact_form.php:937
694
  msgid "Button text color"
695
  msgstr ""
696
 
697
- #: contact_form.php:953
698
  #, fuzzy
699
  msgid "Contact Form Pro | Preview"
700
  msgstr "Кантактная форма"
701
 
702
- #: contact_form.php:956
703
  msgid "Show with errors"
704
  msgstr ""
705
 
706
- #: contact_form.php:964
707
- #: contact_form.php:966
708
  msgid "Please enter your full name..."
709
  msgstr ""
710
 
711
- #: contact_form.php:977
712
- #: contact_form.php:979
713
  msgid "Please enter your address..."
714
  msgstr ""
715
 
716
- #: contact_form.php:988
717
- #: contact_form.php:990
718
  #, fuzzy
719
  msgid "Please enter your email address..."
720
  msgstr "Выкарыстоўваць гэты email-адрас:"
721
 
722
- #: contact_form.php:999
723
- #: contact_form.php:1001
724
  msgid "Please enter your phone number..."
725
  msgstr ""
726
 
727
- #: contact_form.php:1010
728
- #: contact_form.php:1012
729
  msgid "Please enter subject..."
730
  msgstr ""
731
 
732
- #: contact_form.php:1020
733
- #: contact_form.php:1022
734
  msgid "Please enter your message..."
735
  msgstr ""
736
 
737
- #: contact_form.php:1033
738
  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"
739
  msgstr ""
740
 
741
- #: contact_form.php:1102
742
- msgid "Sorry, email message could not be delivered."
743
- msgstr "Прабачце, вашая электронная пошта не можа быць адпраўленай."
744
-
745
- #: contact_form.php:1186
746
  msgid "You can attach the following file formats"
747
  msgstr "Карыстальнікі могуць прычапіць файлы наступных тыпаў"
748
 
749
- #: contact_form.php:1470
750
  msgid "Contact from"
751
  msgstr "Кантактная форма"
752
 
753
- #: contact_form.php:1483
754
  msgid "Email"
755
  msgstr "Электронная пошта"
756
 
757
- #: contact_form.php:1497
758
  msgid "Site"
759
  msgstr "Сайт"
760
 
761
- #: contact_form.php:1547
762
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
763
  msgstr "Калі вы бачыце гэты MIME, значыць гэты тып не падтрымліваецца вашым паштовым кліентам!"
764
 
765
- #: contact_form.php:1598
766
  msgid "FAQ"
767
  msgstr "Пытаньні й адказы"
768
 
769
- #: contact_form.php:1599
770
  msgid "Support"
771
  msgstr "Падтрымка"
772
 
773
- #: contact_form.php:1647
774
  msgid "Are you sure that you want to delete this language data?"
775
  msgstr "Вы сапраўды хочаце выдаліць дадзеныя для гэтай мовы?"
776
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:54+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:54+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Sakałoŭ Alaksiej <nullbsd@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Паведамленьне"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Сайт"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Выкарыстоўваць гэты email-адрас:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Дзякуем за кантакт з намі."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Прабачце, вашая электронная пошта не можа быць адпраўленай."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "Плагины BWS"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Актываваныя пашырэньні"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Чытаць далей"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Наладкі"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Усталяваныя пашырэньні"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Рэкамэндаваныя да ўсталёўкі пашырэньні"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Рэкамэндаваныя да ўсталёўкі пашырэньні"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Спампаваць"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Усталявана %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Усталяваць з wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Калі ў вас ёсьць якія небудзь пытаньні, зьвяртайцеся да plugin@bestwebsoft.com ці запоўніце кантактную форму на нашым сайце"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Актываваныя пашырэньні"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Актываваныя пашырэньні"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Падтрымка"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Наладкі кантактнай формы"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Кантактная форма"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Наладкі кантактнай формы"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Кантактная форма"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Імя:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "E-mail адрас:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "E-mail адрас:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr "Тэлефон:"
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Тэма:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Паведамленьне:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Прычапіць файл:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Адправіць мне копію"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Адправіць"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Вашае імя - гэта абавязковы радок."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Радок e-mail адраса - обавязковы да запаўненьня"
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "Радок e-mail адраса - обавязковы да запаўненьня"
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  msgid "Phone number is required."
352
  msgstr "Вашае імя - абавязковае поле."
353
 
354
+ #: contact_form.php:425
355
+ #: contact_form.php:468
356
+ #: contact_form.php:471
357
  msgid "Subject is required."
358
  msgstr "Поле Тэма - абавязковае."
359
 
360
+ #: contact_form.php:426
361
+ #: contact_form.php:467
362
+ #: contact_form.php:470
363
  msgid "Message text is required."
364
  msgstr "Радок паведамленьня - абавязковы."
365
 
366
+ #: contact_form.php:427
367
  msgid "File format is not valid."
368
  msgstr "Фармат файла не зьяўляецца дапушчальным."
369
 
370
+ #: contact_form.php:428
371
  msgid "File upload error."
372
  msgstr ""
373
 
374
+ #: contact_form.php:429
375
  msgid "The file could not be uploaded."
376
  msgstr ""
377
 
378
+ #: contact_form.php:430
379
  msgid "This file is too large."
380
  msgstr ""
381
 
382
+ #: contact_form.php:431
383
  msgid "Please fill out the CAPTCHA."
384
  msgstr "Калі ласка, запоўніце сымбалі з выявы."
385
 
386
+ #: contact_form.php:432
387
  msgid "Please make corrections below and try again."
388
  msgstr "Калі ласка, зрабіце выпраўленьне ў радках ніжэй ды паўтарыце працэдуру"
389
 
390
+ #: contact_form.php:705
 
 
 
 
391
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
392
  msgstr "Калі наладка 'Перайсьці на старонку' абрана, тады URL павінен быць запоўнены ў наступным фармаце"
393
 
394
+ #: contact_form.php:714
395
  msgid "Such user does not exist. Settings are not saved."
396
  msgstr "Дадзены карыстальнік ня знойдзен. Наладкі не захаваны"
397
 
398
+ #: contact_form.php:719
399
+ #: contact_form.php:725
400
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
401
  msgstr "Калі ласка, увядзіце карэктны адрас для радка 'FROM'. Наладкі не захаваны."
402
 
403
+ #: contact_form.php:730
404
  #, fuzzy
405
  msgid "Settings saved."
406
  msgstr "Наладкі захаваны."
407
 
408
+ #: contact_form.php:755
409
+ #: contact_form.php:1003
410
  #, fuzzy
411
  msgid "Extra settings"
412
  msgstr "Наладкі"
413
 
414
+ #: contact_form.php:760
415
+ #: contact_form.php:1259
416
  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:"
417
  msgstr "Калі вы жадаеце дадаць Кантактную Форму на свой сайт, тады вам неабходна толькі скапіяваць ды ўставіць Shortcode у канктэнт старонкі, ці запісу, ці аздабленьня:"
418
 
419
+ #: contact_form.php:761
420
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
421
  msgstr "Калі інфармацыя ў палях ніжэй адсутнічае, паведамленьне будзе адпраўлена на email адрас, які быў указаны пры рэгістрацыі на сайце."
422
 
423
+ #: contact_form.php:765
424
  msgid "The user's email address:"
425
  msgstr "Электронны адрас карыстальніка:"
426
 
427
+ #: contact_form.php:769
428
  msgid "Create a username"
429
  msgstr "Абярыце імя карыстальніка"
430
 
431
+ #: contact_form.php:774
432
  msgid "Enter a username of the person who should get the messages from the contact form."
433
  msgstr "Увядзіце імя карыстальніка, які будзе атрымліваць паведамленьні кантактнай формы."
434
 
435
+ #: contact_form.php:778
436
  msgid "Use this email address:"
437
  msgstr "Выкарыстоўваць гэты email-адрас:"
438
 
439
+ #: contact_form.php:781
440
  msgid "Enter the email address you want the messages forwarded to."
441
  msgstr "Увядзіце адрас, на які хочаце перанакіраваць паведамленьне."
442
 
443
+ #: contact_form.php:785
444
  msgid "Additional options"
445
  msgstr "Дадатковыя наладкі"
446
 
447
+ #: contact_form.php:788
448
  msgid "What to use?"
449
  msgstr "Што выкарыстоўваць?"
450
 
451
+ #: contact_form.php:791
452
  msgid "Wp-mail"
453
  msgstr "Wp-mail"
454
 
455
+ #: contact_form.php:792
456
  msgid "You can use the wp_mail function for mailing"
457
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
458
 
459
+ #: contact_form.php:798
460
  msgid "Mail"
461
  msgstr "Mail"
462
 
463
+ #: contact_form.php:799
464
  msgid "To send mail you can use the php mail function"
465
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
466
 
467
+ #: contact_form.php:803
468
  msgid "Change text of the 'FROM' field"
469
  msgstr "Зьмяніць тэкст для радка 'FROM' у лісьце"
470
 
471
+ #: contact_form.php:809
472
  msgid "Enter the email address in the 'From' field"
473
  msgstr "Калі ласка, увядзіце адрас электроннай пошты ў поле 'From'"
474
 
475
+ #: contact_form.php:811
476
  msgid "User email"
477
  msgstr ""
478
 
479
+ #: contact_form.php:811
480
  #, fuzzy
481
  msgid "The email address of the user who fills the form will be used in the field 'From'."
482
  msgstr "Адрас электроннай пошты карыстальніка, які запаўняе форму будзе выкарыстоўвацца ў поле 'From'."
483
 
484
+ #: contact_form.php:813
485
  msgid "This email address will be used in the 'From' field."
486
  msgstr "Гэты адрас будзе выкарыстоўвацца ў поле 'From'"
487
 
488
+ #: contact_form.php:817
489
  #, fuzzy
490
  msgid "Display fields"
491
  msgstr "Адлюстраваць тэкст"
492
 
493
+ #: contact_form.php:819
494
+ #: contact_form.php:849
495
+ #: contact_form.php:1039
496
+ #: contact_form.php:1691
497
  #, fuzzy
498
  msgid "Address"
499
  msgstr "E-mail адрас:"
500
 
501
+ #: contact_form.php:820
502
+ #: contact_form.php:851
503
+ #: contact_form.php:1699
504
  msgid "Phone"
505
  msgstr "Тэлефон"
506
 
507
+ #: contact_form.php:821
508
  #, fuzzy
509
  msgid "Attachment block"
510
  msgstr "Паказваць блок Прычапіць Файл"
511
 
512
+ #: contact_form.php:821
513
  msgid "Users can attach the following file formats"
514
  msgstr "Карыстальнікі могуць прычапляць файлы наступных тыпаў"
515
 
516
+ #: contact_form.php:822
517
  #, fuzzy
518
  msgid "Tips below the Attachment block"
519
  msgstr "Паказваць блок Прычапіць Файл"
520
 
521
+ #: contact_form.php:823
522
  #, fuzzy
523
  msgid "Send me a copy block"
524
  msgstr "Паказаць блок Адправіць мне копію"
525
 
526
+ #: contact_form.php:835
527
+ #: contact_form.php:838
528
+ #: contact_form.php:841
529
+ #: contact_form.php:1068
530
  msgid "Captcha"
531
  msgstr ""
532
 
533
+ #: contact_form.php:835
534
+ #: contact_form.php:838
535
+ #: contact_form.php:841
536
+ #: contact_form.php:1068
537
  msgid "(powered by bestwebsoft.com)"
538
  msgstr ""
539
 
540
+ #: contact_form.php:838
541
  #, fuzzy
542
  msgid "Activate captcha"
543
  msgstr "Актываваныя пашырэньні"
544
 
545
+ #: contact_form.php:841
546
  #, fuzzy
547
  msgid "Download captcha"
548
  msgstr "Спампаваць"
549
 
550
+ #: contact_form.php:846
551
  msgid "Required fields"
552
  msgstr "Абавязковыя палі"
553
 
554
+ #: contact_form.php:848
555
+ #: contact_form.php:1034
556
+ #: contact_form.php:1686
557
  msgid "Name"
558
  msgstr "Імя"
559
 
560
+ #: contact_form.php:850
561
  #, fuzzy
562
  msgid "Email Address"
563
  msgstr "E-mail адрас:"
564
 
565
+ #: contact_form.php:852
566
+ #: contact_form.php:1054
567
+ #: contact_form.php:1702
568
  msgid "Subject"
569
  msgstr "Тэма"
570
 
571
+ #: contact_form.php:853
572
+ #: contact_form.php:1058
573
+ #: contact_form.php:1705
574
  msgid "Message"
575
  msgstr "Паведамленьне"
576
 
577
+ #: contact_form.php:857
578
  #, fuzzy
579
  msgid "Display additional info in the email"
580
  msgstr "Паказ дадатковай інфармацыі ў лісьце"
581
 
582
+ #: contact_form.php:862
583
+ #: contact_form.php:1658
584
  msgid "Sent from (ip address)"
585
  msgstr "Адпраўлена ад (IP адрас)"
586
 
587
+ #: contact_form.php:863
588
+ #: contact_form.php:1663
589
  msgid "Date/Time"
590
  msgstr "Дата/Час"
591
 
592
+ #: contact_form.php:864
593
+ #: contact_form.php:1668
594
  msgid "Sent from (referer)"
595
  msgstr "Прыйшло з "
596
 
597
+ #: contact_form.php:865
598
+ #: contact_form.php:1673
599
  msgid "Using (user agent)"
600
  msgstr "Выкарыстоўваць (user agent)"
601
 
602
+ #: contact_form.php:869
603
  msgid "Language settings for the field names in the form"
604
  msgstr "Моўныя наладкі для палёў у форме"
605
 
606
+ #: contact_form.php:878
607
  #, fuzzy
608
  msgid "Add a language"
609
  msgstr "Дадаць мову"
610
 
611
+ #: contact_form.php:882
612
  msgid "Change the names of the contact form fields and error messages"
613
  msgstr "Зьмяніць назвы палёў кантактнай формы й паведамленьняў аб памылках"
614
 
615
+ #: contact_form.php:887
616
+ #: contact_form.php:958
617
  msgid "English"
618
  msgstr "Ангельская"
619
 
620
+ #: contact_form.php:906
621
+ #: contact_form.php:935
622
  msgid "Error message for the Name field"
623
  msgstr "Паведамленьне аб памылкі для поля Імя Карыстальніка"
624
 
625
+ #: contact_form.php:907
626
+ #: contact_form.php:936
627
  #, fuzzy
628
  msgid "Error message for the Address field"
629
  msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
630
 
631
+ #: contact_form.php:908
632
+ #: contact_form.php:937
633
  msgid "Error message for the Email field"
634
  msgstr "Паведамленьне аб памылкі для поля Электронная Пошта"
635
 
636
+ #: contact_form.php:909
637
+ #: contact_form.php:938
638
  msgid "Error message for the Phone field"
639
  msgstr "Паведамленьне аб памылкі для поля Тэлефон"
640
 
641
+ #: contact_form.php:910
642
+ #: contact_form.php:939
643
  msgid "Error message for the Subject field"
644
  msgstr "Паведамленьне аб памылкі для поля Тэма"
645
 
646
+ #: contact_form.php:911
647
+ #: contact_form.php:940
648
  msgid "Error message for the Message field"
649
  msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
650
 
651
+ #: contact_form.php:912
652
+ #: contact_form.php:941
653
  #, fuzzy
654
  msgid "Error message about the file type for the Attachment field"
655
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
656
 
657
+ #: contact_form.php:913
658
+ #: contact_form.php:942
659
  #, fuzzy
660
  msgid "Error message while uploading a file for the Attachment field to the server"
661
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
662
 
663
+ #: contact_form.php:914
664
+ #: contact_form.php:943
665
  #, fuzzy
666
  msgid "Error message while moving the file for the Attachment field"
667
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
668
 
669
+ #: contact_form.php:915
670
+ #: contact_form.php:944
671
  #, fuzzy
672
  msgid "Error message when file size limit for the Attachment field is exceeded"
673
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
674
 
675
+ #: contact_form.php:916
676
+ #: contact_form.php:945
677
  msgid "Error message for the Captcha field"
678
  msgstr "Паведамленьне аб памылкі для поля Captcha"
679
 
680
+ #: contact_form.php:917
681
+ #: contact_form.php:946
682
  msgid "Error message for the whole form"
683
  msgstr "Паведамленьне аб памылцы для усёй формы"
684
 
685
+ #: contact_form.php:919
686
+ #: contact_form.php:948
687
+ #: contact_form.php:967
688
+ #: contact_form.php:973
689
  msgid "Use shortcode"
690
  msgstr "Выкарыстоўваць shortcode"
691
 
692
+ #: contact_form.php:919
693
+ #: contact_form.php:948
694
+ #: contact_form.php:967
695
+ #: contact_form.php:973
696
  msgid "for this language"
697
  msgstr "для дадзенай мовы"
698
 
699
+ #: contact_form.php:955
700
  msgid "Action after email is sent"
701
  msgstr "Дзеяньні пасьля адпраўкі ліста"
702
 
703
+ #: contact_form.php:957
704
  msgid "Display text"
705
  msgstr "Адлюстраваць тэкст"
706
 
707
+ #: contact_form.php:966
708
+ #: contact_form.php:972
709
  msgid "Text"
710
  msgstr "Тэкст"
711
 
712
+ #: contact_form.php:979
713
  msgid "Redirect to the page"
714
  msgstr "Перакінуць на старонку"
715
 
716
+ #: contact_form.php:980
717
  msgid "Url"
718
  msgstr "www-адрас"
719
 
720
+ #: contact_form.php:985
721
+ #: contact_form.php:1160
722
  msgid "Save Changes"
723
  msgstr "Захаваць зьмены"
724
 
725
+ #: contact_form.php:1000
726
  #, fuzzy
727
  msgid "Contact Form Pro | Extra Settings"
728
  msgstr "Наладкі кантактнай формы"
729
 
730
+ #: contact_form.php:1007
731
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
732
  msgstr ""
733
 
734
+ #: contact_form.php:1014
735
  msgid "Errors output"
736
  msgstr ""
737
 
738
+ #: contact_form.php:1017
739
  msgid "Display error messages"
740
  msgstr ""
741
 
742
+ #: contact_form.php:1018
743
  msgid "Color of the input field errors."
744
  msgstr ""
745
 
746
+ #: contact_form.php:1019
747
  #, fuzzy
748
  msgid "Display error messages & color of the input field errors"
749
  msgstr "Паведамленьне аб памылкі для поля Тэма"
750
 
751
+ #: contact_form.php:1024
752
  msgid "Add placeholder to the input blocks"
753
  msgstr ""
754
 
755
+ #: contact_form.php:1030
756
  #, fuzzy
757
  msgid "Add tooltips"
758
  msgstr "Дадатковыя наладкі"
759
 
760
+ #: contact_form.php:1044
761
  #, fuzzy
762
  msgid "Email address"
763
  msgstr "E-mail адрас:"
764
 
765
+ #: contact_form.php:1049
766
  #, fuzzy
767
  msgid "Phone Number"
768
  msgstr "Тэлефон:"
769
 
770
+ #: contact_form.php:1063
771
  #, fuzzy
772
  msgid "Attachment"
773
  msgstr "Прычапіць файл:"
774
 
775
+ #: contact_form.php:1073
776
  #, fuzzy
777
  msgid "Style options"
778
  msgstr "Дадатковыя наладкі"
779
 
780
+ #: contact_form.php:1076
781
  msgid "Text color"
782
  msgstr ""
783
 
784
+ #: contact_form.php:1079
785
+ #: contact_form.php:1084
786
+ #: contact_form.php:1094
787
+ #: contact_form.php:1099
788
+ #: contact_form.php:1104
789
+ #: contact_form.php:1109
790
+ #: contact_form.php:1119
791
+ #: contact_form.php:1124
792
+ #: contact_form.php:1130
793
+ #: contact_form.php:1141
794
+ #: contact_form.php:1146
795
+ #: contact_form.php:1151
796
  msgid "Default"
797
  msgstr ""
798
 
799
+ #: contact_form.php:1081
800
  msgid "Label text color"
801
  msgstr ""
802
 
803
+ #: contact_form.php:1086
804
  msgid "Placeholder color"
805
  msgstr ""
806
 
807
+ #: contact_form.php:1091
808
  msgid "Errors color"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1096
812
  msgid "Error text color"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1101
816
  msgid "Background color of the input field errors"
817
  msgstr ""
818
 
819
+ #: contact_form.php:1106
820
  msgid "Border color of the input field errors"
821
  msgstr ""
822
 
823
+ #: contact_form.php:1111
824
  msgid "Placeholder color of the input field errors"
825
  msgstr ""
826
 
827
+ #: contact_form.php:1116
828
  #, fuzzy
829
  msgid "Input fields"
830
  msgstr "Адлюстраваць тэкст"
831
 
832
+ #: contact_form.php:1121
833
  msgid "Input fields background color"
834
  msgstr ""
835
 
836
+ #: contact_form.php:1126
837
  msgid "Text fields color"
838
  msgstr ""
839
 
840
+ #: contact_form.php:1128
841
  msgid "Border width in px, numbers only"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1132
845
+ #: contact_form.php:1153
846
  msgid "Border color"
847
  msgstr ""
848
 
849
+ #: contact_form.php:1137
850
  #, fuzzy
851
  msgid "Submit button"
852
  msgstr "Адправіць"
853
 
854
+ #: contact_form.php:1139
855
  msgid "Width in px, numbers only"
856
  msgstr ""
857
 
858
+ #: contact_form.php:1143
859
  msgid "Button color"
860
  msgstr ""
861
 
862
+ #: contact_form.php:1148
863
  msgid "Button text color"
864
  msgstr ""
865
 
866
+ #: contact_form.php:1164
867
  #, fuzzy
868
  msgid "Contact Form Pro | Preview"
869
  msgstr "Кантактная форма"
870
 
871
+ #: contact_form.php:1167
872
  msgid "Show with errors"
873
  msgstr ""
874
 
875
+ #: contact_form.php:1175
876
+ #: contact_form.php:1177
877
  msgid "Please enter your full name..."
878
  msgstr ""
879
 
880
+ #: contact_form.php:1188
881
+ #: contact_form.php:1190
882
  msgid "Please enter your address..."
883
  msgstr ""
884
 
885
+ #: contact_form.php:1199
886
+ #: contact_form.php:1201
887
  #, fuzzy
888
  msgid "Please enter your email address..."
889
  msgstr "Выкарыстоўваць гэты email-адрас:"
890
 
891
+ #: contact_form.php:1210
892
+ #: contact_form.php:1212
893
  msgid "Please enter your phone number..."
894
  msgstr ""
895
 
896
+ #: contact_form.php:1221
897
+ #: contact_form.php:1223
898
  msgid "Please enter subject..."
899
  msgstr ""
900
 
901
+ #: contact_form.php:1231
902
+ #: contact_form.php:1233
903
  msgid "Please enter your message..."
904
  msgstr ""
905
 
906
+ #: contact_form.php:1244
907
  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"
908
  msgstr ""
909
 
910
+ #: contact_form.php:1397
 
 
 
 
911
  msgid "You can attach the following file formats"
912
  msgstr "Карыстальнікі могуць прычапіць файлы наступных тыпаў"
913
 
914
+ #: contact_form.php:1681
915
  msgid "Contact from"
916
  msgstr "Кантактная форма"
917
 
918
+ #: contact_form.php:1694
919
  msgid "Email"
920
  msgstr "Электронная пошта"
921
 
922
+ #: contact_form.php:1708
923
  msgid "Site"
924
  msgstr "Сайт"
925
 
926
+ #: contact_form.php:1758
927
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
928
  msgstr "Калі вы бачыце гэты MIME, значыць гэты тып не падтрымліваецца вашым паштовым кліентам!"
929
 
930
+ #: contact_form.php:1809
931
  msgid "FAQ"
932
  msgstr "Пытаньні й адказы"
933
 
934
+ #: contact_form.php:1810
935
  msgid "Support"
936
  msgstr "Падтрымка"
937
 
938
+ #: contact_form.php:1858
939
  msgid "Are you sure that you want to delete this language data?"
940
  msgstr "Вы сапраўды хочаце выдаліць дадзеныя для гэтай мовы?"
941
 
languages/contact_form-bg_BG.mo CHANGED
Binary file
languages/contact_form-bg_BG.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-16 16:03+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:03+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,756 +16,921 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "Разширение BWS"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Активиране на приложението"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Прочетете повече"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Настройки"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Инсталиране на приложението"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Препоръчани приложения"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Препоръчани приложения"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Изтегляне"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Инсталиране %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Инсталирай сега от wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com или попълнете нашата форма за контакти на нашия сайт"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Настройки на Формата за контакт"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Форма за контакт"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Настройки на Формата за контакт"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Форма за контакт"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Име:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "E-mail адрес:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "E-mail адрес:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Тема:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Съобщение:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Прикачване на файл:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Изпрати ми копие"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Изпрати"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Вашето име е задължително."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Правилният Email адрес е задължителен."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "Правилният Email адрес е задължителен."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "Вашето име е задължително."
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "Заглавието е задължитено."
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "Текстовото съобщение е задължително."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "Прикаченият файл не се поддържа"
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "Моля попълнете CAPTCHA."
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Благодарим Ви, че се свързахте с нас."
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr ""
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "Опциите са запазени"
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "Настройки"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "Ако искате да добавите формата за контакт на своят сайт копирайте и поставете този код в страницата или публикацията или джаджа:"
251
 
252
- #: contact_form.php:550
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:554
257
  msgid "The user's email address:"
258
  msgstr "Използвайте Email на Wordpress потребител:"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "Избиране на потребител"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "Задайте името на потребителя, който ще получава съобщенията от формата за контакт."
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "Използвайте този Email:"
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "Задаване на Email адрес, който ще се използва за получаване на съобщения."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "Допълнителни настройки"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr ""
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr ""
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "Mail"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr ""
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "Промяна от полета на формата за контакт"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Покажи опция за прикачване на файл"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "E-mail адрес:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr ""
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Покажи опция за прикачване на файл"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Потребителите могат да прикачват файлове от следните видове"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Покажи опция за прикачване на файл"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Показване на опция за изпращане на копие"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Активиране на приложението"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "Изтегляне"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Име"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "E-mail адрес:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Относно"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Съобщение"
409
 
410
- #: contact_form.php:646
411
  msgid "Display additional info in the email"
412
  msgstr ""
413
 
414
- #: contact_form.php:651
415
- #: contact_form.php:1447
416
  msgid "Sent from (ip address)"
417
  msgstr "Изпратено от (ip адрес)"
418
 
419
- #: contact_form.php:652
420
- #: contact_form.php:1452
421
  msgid "Date/Time"
422
  msgstr "Дата/Час"
423
 
424
- #: contact_form.php:653
425
- #: contact_form.php:1457
426
  msgid "Sent from (referer)"
427
  msgstr "Идва от (referer)"
428
 
429
- #: contact_form.php:654
430
- #: contact_form.php:1462
431
  msgid "Using (user agent)"
432
  msgstr "Използвайки (user agent)"
433
 
434
- #: contact_form.php:658
435
  msgid "Language settings for the field names in the form"
436
  msgstr ""
437
 
438
- #: contact_form.php:667
439
  msgid "Add a language"
440
  msgstr ""
441
 
442
- #: contact_form.php:671
443
  #, fuzzy
444
  msgid "Change the names of the contact form fields and error messages"
445
  msgstr "Промяна на етикетите за полета във формата за контакт"
446
 
447
- #: contact_form.php:676
448
- #: contact_form.php:747
449
  msgid "English"
450
  msgstr ""
451
 
452
- #: contact_form.php:695
453
- #: contact_form.php:724
454
  msgid "Error message for the Name field"
455
  msgstr ""
456
 
457
- #: contact_form.php:696
458
- #: contact_form.php:725
459
  msgid "Error message for the Address field"
460
  msgstr ""
461
 
462
- #: contact_form.php:697
463
- #: contact_form.php:726
464
  msgid "Error message for the Email field"
465
  msgstr ""
466
 
467
- #: contact_form.php:698
468
- #: contact_form.php:727
469
  msgid "Error message for the Phone field"
470
  msgstr ""
471
 
472
- #: contact_form.php:699
473
- #: contact_form.php:728
474
  msgid "Error message for the Subject field"
475
  msgstr ""
476
 
477
- #: contact_form.php:700
478
- #: contact_form.php:729
479
  msgid "Error message for the Message field"
480
  msgstr ""
481
 
482
- #: contact_form.php:701
483
- #: contact_form.php:730
484
  msgid "Error message about the file type for the Attachment field"
485
  msgstr ""
486
 
487
- #: contact_form.php:702
488
- #: contact_form.php:731
489
  msgid "Error message while uploading a file for the Attachment field to the server"
490
  msgstr ""
491
 
492
- #: contact_form.php:703
493
- #: contact_form.php:732
494
  msgid "Error message while moving the file for the Attachment field"
495
  msgstr ""
496
 
497
- #: contact_form.php:704
498
- #: contact_form.php:733
499
  msgid "Error message when file size limit for the Attachment field is exceeded"
500
  msgstr ""
501
 
502
- #: contact_form.php:705
503
- #: contact_form.php:734
504
  msgid "Error message for the Captcha field"
505
  msgstr ""
506
 
507
- #: contact_form.php:706
508
- #: contact_form.php:735
509
  msgid "Error message for the whole form"
510
  msgstr ""
511
 
512
- #: contact_form.php:708
513
- #: contact_form.php:737
514
- #: contact_form.php:756
515
- #: contact_form.php:762
516
  msgid "Use shortcode"
517
  msgstr ""
518
 
519
- #: contact_form.php:708
520
- #: contact_form.php:737
521
- #: contact_form.php:756
522
- #: contact_form.php:762
523
  msgid "for this language"
524
  msgstr ""
525
 
526
- #: contact_form.php:744
527
  msgid "Action after email is sent"
528
  msgstr ""
529
 
530
- #: contact_form.php:746
531
  #, fuzzy
532
  msgid "Display text"
533
  msgstr "Покажи опция за прикачване на файл"
534
 
535
- #: contact_form.php:755
536
- #: contact_form.php:761
537
  msgid "Text"
538
  msgstr ""
539
 
540
- #: contact_form.php:768
541
  msgid "Redirect to the page"
542
  msgstr ""
543
 
544
- #: contact_form.php:769
545
  msgid "Url"
546
  msgstr ""
547
 
548
- #: contact_form.php:774
549
- #: contact_form.php:949
550
  msgid "Save Changes"
551
  msgstr "Запис на промените"
552
 
553
- #: contact_form.php:789
554
  #, fuzzy
555
  msgid "Contact Form Pro | Extra Settings"
556
  msgstr "Настройки на Формата за контакт"
557
 
558
- #: contact_form.php:796
559
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
560
  msgstr ""
561
 
562
- #: contact_form.php:803
563
  msgid "Errors output"
564
  msgstr ""
565
 
566
- #: contact_form.php:806
567
  msgid "Display error messages"
568
  msgstr ""
569
 
570
- #: contact_form.php:807
571
  msgid "Color of the input field errors."
572
  msgstr ""
573
 
574
- #: contact_form.php:808
575
  msgid "Display error messages & color of the input field errors"
576
  msgstr ""
577
 
578
- #: contact_form.php:813
579
  msgid "Add placeholder to the input blocks"
580
  msgstr ""
581
 
582
- #: contact_form.php:819
583
  #, fuzzy
584
  msgid "Add tooltips"
585
  msgstr "Допълнителни настройки"
586
 
587
- #: contact_form.php:833
588
  #, fuzzy
589
  msgid "Email address"
590
  msgstr "E-mail адрес:"
591
 
592
- #: contact_form.php:838
593
  msgid "Phone Number"
594
  msgstr ""
595
 
596
- #: contact_form.php:852
597
  #, fuzzy
598
  msgid "Attachment"
599
  msgstr "Прикачване на файл:"
600
 
601
- #: contact_form.php:862
602
  #, fuzzy
603
  msgid "Style options"
604
  msgstr "Допълнителни настройки"
605
 
606
- #: contact_form.php:865
607
  msgid "Text color"
608
  msgstr ""
609
 
610
- #: contact_form.php:868
611
- #: contact_form.php:873
612
- #: contact_form.php:883
613
- #: contact_form.php:888
614
- #: contact_form.php:893
615
- #: contact_form.php:898
616
- #: contact_form.php:908
617
- #: contact_form.php:913
618
- #: contact_form.php:919
619
- #: contact_form.php:930
620
- #: contact_form.php:935
621
- #: contact_form.php:940
622
  msgid "Default"
623
  msgstr ""
624
 
625
- #: contact_form.php:870
626
  msgid "Label text color"
627
  msgstr ""
628
 
629
- #: contact_form.php:875
630
  msgid "Placeholder color"
631
  msgstr ""
632
 
633
- #: contact_form.php:880
634
  msgid "Errors color"
635
  msgstr ""
636
 
637
- #: contact_form.php:885
638
  msgid "Error text color"
639
  msgstr ""
640
 
641
- #: contact_form.php:890
642
  msgid "Background color of the input field errors"
643
  msgstr ""
644
 
645
- #: contact_form.php:895
646
  msgid "Border color of the input field errors"
647
  msgstr ""
648
 
649
- #: contact_form.php:900
650
  msgid "Placeholder color of the input field errors"
651
  msgstr ""
652
 
653
- #: contact_form.php:905
654
  #, fuzzy
655
  msgid "Input fields"
656
  msgstr "Покажи опция за прикачване на файл"
657
 
658
- #: contact_form.php:910
659
  msgid "Input fields background color"
660
  msgstr ""
661
 
662
- #: contact_form.php:915
663
  msgid "Text fields color"
664
  msgstr ""
665
 
666
- #: contact_form.php:917
667
  msgid "Border width in px, numbers only"
668
  msgstr ""
669
 
670
- #: contact_form.php:921
671
- #: contact_form.php:942
672
  msgid "Border color"
673
  msgstr ""
674
 
675
- #: contact_form.php:926
676
  #, fuzzy
677
  msgid "Submit button"
678
  msgstr "Изпрати"
679
 
680
- #: contact_form.php:928
681
  msgid "Width in px, numbers only"
682
  msgstr ""
683
 
684
- #: contact_form.php:932
685
  msgid "Button color"
686
  msgstr ""
687
 
688
- #: contact_form.php:937
689
  msgid "Button text color"
690
  msgstr ""
691
 
692
- #: contact_form.php:953
693
  #, fuzzy
694
  msgid "Contact Form Pro | Preview"
695
  msgstr "Форма за контакт"
696
 
697
- #: contact_form.php:956
698
  msgid "Show with errors"
699
  msgstr ""
700
 
701
- #: contact_form.php:964
702
- #: contact_form.php:966
703
  msgid "Please enter your full name..."
704
  msgstr ""
705
 
706
- #: contact_form.php:977
707
- #: contact_form.php:979
708
  msgid "Please enter your address..."
709
  msgstr ""
710
 
711
- #: contact_form.php:988
712
- #: contact_form.php:990
713
  #, fuzzy
714
  msgid "Please enter your email address..."
715
  msgstr "Използвайте този Email:"
716
 
717
- #: contact_form.php:999
718
- #: contact_form.php:1001
719
  msgid "Please enter your phone number..."
720
  msgstr ""
721
 
722
- #: contact_form.php:1010
723
- #: contact_form.php:1012
724
  msgid "Please enter subject..."
725
  msgstr ""
726
 
727
- #: contact_form.php:1020
728
- #: contact_form.php:1022
729
  msgid "Please enter your message..."
730
  msgstr ""
731
 
732
- #: contact_form.php:1033
733
  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"
734
  msgstr ""
735
 
736
- #: contact_form.php:1102
737
- msgid "Sorry, email message could not be delivered."
738
- msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
739
-
740
- #: contact_form.php:1186
741
  msgid "You can attach the following file formats"
742
  msgstr "Можете да прикачвате файлове от следните типове"
743
 
744
- #: contact_form.php:1470
745
  msgid "Contact from"
746
  msgstr "Форма за контакт"
747
 
748
- #: contact_form.php:1483
749
  msgid "Email"
750
  msgstr "Email"
751
 
752
- #: contact_form.php:1497
753
  msgid "Site"
754
  msgstr "Сайт"
755
 
756
- #: contact_form.php:1547
757
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
758
  msgstr "Ако видиждате това значи, че вашият MIME клиент за електронна поща не поддържа MIME тип!"
759
 
760
- #: contact_form.php:1598
761
  msgid "FAQ"
762
  msgstr "FAQ"
763
 
764
- #: contact_form.php:1599
765
  msgid "Support"
766
  msgstr "Поддръжка"
767
 
768
- #: contact_form.php:1647
769
  msgid "Are you sure that you want to delete this language data?"
770
  msgstr ""
771
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:54+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:54+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Съобщение"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Сайт"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Използвайте този Email:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Благодарим Ви, че се свързахте с нас."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "Разширение BWS"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Активиране на приложението"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Прочетете повече"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Настройки"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Инсталиране на приложението"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Препоръчани приложения"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Препоръчани приложения"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Изтегляне"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Инсталиране %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Инсталирай сега от wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com или попълнете нашата форма за контакти на нашия сайт"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Активиране на приложението"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Активиране на приложението"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Поддръжка"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Настройки на Формата за контакт"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Форма за контакт"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Настройки на Формата за контакт"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Форма за контакт"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Име:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "E-mail адрес:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "E-mail адрес:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Тема:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Съобщение:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Прикачване на файл:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Изпрати ми копие"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Изпрати"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Вашето име е задължително."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Правилният Email адрес е задължителен."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "Правилният Email адрес е задължителен."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "Вашето име е задължително."
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "Заглавието е задължитено."
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "Текстовото съобщение е задължително."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "Прикаченият файл не се поддържа"
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "Моля попълнете CAPTCHA."
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr ""
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "Опциите са запазени"
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "Настройки"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "Ако искате да добавите формата за контакт на своят сайт копирайте и поставете този код в страницата или публикацията или джаджа:"
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено на Email адрес, който е определен по време на регистрацията"
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "Използвайте Email на Wordpress потребител:"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "Избиране на потребител"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "Задайте името на потребителя, който ще получава съобщенията от формата за контакт."
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "Използвайте този Email:"
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "Задаване на Email адрес, който ще се използва за получаване на съобщения."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "Допълнителни настройки"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr ""
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr ""
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "Mail"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr ""
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "Промяна от полета на формата за контакт"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Покажи опция за прикачване на файл"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "E-mail адрес:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr ""
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Покажи опция за прикачване на файл"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Потребителите могат да прикачват файлове от следните видове"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Покажи опция за прикачване на файл"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Показване на опция за изпращане на копие"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Активиране на приложението"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "Изтегляне"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Име"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "E-mail адрес:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Относно"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Съобщение"
578
 
579
+ #: contact_form.php:857
580
  msgid "Display additional info in the email"
581
  msgstr ""
582
 
583
+ #: contact_form.php:862
584
+ #: contact_form.php:1658
585
  msgid "Sent from (ip address)"
586
  msgstr "Изпратено от (ip адрес)"
587
 
588
+ #: contact_form.php:863
589
+ #: contact_form.php:1663
590
  msgid "Date/Time"
591
  msgstr "Дата/Час"
592
 
593
+ #: contact_form.php:864
594
+ #: contact_form.php:1668
595
  msgid "Sent from (referer)"
596
  msgstr "Идва от (referer)"
597
 
598
+ #: contact_form.php:865
599
+ #: contact_form.php:1673
600
  msgid "Using (user agent)"
601
  msgstr "Използвайки (user agent)"
602
 
603
+ #: contact_form.php:869
604
  msgid "Language settings for the field names in the form"
605
  msgstr ""
606
 
607
+ #: contact_form.php:878
608
  msgid "Add a language"
609
  msgstr ""
610
 
611
+ #: contact_form.php:882
612
  #, fuzzy
613
  msgid "Change the names of the contact form fields and error messages"
614
  msgstr "Промяна на етикетите за полета във формата за контакт"
615
 
616
+ #: contact_form.php:887
617
+ #: contact_form.php:958
618
  msgid "English"
619
  msgstr ""
620
 
621
+ #: contact_form.php:906
622
+ #: contact_form.php:935
623
  msgid "Error message for the Name field"
624
  msgstr ""
625
 
626
+ #: contact_form.php:907
627
+ #: contact_form.php:936
628
  msgid "Error message for the Address field"
629
  msgstr ""
630
 
631
+ #: contact_form.php:908
632
+ #: contact_form.php:937
633
  msgid "Error message for the Email field"
634
  msgstr ""
635
 
636
+ #: contact_form.php:909
637
+ #: contact_form.php:938
638
  msgid "Error message for the Phone field"
639
  msgstr ""
640
 
641
+ #: contact_form.php:910
642
+ #: contact_form.php:939
643
  msgid "Error message for the Subject field"
644
  msgstr ""
645
 
646
+ #: contact_form.php:911
647
+ #: contact_form.php:940
648
  msgid "Error message for the Message field"
649
  msgstr ""
650
 
651
+ #: contact_form.php:912
652
+ #: contact_form.php:941
653
  msgid "Error message about the file type for the Attachment field"
654
  msgstr ""
655
 
656
+ #: contact_form.php:913
657
+ #: contact_form.php:942
658
  msgid "Error message while uploading a file for the Attachment field to the server"
659
  msgstr ""
660
 
661
+ #: contact_form.php:914
662
+ #: contact_form.php:943
663
  msgid "Error message while moving the file for the Attachment field"
664
  msgstr ""
665
 
666
+ #: contact_form.php:915
667
+ #: contact_form.php:944
668
  msgid "Error message when file size limit for the Attachment field is exceeded"
669
  msgstr ""
670
 
671
+ #: contact_form.php:916
672
+ #: contact_form.php:945
673
  msgid "Error message for the Captcha field"
674
  msgstr ""
675
 
676
+ #: contact_form.php:917
677
+ #: contact_form.php:946
678
  msgid "Error message for the whole form"
679
  msgstr ""
680
 
681
+ #: contact_form.php:919
682
+ #: contact_form.php:948
683
+ #: contact_form.php:967
684
+ #: contact_form.php:973
685
  msgid "Use shortcode"
686
  msgstr ""
687
 
688
+ #: contact_form.php:919
689
+ #: contact_form.php:948
690
+ #: contact_form.php:967
691
+ #: contact_form.php:973
692
  msgid "for this language"
693
  msgstr ""
694
 
695
+ #: contact_form.php:955
696
  msgid "Action after email is sent"
697
  msgstr ""
698
 
699
+ #: contact_form.php:957
700
  #, fuzzy
701
  msgid "Display text"
702
  msgstr "Покажи опция за прикачване на файл"
703
 
704
+ #: contact_form.php:966
705
+ #: contact_form.php:972
706
  msgid "Text"
707
  msgstr ""
708
 
709
+ #: contact_form.php:979
710
  msgid "Redirect to the page"
711
  msgstr ""
712
 
713
+ #: contact_form.php:980
714
  msgid "Url"
715
  msgstr ""
716
 
717
+ #: contact_form.php:985
718
+ #: contact_form.php:1160
719
  msgid "Save Changes"
720
  msgstr "Запис на промените"
721
 
722
+ #: contact_form.php:1000
723
  #, fuzzy
724
  msgid "Contact Form Pro | Extra Settings"
725
  msgstr "Настройки на Формата за контакт"
726
 
727
+ #: contact_form.php:1007
728
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
729
  msgstr ""
730
 
731
+ #: contact_form.php:1014
732
  msgid "Errors output"
733
  msgstr ""
734
 
735
+ #: contact_form.php:1017
736
  msgid "Display error messages"
737
  msgstr ""
738
 
739
+ #: contact_form.php:1018
740
  msgid "Color of the input field errors."
741
  msgstr ""
742
 
743
+ #: contact_form.php:1019
744
  msgid "Display error messages & color of the input field errors"
745
  msgstr ""
746
 
747
+ #: contact_form.php:1024
748
  msgid "Add placeholder to the input blocks"
749
  msgstr ""
750
 
751
+ #: contact_form.php:1030
752
  #, fuzzy
753
  msgid "Add tooltips"
754
  msgstr "Допълнителни настройки"
755
 
756
+ #: contact_form.php:1044
757
  #, fuzzy
758
  msgid "Email address"
759
  msgstr "E-mail адрес:"
760
 
761
+ #: contact_form.php:1049
762
  msgid "Phone Number"
763
  msgstr ""
764
 
765
+ #: contact_form.php:1063
766
  #, fuzzy
767
  msgid "Attachment"
768
  msgstr "Прикачване на файл:"
769
 
770
+ #: contact_form.php:1073
771
  #, fuzzy
772
  msgid "Style options"
773
  msgstr "Допълнителни настройки"
774
 
775
+ #: contact_form.php:1076
776
  msgid "Text color"
777
  msgstr ""
778
 
779
+ #: contact_form.php:1079
780
+ #: contact_form.php:1084
781
+ #: contact_form.php:1094
782
+ #: contact_form.php:1099
783
+ #: contact_form.php:1104
784
+ #: contact_form.php:1109
785
+ #: contact_form.php:1119
786
+ #: contact_form.php:1124
787
+ #: contact_form.php:1130
788
+ #: contact_form.php:1141
789
+ #: contact_form.php:1146
790
+ #: contact_form.php:1151
791
  msgid "Default"
792
  msgstr ""
793
 
794
+ #: contact_form.php:1081
795
  msgid "Label text color"
796
  msgstr ""
797
 
798
+ #: contact_form.php:1086
799
  msgid "Placeholder color"
800
  msgstr ""
801
 
802
+ #: contact_form.php:1091
803
  msgid "Errors color"
804
  msgstr ""
805
 
806
+ #: contact_form.php:1096
807
  msgid "Error text color"
808
  msgstr ""
809
 
810
+ #: contact_form.php:1101
811
  msgid "Background color of the input field errors"
812
  msgstr ""
813
 
814
+ #: contact_form.php:1106
815
  msgid "Border color of the input field errors"
816
  msgstr ""
817
 
818
+ #: contact_form.php:1111
819
  msgid "Placeholder color of the input field errors"
820
  msgstr ""
821
 
822
+ #: contact_form.php:1116
823
  #, fuzzy
824
  msgid "Input fields"
825
  msgstr "Покажи опция за прикачване на файл"
826
 
827
+ #: contact_form.php:1121
828
  msgid "Input fields background color"
829
  msgstr ""
830
 
831
+ #: contact_form.php:1126
832
  msgid "Text fields color"
833
  msgstr ""
834
 
835
+ #: contact_form.php:1128
836
  msgid "Border width in px, numbers only"
837
  msgstr ""
838
 
839
+ #: contact_form.php:1132
840
+ #: contact_form.php:1153
841
  msgid "Border color"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1137
845
  #, fuzzy
846
  msgid "Submit button"
847
  msgstr "Изпрати"
848
 
849
+ #: contact_form.php:1139
850
  msgid "Width in px, numbers only"
851
  msgstr ""
852
 
853
+ #: contact_form.php:1143
854
  msgid "Button color"
855
  msgstr ""
856
 
857
+ #: contact_form.php:1148
858
  msgid "Button text color"
859
  msgstr ""
860
 
861
+ #: contact_form.php:1164
862
  #, fuzzy
863
  msgid "Contact Form Pro | Preview"
864
  msgstr "Форма за контакт"
865
 
866
+ #: contact_form.php:1167
867
  msgid "Show with errors"
868
  msgstr ""
869
 
870
+ #: contact_form.php:1175
871
+ #: contact_form.php:1177
872
  msgid "Please enter your full name..."
873
  msgstr ""
874
 
875
+ #: contact_form.php:1188
876
+ #: contact_form.php:1190
877
  msgid "Please enter your address..."
878
  msgstr ""
879
 
880
+ #: contact_form.php:1199
881
+ #: contact_form.php:1201
882
  #, fuzzy
883
  msgid "Please enter your email address..."
884
  msgstr "Използвайте този Email:"
885
 
886
+ #: contact_form.php:1210
887
+ #: contact_form.php:1212
888
  msgid "Please enter your phone number..."
889
  msgstr ""
890
 
891
+ #: contact_form.php:1221
892
+ #: contact_form.php:1223
893
  msgid "Please enter subject..."
894
  msgstr ""
895
 
896
+ #: contact_form.php:1231
897
+ #: contact_form.php:1233
898
  msgid "Please enter your message..."
899
  msgstr ""
900
 
901
+ #: contact_form.php:1244
902
  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"
903
  msgstr ""
904
 
905
+ #: contact_form.php:1397
 
 
 
 
906
  msgid "You can attach the following file formats"
907
  msgstr "Можете да прикачвате файлове от следните типове"
908
 
909
+ #: contact_form.php:1681
910
  msgid "Contact from"
911
  msgstr "Форма за контакт"
912
 
913
+ #: contact_form.php:1694
914
  msgid "Email"
915
  msgstr "Email"
916
 
917
+ #: contact_form.php:1708
918
  msgid "Site"
919
  msgstr "Сайт"
920
 
921
+ #: contact_form.php:1758
922
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
923
  msgstr "Ако видиждате това значи, че вашият MIME клиент за електронна поща не поддържа MIME тип!"
924
 
925
+ #: contact_form.php:1809
926
  msgid "FAQ"
927
  msgstr "FAQ"
928
 
929
+ #: contact_form.php:1810
930
  msgid "Support"
931
  msgstr "Поддръжка"
932
 
933
+ #: contact_form.php:1858
934
  msgid "Are you sure that you want to delete this language data?"
935
  msgstr ""
936
 
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: 2013-07-16 16:03+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:03+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Kenneth <kenneth@snollocer.net>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,724 +16,889 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid "Pro plugins"
21
  msgstr "Plugins Pro"
22
 
23
- #: contact_form.php:103
24
- #: contact_form.php:129
25
  msgid "Activated plugins"
26
  msgstr "Plugin activat"
27
 
28
- #: contact_form.php:105
29
- #: contact_form.php:113
30
- #: contact_form.php:121
31
- #: contact_form.php:131
32
- #: contact_form.php:139
33
- #: contact_form.php:147
34
  msgid "Read more"
35
  msgstr "Llegir més"
36
 
37
- #: contact_form.php:105
38
- #: contact_form.php:131
39
- #: contact_form.php:543
40
- #: contact_form.php:791
41
- #: contact_form.php:1588
42
- #: contact_form.php:1597
43
  msgid "Settings"
44
  msgstr "Configuració"
45
 
46
- #: contact_form.php:111
47
- #: contact_form.php:137
48
  msgid "Installed plugins"
49
  msgstr "Plugins instal·lats"
50
 
51
- #: contact_form.php:119
52
- #: contact_form.php:145
53
  msgid "Recommended plugins"
54
  msgstr "Plugins recomanants"
55
 
56
- #: contact_form.php:121
57
  msgid "Purchase"
58
  msgstr "Comprar"
59
 
60
- #: contact_form.php:126
61
  msgid "Free plugins"
62
  msgstr "Plugins gratuïts"
63
 
64
- #: contact_form.php:147
65
  msgid "Download"
66
  msgstr "Descarregar"
67
 
68
- #: contact_form.php:147
69
  #, php-format
70
  msgid "Install %s"
71
  msgstr "Instal·la %s"
72
 
73
- #: contact_form.php:147
74
  msgid "Install now from wordpress.org"
75
  msgstr "Instal·la ara des de wordpress.org"
76
 
77
- #: contact_form.php:152
78
  msgid "If you have any questions, please contact us via"
79
  msgstr "Si té alguna pregunta, contacti'ns si us plau via plugin@bestwebsoft.com o utilitzi el formulari de contacte de la nostra web"
80
 
81
- #: contact_form.php:161
82
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  msgid "Contact Form Settings"
84
  msgstr "Opcions Contact Form"
85
 
86
- #: contact_form.php:161
87
  msgid "Contact Form"
88
  msgstr "Contact Form"
89
 
90
- #: contact_form.php:162
91
  msgid "Contact Form Pro Extra Settings"
92
  msgstr "Opcions extra del Contact Form Pro"
93
 
94
- #: contact_form.php:162
95
- #: contact_form.php:797
96
  msgid "Contact Form Pro"
97
  msgstr "Contact Form Pro"
98
 
99
- #: contact_form.php:201
100
- #: contact_form.php:686
101
- #: contact_form.php:715
102
  msgid "Name:"
103
  msgstr "Nom:"
104
 
105
- #: contact_form.php:202
106
- #: contact_form.php:687
107
- #: contact_form.php:716
108
  msgid "Address:"
109
  msgstr "Adreça:"
110
 
111
- #: contact_form.php:203
112
- #: contact_form.php:688
113
- #: contact_form.php:717
114
  msgid "Email Address:"
115
  msgstr "Adreça de correu electrònic:"
116
 
117
- #: contact_form.php:204
118
- #: contact_form.php:689
119
- #: contact_form.php:718
120
  msgid "Phone number:"
121
  msgstr "Nombre de telèfon"
122
 
123
- #: contact_form.php:205
124
- #: contact_form.php:690
125
- #: contact_form.php:719
126
  msgid "Subject:"
127
  msgstr "Asumpte:"
128
 
129
- #: contact_form.php:206
130
- #: contact_form.php:691
131
- #: contact_form.php:720
132
  msgid "Message:"
133
  msgstr "Missatge:"
134
 
135
- #: contact_form.php:207
136
- #: contact_form.php:692
137
- #: contact_form.php:721
138
  msgid "Attachment:"
139
  msgstr "Adjunt:"
140
 
141
- #: contact_form.php:208
142
- #: contact_form.php:263
143
- #: contact_form.php:693
144
- #: contact_form.php:722
145
  msgid "Send me a copy"
146
  msgstr "Envia'm una còpia"
147
 
148
- #: contact_form.php:209
149
- #: contact_form.php:694
150
- #: contact_form.php:723
151
  msgid "Submit"
152
  msgstr "Enviar"
153
 
154
- #: contact_form.php:210
155
  msgid "Your name is required."
156
  msgstr "El seu nom es obligatori."
157
 
158
- #: contact_form.php:211
159
  msgid "Address is required."
160
  msgstr "Una adreça vàlida és obligatòria."
161
 
162
- #: contact_form.php:212
163
  msgid "A valid email address is required."
164
  msgstr "Una Adreça de correu electrònic és obligatòria."
165
 
166
- #: contact_form.php:213
167
- #: contact_form.php:258
168
- #: contact_form.php:261
169
  msgid "Phone number is required."
170
  msgstr "El seu nombre de telèfon és obligatori."
171
 
172
- #: contact_form.php:214
173
- #: contact_form.php:257
174
- #: contact_form.php:260
175
  msgid "Subject is required."
176
  msgstr "L'assumpte és obligatori."
177
 
178
- #: contact_form.php:215
179
- #: contact_form.php:256
180
- #: contact_form.php:259
181
  msgid "Message text is required."
182
  msgstr "El missatge és obligatori."
183
 
184
- #: contact_form.php:216
185
  msgid "File format is not valid."
186
  msgstr "El format de l'adjunt és incorrecte."
187
 
188
- #: contact_form.php:217
189
  msgid "File upload error."
190
  msgstr "Error de càrrega del fitxer"
191
 
192
- #: contact_form.php:218
193
  msgid "The file could not be uploaded."
194
  msgstr "El fitxer no ha pogut ser carregat"
195
 
196
- #: contact_form.php:219
197
  msgid "This file is too large."
198
  msgstr "Aquest document és massa gran."
199
 
200
- #: contact_form.php:220
201
  msgid "Please fill out the CAPTCHA."
202
  msgstr "Si us plau completi el CAPTCHA"
203
 
204
- #: contact_form.php:221
205
  msgid "Please make corrections below and try again."
206
  msgstr "Si us plau, corregeixi les dades i provi un altre cop."
207
 
208
- #: contact_form.php:223
209
- msgid "Thank you for contacting us."
210
- msgstr "Gràcies per contactar amb nosaltres"
211
-
212
- #: contact_form.php:494
213
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
214
  msgstr "Si l'opció de 'redireccionament a la pàgina' està seleccionat llavors el camp URL ha d'estar en el següent format"
215
 
216
- #: contact_form.php:503
217
  msgid "Such user does not exist. Settings are not saved."
218
  msgstr "Usuari inexistent. Els canvis no s'han desat."
219
 
220
- #: contact_form.php:508
221
- #: contact_form.php:514
222
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
223
  msgstr "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis no s'han desat."
224
 
225
- #: contact_form.php:519
226
  msgid "Settings saved."
227
  msgstr "Configuració desada."
228
 
229
- #: contact_form.php:544
230
- #: contact_form.php:792
231
  msgid "Extra settings"
232
  msgstr "Configuració extra"
233
 
234
- #: contact_form.php:549
235
- #: contact_form.php:1048
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 "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el seu missatge, pàgina o widget:"
238
 
239
- #: contact_form.php:550
240
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
241
  msgstr "Si la informació d'aquest camp queda buida, s'usarà l'adreça especificada durant el registre."
242
 
243
- #: contact_form.php:554
244
  msgid "The user's email address:"
245
  msgstr "Adreça de correu electrònic de l'usuari:"
246
 
247
- #: contact_form.php:558
248
  msgid "Create a username"
249
  msgstr "Seleccioni un nom d'usuari"
250
 
251
- #: contact_form.php:563
252
  msgid "Enter a username of the person who should get the messages from the contact form."
253
  msgstr "Introdueixi el nom de l'usuari que rebrà missatges des de contact form"
254
 
255
- #: contact_form.php:567
256
  msgid "Use this email address:"
257
  msgstr "Usi aquesta adreça de correu electrònic::"
258
 
259
- #: contact_form.php:570
260
  msgid "Enter the email address you want the messages forwarded to."
261
  msgstr "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
262
 
263
- #: contact_form.php:574
264
  msgid "Additional options"
265
  msgstr "Opcions addicionals"
266
 
267
- #: contact_form.php:577
268
  msgid "What to use?"
269
  msgstr "Què usar?"
270
 
271
- #: contact_form.php:580
272
  msgid "Wp-mail"
273
  msgstr "Wp-mail"
274
 
275
- #: contact_form.php:581
276
  msgid "You can use the wp_mail function for mailing"
277
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
278
 
279
- #: contact_form.php:587
280
  msgid "Mail"
281
  msgstr "Mail"
282
 
283
- #: contact_form.php:588
284
  msgid "To send mail you can use the php mail function"
285
  msgstr "Per enviar correu vostè pot usar la funció 'php mail'"
286
 
287
- #: contact_form.php:592
288
  msgid "Change text of the 'FROM' field"
289
  msgstr "Modifica el camp DE al contact form"
290
 
291
- #: contact_form.php:598
292
  msgid "Enter the email address in the 'From' field"
293
  msgstr "Introduir el correu electrònic al camp 'From'"
294
 
295
- #: contact_form.php:600
296
  msgid "User email"
297
  msgstr ""
298
 
299
- #: contact_form.php:600
300
  msgid "The email address of the user who fills the form will be used in the field 'From'."
301
  msgstr "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de posar al camp 'From'."
302
 
303
- #: contact_form.php:602
304
  msgid "This email address will be used in the 'From' field."
305
  msgstr "Aquesta adreça de correu electrònic s'utilitzarà al camp 'De'"
306
 
307
- #: contact_form.php:606
308
  msgid "Display fields"
309
  msgstr "Mostra els camps"
310
 
311
- #: contact_form.php:608
312
- #: contact_form.php:638
313
- #: contact_form.php:828
314
- #: contact_form.php:1480
315
  msgid "Address"
316
  msgstr "Adreça:"
317
 
318
- #: contact_form.php:609
319
- #: contact_form.php:640
320
- #: contact_form.php:1488
321
  msgid "Phone"
322
  msgstr "Telèfon"
323
 
324
- #: contact_form.php:610
325
  msgid "Attachment block"
326
  msgstr "Adjunt blocat"
327
 
328
- #: contact_form.php:610
329
  msgid "Users can attach the following file formats"
330
  msgstr "Els usuaris poden adjuntar els següents formats d'arxiu"
331
 
332
- #: contact_form.php:611
333
  msgid "Tips below the Attachment block"
334
  msgstr "Consells del blocatge de l'adjunt"
335
 
336
- #: contact_form.php:612
337
  msgid "Send me a copy block"
338
  msgstr "Envia'm una còpia"
339
 
340
- #: contact_form.php:624
341
- #: contact_form.php:627
342
- #: contact_form.php:630
343
- #: contact_form.php:857
344
  msgid "Captcha"
345
  msgstr "Captcha"
346
 
347
- #: contact_form.php:624
348
- #: contact_form.php:627
349
- #: contact_form.php:630
350
- #: contact_form.php:857
351
  msgid "(powered by bestwebsoft.com)"
352
  msgstr "(Impulsat per bestwebsoft.com)"
353
 
354
- #: contact_form.php:627
355
  msgid "Activate captcha"
356
  msgstr "Captcha activat"
357
 
358
- #: contact_form.php:630
359
  msgid "Download captcha"
360
  msgstr "Descarrega captcha"
361
 
362
- #: contact_form.php:635
363
  msgid "Required fields"
364
  msgstr "Camps requerits"
365
 
366
- #: contact_form.php:637
367
- #: contact_form.php:823
368
- #: contact_form.php:1475
369
  msgid "Name"
370
  msgstr "Nom"
371
 
372
- #: contact_form.php:639
373
  msgid "Email Address"
374
  msgstr "Adreça de correu electrònic:"
375
 
376
- #: contact_form.php:641
377
- #: contact_form.php:843
378
- #: contact_form.php:1491
379
  msgid "Subject"
380
  msgstr "Assumpte"
381
 
382
- #: contact_form.php:642
383
- #: contact_form.php:847
384
- #: contact_form.php:1494
385
  msgid "Message"
386
  msgstr "MIssatge"
387
 
388
- #: contact_form.php:646
389
  msgid "Display additional info in the email"
390
  msgstr "Mostra informació addicional al correu electrònic,"
391
 
392
- #: contact_form.php:651
393
- #: contact_form.php:1447
394
  msgid "Sent from (ip address)"
395
  msgstr "Enviat des de (adreça IP)"
396
 
397
- #: contact_form.php:652
398
- #: contact_form.php:1452
399
  msgid "Date/Time"
400
  msgstr "Data/hora"
401
 
402
- #: contact_form.php:653
403
- #: contact_form.php:1457
404
  msgid "Sent from (referer)"
405
  msgstr "Enviat des de (referent)"
406
 
407
- #: contact_form.php:654
408
- #: contact_form.php:1462
409
  msgid "Using (user agent)"
410
  msgstr "Usant (user agent)"
411
 
412
- #: contact_form.php:658
413
  msgid "Language settings for the field names in the form"
414
  msgstr "Configuració de la llengua als noms dels camps del formulari"
415
 
416
- #: contact_form.php:667
417
  msgid "Add a language"
418
  msgstr "Afegeix lengua"
419
 
420
- #: contact_form.php:671
421
  msgid "Change the names of the contact form fields and error messages"
422
  msgstr "Modifica els noms dels camps i els missatges d'error del formulari de contacte"
423
 
424
- #: contact_form.php:676
425
- #: contact_form.php:747
426
  msgid "English"
427
  msgstr "Anglès"
428
 
429
- #: contact_form.php:695
430
- #: contact_form.php:724
431
  msgid "Error message for the Name field"
432
  msgstr "Missatge d'error per al camp 'Nom'"
433
 
434
- #: contact_form.php:696
435
- #: contact_form.php:725
436
  msgid "Error message for the Address field"
437
  msgstr "Missatge d'error per al camp 'Adreça'"
438
 
439
- #: contact_form.php:697
440
- #: contact_form.php:726
441
  msgid "Error message for the Email field"
442
  msgstr "Missatge d'error per al camp 'Adreça de correu electrònic'"
443
 
444
- #: contact_form.php:698
445
- #: contact_form.php:727
446
  msgid "Error message for the Phone field"
447
  msgstr "Missatge d'error per al camp 'Telèfon\""
448
 
449
- #: contact_form.php:699
450
- #: contact_form.php:728
451
  msgid "Error message for the Subject field"
452
  msgstr "Missatge d'error per al camp 'Assumpte'"
453
 
454
- #: contact_form.php:700
455
- #: contact_form.php:729
456
  msgid "Error message for the Message field"
457
  msgstr "Missatge d'error per al camp 'Missatge'"
458
 
459
- #: contact_form.php:701
460
- #: contact_form.php:730
461
  msgid "Error message about the file type for the Attachment field"
462
  msgstr "Missatge d'error sobre el tipus de per al camp 'Adjunt'"
463
 
464
- #: contact_form.php:702
465
- #: contact_form.php:731
466
  msgid "Error message while uploading a file for the Attachment field to the server"
467
  msgstr "Missatge d'error al carregar al servidor un fitxer per al camp Adjunt"
468
 
469
- #: contact_form.php:703
470
- #: contact_form.php:732
471
  msgid "Error message while moving the file for the Attachment field"
472
  msgstr "Missatge d'error al mourerun fitxer per al camp Adjunt"
473
 
474
- #: contact_form.php:704
475
- #: contact_form.php:733
476
  msgid "Error message when file size limit for the Attachment field is exceeded"
477
  msgstr "Missatge d'error al superar el límit de mida de fitxer per al camp Adjunt"
478
 
479
- #: contact_form.php:705
480
- #: contact_form.php:734
481
  msgid "Error message for the Captcha field"
482
  msgstr "Missatge d'error al camp Captcha"
483
 
484
- #: contact_form.php:706
485
- #: contact_form.php:735
486
  msgid "Error message for the whole form"
487
  msgstr "Missatge d'error a tot el formulari"
488
 
489
- #: contact_form.php:708
490
- #: contact_form.php:737
491
- #: contact_form.php:756
492
- #: contact_form.php:762
493
  msgid "Use shortcode"
494
  msgstr "useu un codi curt"
495
 
496
- #: contact_form.php:708
497
- #: contact_form.php:737
498
- #: contact_form.php:756
499
- #: contact_form.php:762
500
  msgid "for this language"
501
  msgstr "Per aquesta llengua"
502
 
503
- #: contact_form.php:744
504
  msgid "Action after email is sent"
505
  msgstr "Accions després d'enviar un correu electrònic."
506
 
507
- #: contact_form.php:746
508
  msgid "Display text"
509
  msgstr "Mostra el text"
510
 
511
- #: contact_form.php:755
512
- #: contact_form.php:761
513
  msgid "Text"
514
  msgstr "Text"
515
 
516
- #: contact_form.php:768
517
  msgid "Redirect to the page"
518
  msgstr "Redirigir a la pàgina"
519
 
520
- #: contact_form.php:769
521
  msgid "Url"
522
  msgstr "Url"
523
 
524
- #: contact_form.php:774
525
- #: contact_form.php:949
526
  msgid "Save Changes"
527
  msgstr "Desar els canvis"
528
 
529
- #: contact_form.php:789
530
  msgid "Contact Form Pro | Extra Settings"
531
  msgstr "Opcions extra | Contact Form Pro"
532
 
533
- #: contact_form.php:796
534
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
535
  msgstr "Aquesta funcionalitat està disponible en la versió Pro del connector. Per a més detalls, si us plau seguiu l'enllaç"
536
 
537
- #: contact_form.php:803
538
  msgid "Errors output"
539
  msgstr "Errors de sortida"
540
 
541
- #: contact_form.php:806
542
  msgid "Display error messages"
543
  msgstr "Mostra els missatges d'error"
544
 
545
- #: contact_form.php:807
546
  msgid "Color of the input field errors."
547
  msgstr "Color dels errors al camp d'entrada"
548
 
549
- #: contact_form.php:808
550
  msgid "Display error messages & color of the input field errors"
551
  msgstr "Mostra els missatges d'error i el color dels errors del camp d'entrada"
552
 
553
- #: contact_form.php:813
554
  msgid "Add placeholder to the input blocks"
555
  msgstr "Afegeix marcador de posició als blocs d'entrada"
556
 
557
- #: contact_form.php:819
558
  msgid "Add tooltips"
559
  msgstr "Afegir consells sobre les eines"
560
 
561
- #: contact_form.php:833
562
  msgid "Email address"
563
  msgstr "Adreça de correu electrònic:"
564
 
565
- #: contact_form.php:838
566
  msgid "Phone Number"
567
  msgstr "Nombre de telèfon"
568
 
569
- #: contact_form.php:852
570
  msgid "Attachment"
571
  msgstr "Adjunt:"
572
 
573
- #: contact_form.php:862
574
  msgid "Style options"
575
  msgstr "Opcions d'estil"
576
 
577
- #: contact_form.php:865
578
  msgid "Text color"
579
  msgstr "Color del text"
580
 
581
- #: contact_form.php:868
582
- #: contact_form.php:873
583
- #: contact_form.php:883
584
- #: contact_form.php:888
585
- #: contact_form.php:893
586
- #: contact_form.php:898
587
- #: contact_form.php:908
588
- #: contact_form.php:913
589
- #: contact_form.php:919
590
- #: contact_form.php:930
591
- #: contact_form.php:935
592
- #: contact_form.php:940
593
  msgid "Default"
594
  msgstr "Per defecte"
595
 
596
- #: contact_form.php:870
597
  msgid "Label text color"
598
  msgstr "Color del text de l'etiqeta"
599
 
600
- #: contact_form.php:875
601
  msgid "Placeholder color"
602
  msgstr "Color del marcador de posició"
603
 
604
- #: contact_form.php:880
605
  msgid "Errors color"
606
  msgstr "Color dels errors"
607
 
608
- #: contact_form.php:885
609
  msgid "Error text color"
610
  msgstr "Color del text d'error"
611
 
612
- #: contact_form.php:890
613
  msgid "Background color of the input field errors"
614
  msgstr "Color de fons dels errors del camp d'entrada"
615
 
616
- #: contact_form.php:895
617
  msgid "Border color of the input field errors"
618
  msgstr "Color de la vora dels errors del camp d'entrada"
619
 
620
- #: contact_form.php:900
621
  msgid "Placeholder color of the input field errors"
622
  msgstr "Color del marcador de posició dels errors del camp d'entrada"
623
 
624
- #: contact_form.php:905
625
  msgid "Input fields"
626
  msgstr "Visualitza l'adjunt"
627
 
628
- #: contact_form.php:910
629
  msgid "Input fields background color"
630
  msgstr "Color de fons dels camps d'entrada"
631
 
632
- #: contact_form.php:915
633
  msgid "Text fields color"
634
  msgstr "Color dels camps de text"
635
 
636
- #: contact_form.php:917
637
  msgid "Border width in px, numbers only"
638
  msgstr "Ample de vora en px, sols nombres"
639
 
640
- #: contact_form.php:921
641
- #: contact_form.php:942
642
  msgid "Border color"
643
  msgstr "Color de la vora"
644
 
645
- #: contact_form.php:926
646
  msgid "Submit button"
647
  msgstr "Enviar"
648
 
649
  # #: contact_form.php:928
650
- #: contact_form.php:928
651
  msgid "Width in px, numbers only"
652
  msgstr "Ample en px, sols nombres"
653
 
654
- #: contact_form.php:932
655
  msgid "Button color"
656
  msgstr "Color del botó"
657
 
658
- #: contact_form.php:937
659
  msgid "Button text color"
660
  msgstr "Color del text del botó"
661
 
662
- #: contact_form.php:953
663
  msgid "Contact Form Pro | Preview"
664
  msgstr "Contact Form Pro | Vista prèvia"
665
 
666
- #: contact_form.php:956
667
  msgid "Show with errors"
668
  msgstr "Mostra amb errors"
669
 
670
- #: contact_form.php:964
671
- #: contact_form.php:966
672
  msgid "Please enter your full name..."
673
  msgstr "Si us plau introduïu el nom complet"
674
 
675
- #: contact_form.php:977
676
- #: contact_form.php:979
677
  msgid "Please enter your address..."
678
  msgstr "Si us plau introduïu l'adreça"
679
 
680
- #: contact_form.php:988
681
- #: contact_form.php:990
682
  msgid "Please enter your email address..."
683
  msgstr "Si us plau introdueixi el seu e-mail"
684
 
685
- #: contact_form.php:999
686
- #: contact_form.php:1001
687
  msgid "Please enter your phone number..."
688
  msgstr "Si us plau introduïu el nombre de telèfon"
689
 
690
- #: contact_form.php:1010
691
- #: contact_form.php:1012
692
  msgid "Please enter subject..."
693
  msgstr "Si us plau introduïu l'assumpte"
694
 
695
- #: contact_form.php:1020
696
- #: contact_form.php:1022
697
  msgid "Please enter your message..."
698
  msgstr "Si us plau introduïu el missatge"
699
 
700
- #: contact_form.php:1033
701
  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"
702
  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"
703
 
704
- #: contact_form.php:1102
705
- msgid "Sorry, email message could not be delivered."
706
- msgstr "Ho sentim, el seu e-mail no ha pogut ser lliurat."
707
-
708
- #: contact_form.php:1186
709
  msgid "You can attach the following file formats"
710
  msgstr "Pot adjuntar els següents formats d'arxiu"
711
 
712
- #: contact_form.php:1470
713
  msgid "Contact from"
714
  msgstr "Contact from"
715
 
716
- #: contact_form.php:1483
717
  msgid "Email"
718
  msgstr "Adreça de correu electrònic"
719
 
720
- #: contact_form.php:1497
721
  msgid "Site"
722
  msgstr "Lloc"
723
 
724
- #: contact_form.php:1547
725
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
726
  msgstr "Si pot veure aquest MIME, vol dir que el tipus MIME no és compatible amb el seu client de correu electrònic!"
727
 
728
- #: contact_form.php:1598
729
  msgid "FAQ"
730
  msgstr "FAQ"
731
 
732
- #: contact_form.php:1599
733
  msgid "Support"
734
  msgstr "Suport"
735
 
736
- #: contact_form.php:1647
737
  msgid "Are you sure that you want to delete this language data?"
738
  msgstr "Està vostè segur que vol esborrar aquest idioma?"
739
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:54+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:54+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Kenneth <kenneth@snollocer.net>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "MIssatge"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Lloc"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Si us plau introdueixi el seu e-mail"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Gràcies per contactar amb nosaltres"
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Ho sentim, el seu e-mail no ha pogut ser lliurat."
164
+
165
+ #: contact_form.php:250
166
  msgid "Pro plugins"
167
  msgstr "Plugins Pro"
168
 
169
+ #: contact_form.php:253
170
+ #: contact_form.php:279
171
  msgid "Activated plugins"
172
  msgstr "Plugin activat"
173
 
174
+ #: contact_form.php:255
175
+ #: contact_form.php:263
176
+ #: contact_form.php:271
177
+ #: contact_form.php:281
178
+ #: contact_form.php:289
179
+ #: contact_form.php:297
180
  msgid "Read more"
181
  msgstr "Llegir més"
182
 
183
+ #: contact_form.php:255
184
+ #: contact_form.php:281
185
+ #: contact_form.php:754
186
+ #: contact_form.php:1002
187
+ #: contact_form.php:1799
188
+ #: contact_form.php:1808
189
  msgid "Settings"
190
  msgstr "Configuració"
191
 
192
+ #: contact_form.php:261
193
+ #: contact_form.php:287
194
  msgid "Installed plugins"
195
  msgstr "Plugins instal·lats"
196
 
197
+ #: contact_form.php:269
198
+ #: contact_form.php:295
199
  msgid "Recommended plugins"
200
  msgstr "Plugins recomanants"
201
 
202
+ #: contact_form.php:271
203
  msgid "Purchase"
204
  msgstr "Comprar"
205
 
206
+ #: contact_form.php:276
207
  msgid "Free plugins"
208
  msgstr "Plugins gratuïts"
209
 
210
+ #: contact_form.php:297
211
  msgid "Download"
212
  msgstr "Descarregar"
213
 
214
+ #: contact_form.php:297
215
  #, php-format
216
  msgid "Install %s"
217
  msgstr "Instal·la %s"
218
 
219
+ #: contact_form.php:297
220
  msgid "Install now from wordpress.org"
221
  msgstr "Instal·la ara des de wordpress.org"
222
 
223
+ #: contact_form.php:302
224
  msgid "If you have any questions, please contact us via"
225
  msgstr "Si té alguna pregunta, contacti'ns si us plau via plugin@bestwebsoft.com o utilitzi el formulari de contacte de la nostra web"
226
 
227
+ #: contact_form.php:309
228
+ msgid "System status"
229
+ msgstr ""
230
+
231
+ #: contact_form.php:313
232
+ msgid "Environment"
233
+ msgstr ""
234
+
235
+ #: contact_form.php:324
236
+ #, fuzzy
237
+ msgid "Active Plugins"
238
+ msgstr "Plugin activat"
239
+
240
+ #: contact_form.php:335
241
+ #, fuzzy
242
+ msgid "Inactive Plugins"
243
+ msgstr "Plugin activat"
244
+
245
+ #: contact_form.php:349
246
+ #, fuzzy
247
+ msgid "Send to support"
248
+ msgstr "Suport"
249
+
250
+ #: contact_form.php:356
251
+ msgid "Send to custom email &#187;"
252
+ msgstr ""
253
+
254
+ #: contact_form.php:372
255
+ #: contact_form.php:750
256
  msgid "Contact Form Settings"
257
  msgstr "Opcions Contact Form"
258
 
259
+ #: contact_form.php:372
260
  msgid "Contact Form"
261
  msgstr "Contact Form"
262
 
263
+ #: contact_form.php:373
264
  msgid "Contact Form Pro Extra Settings"
265
  msgstr "Opcions extra del Contact Form Pro"
266
 
267
+ #: contact_form.php:373
268
+ #: contact_form.php:1008
269
  msgid "Contact Form Pro"
270
  msgstr "Contact Form Pro"
271
 
272
+ #: contact_form.php:412
273
+ #: contact_form.php:897
274
+ #: contact_form.php:926
275
  msgid "Name:"
276
  msgstr "Nom:"
277
 
278
+ #: contact_form.php:413
279
+ #: contact_form.php:898
280
+ #: contact_form.php:927
281
  msgid "Address:"
282
  msgstr "Adreça:"
283
 
284
+ #: contact_form.php:414
285
+ #: contact_form.php:899
286
+ #: contact_form.php:928
287
  msgid "Email Address:"
288
  msgstr "Adreça de correu electrònic:"
289
 
290
+ #: contact_form.php:415
291
+ #: contact_form.php:900
292
+ #: contact_form.php:929
293
  msgid "Phone number:"
294
  msgstr "Nombre de telèfon"
295
 
296
+ #: contact_form.php:416
297
+ #: contact_form.php:901
298
+ #: contact_form.php:930
299
  msgid "Subject:"
300
  msgstr "Asumpte:"
301
 
302
+ #: contact_form.php:417
303
+ #: contact_form.php:902
304
+ #: contact_form.php:931
305
  msgid "Message:"
306
  msgstr "Missatge:"
307
 
308
+ #: contact_form.php:418
309
+ #: contact_form.php:903
310
+ #: contact_form.php:932
311
  msgid "Attachment:"
312
  msgstr "Adjunt:"
313
 
314
+ #: contact_form.php:419
315
+ #: contact_form.php:474
316
+ #: contact_form.php:904
317
+ #: contact_form.php:933
318
  msgid "Send me a copy"
319
  msgstr "Envia'm una còpia"
320
 
321
+ #: contact_form.php:420
322
+ #: contact_form.php:905
323
+ #: contact_form.php:934
324
  msgid "Submit"
325
  msgstr "Enviar"
326
 
327
+ #: contact_form.php:421
328
  msgid "Your name is required."
329
  msgstr "El seu nom es obligatori."
330
 
331
+ #: contact_form.php:422
332
  msgid "Address is required."
333
  msgstr "Una adreça vàlida és obligatòria."
334
 
335
+ #: contact_form.php:423
336
  msgid "A valid email address is required."
337
  msgstr "Una Adreça de correu electrònic és obligatòria."
338
 
339
+ #: contact_form.php:424
340
+ #: contact_form.php:469
341
+ #: contact_form.php:472
342
  msgid "Phone number is required."
343
  msgstr "El seu nombre de telèfon és obligatori."
344
 
345
+ #: contact_form.php:425
346
+ #: contact_form.php:468
347
+ #: contact_form.php:471
348
  msgid "Subject is required."
349
  msgstr "L'assumpte és obligatori."
350
 
351
+ #: contact_form.php:426
352
+ #: contact_form.php:467
353
+ #: contact_form.php:470
354
  msgid "Message text is required."
355
  msgstr "El missatge és obligatori."
356
 
357
+ #: contact_form.php:427
358
  msgid "File format is not valid."
359
  msgstr "El format de l'adjunt és incorrecte."
360
 
361
+ #: contact_form.php:428
362
  msgid "File upload error."
363
  msgstr "Error de càrrega del fitxer"
364
 
365
+ #: contact_form.php:429
366
  msgid "The file could not be uploaded."
367
  msgstr "El fitxer no ha pogut ser carregat"
368
 
369
+ #: contact_form.php:430
370
  msgid "This file is too large."
371
  msgstr "Aquest document és massa gran."
372
 
373
+ #: contact_form.php:431
374
  msgid "Please fill out the CAPTCHA."
375
  msgstr "Si us plau completi el CAPTCHA"
376
 
377
+ #: contact_form.php:432
378
  msgid "Please make corrections below and try again."
379
  msgstr "Si us plau, corregeixi les dades i provi un altre cop."
380
 
381
+ #: contact_form.php:705
 
 
 
 
382
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
383
  msgstr "Si l'opció de 'redireccionament a la pàgina' està seleccionat llavors el camp URL ha d'estar en el següent format"
384
 
385
+ #: contact_form.php:714
386
  msgid "Such user does not exist. Settings are not saved."
387
  msgstr "Usuari inexistent. Els canvis no s'han desat."
388
 
389
+ #: contact_form.php:719
390
+ #: contact_form.php:725
391
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
392
  msgstr "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis no s'han desat."
393
 
394
+ #: contact_form.php:730
395
  msgid "Settings saved."
396
  msgstr "Configuració desada."
397
 
398
+ #: contact_form.php:755
399
+ #: contact_form.php:1003
400
  msgid "Extra settings"
401
  msgstr "Configuració extra"
402
 
403
+ #: contact_form.php:760
404
+ #: contact_form.php:1259
405
  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:"
406
  msgstr "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el seu missatge, pàgina o widget:"
407
 
408
+ #: contact_form.php:761
409
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
410
  msgstr "Si la informació d'aquest camp queda buida, s'usarà l'adreça especificada durant el registre."
411
 
412
+ #: contact_form.php:765
413
  msgid "The user's email address:"
414
  msgstr "Adreça de correu electrònic de l'usuari:"
415
 
416
+ #: contact_form.php:769
417
  msgid "Create a username"
418
  msgstr "Seleccioni un nom d'usuari"
419
 
420
+ #: contact_form.php:774
421
  msgid "Enter a username of the person who should get the messages from the contact form."
422
  msgstr "Introdueixi el nom de l'usuari que rebrà missatges des de contact form"
423
 
424
+ #: contact_form.php:778
425
  msgid "Use this email address:"
426
  msgstr "Usi aquesta adreça de correu electrònic::"
427
 
428
+ #: contact_form.php:781
429
  msgid "Enter the email address you want the messages forwarded to."
430
  msgstr "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
431
 
432
+ #: contact_form.php:785
433
  msgid "Additional options"
434
  msgstr "Opcions addicionals"
435
 
436
+ #: contact_form.php:788
437
  msgid "What to use?"
438
  msgstr "Què usar?"
439
 
440
+ #: contact_form.php:791
441
  msgid "Wp-mail"
442
  msgstr "Wp-mail"
443
 
444
+ #: contact_form.php:792
445
  msgid "You can use the wp_mail function for mailing"
446
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
447
 
448
+ #: contact_form.php:798
449
  msgid "Mail"
450
  msgstr "Mail"
451
 
452
+ #: contact_form.php:799
453
  msgid "To send mail you can use the php mail function"
454
  msgstr "Per enviar correu vostè pot usar la funció 'php mail'"
455
 
456
+ #: contact_form.php:803
457
  msgid "Change text of the 'FROM' field"
458
  msgstr "Modifica el camp DE al contact form"
459
 
460
+ #: contact_form.php:809
461
  msgid "Enter the email address in the 'From' field"
462
  msgstr "Introduir el correu electrònic al camp 'From'"
463
 
464
+ #: contact_form.php:811
465
  msgid "User email"
466
  msgstr ""
467
 
468
+ #: contact_form.php:811
469
  msgid "The email address of the user who fills the form will be used in the field 'From'."
470
  msgstr "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de posar al camp 'From'."
471
 
472
+ #: contact_form.php:813
473
  msgid "This email address will be used in the 'From' field."
474
  msgstr "Aquesta adreça de correu electrònic s'utilitzarà al camp 'De'"
475
 
476
+ #: contact_form.php:817
477
  msgid "Display fields"
478
  msgstr "Mostra els camps"
479
 
480
+ #: contact_form.php:819
481
+ #: contact_form.php:849
482
+ #: contact_form.php:1039
483
+ #: contact_form.php:1691
484
  msgid "Address"
485
  msgstr "Adreça:"
486
 
487
+ #: contact_form.php:820
488
+ #: contact_form.php:851
489
+ #: contact_form.php:1699
490
  msgid "Phone"
491
  msgstr "Telèfon"
492
 
493
+ #: contact_form.php:821
494
  msgid "Attachment block"
495
  msgstr "Adjunt blocat"
496
 
497
+ #: contact_form.php:821
498
  msgid "Users can attach the following file formats"
499
  msgstr "Els usuaris poden adjuntar els següents formats d'arxiu"
500
 
501
+ #: contact_form.php:822
502
  msgid "Tips below the Attachment block"
503
  msgstr "Consells del blocatge de l'adjunt"
504
 
505
+ #: contact_form.php:823
506
  msgid "Send me a copy block"
507
  msgstr "Envia'm una còpia"
508
 
509
+ #: contact_form.php:835
510
+ #: contact_form.php:838
511
+ #: contact_form.php:841
512
+ #: contact_form.php:1068
513
  msgid "Captcha"
514
  msgstr "Captcha"
515
 
516
+ #: contact_form.php:835
517
+ #: contact_form.php:838
518
+ #: contact_form.php:841
519
+ #: contact_form.php:1068
520
  msgid "(powered by bestwebsoft.com)"
521
  msgstr "(Impulsat per bestwebsoft.com)"
522
 
523
+ #: contact_form.php:838
524
  msgid "Activate captcha"
525
  msgstr "Captcha activat"
526
 
527
+ #: contact_form.php:841
528
  msgid "Download captcha"
529
  msgstr "Descarrega captcha"
530
 
531
+ #: contact_form.php:846
532
  msgid "Required fields"
533
  msgstr "Camps requerits"
534
 
535
+ #: contact_form.php:848
536
+ #: contact_form.php:1034
537
+ #: contact_form.php:1686
538
  msgid "Name"
539
  msgstr "Nom"
540
 
541
+ #: contact_form.php:850
542
  msgid "Email Address"
543
  msgstr "Adreça de correu electrònic:"
544
 
545
+ #: contact_form.php:852
546
+ #: contact_form.php:1054
547
+ #: contact_form.php:1702
548
  msgid "Subject"
549
  msgstr "Assumpte"
550
 
551
+ #: contact_form.php:853
552
+ #: contact_form.php:1058
553
+ #: contact_form.php:1705
554
  msgid "Message"
555
  msgstr "MIssatge"
556
 
557
+ #: contact_form.php:857
558
  msgid "Display additional info in the email"
559
  msgstr "Mostra informació addicional al correu electrònic,"
560
 
561
+ #: contact_form.php:862
562
+ #: contact_form.php:1658
563
  msgid "Sent from (ip address)"
564
  msgstr "Enviat des de (adreça IP)"
565
 
566
+ #: contact_form.php:863
567
+ #: contact_form.php:1663
568
  msgid "Date/Time"
569
  msgstr "Data/hora"
570
 
571
+ #: contact_form.php:864
572
+ #: contact_form.php:1668
573
  msgid "Sent from (referer)"
574
  msgstr "Enviat des de (referent)"
575
 
576
+ #: contact_form.php:865
577
+ #: contact_form.php:1673
578
  msgid "Using (user agent)"
579
  msgstr "Usant (user agent)"
580
 
581
+ #: contact_form.php:869
582
  msgid "Language settings for the field names in the form"
583
  msgstr "Configuració de la llengua als noms dels camps del formulari"
584
 
585
+ #: contact_form.php:878
586
  msgid "Add a language"
587
  msgstr "Afegeix lengua"
588
 
589
+ #: contact_form.php:882
590
  msgid "Change the names of the contact form fields and error messages"
591
  msgstr "Modifica els noms dels camps i els missatges d'error del formulari de contacte"
592
 
593
+ #: contact_form.php:887
594
+ #: contact_form.php:958
595
  msgid "English"
596
  msgstr "Anglès"
597
 
598
+ #: contact_form.php:906
599
+ #: contact_form.php:935
600
  msgid "Error message for the Name field"
601
  msgstr "Missatge d'error per al camp 'Nom'"
602
 
603
+ #: contact_form.php:907
604
+ #: contact_form.php:936
605
  msgid "Error message for the Address field"
606
  msgstr "Missatge d'error per al camp 'Adreça'"
607
 
608
+ #: contact_form.php:908
609
+ #: contact_form.php:937
610
  msgid "Error message for the Email field"
611
  msgstr "Missatge d'error per al camp 'Adreça de correu electrònic'"
612
 
613
+ #: contact_form.php:909
614
+ #: contact_form.php:938
615
  msgid "Error message for the Phone field"
616
  msgstr "Missatge d'error per al camp 'Telèfon\""
617
 
618
+ #: contact_form.php:910
619
+ #: contact_form.php:939
620
  msgid "Error message for the Subject field"
621
  msgstr "Missatge d'error per al camp 'Assumpte'"
622
 
623
+ #: contact_form.php:911
624
+ #: contact_form.php:940
625
  msgid "Error message for the Message field"
626
  msgstr "Missatge d'error per al camp 'Missatge'"
627
 
628
+ #: contact_form.php:912
629
+ #: contact_form.php:941
630
  msgid "Error message about the file type for the Attachment field"
631
  msgstr "Missatge d'error sobre el tipus de per al camp 'Adjunt'"
632
 
633
+ #: contact_form.php:913
634
+ #: contact_form.php:942
635
  msgid "Error message while uploading a file for the Attachment field to the server"
636
  msgstr "Missatge d'error al carregar al servidor un fitxer per al camp Adjunt"
637
 
638
+ #: contact_form.php:914
639
+ #: contact_form.php:943
640
  msgid "Error message while moving the file for the Attachment field"
641
  msgstr "Missatge d'error al mourerun fitxer per al camp Adjunt"
642
 
643
+ #: contact_form.php:915
644
+ #: contact_form.php:944
645
  msgid "Error message when file size limit for the Attachment field is exceeded"
646
  msgstr "Missatge d'error al superar el límit de mida de fitxer per al camp Adjunt"
647
 
648
+ #: contact_form.php:916
649
+ #: contact_form.php:945
650
  msgid "Error message for the Captcha field"
651
  msgstr "Missatge d'error al camp Captcha"
652
 
653
+ #: contact_form.php:917
654
+ #: contact_form.php:946
655
  msgid "Error message for the whole form"
656
  msgstr "Missatge d'error a tot el formulari"
657
 
658
+ #: contact_form.php:919
659
+ #: contact_form.php:948
660
+ #: contact_form.php:967
661
+ #: contact_form.php:973
662
  msgid "Use shortcode"
663
  msgstr "useu un codi curt"
664
 
665
+ #: contact_form.php:919
666
+ #: contact_form.php:948
667
+ #: contact_form.php:967
668
+ #: contact_form.php:973
669
  msgid "for this language"
670
  msgstr "Per aquesta llengua"
671
 
672
+ #: contact_form.php:955
673
  msgid "Action after email is sent"
674
  msgstr "Accions després d'enviar un correu electrònic."
675
 
676
+ #: contact_form.php:957
677
  msgid "Display text"
678
  msgstr "Mostra el text"
679
 
680
+ #: contact_form.php:966
681
+ #: contact_form.php:972
682
  msgid "Text"
683
  msgstr "Text"
684
 
685
+ #: contact_form.php:979
686
  msgid "Redirect to the page"
687
  msgstr "Redirigir a la pàgina"
688
 
689
+ #: contact_form.php:980
690
  msgid "Url"
691
  msgstr "Url"
692
 
693
+ #: contact_form.php:985
694
+ #: contact_form.php:1160
695
  msgid "Save Changes"
696
  msgstr "Desar els canvis"
697
 
698
+ #: contact_form.php:1000
699
  msgid "Contact Form Pro | Extra Settings"
700
  msgstr "Opcions extra | Contact Form Pro"
701
 
702
+ #: contact_form.php:1007
703
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
704
  msgstr "Aquesta funcionalitat està disponible en la versió Pro del connector. Per a més detalls, si us plau seguiu l'enllaç"
705
 
706
+ #: contact_form.php:1014
707
  msgid "Errors output"
708
  msgstr "Errors de sortida"
709
 
710
+ #: contact_form.php:1017
711
  msgid "Display error messages"
712
  msgstr "Mostra els missatges d'error"
713
 
714
+ #: contact_form.php:1018
715
  msgid "Color of the input field errors."
716
  msgstr "Color dels errors al camp d'entrada"
717
 
718
+ #: contact_form.php:1019
719
  msgid "Display error messages & color of the input field errors"
720
  msgstr "Mostra els missatges d'error i el color dels errors del camp d'entrada"
721
 
722
+ #: contact_form.php:1024
723
  msgid "Add placeholder to the input blocks"
724
  msgstr "Afegeix marcador de posició als blocs d'entrada"
725
 
726
+ #: contact_form.php:1030
727
  msgid "Add tooltips"
728
  msgstr "Afegir consells sobre les eines"
729
 
730
+ #: contact_form.php:1044
731
  msgid "Email address"
732
  msgstr "Adreça de correu electrònic:"
733
 
734
+ #: contact_form.php:1049
735
  msgid "Phone Number"
736
  msgstr "Nombre de telèfon"
737
 
738
+ #: contact_form.php:1063
739
  msgid "Attachment"
740
  msgstr "Adjunt:"
741
 
742
+ #: contact_form.php:1073
743
  msgid "Style options"
744
  msgstr "Opcions d'estil"
745
 
746
+ #: contact_form.php:1076
747
  msgid "Text color"
748
  msgstr "Color del text"
749
 
750
+ #: contact_form.php:1079
751
+ #: contact_form.php:1084
752
+ #: contact_form.php:1094
753
+ #: contact_form.php:1099
754
+ #: contact_form.php:1104
755
+ #: contact_form.php:1109
756
+ #: contact_form.php:1119
757
+ #: contact_form.php:1124
758
+ #: contact_form.php:1130
759
+ #: contact_form.php:1141
760
+ #: contact_form.php:1146
761
+ #: contact_form.php:1151
762
  msgid "Default"
763
  msgstr "Per defecte"
764
 
765
+ #: contact_form.php:1081
766
  msgid "Label text color"
767
  msgstr "Color del text de l'etiqeta"
768
 
769
+ #: contact_form.php:1086
770
  msgid "Placeholder color"
771
  msgstr "Color del marcador de posició"
772
 
773
+ #: contact_form.php:1091
774
  msgid "Errors color"
775
  msgstr "Color dels errors"
776
 
777
+ #: contact_form.php:1096
778
  msgid "Error text color"
779
  msgstr "Color del text d'error"
780
 
781
+ #: contact_form.php:1101
782
  msgid "Background color of the input field errors"
783
  msgstr "Color de fons dels errors del camp d'entrada"
784
 
785
+ #: contact_form.php:1106
786
  msgid "Border color of the input field errors"
787
  msgstr "Color de la vora dels errors del camp d'entrada"
788
 
789
+ #: contact_form.php:1111
790
  msgid "Placeholder color of the input field errors"
791
  msgstr "Color del marcador de posició dels errors del camp d'entrada"
792
 
793
+ #: contact_form.php:1116
794
  msgid "Input fields"
795
  msgstr "Visualitza l'adjunt"
796
 
797
+ #: contact_form.php:1121
798
  msgid "Input fields background color"
799
  msgstr "Color de fons dels camps d'entrada"
800
 
801
+ #: contact_form.php:1126
802
  msgid "Text fields color"
803
  msgstr "Color dels camps de text"
804
 
805
+ #: contact_form.php:1128
806
  msgid "Border width in px, numbers only"
807
  msgstr "Ample de vora en px, sols nombres"
808
 
809
+ #: contact_form.php:1132
810
+ #: contact_form.php:1153
811
  msgid "Border color"
812
  msgstr "Color de la vora"
813
 
814
+ #: contact_form.php:1137
815
  msgid "Submit button"
816
  msgstr "Enviar"
817
 
818
  # #: contact_form.php:928
819
+ #: contact_form.php:1139
820
  msgid "Width in px, numbers only"
821
  msgstr "Ample en px, sols nombres"
822
 
823
+ #: contact_form.php:1143
824
  msgid "Button color"
825
  msgstr "Color del botó"
826
 
827
+ #: contact_form.php:1148
828
  msgid "Button text color"
829
  msgstr "Color del text del botó"
830
 
831
+ #: contact_form.php:1164
832
  msgid "Contact Form Pro | Preview"
833
  msgstr "Contact Form Pro | Vista prèvia"
834
 
835
+ #: contact_form.php:1167
836
  msgid "Show with errors"
837
  msgstr "Mostra amb errors"
838
 
839
+ #: contact_form.php:1175
840
+ #: contact_form.php:1177
841
  msgid "Please enter your full name..."
842
  msgstr "Si us plau introduïu el nom complet"
843
 
844
+ #: contact_form.php:1188
845
+ #: contact_form.php:1190
846
  msgid "Please enter your address..."
847
  msgstr "Si us plau introduïu l'adreça"
848
 
849
+ #: contact_form.php:1199
850
+ #: contact_form.php:1201
851
  msgid "Please enter your email address..."
852
  msgstr "Si us plau introdueixi el seu e-mail"
853
 
854
+ #: contact_form.php:1210
855
+ #: contact_form.php:1212
856
  msgid "Please enter your phone number..."
857
  msgstr "Si us plau introduïu el nombre de telèfon"
858
 
859
+ #: contact_form.php:1221
860
+ #: contact_form.php:1223
861
  msgid "Please enter subject..."
862
  msgstr "Si us plau introduïu l'assumpte"
863
 
864
+ #: contact_form.php:1231
865
+ #: contact_form.php:1233
866
  msgid "Please enter your message..."
867
  msgstr "Si us plau introduïu el missatge"
868
 
869
+ #: contact_form.php:1244
870
  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"
871
  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"
872
 
873
+ #: contact_form.php:1397
 
 
 
 
874
  msgid "You can attach the following file formats"
875
  msgstr "Pot adjuntar els següents formats d'arxiu"
876
 
877
+ #: contact_form.php:1681
878
  msgid "Contact from"
879
  msgstr "Contact from"
880
 
881
+ #: contact_form.php:1694
882
  msgid "Email"
883
  msgstr "Adreça de correu electrònic"
884
 
885
+ #: contact_form.php:1708
886
  msgid "Site"
887
  msgstr "Lloc"
888
 
889
+ #: contact_form.php:1758
890
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
891
  msgstr "Si pot veure aquest MIME, vol dir que el tipus MIME no és compatible amb el seu client de correu electrònic!"
892
 
893
+ #: contact_form.php:1809
894
  msgid "FAQ"
895
  msgstr "FAQ"
896
 
897
+ #: contact_form.php:1810
898
  msgid "Support"
899
  msgstr "Suport"
900
 
901
+ #: contact_form.php:1858
902
  msgid "Are you sure that you want to delete this language data?"
903
  msgstr "Està vostè segur que vol esborrar aquest idioma?"
904
 
languages/contact_form-cs_CZ.mo CHANGED
Binary file
languages/contact_form-cs_CZ.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: 2013-07-16 16:03+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:03+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Petr Zápotocký <\\tpetr.zapotocky@centrum.cz>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,756 +16,921 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Aktivované pluginy"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Čti více"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Nastavení"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Instalované pluginy"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Doporučené pluginy"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Doporučené pluginy"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Download"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Instalace %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "instalace z wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Pokud máte dotazy, kontaktujte nás na mail: plugin@bestwebsoft.com nebo přes náš kontaktní formulář"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Nastavení kontaktního formuláře"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Kontaktní formulář"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Nastavení kontaktního formuláře"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Kontaktní formulář"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Jméno:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "E-Mail:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "E-Mail:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Předmět:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Zpráva:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Příloha:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Zaslat mi kopii"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Zaslat"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Jméno je požadováno."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "E-mail je požadován."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "E-mail je požadován."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "Jméno je požadováno."
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "Předmět je požadován."
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "Zpráva je požadována."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "Příloha nelze odeslat."
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "Prosím opište následující text."
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Prosím opravte následující chyby a zkuste to znovu."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Děkujeme za zprávu."
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr "Pokud vyberete \"Přesměrování na stránku\" do políčka url byste měli vložit adresu v tomto formátu"
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Uživatel neexistuje. Nastavení neuloženo."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "Vložte správný mail. Nastavení neuloženo."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "Nastavení uloženo."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "Nastavení"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "Pokud chcete vložit kontaktní formulář na stránku, zkopírujte a vložte tento kód do přípsěvku, stránky nebo widgetu:"
251
 
252
- #: contact_form.php:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "Pokud nebudou informace vyplněny, zprávy budou zasílány na mail, který byl uveden při registraci."
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "Použít email uživatele wordpressu:"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "Vyberte uživatelské jméno"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "Nastavte uživatele, který bude dostávat zprávy z kontaktního formuláře."
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "Použít tento email:"
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "Nastavit email, který bude použit pro příjem zpráv."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "Další nastavení"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr "K čemu?"
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr "Pro zaslání mailu můžete použít wordpress wp_mail funkce"
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "Mail"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr "Pro zaslání mailu můžete použít php mail funkce"
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "Změnit políčko OD"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Zobraz text"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "E-Mail:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr ""
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Zobrazit možnost přílohy"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Uživatelé mohou vkládat soubory těchto typů"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Zobrazit vysvětlivky po bloku s přílohou."
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Zobrazit Zaslat kopii"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Aktivované pluginy"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "Download"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Jméno"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "E-Mail:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Předmět"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Zpráva"
409
 
410
- #: contact_form.php:646
411
  #, fuzzy
412
  msgid "Display additional info in the email"
413
  msgstr "Zobrazit přidané info v mailu."
414
 
415
- #: contact_form.php:651
416
- #: contact_form.php:1447
417
  msgid "Sent from (ip address)"
418
  msgstr "Zasláno z (ip adresa)"
419
 
420
- #: contact_form.php:652
421
- #: contact_form.php:1452
422
  msgid "Date/Time"
423
  msgstr "Datum / Čas"
424
 
425
- #: contact_form.php:653
426
- #: contact_form.php:1457
427
  msgid "Sent from (referer)"
428
  msgstr "Příchozí od"
429
 
430
- #: contact_form.php:654
431
- #: contact_form.php:1462
432
  msgid "Using (user agent)"
433
  msgstr "Používání"
434
 
435
- #: contact_form.php:658
436
  msgid "Language settings for the field names in the form"
437
  msgstr ""
438
 
439
- #: contact_form.php:667
440
  msgid "Add a language"
441
  msgstr ""
442
 
443
- #: contact_form.php:671
444
  #, fuzzy
445
  msgid "Change the names of the contact form fields and error messages"
446
  msgstr "Změnit popisek políček"
447
 
448
- #: contact_form.php:676
449
- #: contact_form.php:747
450
  msgid "English"
451
  msgstr ""
452
 
453
- #: contact_form.php:695
454
- #: contact_form.php:724
455
  msgid "Error message for the Name field"
456
  msgstr ""
457
 
458
- #: contact_form.php:696
459
- #: contact_form.php:725
460
  msgid "Error message for the Address field"
461
  msgstr ""
462
 
463
- #: contact_form.php:697
464
- #: contact_form.php:726
465
  msgid "Error message for the Email field"
466
  msgstr ""
467
 
468
- #: contact_form.php:698
469
- #: contact_form.php:727
470
  msgid "Error message for the Phone field"
471
  msgstr ""
472
 
473
- #: contact_form.php:699
474
- #: contact_form.php:728
475
  msgid "Error message for the Subject field"
476
  msgstr ""
477
 
478
- #: contact_form.php:700
479
- #: contact_form.php:729
480
  msgid "Error message for the Message field"
481
  msgstr ""
482
 
483
- #: contact_form.php:701
484
- #: contact_form.php:730
485
  msgid "Error message about the file type for the Attachment field"
486
  msgstr ""
487
 
488
- #: contact_form.php:702
489
- #: contact_form.php:731
490
  msgid "Error message while uploading a file for the Attachment field to the server"
491
  msgstr ""
492
 
493
- #: contact_form.php:703
494
- #: contact_form.php:732
495
  msgid "Error message while moving the file for the Attachment field"
496
  msgstr ""
497
 
498
- #: contact_form.php:704
499
- #: contact_form.php:733
500
  msgid "Error message when file size limit for the Attachment field is exceeded"
501
  msgstr ""
502
 
503
- #: contact_form.php:705
504
- #: contact_form.php:734
505
  msgid "Error message for the Captcha field"
506
  msgstr ""
507
 
508
- #: contact_form.php:706
509
- #: contact_form.php:735
510
  msgid "Error message for the whole form"
511
  msgstr ""
512
 
513
- #: contact_form.php:708
514
- #: contact_form.php:737
515
- #: contact_form.php:756
516
- #: contact_form.php:762
517
  msgid "Use shortcode"
518
  msgstr ""
519
 
520
- #: contact_form.php:708
521
- #: contact_form.php:737
522
- #: contact_form.php:756
523
- #: contact_form.php:762
524
  msgid "for this language"
525
  msgstr ""
526
 
527
- #: contact_form.php:744
528
  msgid "Action after email is sent"
529
  msgstr "Akce po zaslání mailu."
530
 
531
- #: contact_form.php:746
532
  msgid "Display text"
533
  msgstr "Zobraz text"
534
 
535
- #: contact_form.php:755
536
- #: contact_form.php:761
537
  msgid "Text"
538
  msgstr "Text"
539
 
540
- #: contact_form.php:768
541
  msgid "Redirect to the page"
542
  msgstr "Přesměrovat na stránku"
543
 
544
- #: contact_form.php:769
545
  msgid "Url"
546
  msgstr "Url"
547
 
548
- #: contact_form.php:774
549
- #: contact_form.php:949
550
  msgid "Save Changes"
551
  msgstr "Uložit změny"
552
 
553
- #: contact_form.php:789
554
  #, fuzzy
555
  msgid "Contact Form Pro | Extra Settings"
556
  msgstr "Nastavení kontaktního formuláře"
557
 
558
- #: contact_form.php:796
559
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
560
  msgstr ""
561
 
562
- #: contact_form.php:803
563
  msgid "Errors output"
564
  msgstr ""
565
 
566
- #: contact_form.php:806
567
  msgid "Display error messages"
568
  msgstr ""
569
 
570
- #: contact_form.php:807
571
  msgid "Color of the input field errors."
572
  msgstr ""
573
 
574
- #: contact_form.php:808
575
  msgid "Display error messages & color of the input field errors"
576
  msgstr ""
577
 
578
- #: contact_form.php:813
579
  msgid "Add placeholder to the input blocks"
580
  msgstr ""
581
 
582
- #: contact_form.php:819
583
  #, fuzzy
584
  msgid "Add tooltips"
585
  msgstr "Další nastavení"
586
 
587
- #: contact_form.php:833
588
  #, fuzzy
589
  msgid "Email address"
590
  msgstr "E-Mail:"
591
 
592
- #: contact_form.php:838
593
  msgid "Phone Number"
594
  msgstr ""
595
 
596
- #: contact_form.php:852
597
  #, fuzzy
598
  msgid "Attachment"
599
  msgstr "Příloha:"
600
 
601
- #: contact_form.php:862
602
  #, fuzzy
603
  msgid "Style options"
604
  msgstr "Další nastavení"
605
 
606
- #: contact_form.php:865
607
  msgid "Text color"
608
  msgstr ""
609
 
610
- #: contact_form.php:868
611
- #: contact_form.php:873
612
- #: contact_form.php:883
613
- #: contact_form.php:888
614
- #: contact_form.php:893
615
- #: contact_form.php:898
616
- #: contact_form.php:908
617
- #: contact_form.php:913
618
- #: contact_form.php:919
619
- #: contact_form.php:930
620
- #: contact_form.php:935
621
- #: contact_form.php:940
622
  msgid "Default"
623
  msgstr ""
624
 
625
- #: contact_form.php:870
626
  msgid "Label text color"
627
  msgstr ""
628
 
629
- #: contact_form.php:875
630
  msgid "Placeholder color"
631
  msgstr ""
632
 
633
- #: contact_form.php:880
634
  msgid "Errors color"
635
  msgstr ""
636
 
637
- #: contact_form.php:885
638
  msgid "Error text color"
639
  msgstr ""
640
 
641
- #: contact_form.php:890
642
  msgid "Background color of the input field errors"
643
  msgstr ""
644
 
645
- #: contact_form.php:895
646
  msgid "Border color of the input field errors"
647
  msgstr ""
648
 
649
- #: contact_form.php:900
650
  msgid "Placeholder color of the input field errors"
651
  msgstr ""
652
 
653
- #: contact_form.php:905
654
  #, fuzzy
655
  msgid "Input fields"
656
  msgstr "Zobraz text"
657
 
658
- #: contact_form.php:910
659
  msgid "Input fields background color"
660
  msgstr ""
661
 
662
- #: contact_form.php:915
663
  msgid "Text fields color"
664
  msgstr ""
665
 
666
- #: contact_form.php:917
667
  msgid "Border width in px, numbers only"
668
  msgstr ""
669
 
670
- #: contact_form.php:921
671
- #: contact_form.php:942
672
  msgid "Border color"
673
  msgstr ""
674
 
675
- #: contact_form.php:926
676
  #, fuzzy
677
  msgid "Submit button"
678
  msgstr "Zaslat"
679
 
680
- #: contact_form.php:928
681
  msgid "Width in px, numbers only"
682
  msgstr ""
683
 
684
- #: contact_form.php:932
685
  msgid "Button color"
686
  msgstr ""
687
 
688
- #: contact_form.php:937
689
  msgid "Button text color"
690
  msgstr ""
691
 
692
- #: contact_form.php:953
693
  #, fuzzy
694
  msgid "Contact Form Pro | Preview"
695
  msgstr "Kontaktní formulář"
696
 
697
- #: contact_form.php:956
698
  msgid "Show with errors"
699
  msgstr ""
700
 
701
- #: contact_form.php:964
702
- #: contact_form.php:966
703
  msgid "Please enter your full name..."
704
  msgstr ""
705
 
706
- #: contact_form.php:977
707
- #: contact_form.php:979
708
  msgid "Please enter your address..."
709
  msgstr ""
710
 
711
- #: contact_form.php:988
712
- #: contact_form.php:990
713
  #, fuzzy
714
  msgid "Please enter your email address..."
715
  msgstr "Použít tento email:"
716
 
717
- #: contact_form.php:999
718
- #: contact_form.php:1001
719
  msgid "Please enter your phone number..."
720
  msgstr ""
721
 
722
- #: contact_form.php:1010
723
- #: contact_form.php:1012
724
  msgid "Please enter subject..."
725
  msgstr ""
726
 
727
- #: contact_form.php:1020
728
- #: contact_form.php:1022
729
  msgid "Please enter your message..."
730
  msgstr ""
731
 
732
- #: contact_form.php:1033
733
  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"
734
  msgstr ""
735
 
736
- #: contact_form.php:1102
737
- msgid "Sorry, email message could not be delivered."
738
- msgstr "Omlouváme se, váš email nemohl být odeslán."
739
-
740
- #: contact_form.php:1186
741
  msgid "You can attach the following file formats"
742
  msgstr "Můžete přiložit soubory těchto typů"
743
 
744
- #: contact_form.php:1470
745
  msgid "Contact from"
746
  msgstr "Kontaktní formulář"
747
 
748
- #: contact_form.php:1483
749
  msgid "Email"
750
  msgstr "E-Mail"
751
 
752
- #: contact_form.php:1497
753
  msgid "Site"
754
  msgstr "Stránka"
755
 
756
- #: contact_form.php:1547
757
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
758
  msgstr "Když uvidíte MIME, váš klient neakceptoval MIME typy."
759
 
760
- #: contact_form.php:1598
761
  msgid "FAQ"
762
  msgstr "FAQ"
763
 
764
- #: contact_form.php:1599
765
  msgid "Support"
766
  msgstr "Podpora"
767
 
768
- #: contact_form.php:1647
769
  msgid "Are you sure that you want to delete this language data?"
770
  msgstr ""
771
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:55+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:55+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Petr Zápotocký <\\tpetr.zapotocky@centrum.cz>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Zpráva"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Stránka"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Použít tento email:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Děkujeme za zprávu."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Omlouváme se, váš email nemohl být odeslán."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Aktivované pluginy"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Čti více"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Nastavení"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Instalované pluginy"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Doporučené pluginy"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Doporučené pluginy"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Download"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Instalace %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "instalace z wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Pokud máte dotazy, kontaktujte nás na mail: plugin@bestwebsoft.com nebo přes náš kontaktní formulář"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Aktivované pluginy"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Aktivované pluginy"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Podpora"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Nastavení kontaktního formuláře"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Kontaktní formulář"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Nastavení kontaktního formuláře"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Kontaktní formulář"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Jméno:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "E-Mail:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "E-Mail:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Předmět:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Zpráva:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Příloha:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Zaslat mi kopii"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Zaslat"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Jméno je požadováno."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "E-mail je požadován."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "E-mail je požadován."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "Jméno je požadováno."
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "Předmět je požadován."
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "Zpráva je požadována."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "Příloha nelze odeslat."
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "Prosím opište následující text."
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Prosím opravte následující chyby a zkuste to znovu."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr "Pokud vyberete \"Přesměrování na stránku\" do políčka url byste měli vložit adresu v tomto formátu"
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Uživatel neexistuje. Nastavení neuloženo."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "Vložte správný mail. Nastavení neuloženo."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "Nastavení uloženo."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "Nastavení"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "Pokud chcete vložit kontaktní formulář na stránku, zkopírujte a vložte tento kód do přípsěvku, stránky nebo widgetu:"
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "Pokud nebudou informace vyplněny, zprávy budou zasílány na mail, který byl uveden při registraci."
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "Použít email uživatele wordpressu:"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "Vyberte uživatelské jméno"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "Nastavte uživatele, který bude dostávat zprávy z kontaktního formuláře."
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "Použít tento email:"
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "Nastavit email, který bude použit pro příjem zpráv."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "Další nastavení"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr "K čemu?"
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr "Pro zaslání mailu můžete použít wordpress wp_mail funkce"
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "Mail"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr "Pro zaslání mailu můžete použít php mail funkce"
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "Změnit políčko OD"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Zobraz text"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "E-Mail:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr ""
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Zobrazit možnost přílohy"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Uživatelé mohou vkládat soubory těchto typů"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Zobrazit vysvětlivky po bloku s přílohou."
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Zobrazit Zaslat kopii"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Aktivované pluginy"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "Download"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Jméno"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "E-Mail:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Předmět"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Zpráva"
578
 
579
+ #: contact_form.php:857
580
  #, fuzzy
581
  msgid "Display additional info in the email"
582
  msgstr "Zobrazit přidané info v mailu."
583
 
584
+ #: contact_form.php:862
585
+ #: contact_form.php:1658
586
  msgid "Sent from (ip address)"
587
  msgstr "Zasláno z (ip adresa)"
588
 
589
+ #: contact_form.php:863
590
+ #: contact_form.php:1663
591
  msgid "Date/Time"
592
  msgstr "Datum / Čas"
593
 
594
+ #: contact_form.php:864
595
+ #: contact_form.php:1668
596
  msgid "Sent from (referer)"
597
  msgstr "Příchozí od"
598
 
599
+ #: contact_form.php:865
600
+ #: contact_form.php:1673
601
  msgid "Using (user agent)"
602
  msgstr "Používání"
603
 
604
+ #: contact_form.php:869
605
  msgid "Language settings for the field names in the form"
606
  msgstr ""
607
 
608
+ #: contact_form.php:878
609
  msgid "Add a language"
610
  msgstr ""
611
 
612
+ #: contact_form.php:882
613
  #, fuzzy
614
  msgid "Change the names of the contact form fields and error messages"
615
  msgstr "Změnit popisek políček"
616
 
617
+ #: contact_form.php:887
618
+ #: contact_form.php:958
619
  msgid "English"
620
  msgstr ""
621
 
622
+ #: contact_form.php:906
623
+ #: contact_form.php:935
624
  msgid "Error message for the Name field"
625
  msgstr ""
626
 
627
+ #: contact_form.php:907
628
+ #: contact_form.php:936
629
  msgid "Error message for the Address field"
630
  msgstr ""
631
 
632
+ #: contact_form.php:908
633
+ #: contact_form.php:937
634
  msgid "Error message for the Email field"
635
  msgstr ""
636
 
637
+ #: contact_form.php:909
638
+ #: contact_form.php:938
639
  msgid "Error message for the Phone field"
640
  msgstr ""
641
 
642
+ #: contact_form.php:910
643
+ #: contact_form.php:939
644
  msgid "Error message for the Subject field"
645
  msgstr ""
646
 
647
+ #: contact_form.php:911
648
+ #: contact_form.php:940
649
  msgid "Error message for the Message field"
650
  msgstr ""
651
 
652
+ #: contact_form.php:912
653
+ #: contact_form.php:941
654
  msgid "Error message about the file type for the Attachment field"
655
  msgstr ""
656
 
657
+ #: contact_form.php:913
658
+ #: contact_form.php:942
659
  msgid "Error message while uploading a file for the Attachment field to the server"
660
  msgstr ""
661
 
662
+ #: contact_form.php:914
663
+ #: contact_form.php:943
664
  msgid "Error message while moving the file for the Attachment field"
665
  msgstr ""
666
 
667
+ #: contact_form.php:915
668
+ #: contact_form.php:944
669
  msgid "Error message when file size limit for the Attachment field is exceeded"
670
  msgstr ""
671
 
672
+ #: contact_form.php:916
673
+ #: contact_form.php:945
674
  msgid "Error message for the Captcha field"
675
  msgstr ""
676
 
677
+ #: contact_form.php:917
678
+ #: contact_form.php:946
679
  msgid "Error message for the whole form"
680
  msgstr ""
681
 
682
+ #: contact_form.php:919
683
+ #: contact_form.php:948
684
+ #: contact_form.php:967
685
+ #: contact_form.php:973
686
  msgid "Use shortcode"
687
  msgstr ""
688
 
689
+ #: contact_form.php:919
690
+ #: contact_form.php:948
691
+ #: contact_form.php:967
692
+ #: contact_form.php:973
693
  msgid "for this language"
694
  msgstr ""
695
 
696
+ #: contact_form.php:955
697
  msgid "Action after email is sent"
698
  msgstr "Akce po zaslání mailu."
699
 
700
+ #: contact_form.php:957
701
  msgid "Display text"
702
  msgstr "Zobraz text"
703
 
704
+ #: contact_form.php:966
705
+ #: contact_form.php:972
706
  msgid "Text"
707
  msgstr "Text"
708
 
709
+ #: contact_form.php:979
710
  msgid "Redirect to the page"
711
  msgstr "Přesměrovat na stránku"
712
 
713
+ #: contact_form.php:980
714
  msgid "Url"
715
  msgstr "Url"
716
 
717
+ #: contact_form.php:985
718
+ #: contact_form.php:1160
719
  msgid "Save Changes"
720
  msgstr "Uložit změny"
721
 
722
+ #: contact_form.php:1000
723
  #, fuzzy
724
  msgid "Contact Form Pro | Extra Settings"
725
  msgstr "Nastavení kontaktního formuláře"
726
 
727
+ #: contact_form.php:1007
728
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
729
  msgstr ""
730
 
731
+ #: contact_form.php:1014
732
  msgid "Errors output"
733
  msgstr ""
734
 
735
+ #: contact_form.php:1017
736
  msgid "Display error messages"
737
  msgstr ""
738
 
739
+ #: contact_form.php:1018
740
  msgid "Color of the input field errors."
741
  msgstr ""
742
 
743
+ #: contact_form.php:1019
744
  msgid "Display error messages & color of the input field errors"
745
  msgstr ""
746
 
747
+ #: contact_form.php:1024
748
  msgid "Add placeholder to the input blocks"
749
  msgstr ""
750
 
751
+ #: contact_form.php:1030
752
  #, fuzzy
753
  msgid "Add tooltips"
754
  msgstr "Další nastavení"
755
 
756
+ #: contact_form.php:1044
757
  #, fuzzy
758
  msgid "Email address"
759
  msgstr "E-Mail:"
760
 
761
+ #: contact_form.php:1049
762
  msgid "Phone Number"
763
  msgstr ""
764
 
765
+ #: contact_form.php:1063
766
  #, fuzzy
767
  msgid "Attachment"
768
  msgstr "Příloha:"
769
 
770
+ #: contact_form.php:1073
771
  #, fuzzy
772
  msgid "Style options"
773
  msgstr "Další nastavení"
774
 
775
+ #: contact_form.php:1076
776
  msgid "Text color"
777
  msgstr ""
778
 
779
+ #: contact_form.php:1079
780
+ #: contact_form.php:1084
781
+ #: contact_form.php:1094
782
+ #: contact_form.php:1099
783
+ #: contact_form.php:1104
784
+ #: contact_form.php:1109
785
+ #: contact_form.php:1119
786
+ #: contact_form.php:1124
787
+ #: contact_form.php:1130
788
+ #: contact_form.php:1141
789
+ #: contact_form.php:1146
790
+ #: contact_form.php:1151
791
  msgid "Default"
792
  msgstr ""
793
 
794
+ #: contact_form.php:1081
795
  msgid "Label text color"
796
  msgstr ""
797
 
798
+ #: contact_form.php:1086
799
  msgid "Placeholder color"
800
  msgstr ""
801
 
802
+ #: contact_form.php:1091
803
  msgid "Errors color"
804
  msgstr ""
805
 
806
+ #: contact_form.php:1096
807
  msgid "Error text color"
808
  msgstr ""
809
 
810
+ #: contact_form.php:1101
811
  msgid "Background color of the input field errors"
812
  msgstr ""
813
 
814
+ #: contact_form.php:1106
815
  msgid "Border color of the input field errors"
816
  msgstr ""
817
 
818
+ #: contact_form.php:1111
819
  msgid "Placeholder color of the input field errors"
820
  msgstr ""
821
 
822
+ #: contact_form.php:1116
823
  #, fuzzy
824
  msgid "Input fields"
825
  msgstr "Zobraz text"
826
 
827
+ #: contact_form.php:1121
828
  msgid "Input fields background color"
829
  msgstr ""
830
 
831
+ #: contact_form.php:1126
832
  msgid "Text fields color"
833
  msgstr ""
834
 
835
+ #: contact_form.php:1128
836
  msgid "Border width in px, numbers only"
837
  msgstr ""
838
 
839
+ #: contact_form.php:1132
840
+ #: contact_form.php:1153
841
  msgid "Border color"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1137
845
  #, fuzzy
846
  msgid "Submit button"
847
  msgstr "Zaslat"
848
 
849
+ #: contact_form.php:1139
850
  msgid "Width in px, numbers only"
851
  msgstr ""
852
 
853
+ #: contact_form.php:1143
854
  msgid "Button color"
855
  msgstr ""
856
 
857
+ #: contact_form.php:1148
858
  msgid "Button text color"
859
  msgstr ""
860
 
861
+ #: contact_form.php:1164
862
  #, fuzzy
863
  msgid "Contact Form Pro | Preview"
864
  msgstr "Kontaktní formulář"
865
 
866
+ #: contact_form.php:1167
867
  msgid "Show with errors"
868
  msgstr ""
869
 
870
+ #: contact_form.php:1175
871
+ #: contact_form.php:1177
872
  msgid "Please enter your full name..."
873
  msgstr ""
874
 
875
+ #: contact_form.php:1188
876
+ #: contact_form.php:1190
877
  msgid "Please enter your address..."
878
  msgstr ""
879
 
880
+ #: contact_form.php:1199
881
+ #: contact_form.php:1201
882
  #, fuzzy
883
  msgid "Please enter your email address..."
884
  msgstr "Použít tento email:"
885
 
886
+ #: contact_form.php:1210
887
+ #: contact_form.php:1212
888
  msgid "Please enter your phone number..."
889
  msgstr ""
890
 
891
+ #: contact_form.php:1221
892
+ #: contact_form.php:1223
893
  msgid "Please enter subject..."
894
  msgstr ""
895
 
896
+ #: contact_form.php:1231
897
+ #: contact_form.php:1233
898
  msgid "Please enter your message..."
899
  msgstr ""
900
 
901
+ #: contact_form.php:1244
902
  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"
903
  msgstr ""
904
 
905
+ #: contact_form.php:1397
 
 
 
 
906
  msgid "You can attach the following file formats"
907
  msgstr "Můžete přiložit soubory těchto typů"
908
 
909
+ #: contact_form.php:1681
910
  msgid "Contact from"
911
  msgstr "Kontaktní formulář"
912
 
913
+ #: contact_form.php:1694
914
  msgid "Email"
915
  msgstr "E-Mail"
916
 
917
+ #: contact_form.php:1708
918
  msgid "Site"
919
  msgstr "Stránka"
920
 
921
+ #: contact_form.php:1758
922
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
923
  msgstr "Když uvidíte MIME, váš klient neakceptoval MIME typy."
924
 
925
+ #: contact_form.php:1809
926
  msgid "FAQ"
927
  msgstr "FAQ"
928
 
929
+ #: contact_form.php:1810
930
  msgid "Support"
931
  msgstr "Podpora"
932
 
933
+ #: contact_form.php:1858
934
  msgid "Are you sure that you want to delete this language data?"
935
  msgstr ""
936
 
languages/contact_form-da_DK.mo CHANGED
Binary file
languages/contact_form-da_DK.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-16 16:03+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:03+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Mads Hannibal <mh@shortcuts.dk>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,757 +16,922 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Aktiverede plugins"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Læs mere"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Indstillinger"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Installerede plugins"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Anbefalede plugins"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Anbefalede plugins"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Download"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Installér %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Installér nu fra wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Hvis du har spørgsmål kan du kontakte os på plugin@bestwebsoft.com eller bruge kontaktformularen på vores hjemmeside"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Indstillinger for kontaktformular"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Kontaktformular"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Indstillinger for kontaktformular"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Kontaktformular"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Navn:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "E-mail-adresse:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "E-mail-adresse:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Emne:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Besked:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Bilag:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Send mig en kopi"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Send"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Dit navn er obligatorisk"
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "En korrekt e-mail-adresse er påkrævet."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "En korrekt e-mail-adresse er påkrævet."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "Dit navn er obligatorisk"
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "Emnefeltet er obligatorisk."
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "Du skal angive en besked"
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "Bilaget er korrupt."
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "Venligst udfyld CAPTCHA-feltet."
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Ret venligst nedenstående og prøv igen."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Tak fordi du kontaktede os"
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr ""
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Brugeren eksisterer ikke. Indstillingerne er ikke gemt."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "Benyt venligst en korrekt e-mail-adresse. Indstillingerne er ikke gemt."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "Indstillinger gemt."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "Indstillinger"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "Hvis du ønsker at tilføje en kontaktformular til din side, kopier og put denne kode i din kommentar eller på din side: "
251
 
252
- #: contact_form.php:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "Hvis felterne nedenunder er tomme, vil meddelesen blive sendt til den adresse, som var angivet ved registreringen."
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "Benyt e-mail-adressen til wordpressbrugeren:"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "Vælg brugernavn"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "Angiv det brugernavn, som vil modtage beskeder fra en kontaktformular."
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "Benyt denne e-mail-adresse:"
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "Angiv den e-mail-adresse, som vil blive benyttet ved modtagelse af beskeder."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "Flere valgmuligheder"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr ""
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr ""
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "Mail"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr ""
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "Skift FRA-felterne i kontaktformularen"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Vis bilag"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "E-mail-adresse:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr ""
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Vis bilag"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Brugere kan vedlægge filer af følgende typer"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Vis bilag"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Vis \"Send mig en kopi\"-afsnit"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Aktiverede plugins"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "Download"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Navn"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "E-mail-adresse:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Emne"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Besked"
409
 
410
- #: contact_form.php:646
411
  #, fuzzy
412
  msgid "Display additional info in the email"
413
  msgstr "Vis yderligere information i e-mail"
414
 
415
- #: contact_form.php:651
416
- #: contact_form.php:1447
417
  msgid "Sent from (ip address)"
418
  msgstr "Sendt fra (IP-adresse)"
419
 
420
- #: contact_form.php:652
421
- #: contact_form.php:1452
422
  msgid "Date/Time"
423
  msgstr "Dato/klokkeslæt"
424
 
425
- #: contact_form.php:653
426
- #: contact_form.php:1457
427
  msgid "Sent from (referer)"
428
  msgstr "Sendt fra (referent)"
429
 
430
- #: contact_form.php:654
431
- #: contact_form.php:1462
432
  msgid "Using (user agent)"
433
  msgstr "Med (user agent)"
434
 
435
- #: contact_form.php:658
436
  msgid "Language settings for the field names in the form"
437
  msgstr ""
438
 
439
- #: contact_form.php:667
440
  msgid "Add a language"
441
  msgstr ""
442
 
443
- #: contact_form.php:671
444
  #, fuzzy
445
  msgid "Change the names of the contact form fields and error messages"
446
  msgstr "Skifte etiketter til felterne i kontaktformularen"
447
 
448
- #: contact_form.php:676
449
- #: contact_form.php:747
450
  msgid "English"
451
  msgstr ""
452
 
453
- #: contact_form.php:695
454
- #: contact_form.php:724
455
  msgid "Error message for the Name field"
456
  msgstr ""
457
 
458
- #: contact_form.php:696
459
- #: contact_form.php:725
460
  msgid "Error message for the Address field"
461
  msgstr ""
462
 
463
- #: contact_form.php:697
464
- #: contact_form.php:726
465
  msgid "Error message for the Email field"
466
  msgstr ""
467
 
468
- #: contact_form.php:698
469
- #: contact_form.php:727
470
  msgid "Error message for the Phone field"
471
  msgstr ""
472
 
473
- #: contact_form.php:699
474
- #: contact_form.php:728
475
  msgid "Error message for the Subject field"
476
  msgstr ""
477
 
478
- #: contact_form.php:700
479
- #: contact_form.php:729
480
  msgid "Error message for the Message field"
481
  msgstr ""
482
 
483
- #: contact_form.php:701
484
- #: contact_form.php:730
485
  msgid "Error message about the file type for the Attachment field"
486
  msgstr ""
487
 
488
- #: contact_form.php:702
489
- #: contact_form.php:731
490
  msgid "Error message while uploading a file for the Attachment field to the server"
491
  msgstr ""
492
 
493
- #: contact_form.php:703
494
- #: contact_form.php:732
495
  msgid "Error message while moving the file for the Attachment field"
496
  msgstr ""
497
 
498
- #: contact_form.php:704
499
- #: contact_form.php:733
500
  msgid "Error message when file size limit for the Attachment field is exceeded"
501
  msgstr ""
502
 
503
- #: contact_form.php:705
504
- #: contact_form.php:734
505
  msgid "Error message for the Captcha field"
506
  msgstr ""
507
 
508
- #: contact_form.php:706
509
- #: contact_form.php:735
510
  msgid "Error message for the whole form"
511
  msgstr ""
512
 
513
- #: contact_form.php:708
514
- #: contact_form.php:737
515
- #: contact_form.php:756
516
- #: contact_form.php:762
517
  msgid "Use shortcode"
518
  msgstr ""
519
 
520
- #: contact_form.php:708
521
- #: contact_form.php:737
522
- #: contact_form.php:756
523
- #: contact_form.php:762
524
  msgid "for this language"
525
  msgstr ""
526
 
527
- #: contact_form.php:744
528
  msgid "Action after email is sent"
529
  msgstr ""
530
 
531
- #: contact_form.php:746
532
  #, fuzzy
533
  msgid "Display text"
534
  msgstr "Vis bilag"
535
 
536
- #: contact_form.php:755
537
- #: contact_form.php:761
538
  msgid "Text"
539
  msgstr ""
540
 
541
- #: contact_form.php:768
542
  msgid "Redirect to the page"
543
  msgstr ""
544
 
545
- #: contact_form.php:769
546
  msgid "Url"
547
  msgstr ""
548
 
549
- #: contact_form.php:774
550
- #: contact_form.php:949
551
  msgid "Save Changes"
552
  msgstr "Gem ændringer"
553
 
554
- #: contact_form.php:789
555
  #, fuzzy
556
  msgid "Contact Form Pro | Extra Settings"
557
  msgstr "Indstillinger for kontaktformular"
558
 
559
- #: contact_form.php:796
560
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
561
  msgstr ""
562
 
563
- #: contact_form.php:803
564
  msgid "Errors output"
565
  msgstr ""
566
 
567
- #: contact_form.php:806
568
  msgid "Display error messages"
569
  msgstr ""
570
 
571
- #: contact_form.php:807
572
  msgid "Color of the input field errors."
573
  msgstr ""
574
 
575
- #: contact_form.php:808
576
  msgid "Display error messages & color of the input field errors"
577
  msgstr ""
578
 
579
- #: contact_form.php:813
580
  msgid "Add placeholder to the input blocks"
581
  msgstr ""
582
 
583
- #: contact_form.php:819
584
  #, fuzzy
585
  msgid "Add tooltips"
586
  msgstr "Flere valgmuligheder"
587
 
588
- #: contact_form.php:833
589
  #, fuzzy
590
  msgid "Email address"
591
  msgstr "E-mail-adresse:"
592
 
593
- #: contact_form.php:838
594
  msgid "Phone Number"
595
  msgstr ""
596
 
597
- #: contact_form.php:852
598
  #, fuzzy
599
  msgid "Attachment"
600
  msgstr "Bilag:"
601
 
602
- #: contact_form.php:862
603
  #, fuzzy
604
  msgid "Style options"
605
  msgstr "Flere valgmuligheder"
606
 
607
- #: contact_form.php:865
608
  msgid "Text color"
609
  msgstr ""
610
 
611
- #: contact_form.php:868
612
- #: contact_form.php:873
613
- #: contact_form.php:883
614
- #: contact_form.php:888
615
- #: contact_form.php:893
616
- #: contact_form.php:898
617
- #: contact_form.php:908
618
- #: contact_form.php:913
619
- #: contact_form.php:919
620
- #: contact_form.php:930
621
- #: contact_form.php:935
622
- #: contact_form.php:940
623
  msgid "Default"
624
  msgstr ""
625
 
626
- #: contact_form.php:870
627
  msgid "Label text color"
628
  msgstr ""
629
 
630
- #: contact_form.php:875
631
  msgid "Placeholder color"
632
  msgstr ""
633
 
634
- #: contact_form.php:880
635
  msgid "Errors color"
636
  msgstr ""
637
 
638
- #: contact_form.php:885
639
  msgid "Error text color"
640
  msgstr ""
641
 
642
- #: contact_form.php:890
643
  msgid "Background color of the input field errors"
644
  msgstr ""
645
 
646
- #: contact_form.php:895
647
  msgid "Border color of the input field errors"
648
  msgstr ""
649
 
650
- #: contact_form.php:900
651
  msgid "Placeholder color of the input field errors"
652
  msgstr ""
653
 
654
- #: contact_form.php:905
655
  #, fuzzy
656
  msgid "Input fields"
657
  msgstr "Vis bilag"
658
 
659
- #: contact_form.php:910
660
  msgid "Input fields background color"
661
  msgstr ""
662
 
663
- #: contact_form.php:915
664
  msgid "Text fields color"
665
  msgstr ""
666
 
667
- #: contact_form.php:917
668
  msgid "Border width in px, numbers only"
669
  msgstr ""
670
 
671
- #: contact_form.php:921
672
- #: contact_form.php:942
673
  msgid "Border color"
674
  msgstr ""
675
 
676
- #: contact_form.php:926
677
  #, fuzzy
678
  msgid "Submit button"
679
  msgstr "Send"
680
 
681
- #: contact_form.php:928
682
  msgid "Width in px, numbers only"
683
  msgstr ""
684
 
685
- #: contact_form.php:932
686
  msgid "Button color"
687
  msgstr ""
688
 
689
- #: contact_form.php:937
690
  msgid "Button text color"
691
  msgstr ""
692
 
693
- #: contact_form.php:953
694
  #, fuzzy
695
  msgid "Contact Form Pro | Preview"
696
  msgstr "Kontaktformular"
697
 
698
- #: contact_form.php:956
699
  msgid "Show with errors"
700
  msgstr ""
701
 
702
- #: contact_form.php:964
703
- #: contact_form.php:966
704
  msgid "Please enter your full name..."
705
  msgstr ""
706
 
707
- #: contact_form.php:977
708
- #: contact_form.php:979
709
  msgid "Please enter your address..."
710
  msgstr ""
711
 
712
- #: contact_form.php:988
713
- #: contact_form.php:990
714
  #, fuzzy
715
  msgid "Please enter your email address..."
716
  msgstr "Benyt denne e-mail-adresse:"
717
 
718
- #: contact_form.php:999
719
- #: contact_form.php:1001
720
  msgid "Please enter your phone number..."
721
  msgstr ""
722
 
723
- #: contact_form.php:1010
724
- #: contact_form.php:1012
725
  msgid "Please enter subject..."
726
  msgstr ""
727
 
728
- #: contact_form.php:1020
729
- #: contact_form.php:1022
730
  msgid "Please enter your message..."
731
  msgstr ""
732
 
733
- #: contact_form.php:1033
734
  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"
735
  msgstr ""
736
 
737
- #: contact_form.php:1102
738
- msgid "Sorry, email message could not be delivered."
739
- msgstr "Beklager, men din e-mail kunne ikke leveres."
740
-
741
- #: contact_form.php:1186
742
  msgid "You can attach the following file formats"
743
  msgstr "Du kan vedhæfte filer af følgende typer"
744
 
745
- #: contact_form.php:1470
746
  msgid "Contact from"
747
  msgstr "Kontakt fra"
748
 
749
- #: contact_form.php:1483
750
  msgid "Email"
751
  msgstr "E-mail"
752
 
753
- #: contact_form.php:1497
754
  msgid "Site"
755
  msgstr "Site"
756
 
757
- #: contact_form.php:1547
758
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
759
  msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
760
 
761
- #: contact_form.php:1598
762
  msgid "FAQ"
763
  msgstr "Ofte stillede spørgsmål"
764
 
765
- #: contact_form.php:1599
766
  msgid "Support"
767
  msgstr "Support"
768
 
769
- #: contact_form.php:1647
770
  msgid "Are you sure that you want to delete this language data?"
771
  msgstr ""
772
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:55+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:55+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Mads Hannibal <mh@shortcuts.dk>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Besked"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Site"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Benyt denne e-mail-adresse:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Tak fordi du kontaktede os"
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Beklager, men din e-mail kunne ikke leveres."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Aktiverede plugins"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Læs mere"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Indstillinger"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Installerede plugins"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Anbefalede plugins"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Anbefalede plugins"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Download"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Installér %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Installér nu fra wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Hvis du har spørgsmål kan du kontakte os på plugin@bestwebsoft.com eller bruge kontaktformularen på vores hjemmeside"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Aktiverede plugins"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Aktiverede plugins"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Support"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Indstillinger for kontaktformular"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Kontaktformular"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Indstillinger for kontaktformular"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Kontaktformular"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Navn:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "E-mail-adresse:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "E-mail-adresse:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Emne:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Besked:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Bilag:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Send mig en kopi"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Send"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Dit navn er obligatorisk"
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "En korrekt e-mail-adresse er påkrævet."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "En korrekt e-mail-adresse er påkrævet."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "Dit navn er obligatorisk"
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "Emnefeltet er obligatorisk."
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "Du skal angive en besked"
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "Bilaget er korrupt."
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "Venligst udfyld CAPTCHA-feltet."
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Ret venligst nedenstående og prøv igen."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr ""
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Brugeren eksisterer ikke. Indstillingerne er ikke gemt."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "Benyt venligst en korrekt e-mail-adresse. Indstillingerne er ikke gemt."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "Indstillinger gemt."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "Indstillinger"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "Hvis du ønsker at tilføje en kontaktformular til din side, kopier og put denne kode i din kommentar eller på din side: "
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "Hvis felterne nedenunder er tomme, vil meddelesen blive sendt til den adresse, som var angivet ved registreringen."
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "Benyt e-mail-adressen til wordpressbrugeren:"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "Vælg brugernavn"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "Angiv det brugernavn, som vil modtage beskeder fra en kontaktformular."
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "Benyt denne e-mail-adresse:"
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "Angiv den e-mail-adresse, som vil blive benyttet ved modtagelse af beskeder."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "Flere valgmuligheder"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr ""
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr ""
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "Mail"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr ""
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "Skift FRA-felterne i kontaktformularen"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Vis bilag"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "E-mail-adresse:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr ""
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Vis bilag"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Brugere kan vedlægge filer af følgende typer"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Vis bilag"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Vis \"Send mig en kopi\"-afsnit"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Aktiverede plugins"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "Download"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Navn"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "E-mail-adresse:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Emne"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Besked"
578
 
579
+ #: contact_form.php:857
580
  #, fuzzy
581
  msgid "Display additional info in the email"
582
  msgstr "Vis yderligere information i e-mail"
583
 
584
+ #: contact_form.php:862
585
+ #: contact_form.php:1658
586
  msgid "Sent from (ip address)"
587
  msgstr "Sendt fra (IP-adresse)"
588
 
589
+ #: contact_form.php:863
590
+ #: contact_form.php:1663
591
  msgid "Date/Time"
592
  msgstr "Dato/klokkeslæt"
593
 
594
+ #: contact_form.php:864
595
+ #: contact_form.php:1668
596
  msgid "Sent from (referer)"
597
  msgstr "Sendt fra (referent)"
598
 
599
+ #: contact_form.php:865
600
+ #: contact_form.php:1673
601
  msgid "Using (user agent)"
602
  msgstr "Med (user agent)"
603
 
604
+ #: contact_form.php:869
605
  msgid "Language settings for the field names in the form"
606
  msgstr ""
607
 
608
+ #: contact_form.php:878
609
  msgid "Add a language"
610
  msgstr ""
611
 
612
+ #: contact_form.php:882
613
  #, fuzzy
614
  msgid "Change the names of the contact form fields and error messages"
615
  msgstr "Skifte etiketter til felterne i kontaktformularen"
616
 
617
+ #: contact_form.php:887
618
+ #: contact_form.php:958
619
  msgid "English"
620
  msgstr ""
621
 
622
+ #: contact_form.php:906
623
+ #: contact_form.php:935
624
  msgid "Error message for the Name field"
625
  msgstr ""
626
 
627
+ #: contact_form.php:907
628
+ #: contact_form.php:936
629
  msgid "Error message for the Address field"
630
  msgstr ""
631
 
632
+ #: contact_form.php:908
633
+ #: contact_form.php:937
634
  msgid "Error message for the Email field"
635
  msgstr ""
636
 
637
+ #: contact_form.php:909
638
+ #: contact_form.php:938
639
  msgid "Error message for the Phone field"
640
  msgstr ""
641
 
642
+ #: contact_form.php:910
643
+ #: contact_form.php:939
644
  msgid "Error message for the Subject field"
645
  msgstr ""
646
 
647
+ #: contact_form.php:911
648
+ #: contact_form.php:940
649
  msgid "Error message for the Message field"
650
  msgstr ""
651
 
652
+ #: contact_form.php:912
653
+ #: contact_form.php:941
654
  msgid "Error message about the file type for the Attachment field"
655
  msgstr ""
656
 
657
+ #: contact_form.php:913
658
+ #: contact_form.php:942
659
  msgid "Error message while uploading a file for the Attachment field to the server"
660
  msgstr ""
661
 
662
+ #: contact_form.php:914
663
+ #: contact_form.php:943
664
  msgid "Error message while moving the file for the Attachment field"
665
  msgstr ""
666
 
667
+ #: contact_form.php:915
668
+ #: contact_form.php:944
669
  msgid "Error message when file size limit for the Attachment field is exceeded"
670
  msgstr ""
671
 
672
+ #: contact_form.php:916
673
+ #: contact_form.php:945
674
  msgid "Error message for the Captcha field"
675
  msgstr ""
676
 
677
+ #: contact_form.php:917
678
+ #: contact_form.php:946
679
  msgid "Error message for the whole form"
680
  msgstr ""
681
 
682
+ #: contact_form.php:919
683
+ #: contact_form.php:948
684
+ #: contact_form.php:967
685
+ #: contact_form.php:973
686
  msgid "Use shortcode"
687
  msgstr ""
688
 
689
+ #: contact_form.php:919
690
+ #: contact_form.php:948
691
+ #: contact_form.php:967
692
+ #: contact_form.php:973
693
  msgid "for this language"
694
  msgstr ""
695
 
696
+ #: contact_form.php:955
697
  msgid "Action after email is sent"
698
  msgstr ""
699
 
700
+ #: contact_form.php:957
701
  #, fuzzy
702
  msgid "Display text"
703
  msgstr "Vis bilag"
704
 
705
+ #: contact_form.php:966
706
+ #: contact_form.php:972
707
  msgid "Text"
708
  msgstr ""
709
 
710
+ #: contact_form.php:979
711
  msgid "Redirect to the page"
712
  msgstr ""
713
 
714
+ #: contact_form.php:980
715
  msgid "Url"
716
  msgstr ""
717
 
718
+ #: contact_form.php:985
719
+ #: contact_form.php:1160
720
  msgid "Save Changes"
721
  msgstr "Gem ændringer"
722
 
723
+ #: contact_form.php:1000
724
  #, fuzzy
725
  msgid "Contact Form Pro | Extra Settings"
726
  msgstr "Indstillinger for kontaktformular"
727
 
728
+ #: contact_form.php:1007
729
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
730
  msgstr ""
731
 
732
+ #: contact_form.php:1014
733
  msgid "Errors output"
734
  msgstr ""
735
 
736
+ #: contact_form.php:1017
737
  msgid "Display error messages"
738
  msgstr ""
739
 
740
+ #: contact_form.php:1018
741
  msgid "Color of the input field errors."
742
  msgstr ""
743
 
744
+ #: contact_form.php:1019
745
  msgid "Display error messages & color of the input field errors"
746
  msgstr ""
747
 
748
+ #: contact_form.php:1024
749
  msgid "Add placeholder to the input blocks"
750
  msgstr ""
751
 
752
+ #: contact_form.php:1030
753
  #, fuzzy
754
  msgid "Add tooltips"
755
  msgstr "Flere valgmuligheder"
756
 
757
+ #: contact_form.php:1044
758
  #, fuzzy
759
  msgid "Email address"
760
  msgstr "E-mail-adresse:"
761
 
762
+ #: contact_form.php:1049
763
  msgid "Phone Number"
764
  msgstr ""
765
 
766
+ #: contact_form.php:1063
767
  #, fuzzy
768
  msgid "Attachment"
769
  msgstr "Bilag:"
770
 
771
+ #: contact_form.php:1073
772
  #, fuzzy
773
  msgid "Style options"
774
  msgstr "Flere valgmuligheder"
775
 
776
+ #: contact_form.php:1076
777
  msgid "Text color"
778
  msgstr ""
779
 
780
+ #: contact_form.php:1079
781
+ #: contact_form.php:1084
782
+ #: contact_form.php:1094
783
+ #: contact_form.php:1099
784
+ #: contact_form.php:1104
785
+ #: contact_form.php:1109
786
+ #: contact_form.php:1119
787
+ #: contact_form.php:1124
788
+ #: contact_form.php:1130
789
+ #: contact_form.php:1141
790
+ #: contact_form.php:1146
791
+ #: contact_form.php:1151
792
  msgid "Default"
793
  msgstr ""
794
 
795
+ #: contact_form.php:1081
796
  msgid "Label text color"
797
  msgstr ""
798
 
799
+ #: contact_form.php:1086
800
  msgid "Placeholder color"
801
  msgstr ""
802
 
803
+ #: contact_form.php:1091
804
  msgid "Errors color"
805
  msgstr ""
806
 
807
+ #: contact_form.php:1096
808
  msgid "Error text color"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1101
812
  msgid "Background color of the input field errors"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1106
816
  msgid "Border color of the input field errors"
817
  msgstr ""
818
 
819
+ #: contact_form.php:1111
820
  msgid "Placeholder color of the input field errors"
821
  msgstr ""
822
 
823
+ #: contact_form.php:1116
824
  #, fuzzy
825
  msgid "Input fields"
826
  msgstr "Vis bilag"
827
 
828
+ #: contact_form.php:1121
829
  msgid "Input fields background color"
830
  msgstr ""
831
 
832
+ #: contact_form.php:1126
833
  msgid "Text fields color"
834
  msgstr ""
835
 
836
+ #: contact_form.php:1128
837
  msgid "Border width in px, numbers only"
838
  msgstr ""
839
 
840
+ #: contact_form.php:1132
841
+ #: contact_form.php:1153
842
  msgid "Border color"
843
  msgstr ""
844
 
845
+ #: contact_form.php:1137
846
  #, fuzzy
847
  msgid "Submit button"
848
  msgstr "Send"
849
 
850
+ #: contact_form.php:1139
851
  msgid "Width in px, numbers only"
852
  msgstr ""
853
 
854
+ #: contact_form.php:1143
855
  msgid "Button color"
856
  msgstr ""
857
 
858
+ #: contact_form.php:1148
859
  msgid "Button text color"
860
  msgstr ""
861
 
862
+ #: contact_form.php:1164
863
  #, fuzzy
864
  msgid "Contact Form Pro | Preview"
865
  msgstr "Kontaktformular"
866
 
867
+ #: contact_form.php:1167
868
  msgid "Show with errors"
869
  msgstr ""
870
 
871
+ #: contact_form.php:1175
872
+ #: contact_form.php:1177
873
  msgid "Please enter your full name..."
874
  msgstr ""
875
 
876
+ #: contact_form.php:1188
877
+ #: contact_form.php:1190
878
  msgid "Please enter your address..."
879
  msgstr ""
880
 
881
+ #: contact_form.php:1199
882
+ #: contact_form.php:1201
883
  #, fuzzy
884
  msgid "Please enter your email address..."
885
  msgstr "Benyt denne e-mail-adresse:"
886
 
887
+ #: contact_form.php:1210
888
+ #: contact_form.php:1212
889
  msgid "Please enter your phone number..."
890
  msgstr ""
891
 
892
+ #: contact_form.php:1221
893
+ #: contact_form.php:1223
894
  msgid "Please enter subject..."
895
  msgstr ""
896
 
897
+ #: contact_form.php:1231
898
+ #: contact_form.php:1233
899
  msgid "Please enter your message..."
900
  msgstr ""
901
 
902
+ #: contact_form.php:1244
903
  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"
904
  msgstr ""
905
 
906
+ #: contact_form.php:1397
 
 
 
 
907
  msgid "You can attach the following file formats"
908
  msgstr "Du kan vedhæfte filer af følgende typer"
909
 
910
+ #: contact_form.php:1681
911
  msgid "Contact from"
912
  msgstr "Kontakt fra"
913
 
914
+ #: contact_form.php:1694
915
  msgid "Email"
916
  msgstr "E-mail"
917
 
918
+ #: contact_form.php:1708
919
  msgid "Site"
920
  msgstr "Site"
921
 
922
+ #: contact_form.php:1758
923
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
924
  msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
925
 
926
+ #: contact_form.php:1809
927
  msgid "FAQ"
928
  msgstr "Ofte stillede spørgsmål"
929
 
930
+ #: contact_form.php:1810
931
  msgid "Support"
932
  msgstr "Support"
933
 
934
+ #: contact_form.php:1858
935
  msgid "Are you sure that you want to delete this language data?"
936
  msgstr ""
937
 
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: 2013-07-16 16:03+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:03+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,756 +16,921 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Aktivierte PlugIns"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Lesen Sie mehr"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Einstellungen"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Installierte PlugIns"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Empfohlene PlugIns"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Empfohlene PlugIns"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Download"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Installiere %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "installiere jetzt von wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Contact Form Einstellungen"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Contact Form"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Contact Form Einstellungen"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Contact Form"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Name:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "E-Mail-Adresse:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "E-Mail-Adresse:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Betreff:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Nachricht:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Anhang:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Kopie an mich senden"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "senden"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Ihr Name wird benötigt"
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "Ihr Name wird benötigt"
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "Bitte geben Sie einen Betreff ein."
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "Bitte geben Sie eine Nachricht ein."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "Anhang scheint defekt zu sein."
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "Bitte ergänzen Sie das CAPTCHA."
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Danke für Ihre Nachricht."
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr ""
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht gespeichert."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "Einstellungen gespeichert."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "Einstellungen"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
251
 
252
- #: contact_form.php:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse gesandt, die bei der Registrierung angegeben wurde."
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "Wähle Benutzer"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen sollen."
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "Verwende diese E-Mail-Adresse:"
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "Erweiterte Optionen"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr ""
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr ""
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "Mail"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr ""
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "Veränderung gegenüber Felder des Kontaktformulars"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Anhänge erlauben"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "E-Mail-Adresse:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr ""
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Anhänge erlauben"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Benutzer können folgende Dateitypen anhängen"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Anhänge erlauben"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Kopie-an-mich anzeigen"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Aktivierte PlugIns"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "Download"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Nome"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "E-Mail-Adresse:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Betreff"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Nachricht"
409
 
410
- #: contact_form.php:646
411
  msgid "Display additional info in the email"
412
  msgstr ""
413
 
414
- #: contact_form.php:651
415
- #: contact_form.php:1447
416
  msgid "Sent from (ip address)"
417
  msgstr "Gesendet von (IP-Adresse)"
418
 
419
- #: contact_form.php:652
420
- #: contact_form.php:1452
421
  msgid "Date/Time"
422
  msgstr "Datum / Uhrzeit"
423
 
424
- #: contact_form.php:653
425
- #: contact_form.php:1457
426
  msgid "Sent from (referer)"
427
  msgstr "gesendet von (referer)"
428
 
429
- #: contact_form.php:654
430
- #: contact_form.php:1462
431
  msgid "Using (user agent)"
432
  msgstr "mit (user agent)"
433
 
434
- #: contact_form.php:658
435
  msgid "Language settings for the field names in the form"
436
  msgstr ""
437
 
438
- #: contact_form.php:667
439
  msgid "Add a language"
440
  msgstr ""
441
 
442
- #: contact_form.php:671
443
  #, fuzzy
444
  msgid "Change the names of the contact form fields and error messages"
445
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
446
 
447
- #: contact_form.php:676
448
- #: contact_form.php:747
449
  msgid "English"
450
  msgstr ""
451
 
452
- #: contact_form.php:695
453
- #: contact_form.php:724
454
  msgid "Error message for the Name field"
455
  msgstr ""
456
 
457
- #: contact_form.php:696
458
- #: contact_form.php:725
459
  msgid "Error message for the Address field"
460
  msgstr ""
461
 
462
- #: contact_form.php:697
463
- #: contact_form.php:726
464
  msgid "Error message for the Email field"
465
  msgstr ""
466
 
467
- #: contact_form.php:698
468
- #: contact_form.php:727
469
  msgid "Error message for the Phone field"
470
  msgstr ""
471
 
472
- #: contact_form.php:699
473
- #: contact_form.php:728
474
  msgid "Error message for the Subject field"
475
  msgstr ""
476
 
477
- #: contact_form.php:700
478
- #: contact_form.php:729
479
  msgid "Error message for the Message field"
480
  msgstr ""
481
 
482
- #: contact_form.php:701
483
- #: contact_form.php:730
484
  msgid "Error message about the file type for the Attachment field"
485
  msgstr ""
486
 
487
- #: contact_form.php:702
488
- #: contact_form.php:731
489
  msgid "Error message while uploading a file for the Attachment field to the server"
490
  msgstr ""
491
 
492
- #: contact_form.php:703
493
- #: contact_form.php:732
494
  msgid "Error message while moving the file for the Attachment field"
495
  msgstr ""
496
 
497
- #: contact_form.php:704
498
- #: contact_form.php:733
499
  msgid "Error message when file size limit for the Attachment field is exceeded"
500
  msgstr ""
501
 
502
- #: contact_form.php:705
503
- #: contact_form.php:734
504
  msgid "Error message for the Captcha field"
505
  msgstr ""
506
 
507
- #: contact_form.php:706
508
- #: contact_form.php:735
509
  msgid "Error message for the whole form"
510
  msgstr ""
511
 
512
- #: contact_form.php:708
513
- #: contact_form.php:737
514
- #: contact_form.php:756
515
- #: contact_form.php:762
516
  msgid "Use shortcode"
517
  msgstr ""
518
 
519
- #: contact_form.php:708
520
- #: contact_form.php:737
521
- #: contact_form.php:756
522
- #: contact_form.php:762
523
  msgid "for this language"
524
  msgstr ""
525
 
526
- #: contact_form.php:744
527
  msgid "Action after email is sent"
528
  msgstr ""
529
 
530
- #: contact_form.php:746
531
  #, fuzzy
532
  msgid "Display text"
533
  msgstr "Anhänge erlauben"
534
 
535
- #: contact_form.php:755
536
- #: contact_form.php:761
537
  msgid "Text"
538
  msgstr ""
539
 
540
- #: contact_form.php:768
541
  msgid "Redirect to the page"
542
  msgstr ""
543
 
544
- #: contact_form.php:769
545
  msgid "Url"
546
  msgstr ""
547
 
548
- #: contact_form.php:774
549
- #: contact_form.php:949
550
  msgid "Save Changes"
551
  msgstr "Änderungen speichern"
552
 
553
- #: contact_form.php:789
554
  #, fuzzy
555
  msgid "Contact Form Pro | Extra Settings"
556
  msgstr "Contact Form Einstellungen"
557
 
558
- #: contact_form.php:796
559
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
560
  msgstr ""
561
 
562
- #: contact_form.php:803
563
  msgid "Errors output"
564
  msgstr ""
565
 
566
- #: contact_form.php:806
567
  msgid "Display error messages"
568
  msgstr ""
569
 
570
- #: contact_form.php:807
571
  msgid "Color of the input field errors."
572
  msgstr ""
573
 
574
- #: contact_form.php:808
575
  msgid "Display error messages & color of the input field errors"
576
  msgstr ""
577
 
578
- #: contact_form.php:813
579
  msgid "Add placeholder to the input blocks"
580
  msgstr ""
581
 
582
- #: contact_form.php:819
583
  #, fuzzy
584
  msgid "Add tooltips"
585
  msgstr "Erweiterte Optionen"
586
 
587
- #: contact_form.php:833
588
  #, fuzzy
589
  msgid "Email address"
590
  msgstr "E-Mail-Adresse:"
591
 
592
- #: contact_form.php:838
593
  msgid "Phone Number"
594
  msgstr ""
595
 
596
- #: contact_form.php:852
597
  #, fuzzy
598
  msgid "Attachment"
599
  msgstr "Anhang:"
600
 
601
- #: contact_form.php:862
602
  #, fuzzy
603
  msgid "Style options"
604
  msgstr "Erweiterte Optionen"
605
 
606
- #: contact_form.php:865
607
  msgid "Text color"
608
  msgstr ""
609
 
610
- #: contact_form.php:868
611
- #: contact_form.php:873
612
- #: contact_form.php:883
613
- #: contact_form.php:888
614
- #: contact_form.php:893
615
- #: contact_form.php:898
616
- #: contact_form.php:908
617
- #: contact_form.php:913
618
- #: contact_form.php:919
619
- #: contact_form.php:930
620
- #: contact_form.php:935
621
- #: contact_form.php:940
622
  msgid "Default"
623
  msgstr ""
624
 
625
- #: contact_form.php:870
626
  msgid "Label text color"
627
  msgstr ""
628
 
629
- #: contact_form.php:875
630
  msgid "Placeholder color"
631
  msgstr ""
632
 
633
- #: contact_form.php:880
634
  msgid "Errors color"
635
  msgstr ""
636
 
637
- #: contact_form.php:885
638
  msgid "Error text color"
639
  msgstr ""
640
 
641
- #: contact_form.php:890
642
  msgid "Background color of the input field errors"
643
  msgstr ""
644
 
645
- #: contact_form.php:895
646
  msgid "Border color of the input field errors"
647
  msgstr ""
648
 
649
- #: contact_form.php:900
650
  msgid "Placeholder color of the input field errors"
651
  msgstr ""
652
 
653
- #: contact_form.php:905
654
  #, fuzzy
655
  msgid "Input fields"
656
  msgstr "Anhänge erlauben"
657
 
658
- #: contact_form.php:910
659
  msgid "Input fields background color"
660
  msgstr ""
661
 
662
- #: contact_form.php:915
663
  msgid "Text fields color"
664
  msgstr ""
665
 
666
- #: contact_form.php:917
667
  msgid "Border width in px, numbers only"
668
  msgstr ""
669
 
670
- #: contact_form.php:921
671
- #: contact_form.php:942
672
  msgid "Border color"
673
  msgstr ""
674
 
675
- #: contact_form.php:926
676
  #, fuzzy
677
  msgid "Submit button"
678
  msgstr "senden"
679
 
680
- #: contact_form.php:928
681
  msgid "Width in px, numbers only"
682
  msgstr ""
683
 
684
- #: contact_form.php:932
685
  msgid "Button color"
686
  msgstr ""
687
 
688
- #: contact_form.php:937
689
  msgid "Button text color"
690
  msgstr ""
691
 
692
- #: contact_form.php:953
693
  #, fuzzy
694
  msgid "Contact Form Pro | Preview"
695
  msgstr "Contact Form"
696
 
697
- #: contact_form.php:956
698
  msgid "Show with errors"
699
  msgstr ""
700
 
701
- #: contact_form.php:964
702
- #: contact_form.php:966
703
  msgid "Please enter your full name..."
704
  msgstr ""
705
 
706
- #: contact_form.php:977
707
- #: contact_form.php:979
708
  msgid "Please enter your address..."
709
  msgstr ""
710
 
711
- #: contact_form.php:988
712
- #: contact_form.php:990
713
  #, fuzzy
714
  msgid "Please enter your email address..."
715
  msgstr "Verwende diese E-Mail-Adresse:"
716
 
717
- #: contact_form.php:999
718
- #: contact_form.php:1001
719
  msgid "Please enter your phone number..."
720
  msgstr ""
721
 
722
- #: contact_form.php:1010
723
- #: contact_form.php:1012
724
  msgid "Please enter subject..."
725
  msgstr ""
726
 
727
- #: contact_form.php:1020
728
- #: contact_form.php:1022
729
  msgid "Please enter your message..."
730
  msgstr ""
731
 
732
- #: contact_form.php:1033
733
  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"
734
  msgstr ""
735
 
736
- #: contact_form.php:1102
737
- msgid "Sorry, email message could not be delivered."
738
- msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
739
-
740
- #: contact_form.php:1186
741
  msgid "You can attach the following file formats"
742
  msgstr "Sie können folgende Dateitypen anhängen"
743
 
744
- #: contact_form.php:1470
745
  msgid "Contact from"
746
  msgstr "Kontakt von"
747
 
748
- #: contact_form.php:1483
749
  msgid "Email"
750
  msgstr "E-Mail"
751
 
752
- #: contact_form.php:1497
753
  msgid "Site"
754
  msgstr "Site"
755
 
756
- #: contact_form.php:1547
757
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
758
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
759
 
760
- #: contact_form.php:1598
761
  msgid "FAQ"
762
  msgstr "Häufig gestellte Fragen (FAQ)"
763
 
764
- #: contact_form.php:1599
765
  msgid "Support"
766
  msgstr "Unterstützung"
767
 
768
- #: contact_form.php:1647
769
  msgid "Are you sure that you want to delete this language data?"
770
  msgstr ""
771
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:55+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:55+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Nachricht"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Site"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Verwende diese E-Mail-Adresse:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Danke für Ihre Nachricht."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Aktivierte PlugIns"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Lesen Sie mehr"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Einstellungen"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Installierte PlugIns"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Empfohlene PlugIns"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Empfohlene PlugIns"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Download"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Installiere %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "installiere jetzt von wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Aktivierte PlugIns"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Aktivierte PlugIns"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Unterstützung"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Contact Form Einstellungen"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Contact Form"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Contact Form Einstellungen"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Contact Form"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Name:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "E-Mail-Adresse:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "E-Mail-Adresse:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Betreff:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Nachricht:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Anhang:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Kopie an mich senden"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "senden"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Ihr Name wird benötigt"
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "Ihr Name wird benötigt"
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "Bitte geben Sie einen Betreff ein."
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "Bitte geben Sie eine Nachricht ein."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "Anhang scheint defekt zu sein."
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "Bitte ergänzen Sie das CAPTCHA."
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr ""
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht gespeichert."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "Einstellungen gespeichert."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "Einstellungen"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse gesandt, die bei der Registrierung angegeben wurde."
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "Wähle Benutzer"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen sollen."
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "Verwende diese E-Mail-Adresse:"
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "Erweiterte Optionen"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr ""
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr ""
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "Mail"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr ""
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "Veränderung gegenüber Felder des Kontaktformulars"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Anhänge erlauben"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "E-Mail-Adresse:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr ""
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Anhänge erlauben"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Benutzer können folgende Dateitypen anhängen"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Anhänge erlauben"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Kopie-an-mich anzeigen"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Aktivierte PlugIns"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "Download"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Nome"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "E-Mail-Adresse:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Betreff"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Nachricht"
578
 
579
+ #: contact_form.php:857
580
  msgid "Display additional info in the email"
581
  msgstr ""
582
 
583
+ #: contact_form.php:862
584
+ #: contact_form.php:1658
585
  msgid "Sent from (ip address)"
586
  msgstr "Gesendet von (IP-Adresse)"
587
 
588
+ #: contact_form.php:863
589
+ #: contact_form.php:1663
590
  msgid "Date/Time"
591
  msgstr "Datum / Uhrzeit"
592
 
593
+ #: contact_form.php:864
594
+ #: contact_form.php:1668
595
  msgid "Sent from (referer)"
596
  msgstr "gesendet von (referer)"
597
 
598
+ #: contact_form.php:865
599
+ #: contact_form.php:1673
600
  msgid "Using (user agent)"
601
  msgstr "mit (user agent)"
602
 
603
+ #: contact_form.php:869
604
  msgid "Language settings for the field names in the form"
605
  msgstr ""
606
 
607
+ #: contact_form.php:878
608
  msgid "Add a language"
609
  msgstr ""
610
 
611
+ #: contact_form.php:882
612
  #, fuzzy
613
  msgid "Change the names of the contact form fields and error messages"
614
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
615
 
616
+ #: contact_form.php:887
617
+ #: contact_form.php:958
618
  msgid "English"
619
  msgstr ""
620
 
621
+ #: contact_form.php:906
622
+ #: contact_form.php:935
623
  msgid "Error message for the Name field"
624
  msgstr ""
625
 
626
+ #: contact_form.php:907
627
+ #: contact_form.php:936
628
  msgid "Error message for the Address field"
629
  msgstr ""
630
 
631
+ #: contact_form.php:908
632
+ #: contact_form.php:937
633
  msgid "Error message for the Email field"
634
  msgstr ""
635
 
636
+ #: contact_form.php:909
637
+ #: contact_form.php:938
638
  msgid "Error message for the Phone field"
639
  msgstr ""
640
 
641
+ #: contact_form.php:910
642
+ #: contact_form.php:939
643
  msgid "Error message for the Subject field"
644
  msgstr ""
645
 
646
+ #: contact_form.php:911
647
+ #: contact_form.php:940
648
  msgid "Error message for the Message field"
649
  msgstr ""
650
 
651
+ #: contact_form.php:912
652
+ #: contact_form.php:941
653
  msgid "Error message about the file type for the Attachment field"
654
  msgstr ""
655
 
656
+ #: contact_form.php:913
657
+ #: contact_form.php:942
658
  msgid "Error message while uploading a file for the Attachment field to the server"
659
  msgstr ""
660
 
661
+ #: contact_form.php:914
662
+ #: contact_form.php:943
663
  msgid "Error message while moving the file for the Attachment field"
664
  msgstr ""
665
 
666
+ #: contact_form.php:915
667
+ #: contact_form.php:944
668
  msgid "Error message when file size limit for the Attachment field is exceeded"
669
  msgstr ""
670
 
671
+ #: contact_form.php:916
672
+ #: contact_form.php:945
673
  msgid "Error message for the Captcha field"
674
  msgstr ""
675
 
676
+ #: contact_form.php:917
677
+ #: contact_form.php:946
678
  msgid "Error message for the whole form"
679
  msgstr ""
680
 
681
+ #: contact_form.php:919
682
+ #: contact_form.php:948
683
+ #: contact_form.php:967
684
+ #: contact_form.php:973
685
  msgid "Use shortcode"
686
  msgstr ""
687
 
688
+ #: contact_form.php:919
689
+ #: contact_form.php:948
690
+ #: contact_form.php:967
691
+ #: contact_form.php:973
692
  msgid "for this language"
693
  msgstr ""
694
 
695
+ #: contact_form.php:955
696
  msgid "Action after email is sent"
697
  msgstr ""
698
 
699
+ #: contact_form.php:957
700
  #, fuzzy
701
  msgid "Display text"
702
  msgstr "Anhänge erlauben"
703
 
704
+ #: contact_form.php:966
705
+ #: contact_form.php:972
706
  msgid "Text"
707
  msgstr ""
708
 
709
+ #: contact_form.php:979
710
  msgid "Redirect to the page"
711
  msgstr ""
712
 
713
+ #: contact_form.php:980
714
  msgid "Url"
715
  msgstr ""
716
 
717
+ #: contact_form.php:985
718
+ #: contact_form.php:1160
719
  msgid "Save Changes"
720
  msgstr "Änderungen speichern"
721
 
722
+ #: contact_form.php:1000
723
  #, fuzzy
724
  msgid "Contact Form Pro | Extra Settings"
725
  msgstr "Contact Form Einstellungen"
726
 
727
+ #: contact_form.php:1007
728
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
729
  msgstr ""
730
 
731
+ #: contact_form.php:1014
732
  msgid "Errors output"
733
  msgstr ""
734
 
735
+ #: contact_form.php:1017
736
  msgid "Display error messages"
737
  msgstr ""
738
 
739
+ #: contact_form.php:1018
740
  msgid "Color of the input field errors."
741
  msgstr ""
742
 
743
+ #: contact_form.php:1019
744
  msgid "Display error messages & color of the input field errors"
745
  msgstr ""
746
 
747
+ #: contact_form.php:1024
748
  msgid "Add placeholder to the input blocks"
749
  msgstr ""
750
 
751
+ #: contact_form.php:1030
752
  #, fuzzy
753
  msgid "Add tooltips"
754
  msgstr "Erweiterte Optionen"
755
 
756
+ #: contact_form.php:1044
757
  #, fuzzy
758
  msgid "Email address"
759
  msgstr "E-Mail-Adresse:"
760
 
761
+ #: contact_form.php:1049
762
  msgid "Phone Number"
763
  msgstr ""
764
 
765
+ #: contact_form.php:1063
766
  #, fuzzy
767
  msgid "Attachment"
768
  msgstr "Anhang:"
769
 
770
+ #: contact_form.php:1073
771
  #, fuzzy
772
  msgid "Style options"
773
  msgstr "Erweiterte Optionen"
774
 
775
+ #: contact_form.php:1076
776
  msgid "Text color"
777
  msgstr ""
778
 
779
+ #: contact_form.php:1079
780
+ #: contact_form.php:1084
781
+ #: contact_form.php:1094
782
+ #: contact_form.php:1099
783
+ #: contact_form.php:1104
784
+ #: contact_form.php:1109
785
+ #: contact_form.php:1119
786
+ #: contact_form.php:1124
787
+ #: contact_form.php:1130
788
+ #: contact_form.php:1141
789
+ #: contact_form.php:1146
790
+ #: contact_form.php:1151
791
  msgid "Default"
792
  msgstr ""
793
 
794
+ #: contact_form.php:1081
795
  msgid "Label text color"
796
  msgstr ""
797
 
798
+ #: contact_form.php:1086
799
  msgid "Placeholder color"
800
  msgstr ""
801
 
802
+ #: contact_form.php:1091
803
  msgid "Errors color"
804
  msgstr ""
805
 
806
+ #: contact_form.php:1096
807
  msgid "Error text color"
808
  msgstr ""
809
 
810
+ #: contact_form.php:1101
811
  msgid "Background color of the input field errors"
812
  msgstr ""
813
 
814
+ #: contact_form.php:1106
815
  msgid "Border color of the input field errors"
816
  msgstr ""
817
 
818
+ #: contact_form.php:1111
819
  msgid "Placeholder color of the input field errors"
820
  msgstr ""
821
 
822
+ #: contact_form.php:1116
823
  #, fuzzy
824
  msgid "Input fields"
825
  msgstr "Anhänge erlauben"
826
 
827
+ #: contact_form.php:1121
828
  msgid "Input fields background color"
829
  msgstr ""
830
 
831
+ #: contact_form.php:1126
832
  msgid "Text fields color"
833
  msgstr ""
834
 
835
+ #: contact_form.php:1128
836
  msgid "Border width in px, numbers only"
837
  msgstr ""
838
 
839
+ #: contact_form.php:1132
840
+ #: contact_form.php:1153
841
  msgid "Border color"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1137
845
  #, fuzzy
846
  msgid "Submit button"
847
  msgstr "senden"
848
 
849
+ #: contact_form.php:1139
850
  msgid "Width in px, numbers only"
851
  msgstr ""
852
 
853
+ #: contact_form.php:1143
854
  msgid "Button color"
855
  msgstr ""
856
 
857
+ #: contact_form.php:1148
858
  msgid "Button text color"
859
  msgstr ""
860
 
861
+ #: contact_form.php:1164
862
  #, fuzzy
863
  msgid "Contact Form Pro | Preview"
864
  msgstr "Contact Form"
865
 
866
+ #: contact_form.php:1167
867
  msgid "Show with errors"
868
  msgstr ""
869
 
870
+ #: contact_form.php:1175
871
+ #: contact_form.php:1177
872
  msgid "Please enter your full name..."
873
  msgstr ""
874
 
875
+ #: contact_form.php:1188
876
+ #: contact_form.php:1190
877
  msgid "Please enter your address..."
878
  msgstr ""
879
 
880
+ #: contact_form.php:1199
881
+ #: contact_form.php:1201
882
  #, fuzzy
883
  msgid "Please enter your email address..."
884
  msgstr "Verwende diese E-Mail-Adresse:"
885
 
886
+ #: contact_form.php:1210
887
+ #: contact_form.php:1212
888
  msgid "Please enter your phone number..."
889
  msgstr ""
890
 
891
+ #: contact_form.php:1221
892
+ #: contact_form.php:1223
893
  msgid "Please enter subject..."
894
  msgstr ""
895
 
896
+ #: contact_form.php:1231
897
+ #: contact_form.php:1233
898
  msgid "Please enter your message..."
899
  msgstr ""
900
 
901
+ #: contact_form.php:1244
902
  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"
903
  msgstr ""
904
 
905
+ #: contact_form.php:1397
 
 
 
 
906
  msgid "You can attach the following file formats"
907
  msgstr "Sie können folgende Dateitypen anhängen"
908
 
909
+ #: contact_form.php:1681
910
  msgid "Contact from"
911
  msgstr "Kontakt von"
912
 
913
+ #: contact_form.php:1694
914
  msgid "Email"
915
  msgstr "E-Mail"
916
 
917
+ #: contact_form.php:1708
918
  msgid "Site"
919
  msgstr "Site"
920
 
921
+ #: contact_form.php:1758
922
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
923
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
924
 
925
+ #: contact_form.php:1809
926
  msgid "FAQ"
927
  msgstr "Häufig gestellte Fragen (FAQ)"
928
 
929
+ #: contact_form.php:1810
930
  msgid "Support"
931
  msgstr "Unterstützung"
932
 
933
+ #: contact_form.php:1858
934
  msgid "Are you sure that you want to delete this language data?"
935
  msgstr ""
936
 
languages/contact_form-el_GR.mo CHANGED
Binary file
languages/contact_form-el_GR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-16 16:03+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:03+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Pantelis Panteloglou <ppanteloglou@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,757 +16,922 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Ενεργοποιημένα πρόσθετα"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Διαβάστε περισσότερα"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Ρυθμίσεις"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Εγκατεστημένα πρόσθετα"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Προτεινόμενα πρόσθετα"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Προτεινόμενα πρόσθετα"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Κατέβασμα"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Εγκατάσταση %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Εγκαταστήστε τώρα από το wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Αν έχετε απορίες, επικοινωνήστε στο plugin@bestwebsoft.com ή μέσω της φόρμας επικοινωνίας της ιστοσελίδας μας"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Επιλογές φόρμας επικοινωνίας"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Φόρμα επικοινωνίας"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Επιλογές φόρμας επικοινωνίας"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Φόρμα επικοινωνίας"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Όνομα:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "Διεύθυνση e-mail:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "Διεύθυνση e-mail:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Θέμα:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Μήνυμα:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Επισύναψη:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Στείλε μου ένα αντίγραφο"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Υποβολή"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Γράψτε οπωσδήποτε το όνομά σας."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Απαιτείται μια έγκυρη διεύθυνση e-mail."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "Απαιτείται μια έγκυρη διεύθυνση e-mail."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "Γράψτε οπωσδήποτε το όνομά σας."
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "Γράψτε οπωσδήποτε ένα θέμα"
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "Απαιτείται κείμενο μηνύματος."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "Το επισυναπτόμενο δεν λειτουργεί."
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "Συμπληρώστε το CAPTCHA."
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Κάνετε διορθώσεις παρακάτω και ξαναπροσπαθήστε."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Ευχαριστούμε για την επικοινωνία."
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr ""
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Δεν υπάρχει τέτοιος χρήστης. Οι επιλογές δεν αποθηκεύτηκαν."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "Παρακαλούμε εισάγετε μια σωστή διεύθυνση email. Οι επιλογές δεν αποθηκεύτηκαν."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "Οι επιλογές αποθηκεύτηκαν."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "Ρυθμίσεις"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "Αν θέλετε να προσθέσετε μια φόρμα επικοινωνίας στην ιστοσελίδα σας, αντιγράψτε αυτό τον σύντομο κώδικα στην ανάρτηση, τη σελίδα ή το πρόσθετό σας:"
251
 
252
- #: contact_form.php:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "Αν τα παρακάτω πεδία είναι κενά, το μήνυμα θα σταλεί στη διεύθυνση που ορίστηκε κατά την εγγραφή"
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "Τα μηνύματα θα στέλνονται στο email του χρήστη:"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "επιλογή χρήστη"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "Τα μηνύματα θα λαμβάνει ο χρήστης"
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "Τα μηνύματα θα στέλνονται στο email "
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "Ορίστε την διεύθυνση email στην οποία θα αποστέλλονται τα μηνύματα."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "Πρόσθετες επιλογές"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr ""
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr ""
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "Mail"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr ""
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "Αλλάξτε το πεδίο \"ΑΠΟ\" της φόρμας επικοινωνίας"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "Διεύθυνση e-mail:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr ""
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Οι χρήστες μπορούν να επισυνάψουν αρχεία τύπου"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Προβολή κουτιού \"Στείλτο και σ' εμένα\""
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Ενεργοποιημένα πρόσθετα"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "Κατέβασμα"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Όνομα"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "Διεύθυνση e-mail:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Θέμα"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Μήνυμα"
409
 
410
- #: contact_form.php:646
411
  #, fuzzy
412
  msgid "Display additional info in the email"
413
  msgstr "Προβολή πρόσθετων πληροφοριών στο email"
414
 
415
- #: contact_form.php:651
416
- #: contact_form.php:1447
417
  msgid "Sent from (ip address)"
418
  msgstr "Στάλθηκε από (διεύθυνση ip)"
419
 
420
- #: contact_form.php:652
421
- #: contact_form.php:1452
422
  msgid "Date/Time"
423
  msgstr "Ημερομηνία/Ώρα"
424
 
425
- #: contact_form.php:653
426
- #: contact_form.php:1457
427
  msgid "Sent from (referer)"
428
  msgstr "Από (referer)"
429
 
430
- #: contact_form.php:654
431
- #: contact_form.php:1462
432
  msgid "Using (user agent)"
433
  msgstr "με χρήση (user agent)"
434
 
435
- #: contact_form.php:658
436
  msgid "Language settings for the field names in the form"
437
  msgstr ""
438
 
439
- #: contact_form.php:667
440
  msgid "Add a language"
441
  msgstr ""
442
 
443
- #: contact_form.php:671
444
  #, fuzzy
445
  msgid "Change the names of the contact form fields and error messages"
446
  msgstr "Αλλαγή ετικετών πεδίων της φόρμας επικοινωνίας"
447
 
448
- #: contact_form.php:676
449
- #: contact_form.php:747
450
  msgid "English"
451
  msgstr ""
452
 
453
- #: contact_form.php:695
454
- #: contact_form.php:724
455
  msgid "Error message for the Name field"
456
  msgstr ""
457
 
458
- #: contact_form.php:696
459
- #: contact_form.php:725
460
  msgid "Error message for the Address field"
461
  msgstr ""
462
 
463
- #: contact_form.php:697
464
- #: contact_form.php:726
465
  msgid "Error message for the Email field"
466
  msgstr ""
467
 
468
- #: contact_form.php:698
469
- #: contact_form.php:727
470
  msgid "Error message for the Phone field"
471
  msgstr ""
472
 
473
- #: contact_form.php:699
474
- #: contact_form.php:728
475
  msgid "Error message for the Subject field"
476
  msgstr ""
477
 
478
- #: contact_form.php:700
479
- #: contact_form.php:729
480
  msgid "Error message for the Message field"
481
  msgstr ""
482
 
483
- #: contact_form.php:701
484
- #: contact_form.php:730
485
  msgid "Error message about the file type for the Attachment field"
486
  msgstr ""
487
 
488
- #: contact_form.php:702
489
- #: contact_form.php:731
490
  msgid "Error message while uploading a file for the Attachment field to the server"
491
  msgstr ""
492
 
493
- #: contact_form.php:703
494
- #: contact_form.php:732
495
  msgid "Error message while moving the file for the Attachment field"
496
  msgstr ""
497
 
498
- #: contact_form.php:704
499
- #: contact_form.php:733
500
  msgid "Error message when file size limit for the Attachment field is exceeded"
501
  msgstr ""
502
 
503
- #: contact_form.php:705
504
- #: contact_form.php:734
505
  msgid "Error message for the Captcha field"
506
  msgstr ""
507
 
508
- #: contact_form.php:706
509
- #: contact_form.php:735
510
  msgid "Error message for the whole form"
511
  msgstr ""
512
 
513
- #: contact_form.php:708
514
- #: contact_form.php:737
515
- #: contact_form.php:756
516
- #: contact_form.php:762
517
  msgid "Use shortcode"
518
  msgstr ""
519
 
520
- #: contact_form.php:708
521
- #: contact_form.php:737
522
- #: contact_form.php:756
523
- #: contact_form.php:762
524
  msgid "for this language"
525
  msgstr ""
526
 
527
- #: contact_form.php:744
528
  msgid "Action after email is sent"
529
  msgstr ""
530
 
531
- #: contact_form.php:746
532
  #, fuzzy
533
  msgid "Display text"
534
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
535
 
536
- #: contact_form.php:755
537
- #: contact_form.php:761
538
  msgid "Text"
539
  msgstr ""
540
 
541
- #: contact_form.php:768
542
  msgid "Redirect to the page"
543
  msgstr ""
544
 
545
- #: contact_form.php:769
546
  msgid "Url"
547
  msgstr ""
548
 
549
- #: contact_form.php:774
550
- #: contact_form.php:949
551
  msgid "Save Changes"
552
  msgstr "Αποθήκευση αλλαγών"
553
 
554
- #: contact_form.php:789
555
  #, fuzzy
556
  msgid "Contact Form Pro | Extra Settings"
557
  msgstr "Επιλογές φόρμας επικοινωνίας"
558
 
559
- #: contact_form.php:796
560
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
561
  msgstr ""
562
 
563
- #: contact_form.php:803
564
  msgid "Errors output"
565
  msgstr ""
566
 
567
- #: contact_form.php:806
568
  msgid "Display error messages"
569
  msgstr ""
570
 
571
- #: contact_form.php:807
572
  msgid "Color of the input field errors."
573
  msgstr ""
574
 
575
- #: contact_form.php:808
576
  msgid "Display error messages & color of the input field errors"
577
  msgstr ""
578
 
579
- #: contact_form.php:813
580
  msgid "Add placeholder to the input blocks"
581
  msgstr ""
582
 
583
- #: contact_form.php:819
584
  #, fuzzy
585
  msgid "Add tooltips"
586
  msgstr "Πρόσθετες επιλογές"
587
 
588
- #: contact_form.php:833
589
  #, fuzzy
590
  msgid "Email address"
591
  msgstr "Διεύθυνση e-mail:"
592
 
593
- #: contact_form.php:838
594
  msgid "Phone Number"
595
  msgstr ""
596
 
597
- #: contact_form.php:852
598
  #, fuzzy
599
  msgid "Attachment"
600
  msgstr "Επισύναψη:"
601
 
602
- #: contact_form.php:862
603
  #, fuzzy
604
  msgid "Style options"
605
  msgstr "Πρόσθετες επιλογές"
606
 
607
- #: contact_form.php:865
608
  msgid "Text color"
609
  msgstr ""
610
 
611
- #: contact_form.php:868
612
- #: contact_form.php:873
613
- #: contact_form.php:883
614
- #: contact_form.php:888
615
- #: contact_form.php:893
616
- #: contact_form.php:898
617
- #: contact_form.php:908
618
- #: contact_form.php:913
619
- #: contact_form.php:919
620
- #: contact_form.php:930
621
- #: contact_form.php:935
622
- #: contact_form.php:940
623
  msgid "Default"
624
  msgstr ""
625
 
626
- #: contact_form.php:870
627
  msgid "Label text color"
628
  msgstr ""
629
 
630
- #: contact_form.php:875
631
  msgid "Placeholder color"
632
  msgstr ""
633
 
634
- #: contact_form.php:880
635
  msgid "Errors color"
636
  msgstr ""
637
 
638
- #: contact_form.php:885
639
  msgid "Error text color"
640
  msgstr ""
641
 
642
- #: contact_form.php:890
643
  msgid "Background color of the input field errors"
644
  msgstr ""
645
 
646
- #: contact_form.php:895
647
  msgid "Border color of the input field errors"
648
  msgstr ""
649
 
650
- #: contact_form.php:900
651
  msgid "Placeholder color of the input field errors"
652
  msgstr ""
653
 
654
- #: contact_form.php:905
655
  #, fuzzy
656
  msgid "Input fields"
657
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
658
 
659
- #: contact_form.php:910
660
  msgid "Input fields background color"
661
  msgstr ""
662
 
663
- #: contact_form.php:915
664
  msgid "Text fields color"
665
  msgstr ""
666
 
667
- #: contact_form.php:917
668
  msgid "Border width in px, numbers only"
669
  msgstr ""
670
 
671
- #: contact_form.php:921
672
- #: contact_form.php:942
673
  msgid "Border color"
674
  msgstr ""
675
 
676
- #: contact_form.php:926
677
  #, fuzzy
678
  msgid "Submit button"
679
  msgstr "Υποβολή"
680
 
681
- #: contact_form.php:928
682
  msgid "Width in px, numbers only"
683
  msgstr ""
684
 
685
- #: contact_form.php:932
686
  msgid "Button color"
687
  msgstr ""
688
 
689
- #: contact_form.php:937
690
  msgid "Button text color"
691
  msgstr ""
692
 
693
- #: contact_form.php:953
694
  #, fuzzy
695
  msgid "Contact Form Pro | Preview"
696
  msgstr "Φόρμα επικοινωνίας"
697
 
698
- #: contact_form.php:956
699
  msgid "Show with errors"
700
  msgstr ""
701
 
702
- #: contact_form.php:964
703
- #: contact_form.php:966
704
  msgid "Please enter your full name..."
705
  msgstr ""
706
 
707
- #: contact_form.php:977
708
- #: contact_form.php:979
709
  msgid "Please enter your address..."
710
  msgstr ""
711
 
712
- #: contact_form.php:988
713
- #: contact_form.php:990
714
  #, fuzzy
715
  msgid "Please enter your email address..."
716
  msgstr "Τα μηνύματα θα στέλνονται στο email "
717
 
718
- #: contact_form.php:999
719
- #: contact_form.php:1001
720
  msgid "Please enter your phone number..."
721
  msgstr ""
722
 
723
- #: contact_form.php:1010
724
- #: contact_form.php:1012
725
  msgid "Please enter subject..."
726
  msgstr ""
727
 
728
- #: contact_form.php:1020
729
- #: contact_form.php:1022
730
  msgid "Please enter your message..."
731
  msgstr ""
732
 
733
- #: contact_form.php:1033
734
  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"
735
  msgstr ""
736
 
737
- #: contact_form.php:1102
738
- msgid "Sorry, email message could not be delivered."
739
- msgstr "Δυστυχώς δεν μπορέσαμε να στείλουμε το email σας."
740
-
741
- #: contact_form.php:1186
742
  msgid "You can attach the following file formats"
743
  msgstr "Μπορείτε να επισυνάψετε αρχεία τύπου"
744
 
745
- #: contact_form.php:1470
746
  msgid "Contact from"
747
  msgstr "Επικοινωνία από"
748
 
749
- #: contact_form.php:1483
750
  msgid "Email"
751
  msgstr "E-Mail"
752
 
753
- #: contact_form.php:1497
754
  msgid "Site"
755
  msgstr "Ιστοσελίδα"
756
 
757
- #: contact_form.php:1547
758
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
759
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
760
 
761
- #: contact_form.php:1598
762
  msgid "FAQ"
763
  msgstr "Συχνές ερωτήσεις"
764
 
765
- #: contact_form.php:1599
766
  msgid "Support"
767
  msgstr "Υποστήριξη"
768
 
769
- #: contact_form.php:1647
770
  msgid "Are you sure that you want to delete this language data?"
771
  msgstr ""
772
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:55+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:55+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Pantelis Panteloglou <ppanteloglou@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Μήνυμα"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Ιστοσελίδα"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Τα μηνύματα θα στέλνονται στο email "
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Ευχαριστούμε για την επικοινωνία."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Δυστυχώς δεν μπορέσαμε να στείλουμε το email σας."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Ενεργοποιημένα πρόσθετα"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Διαβάστε περισσότερα"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Ρυθμίσεις"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Εγκατεστημένα πρόσθετα"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Προτεινόμενα πρόσθετα"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Προτεινόμενα πρόσθετα"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Κατέβασμα"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Εγκατάσταση %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Εγκαταστήστε τώρα από το wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Αν έχετε απορίες, επικοινωνήστε στο plugin@bestwebsoft.com ή μέσω της φόρμας επικοινωνίας της ιστοσελίδας μας"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Ενεργοποιημένα πρόσθετα"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Ενεργοποιημένα πρόσθετα"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Υποστήριξη"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Επιλογές φόρμας επικοινωνίας"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Φόρμα επικοινωνίας"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Επιλογές φόρμας επικοινωνίας"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Φόρμα επικοινωνίας"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Όνομα:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "Διεύθυνση e-mail:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "Διεύθυνση e-mail:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Θέμα:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Μήνυμα:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Επισύναψη:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Στείλε μου ένα αντίγραφο"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Υποβολή"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Γράψτε οπωσδήποτε το όνομά σας."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Απαιτείται μια έγκυρη διεύθυνση e-mail."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "Απαιτείται μια έγκυρη διεύθυνση e-mail."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "Γράψτε οπωσδήποτε το όνομά σας."
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "Γράψτε οπωσδήποτε ένα θέμα"
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "Απαιτείται κείμενο μηνύματος."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "Το επισυναπτόμενο δεν λειτουργεί."
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "Συμπληρώστε το CAPTCHA."
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Κάνετε διορθώσεις παρακάτω και ξαναπροσπαθήστε."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr ""
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Δεν υπάρχει τέτοιος χρήστης. Οι επιλογές δεν αποθηκεύτηκαν."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "Παρακαλούμε εισάγετε μια σωστή διεύθυνση email. Οι επιλογές δεν αποθηκεύτηκαν."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "Οι επιλογές αποθηκεύτηκαν."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "Ρυθμίσεις"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "Αν θέλετε να προσθέσετε μια φόρμα επικοινωνίας στην ιστοσελίδα σας, αντιγράψτε αυτό τον σύντομο κώδικα στην ανάρτηση, τη σελίδα ή το πρόσθετό σας:"
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "Αν τα παρακάτω πεδία είναι κενά, το μήνυμα θα σταλεί στη διεύθυνση που ορίστηκε κατά την εγγραφή"
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "Τα μηνύματα θα στέλνονται στο email του χρήστη:"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "επιλογή χρήστη"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "Τα μηνύματα θα λαμβάνει ο χρήστης"
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "Τα μηνύματα θα στέλνονται στο email "
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "Ορίστε την διεύθυνση email στην οποία θα αποστέλλονται τα μηνύματα."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "Πρόσθετες επιλογές"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr ""
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr ""
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "Mail"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr ""
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "Αλλάξτε το πεδίο \"ΑΠΟ\" της φόρμας επικοινωνίας"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "Διεύθυνση e-mail:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr ""
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Οι χρήστες μπορούν να επισυνάψουν αρχεία τύπου"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Προβολή κουτιού \"Στείλτο και σ' εμένα\""
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Ενεργοποιημένα πρόσθετα"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "Κατέβασμα"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Όνομα"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "Διεύθυνση e-mail:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Θέμα"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Μήνυμα"
578
 
579
+ #: contact_form.php:857
580
  #, fuzzy
581
  msgid "Display additional info in the email"
582
  msgstr "Προβολή πρόσθετων πληροφοριών στο email"
583
 
584
+ #: contact_form.php:862
585
+ #: contact_form.php:1658
586
  msgid "Sent from (ip address)"
587
  msgstr "Στάλθηκε από (διεύθυνση ip)"
588
 
589
+ #: contact_form.php:863
590
+ #: contact_form.php:1663
591
  msgid "Date/Time"
592
  msgstr "Ημερομηνία/Ώρα"
593
 
594
+ #: contact_form.php:864
595
+ #: contact_form.php:1668
596
  msgid "Sent from (referer)"
597
  msgstr "Από (referer)"
598
 
599
+ #: contact_form.php:865
600
+ #: contact_form.php:1673
601
  msgid "Using (user agent)"
602
  msgstr "με χρήση (user agent)"
603
 
604
+ #: contact_form.php:869
605
  msgid "Language settings for the field names in the form"
606
  msgstr ""
607
 
608
+ #: contact_form.php:878
609
  msgid "Add a language"
610
  msgstr ""
611
 
612
+ #: contact_form.php:882
613
  #, fuzzy
614
  msgid "Change the names of the contact form fields and error messages"
615
  msgstr "Αλλαγή ετικετών πεδίων της φόρμας επικοινωνίας"
616
 
617
+ #: contact_form.php:887
618
+ #: contact_form.php:958
619
  msgid "English"
620
  msgstr ""
621
 
622
+ #: contact_form.php:906
623
+ #: contact_form.php:935
624
  msgid "Error message for the Name field"
625
  msgstr ""
626
 
627
+ #: contact_form.php:907
628
+ #: contact_form.php:936
629
  msgid "Error message for the Address field"
630
  msgstr ""
631
 
632
+ #: contact_form.php:908
633
+ #: contact_form.php:937
634
  msgid "Error message for the Email field"
635
  msgstr ""
636
 
637
+ #: contact_form.php:909
638
+ #: contact_form.php:938
639
  msgid "Error message for the Phone field"
640
  msgstr ""
641
 
642
+ #: contact_form.php:910
643
+ #: contact_form.php:939
644
  msgid "Error message for the Subject field"
645
  msgstr ""
646
 
647
+ #: contact_form.php:911
648
+ #: contact_form.php:940
649
  msgid "Error message for the Message field"
650
  msgstr ""
651
 
652
+ #: contact_form.php:912
653
+ #: contact_form.php:941
654
  msgid "Error message about the file type for the Attachment field"
655
  msgstr ""
656
 
657
+ #: contact_form.php:913
658
+ #: contact_form.php:942
659
  msgid "Error message while uploading a file for the Attachment field to the server"
660
  msgstr ""
661
 
662
+ #: contact_form.php:914
663
+ #: contact_form.php:943
664
  msgid "Error message while moving the file for the Attachment field"
665
  msgstr ""
666
 
667
+ #: contact_form.php:915
668
+ #: contact_form.php:944
669
  msgid "Error message when file size limit for the Attachment field is exceeded"
670
  msgstr ""
671
 
672
+ #: contact_form.php:916
673
+ #: contact_form.php:945
674
  msgid "Error message for the Captcha field"
675
  msgstr ""
676
 
677
+ #: contact_form.php:917
678
+ #: contact_form.php:946
679
  msgid "Error message for the whole form"
680
  msgstr ""
681
 
682
+ #: contact_form.php:919
683
+ #: contact_form.php:948
684
+ #: contact_form.php:967
685
+ #: contact_form.php:973
686
  msgid "Use shortcode"
687
  msgstr ""
688
 
689
+ #: contact_form.php:919
690
+ #: contact_form.php:948
691
+ #: contact_form.php:967
692
+ #: contact_form.php:973
693
  msgid "for this language"
694
  msgstr ""
695
 
696
+ #: contact_form.php:955
697
  msgid "Action after email is sent"
698
  msgstr ""
699
 
700
+ #: contact_form.php:957
701
  #, fuzzy
702
  msgid "Display text"
703
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
704
 
705
+ #: contact_form.php:966
706
+ #: contact_form.php:972
707
  msgid "Text"
708
  msgstr ""
709
 
710
+ #: contact_form.php:979
711
  msgid "Redirect to the page"
712
  msgstr ""
713
 
714
+ #: contact_form.php:980
715
  msgid "Url"
716
  msgstr ""
717
 
718
+ #: contact_form.php:985
719
+ #: contact_form.php:1160
720
  msgid "Save Changes"
721
  msgstr "Αποθήκευση αλλαγών"
722
 
723
+ #: contact_form.php:1000
724
  #, fuzzy
725
  msgid "Contact Form Pro | Extra Settings"
726
  msgstr "Επιλογές φόρμας επικοινωνίας"
727
 
728
+ #: contact_form.php:1007
729
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
730
  msgstr ""
731
 
732
+ #: contact_form.php:1014
733
  msgid "Errors output"
734
  msgstr ""
735
 
736
+ #: contact_form.php:1017
737
  msgid "Display error messages"
738
  msgstr ""
739
 
740
+ #: contact_form.php:1018
741
  msgid "Color of the input field errors."
742
  msgstr ""
743
 
744
+ #: contact_form.php:1019
745
  msgid "Display error messages & color of the input field errors"
746
  msgstr ""
747
 
748
+ #: contact_form.php:1024
749
  msgid "Add placeholder to the input blocks"
750
  msgstr ""
751
 
752
+ #: contact_form.php:1030
753
  #, fuzzy
754
  msgid "Add tooltips"
755
  msgstr "Πρόσθετες επιλογές"
756
 
757
+ #: contact_form.php:1044
758
  #, fuzzy
759
  msgid "Email address"
760
  msgstr "Διεύθυνση e-mail:"
761
 
762
+ #: contact_form.php:1049
763
  msgid "Phone Number"
764
  msgstr ""
765
 
766
+ #: contact_form.php:1063
767
  #, fuzzy
768
  msgid "Attachment"
769
  msgstr "Επισύναψη:"
770
 
771
+ #: contact_form.php:1073
772
  #, fuzzy
773
  msgid "Style options"
774
  msgstr "Πρόσθετες επιλογές"
775
 
776
+ #: contact_form.php:1076
777
  msgid "Text color"
778
  msgstr ""
779
 
780
+ #: contact_form.php:1079
781
+ #: contact_form.php:1084
782
+ #: contact_form.php:1094
783
+ #: contact_form.php:1099
784
+ #: contact_form.php:1104
785
+ #: contact_form.php:1109
786
+ #: contact_form.php:1119
787
+ #: contact_form.php:1124
788
+ #: contact_form.php:1130
789
+ #: contact_form.php:1141
790
+ #: contact_form.php:1146
791
+ #: contact_form.php:1151
792
  msgid "Default"
793
  msgstr ""
794
 
795
+ #: contact_form.php:1081
796
  msgid "Label text color"
797
  msgstr ""
798
 
799
+ #: contact_form.php:1086
800
  msgid "Placeholder color"
801
  msgstr ""
802
 
803
+ #: contact_form.php:1091
804
  msgid "Errors color"
805
  msgstr ""
806
 
807
+ #: contact_form.php:1096
808
  msgid "Error text color"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1101
812
  msgid "Background color of the input field errors"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1106
816
  msgid "Border color of the input field errors"
817
  msgstr ""
818
 
819
+ #: contact_form.php:1111
820
  msgid "Placeholder color of the input field errors"
821
  msgstr ""
822
 
823
+ #: contact_form.php:1116
824
  #, fuzzy
825
  msgid "Input fields"
826
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
827
 
828
+ #: contact_form.php:1121
829
  msgid "Input fields background color"
830
  msgstr ""
831
 
832
+ #: contact_form.php:1126
833
  msgid "Text fields color"
834
  msgstr ""
835
 
836
+ #: contact_form.php:1128
837
  msgid "Border width in px, numbers only"
838
  msgstr ""
839
 
840
+ #: contact_form.php:1132
841
+ #: contact_form.php:1153
842
  msgid "Border color"
843
  msgstr ""
844
 
845
+ #: contact_form.php:1137
846
  #, fuzzy
847
  msgid "Submit button"
848
  msgstr "Υποβολή"
849
 
850
+ #: contact_form.php:1139
851
  msgid "Width in px, numbers only"
852
  msgstr ""
853
 
854
+ #: contact_form.php:1143
855
  msgid "Button color"
856
  msgstr ""
857
 
858
+ #: contact_form.php:1148
859
  msgid "Button text color"
860
  msgstr ""
861
 
862
+ #: contact_form.php:1164
863
  #, fuzzy
864
  msgid "Contact Form Pro | Preview"
865
  msgstr "Φόρμα επικοινωνίας"
866
 
867
+ #: contact_form.php:1167
868
  msgid "Show with errors"
869
  msgstr ""
870
 
871
+ #: contact_form.php:1175
872
+ #: contact_form.php:1177
873
  msgid "Please enter your full name..."
874
  msgstr ""
875
 
876
+ #: contact_form.php:1188
877
+ #: contact_form.php:1190
878
  msgid "Please enter your address..."
879
  msgstr ""
880
 
881
+ #: contact_form.php:1199
882
+ #: contact_form.php:1201
883
  #, fuzzy
884
  msgid "Please enter your email address..."
885
  msgstr "Τα μηνύματα θα στέλνονται στο email "
886
 
887
+ #: contact_form.php:1210
888
+ #: contact_form.php:1212
889
  msgid "Please enter your phone number..."
890
  msgstr ""
891
 
892
+ #: contact_form.php:1221
893
+ #: contact_form.php:1223
894
  msgid "Please enter subject..."
895
  msgstr ""
896
 
897
+ #: contact_form.php:1231
898
+ #: contact_form.php:1233
899
  msgid "Please enter your message..."
900
  msgstr ""
901
 
902
+ #: contact_form.php:1244
903
  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"
904
  msgstr ""
905
 
906
+ #: contact_form.php:1397
 
 
 
 
907
  msgid "You can attach the following file formats"
908
  msgstr "Μπορείτε να επισυνάψετε αρχεία τύπου"
909
 
910
+ #: contact_form.php:1681
911
  msgid "Contact from"
912
  msgstr "Επικοινωνία από"
913
 
914
+ #: contact_form.php:1694
915
  msgid "Email"
916
  msgstr "E-Mail"
917
 
918
+ #: contact_form.php:1708
919
  msgid "Site"
920
  msgstr "Ιστοσελίδα"
921
 
922
+ #: contact_form.php:1758
923
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
924
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
925
 
926
+ #: contact_form.php:1809
927
  msgid "FAQ"
928
  msgstr "Συχνές ερωτήσεις"
929
 
930
+ #: contact_form.php:1810
931
  msgid "Support"
932
  msgstr "Υποστήριξη"
933
 
934
+ #: contact_form.php:1858
935
  msgid "Are you sure that you want to delete this language data?"
936
  msgstr ""
937
 
languages/contact_form-es_ES.mo CHANGED
Binary file
languages/contact_form-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-16 16:04+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:04+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,756 +16,921 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Plugin ativado"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Lea mas"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Configuración"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Plugin instalados"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Plugins recomendados"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Plugins recomendados"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Descargar"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Instala %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Instala ahora de wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Si tiene alguna pregunta, por favor contactenos via plugin@bestwebsoft.com o use el formulario de contacto de nuestra web"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Opciones Contact Form"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Contact Form"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Opciones Contact Form"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Contact Form"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Nombre:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "Dirección e-mail:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "Dirección e-mail:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Asunto:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Mensaje:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Adjunto:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Envíame una copia"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Enviar"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Su nombre es obligatorio."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Una dirección válida es obligatoria."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "Una dirección válida es obligatoria."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "Su nombre es obligatorio."
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "El asunto es obligatorio."
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "El mensaje es obligatorio."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "El adjunto es incorrecto."
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "Por favor completa el CAPTCHA"
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Por favor, corrija los datos y pruebe de nuevo."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Gracias por contactar con nosotros"
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr ""
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Usuario inexistente. Los cambios no se han guardado."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "Configuración guardada."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "Configuración"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "Si quiere añadir Contact Form en su web, copie y pegue este código en su mensaje o página o widget:"
251
 
252
- #: contact_form.php:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "Si la información en este campo está vacia, se usará la dirección especificada en el registro."
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "Use el email del usuario de Wordpress:"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "Seleccione nombre de usuario"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "Introduzca el nombre del usuario que va a recibir mensajes desde contact form"
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "Use este emaill:"
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "Establecer una dirección de correo electrónico que se utiliza para los mensajes que reciben."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "Opciones adicionales"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr ""
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr ""
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "Mail"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr ""
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "Modifica DE los campos en contact form"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Visualiza el adjunto"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "Dirección e-mail:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr ""
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Visualiza el adjunto"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Visualiza el adjunto"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Ver envíame una copia"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Plugin ativado"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "Descargar"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Nombre"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "Dirección e-mail:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Asunto"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Mensaje"
409
 
410
- #: contact_form.php:646
411
  msgid "Display additional info in the email"
412
  msgstr ""
413
 
414
- #: contact_form.php:651
415
- #: contact_form.php:1447
416
  msgid "Sent from (ip address)"
417
  msgstr "Enviado desde (dirección IP)"
418
 
419
- #: contact_form.php:652
420
- #: contact_form.php:1452
421
  msgid "Date/Time"
422
  msgstr "Fecha/hora"
423
 
424
- #: contact_form.php:653
425
- #: contact_form.php:1457
426
  msgid "Sent from (referer)"
427
  msgstr "De (referente)"
428
 
429
- #: contact_form.php:654
430
- #: contact_form.php:1462
431
  msgid "Using (user agent)"
432
  msgstr "Usando (user agent)"
433
 
434
- #: contact_form.php:658
435
  msgid "Language settings for the field names in the form"
436
  msgstr ""
437
 
438
- #: contact_form.php:667
439
  msgid "Add a language"
440
  msgstr ""
441
 
442
- #: contact_form.php:671
443
  #, fuzzy
444
  msgid "Change the names of the contact form fields and error messages"
445
  msgstr "Modifica las etiquetas de los campos en contact form"
446
 
447
- #: contact_form.php:676
448
- #: contact_form.php:747
449
  msgid "English"
450
  msgstr ""
451
 
452
- #: contact_form.php:695
453
- #: contact_form.php:724
454
  msgid "Error message for the Name field"
455
  msgstr ""
456
 
457
- #: contact_form.php:696
458
- #: contact_form.php:725
459
  msgid "Error message for the Address field"
460
  msgstr ""
461
 
462
- #: contact_form.php:697
463
- #: contact_form.php:726
464
  msgid "Error message for the Email field"
465
  msgstr ""
466
 
467
- #: contact_form.php:698
468
- #: contact_form.php:727
469
  msgid "Error message for the Phone field"
470
  msgstr ""
471
 
472
- #: contact_form.php:699
473
- #: contact_form.php:728
474
  msgid "Error message for the Subject field"
475
  msgstr ""
476
 
477
- #: contact_form.php:700
478
- #: contact_form.php:729
479
  msgid "Error message for the Message field"
480
  msgstr ""
481
 
482
- #: contact_form.php:701
483
- #: contact_form.php:730
484
  msgid "Error message about the file type for the Attachment field"
485
  msgstr ""
486
 
487
- #: contact_form.php:702
488
- #: contact_form.php:731
489
  msgid "Error message while uploading a file for the Attachment field to the server"
490
  msgstr ""
491
 
492
- #: contact_form.php:703
493
- #: contact_form.php:732
494
  msgid "Error message while moving the file for the Attachment field"
495
  msgstr ""
496
 
497
- #: contact_form.php:704
498
- #: contact_form.php:733
499
  msgid "Error message when file size limit for the Attachment field is exceeded"
500
  msgstr ""
501
 
502
- #: contact_form.php:705
503
- #: contact_form.php:734
504
  msgid "Error message for the Captcha field"
505
  msgstr ""
506
 
507
- #: contact_form.php:706
508
- #: contact_form.php:735
509
  msgid "Error message for the whole form"
510
  msgstr ""
511
 
512
- #: contact_form.php:708
513
- #: contact_form.php:737
514
- #: contact_form.php:756
515
- #: contact_form.php:762
516
  msgid "Use shortcode"
517
  msgstr ""
518
 
519
- #: contact_form.php:708
520
- #: contact_form.php:737
521
- #: contact_form.php:756
522
- #: contact_form.php:762
523
  msgid "for this language"
524
  msgstr ""
525
 
526
- #: contact_form.php:744
527
  msgid "Action after email is sent"
528
  msgstr ""
529
 
530
- #: contact_form.php:746
531
  #, fuzzy
532
  msgid "Display text"
533
  msgstr "Visualiza el adjunto"
534
 
535
- #: contact_form.php:755
536
- #: contact_form.php:761
537
  msgid "Text"
538
  msgstr ""
539
 
540
- #: contact_form.php:768
541
  msgid "Redirect to the page"
542
  msgstr ""
543
 
544
- #: contact_form.php:769
545
  msgid "Url"
546
  msgstr ""
547
 
548
- #: contact_form.php:774
549
- #: contact_form.php:949
550
  msgid "Save Changes"
551
  msgstr "Guardar los cambios"
552
 
553
- #: contact_form.php:789
554
  #, fuzzy
555
  msgid "Contact Form Pro | Extra Settings"
556
  msgstr "Opciones Contact Form"
557
 
558
- #: contact_form.php:796
559
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
560
  msgstr ""
561
 
562
- #: contact_form.php:803
563
  msgid "Errors output"
564
  msgstr ""
565
 
566
- #: contact_form.php:806
567
  msgid "Display error messages"
568
  msgstr ""
569
 
570
- #: contact_form.php:807
571
  msgid "Color of the input field errors."
572
  msgstr ""
573
 
574
- #: contact_form.php:808
575
  msgid "Display error messages & color of the input field errors"
576
  msgstr ""
577
 
578
- #: contact_form.php:813
579
  msgid "Add placeholder to the input blocks"
580
  msgstr ""
581
 
582
- #: contact_form.php:819
583
  #, fuzzy
584
  msgid "Add tooltips"
585
  msgstr "Opciones adicionales"
586
 
587
- #: contact_form.php:833
588
  #, fuzzy
589
  msgid "Email address"
590
  msgstr "Dirección e-mail:"
591
 
592
- #: contact_form.php:838
593
  msgid "Phone Number"
594
  msgstr ""
595
 
596
- #: contact_form.php:852
597
  #, fuzzy
598
  msgid "Attachment"
599
  msgstr "Adjunto:"
600
 
601
- #: contact_form.php:862
602
  #, fuzzy
603
  msgid "Style options"
604
  msgstr "Opciones adicionales"
605
 
606
- #: contact_form.php:865
607
  msgid "Text color"
608
  msgstr ""
609
 
610
- #: contact_form.php:868
611
- #: contact_form.php:873
612
- #: contact_form.php:883
613
- #: contact_form.php:888
614
- #: contact_form.php:893
615
- #: contact_form.php:898
616
- #: contact_form.php:908
617
- #: contact_form.php:913
618
- #: contact_form.php:919
619
- #: contact_form.php:930
620
- #: contact_form.php:935
621
- #: contact_form.php:940
622
  msgid "Default"
623
  msgstr ""
624
 
625
- #: contact_form.php:870
626
  msgid "Label text color"
627
  msgstr ""
628
 
629
- #: contact_form.php:875
630
  msgid "Placeholder color"
631
  msgstr ""
632
 
633
- #: contact_form.php:880
634
  msgid "Errors color"
635
  msgstr ""
636
 
637
- #: contact_form.php:885
638
  msgid "Error text color"
639
  msgstr ""
640
 
641
- #: contact_form.php:890
642
  msgid "Background color of the input field errors"
643
  msgstr ""
644
 
645
- #: contact_form.php:895
646
  msgid "Border color of the input field errors"
647
  msgstr ""
648
 
649
- #: contact_form.php:900
650
  msgid "Placeholder color of the input field errors"
651
  msgstr ""
652
 
653
- #: contact_form.php:905
654
  #, fuzzy
655
  msgid "Input fields"
656
  msgstr "Visualiza el adjunto"
657
 
658
- #: contact_form.php:910
659
  msgid "Input fields background color"
660
  msgstr ""
661
 
662
- #: contact_form.php:915
663
  msgid "Text fields color"
664
  msgstr ""
665
 
666
- #: contact_form.php:917
667
  msgid "Border width in px, numbers only"
668
  msgstr ""
669
 
670
- #: contact_form.php:921
671
- #: contact_form.php:942
672
  msgid "Border color"
673
  msgstr ""
674
 
675
- #: contact_form.php:926
676
  #, fuzzy
677
  msgid "Submit button"
678
  msgstr "Enviar"
679
 
680
- #: contact_form.php:928
681
  msgid "Width in px, numbers only"
682
  msgstr ""
683
 
684
- #: contact_form.php:932
685
  msgid "Button color"
686
  msgstr ""
687
 
688
- #: contact_form.php:937
689
  msgid "Button text color"
690
  msgstr ""
691
 
692
- #: contact_form.php:953
693
  #, fuzzy
694
  msgid "Contact Form Pro | Preview"
695
  msgstr "Contact Form"
696
 
697
- #: contact_form.php:956
698
  msgid "Show with errors"
699
  msgstr ""
700
 
701
- #: contact_form.php:964
702
- #: contact_form.php:966
703
  msgid "Please enter your full name..."
704
  msgstr ""
705
 
706
- #: contact_form.php:977
707
- #: contact_form.php:979
708
  msgid "Please enter your address..."
709
  msgstr ""
710
 
711
- #: contact_form.php:988
712
- #: contact_form.php:990
713
  #, fuzzy
714
  msgid "Please enter your email address..."
715
  msgstr "Use este emaill:"
716
 
717
- #: contact_form.php:999
718
- #: contact_form.php:1001
719
  msgid "Please enter your phone number..."
720
  msgstr ""
721
 
722
- #: contact_form.php:1010
723
- #: contact_form.php:1012
724
  msgid "Please enter subject..."
725
  msgstr ""
726
 
727
- #: contact_form.php:1020
728
- #: contact_form.php:1022
729
  msgid "Please enter your message..."
730
  msgstr ""
731
 
732
- #: contact_form.php:1033
733
  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"
734
  msgstr ""
735
 
736
- #: contact_form.php:1102
737
- msgid "Sorry, email message could not be delivered."
738
- msgstr "Disculpe, su email no se puede entregar."
739
-
740
- #: contact_form.php:1186
741
  msgid "You can attach the following file formats"
742
  msgstr "Puede adjuntar archivos de estos tipos"
743
 
744
- #: contact_form.php:1470
745
  msgid "Contact from"
746
  msgstr "Contact from"
747
 
748
- #: contact_form.php:1483
749
  msgid "Email"
750
  msgstr "E-mail"
751
 
752
- #: contact_form.php:1497
753
  msgid "Site"
754
  msgstr "Sitio"
755
 
756
- #: contact_form.php:1547
757
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
758
  msgstr "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
759
 
760
- #: contact_form.php:1598
761
  msgid "FAQ"
762
  msgstr "FAQ"
763
 
764
- #: contact_form.php:1599
765
  msgid "Support"
766
  msgstr "Soporte"
767
 
768
- #: contact_form.php:1647
769
  msgid "Are you sure that you want to delete this language data?"
770
  msgstr ""
771
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:55+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:55+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Mensaje"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Sitio"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Use este emaill:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Gracias por contactar con nosotros"
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Disculpe, su email no se puede entregar."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Plugin ativado"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Lea mas"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Configuración"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Plugin instalados"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Plugins recomendados"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Plugins recomendados"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Descargar"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Instala %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Instala ahora de wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Si tiene alguna pregunta, por favor contactenos via plugin@bestwebsoft.com o use el formulario de contacto de nuestra web"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Plugin ativado"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Plugin ativado"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Soporte"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Opciones Contact Form"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Contact Form"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Opciones Contact Form"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Contact Form"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Nombre:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "Dirección e-mail:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "Dirección e-mail:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Asunto:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Mensaje:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Adjunto:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Envíame una copia"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Enviar"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Su nombre es obligatorio."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Una dirección válida es obligatoria."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "Una dirección válida es obligatoria."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "Su nombre es obligatorio."
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "El asunto es obligatorio."
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "El mensaje es obligatorio."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "El adjunto es incorrecto."
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "Por favor completa el CAPTCHA"
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Por favor, corrija los datos y pruebe de nuevo."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr ""
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Usuario inexistente. Los cambios no se han guardado."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "Configuración guardada."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "Configuración"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "Si quiere añadir Contact Form en su web, copie y pegue este código en su mensaje o página o widget:"
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "Si la información en este campo está vacia, se usará la dirección especificada en el registro."
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "Use el email del usuario de Wordpress:"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "Seleccione nombre de usuario"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "Introduzca el nombre del usuario que va a recibir mensajes desde contact form"
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "Use este emaill:"
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "Establecer una dirección de correo electrónico que se utiliza para los mensajes que reciben."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "Opciones adicionales"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr ""
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr ""
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "Mail"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr ""
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "Modifica DE los campos en contact form"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Visualiza el adjunto"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "Dirección e-mail:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr ""
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Visualiza el adjunto"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Visualiza el adjunto"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Ver envíame una copia"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Plugin ativado"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "Descargar"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Nombre"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "Dirección e-mail:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Asunto"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Mensaje"
578
 
579
+ #: contact_form.php:857
580
  msgid "Display additional info in the email"
581
  msgstr ""
582
 
583
+ #: contact_form.php:862
584
+ #: contact_form.php:1658
585
  msgid "Sent from (ip address)"
586
  msgstr "Enviado desde (dirección IP)"
587
 
588
+ #: contact_form.php:863
589
+ #: contact_form.php:1663
590
  msgid "Date/Time"
591
  msgstr "Fecha/hora"
592
 
593
+ #: contact_form.php:864
594
+ #: contact_form.php:1668
595
  msgid "Sent from (referer)"
596
  msgstr "De (referente)"
597
 
598
+ #: contact_form.php:865
599
+ #: contact_form.php:1673
600
  msgid "Using (user agent)"
601
  msgstr "Usando (user agent)"
602
 
603
+ #: contact_form.php:869
604
  msgid "Language settings for the field names in the form"
605
  msgstr ""
606
 
607
+ #: contact_form.php:878
608
  msgid "Add a language"
609
  msgstr ""
610
 
611
+ #: contact_form.php:882
612
  #, fuzzy
613
  msgid "Change the names of the contact form fields and error messages"
614
  msgstr "Modifica las etiquetas de los campos en contact form"
615
 
616
+ #: contact_form.php:887
617
+ #: contact_form.php:958
618
  msgid "English"
619
  msgstr ""
620
 
621
+ #: contact_form.php:906
622
+ #: contact_form.php:935
623
  msgid "Error message for the Name field"
624
  msgstr ""
625
 
626
+ #: contact_form.php:907
627
+ #: contact_form.php:936
628
  msgid "Error message for the Address field"
629
  msgstr ""
630
 
631
+ #: contact_form.php:908
632
+ #: contact_form.php:937
633
  msgid "Error message for the Email field"
634
  msgstr ""
635
 
636
+ #: contact_form.php:909
637
+ #: contact_form.php:938
638
  msgid "Error message for the Phone field"
639
  msgstr ""
640
 
641
+ #: contact_form.php:910
642
+ #: contact_form.php:939
643
  msgid "Error message for the Subject field"
644
  msgstr ""
645
 
646
+ #: contact_form.php:911
647
+ #: contact_form.php:940
648
  msgid "Error message for the Message field"
649
  msgstr ""
650
 
651
+ #: contact_form.php:912
652
+ #: contact_form.php:941
653
  msgid "Error message about the file type for the Attachment field"
654
  msgstr ""
655
 
656
+ #: contact_form.php:913
657
+ #: contact_form.php:942
658
  msgid "Error message while uploading a file for the Attachment field to the server"
659
  msgstr ""
660
 
661
+ #: contact_form.php:914
662
+ #: contact_form.php:943
663
  msgid "Error message while moving the file for the Attachment field"
664
  msgstr ""
665
 
666
+ #: contact_form.php:915
667
+ #: contact_form.php:944
668
  msgid "Error message when file size limit for the Attachment field is exceeded"
669
  msgstr ""
670
 
671
+ #: contact_form.php:916
672
+ #: contact_form.php:945
673
  msgid "Error message for the Captcha field"
674
  msgstr ""
675
 
676
+ #: contact_form.php:917
677
+ #: contact_form.php:946
678
  msgid "Error message for the whole form"
679
  msgstr ""
680
 
681
+ #: contact_form.php:919
682
+ #: contact_form.php:948
683
+ #: contact_form.php:967
684
+ #: contact_form.php:973
685
  msgid "Use shortcode"
686
  msgstr ""
687
 
688
+ #: contact_form.php:919
689
+ #: contact_form.php:948
690
+ #: contact_form.php:967
691
+ #: contact_form.php:973
692
  msgid "for this language"
693
  msgstr ""
694
 
695
+ #: contact_form.php:955
696
  msgid "Action after email is sent"
697
  msgstr ""
698
 
699
+ #: contact_form.php:957
700
  #, fuzzy
701
  msgid "Display text"
702
  msgstr "Visualiza el adjunto"
703
 
704
+ #: contact_form.php:966
705
+ #: contact_form.php:972
706
  msgid "Text"
707
  msgstr ""
708
 
709
+ #: contact_form.php:979
710
  msgid "Redirect to the page"
711
  msgstr ""
712
 
713
+ #: contact_form.php:980
714
  msgid "Url"
715
  msgstr ""
716
 
717
+ #: contact_form.php:985
718
+ #: contact_form.php:1160
719
  msgid "Save Changes"
720
  msgstr "Guardar los cambios"
721
 
722
+ #: contact_form.php:1000
723
  #, fuzzy
724
  msgid "Contact Form Pro | Extra Settings"
725
  msgstr "Opciones Contact Form"
726
 
727
+ #: contact_form.php:1007
728
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
729
  msgstr ""
730
 
731
+ #: contact_form.php:1014
732
  msgid "Errors output"
733
  msgstr ""
734
 
735
+ #: contact_form.php:1017
736
  msgid "Display error messages"
737
  msgstr ""
738
 
739
+ #: contact_form.php:1018
740
  msgid "Color of the input field errors."
741
  msgstr ""
742
 
743
+ #: contact_form.php:1019
744
  msgid "Display error messages & color of the input field errors"
745
  msgstr ""
746
 
747
+ #: contact_form.php:1024
748
  msgid "Add placeholder to the input blocks"
749
  msgstr ""
750
 
751
+ #: contact_form.php:1030
752
  #, fuzzy
753
  msgid "Add tooltips"
754
  msgstr "Opciones adicionales"
755
 
756
+ #: contact_form.php:1044
757
  #, fuzzy
758
  msgid "Email address"
759
  msgstr "Dirección e-mail:"
760
 
761
+ #: contact_form.php:1049
762
  msgid "Phone Number"
763
  msgstr ""
764
 
765
+ #: contact_form.php:1063
766
  #, fuzzy
767
  msgid "Attachment"
768
  msgstr "Adjunto:"
769
 
770
+ #: contact_form.php:1073
771
  #, fuzzy
772
  msgid "Style options"
773
  msgstr "Opciones adicionales"
774
 
775
+ #: contact_form.php:1076
776
  msgid "Text color"
777
  msgstr ""
778
 
779
+ #: contact_form.php:1079
780
+ #: contact_form.php:1084
781
+ #: contact_form.php:1094
782
+ #: contact_form.php:1099
783
+ #: contact_form.php:1104
784
+ #: contact_form.php:1109
785
+ #: contact_form.php:1119
786
+ #: contact_form.php:1124
787
+ #: contact_form.php:1130
788
+ #: contact_form.php:1141
789
+ #: contact_form.php:1146
790
+ #: contact_form.php:1151
791
  msgid "Default"
792
  msgstr ""
793
 
794
+ #: contact_form.php:1081
795
  msgid "Label text color"
796
  msgstr ""
797
 
798
+ #: contact_form.php:1086
799
  msgid "Placeholder color"
800
  msgstr ""
801
 
802
+ #: contact_form.php:1091
803
  msgid "Errors color"
804
  msgstr ""
805
 
806
+ #: contact_form.php:1096
807
  msgid "Error text color"
808
  msgstr ""
809
 
810
+ #: contact_form.php:1101
811
  msgid "Background color of the input field errors"
812
  msgstr ""
813
 
814
+ #: contact_form.php:1106
815
  msgid "Border color of the input field errors"
816
  msgstr ""
817
 
818
+ #: contact_form.php:1111
819
  msgid "Placeholder color of the input field errors"
820
  msgstr ""
821
 
822
+ #: contact_form.php:1116
823
  #, fuzzy
824
  msgid "Input fields"
825
  msgstr "Visualiza el adjunto"
826
 
827
+ #: contact_form.php:1121
828
  msgid "Input fields background color"
829
  msgstr ""
830
 
831
+ #: contact_form.php:1126
832
  msgid "Text fields color"
833
  msgstr ""
834
 
835
+ #: contact_form.php:1128
836
  msgid "Border width in px, numbers only"
837
  msgstr ""
838
 
839
+ #: contact_form.php:1132
840
+ #: contact_form.php:1153
841
  msgid "Border color"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1137
845
  #, fuzzy
846
  msgid "Submit button"
847
  msgstr "Enviar"
848
 
849
+ #: contact_form.php:1139
850
  msgid "Width in px, numbers only"
851
  msgstr ""
852
 
853
+ #: contact_form.php:1143
854
  msgid "Button color"
855
  msgstr ""
856
 
857
+ #: contact_form.php:1148
858
  msgid "Button text color"
859
  msgstr ""
860
 
861
+ #: contact_form.php:1164
862
  #, fuzzy
863
  msgid "Contact Form Pro | Preview"
864
  msgstr "Contact Form"
865
 
866
+ #: contact_form.php:1167
867
  msgid "Show with errors"
868
  msgstr ""
869
 
870
+ #: contact_form.php:1175
871
+ #: contact_form.php:1177
872
  msgid "Please enter your full name..."
873
  msgstr ""
874
 
875
+ #: contact_form.php:1188
876
+ #: contact_form.php:1190
877
  msgid "Please enter your address..."
878
  msgstr ""
879
 
880
+ #: contact_form.php:1199
881
+ #: contact_form.php:1201
882
  #, fuzzy
883
  msgid "Please enter your email address..."
884
  msgstr "Use este emaill:"
885
 
886
+ #: contact_form.php:1210
887
+ #: contact_form.php:1212
888
  msgid "Please enter your phone number..."
889
  msgstr ""
890
 
891
+ #: contact_form.php:1221
892
+ #: contact_form.php:1223
893
  msgid "Please enter subject..."
894
  msgstr ""
895
 
896
+ #: contact_form.php:1231
897
+ #: contact_form.php:1233
898
  msgid "Please enter your message..."
899
  msgstr ""
900
 
901
+ #: contact_form.php:1244
902
  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"
903
  msgstr ""
904
 
905
+ #: contact_form.php:1397
 
 
 
 
906
  msgid "You can attach the following file formats"
907
  msgstr "Puede adjuntar archivos de estos tipos"
908
 
909
+ #: contact_form.php:1681
910
  msgid "Contact from"
911
  msgstr "Contact from"
912
 
913
+ #: contact_form.php:1694
914
  msgid "Email"
915
  msgstr "E-mail"
916
 
917
+ #: contact_form.php:1708
918
  msgid "Site"
919
  msgstr "Sitio"
920
 
921
+ #: contact_form.php:1758
922
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
923
  msgstr "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
924
 
925
+ #: contact_form.php:1809
926
  msgid "FAQ"
927
  msgstr "FAQ"
928
 
929
+ #: contact_form.php:1810
930
  msgid "Support"
931
  msgstr "Soporte"
932
 
933
+ #: contact_form.php:1858
934
  msgid "Are you sure that you want to delete this language data?"
935
  msgstr ""
936
 
languages/contact_form-fa_IR.mo CHANGED
Binary file
languages/contact_form-fa_IR.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: 2013-07-16 16:04+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:04+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: AlirezaJamali <me@alirezaJamali.net>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,757 +16,922 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "افزونه های فعال"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "متن کامل"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "تنظیمات"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "افزونه های نصب شده"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "افزونه های پیشنهادی"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "افزونه های پیشنهادی"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "دانلود"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "نصب %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "هم اکنون نصب کنید wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "چنانچه سئوالی دارید لطفا از طریق رایانامه plugin@bestwebsoft.com یا فرم ارتباطی سایت با با تماس بگیرید."
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "گزینه های فرم ارتباط با مدیریت"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "فرم ارتباط با مدیریت"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "گزینه های فرم ارتباط با مدیریت"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "فرم ارتباط با مدیریت"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "نام "
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "رایانامه "
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "رایانامه "
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr "شماره تماس "
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "موضوع "
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "متن پیام "
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "پیوست "
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "به رایانامه من ارسال شود"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "ارسال"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "نام ضروری می باشد. "
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "رایانامه ضروری می باشد. "
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "رایانامه ضروری می باشد. "
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "نام ضروری می باشد. "
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "عنوان ضروری می باشد. "
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "متن پیام ضروری می باشد. "
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "فایل آسیب دیده می باشد. "
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "لطفا کد امنیتی را وارد کنید. "
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "لطفا پس از انجام اصلاحات دوباره ارسال نمایید. "
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "قدردان همیاری شما هستیم."
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr "اگر گزینه \"انتقال به\" انتخاب شود بایستی فیلد مربوط به تارنما را تکمیل کنید"
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "این کاربر وجود ندارد، تغییرات ثبت نشد."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "لطفا از صحت رایانامه اطمینان حاصل فرمایید، تغییرات ثبت نشد."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "تغییرات ثبت شد."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "تنظیمات"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "اگر مایل به استفاده از فرم ارتباط با مدیریت می باشید، کد را در صفحه یا نوشته دلخواه قرار دهید : "
251
 
252
- #: contact_form.php:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "اگر اطلاعات درخواستی زیر تکمیل نشود پیام به آدرس ثبت نام ارسال خواهد شد."
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "از رایانامه کاربران استفاده کن : "
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "انتخاب شناسه کاربری"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "نام کاربری را که پیام را دریافت می کند مشخص کنید. "
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "استفاده از این رایانامه : "
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "رایانامه ای را برای دریافت پیام مشخص کنید."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "گزینه های بیشتر"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr "چه استفاده ای؟"
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "افزونه ارسال رایانامه Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr "جهت ارسال رایانامه افزونه Wp-mail نصب کنید"
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "رایانامه"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr "برای ارسال رایانامه می توانید از امکانات PHP استفاده کنید"
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "از طریق موارد فرم ارتباط با مدیریت تغییر دهید"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "نمایش متن"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "رایانامه "
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr "شماره تماس"
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "نمایش گزینه پیوست"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "کاربران قادر به ارسال این نوع فایلها می باشند"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "نمایش توضیحات بعد از پیوست"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "نمایش گزینه \"ارسال یک نسخه برای من\""
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "افزونه های فعال"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "دانلود"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "نام "
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "رایانامه "
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "موضوع "
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "متن پیام "
409
 
410
- #: contact_form.php:646
411
  #, fuzzy
412
  msgid "Display additional info in the email"
413
  msgstr "اطلاعات بیشتر را در رایانامه نمایش بده"
414
 
415
- #: contact_form.php:651
416
- #: contact_form.php:1447
417
  msgid "Sent from (ip address)"
418
  msgstr "ارسال از سوی (ip address)"
419
 
420
- #: contact_form.php:652
421
- #: contact_form.php:1452
422
  msgid "Date/Time"
423
  msgstr "روز / زمان"
424
 
425
- #: contact_form.php:653
426
- #: contact_form.php:1457
427
  msgid "Sent from (referer)"
428
  msgstr "دریافت از سوی (referer)"
429
 
430
- #: contact_form.php:654
431
- #: contact_form.php:1462
432
  msgid "Using (user agent)"
433
  msgstr "استفاده از (user agent)"
434
 
435
- #: contact_form.php:658
436
  msgid "Language settings for the field names in the form"
437
  msgstr ""
438
 
439
- #: contact_form.php:667
440
  msgid "Add a language"
441
  msgstr ""
442
 
443
- #: contact_form.php:671
444
  #, fuzzy
445
  msgid "Change the names of the contact form fields and error messages"
446
  msgstr "تغییر عناوین فیلدهای فرم تماس با مدیریت "
447
 
448
- #: contact_form.php:676
449
- #: contact_form.php:747
450
  msgid "English"
451
  msgstr ""
452
 
453
- #: contact_form.php:695
454
- #: contact_form.php:724
455
  msgid "Error message for the Name field"
456
  msgstr ""
457
 
458
- #: contact_form.php:696
459
- #: contact_form.php:725
460
  msgid "Error message for the Address field"
461
  msgstr ""
462
 
463
- #: contact_form.php:697
464
- #: contact_form.php:726
465
  msgid "Error message for the Email field"
466
  msgstr ""
467
 
468
- #: contact_form.php:698
469
- #: contact_form.php:727
470
  msgid "Error message for the Phone field"
471
  msgstr ""
472
 
473
- #: contact_form.php:699
474
- #: contact_form.php:728
475
  msgid "Error message for the Subject field"
476
  msgstr ""
477
 
478
- #: contact_form.php:700
479
- #: contact_form.php:729
480
  msgid "Error message for the Message field"
481
  msgstr ""
482
 
483
- #: contact_form.php:701
484
- #: contact_form.php:730
485
  msgid "Error message about the file type for the Attachment field"
486
  msgstr ""
487
 
488
- #: contact_form.php:702
489
- #: contact_form.php:731
490
  msgid "Error message while uploading a file for the Attachment field to the server"
491
  msgstr ""
492
 
493
- #: contact_form.php:703
494
- #: contact_form.php:732
495
  msgid "Error message while moving the file for the Attachment field"
496
  msgstr ""
497
 
498
- #: contact_form.php:704
499
- #: contact_form.php:733
500
  msgid "Error message when file size limit for the Attachment field is exceeded"
501
  msgstr ""
502
 
503
- #: contact_form.php:705
504
- #: contact_form.php:734
505
  msgid "Error message for the Captcha field"
506
  msgstr ""
507
 
508
- #: contact_form.php:706
509
- #: contact_form.php:735
510
  msgid "Error message for the whole form"
511
  msgstr ""
512
 
513
- #: contact_form.php:708
514
- #: contact_form.php:737
515
- #: contact_form.php:756
516
- #: contact_form.php:762
517
  msgid "Use shortcode"
518
  msgstr ""
519
 
520
- #: contact_form.php:708
521
- #: contact_form.php:737
522
- #: contact_form.php:756
523
- #: contact_form.php:762
524
  msgid "for this language"
525
  msgstr ""
526
 
527
- #: contact_form.php:744
528
  msgid "Action after email is sent"
529
  msgstr "عکس العمل پس از ارسال"
530
 
531
- #: contact_form.php:746
532
  msgid "Display text"
533
  msgstr "نمایش متن"
534
 
535
- #: contact_form.php:755
536
- #: contact_form.php:761
537
  msgid "Text"
538
  msgstr "متن"
539
 
540
- #: contact_form.php:768
541
  msgid "Redirect to the page"
542
  msgstr "انتقال به "
543
 
544
- #: contact_form.php:769
545
  msgid "Url"
546
  msgstr "تارنما"
547
 
548
- #: contact_form.php:774
549
- #: contact_form.php:949
550
  msgid "Save Changes"
551
  msgstr "ثبت تغییرات"
552
 
553
- #: contact_form.php:789
554
  #, fuzzy
555
  msgid "Contact Form Pro | Extra Settings"
556
  msgstr "گزینه های فرم ارتباط با مدیریت"
557
 
558
- #: contact_form.php:796
559
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
560
  msgstr ""
561
 
562
- #: contact_form.php:803
563
  msgid "Errors output"
564
  msgstr ""
565
 
566
- #: contact_form.php:806
567
  msgid "Display error messages"
568
  msgstr ""
569
 
570
- #: contact_form.php:807
571
  msgid "Color of the input field errors."
572
  msgstr ""
573
 
574
- #: contact_form.php:808
575
  msgid "Display error messages & color of the input field errors"
576
  msgstr ""
577
 
578
- #: contact_form.php:813
579
  msgid "Add placeholder to the input blocks"
580
  msgstr ""
581
 
582
- #: contact_form.php:819
583
  #, fuzzy
584
  msgid "Add tooltips"
585
  msgstr "گزینه های بیشتر"
586
 
587
- #: contact_form.php:833
588
  #, fuzzy
589
  msgid "Email address"
590
  msgstr "رایانامه "
591
 
592
- #: contact_form.php:838
593
  #, fuzzy
594
  msgid "Phone Number"
595
  msgstr "شماره تماس "
596
 
597
- #: contact_form.php:852
598
  #, fuzzy
599
  msgid "Attachment"
600
  msgstr "پیوست "
601
 
602
- #: contact_form.php:862
603
  #, fuzzy
604
  msgid "Style options"
605
  msgstr "گزینه های بیشتر"
606
 
607
- #: contact_form.php:865
608
  msgid "Text color"
609
  msgstr ""
610
 
611
- #: contact_form.php:868
612
- #: contact_form.php:873
613
- #: contact_form.php:883
614
- #: contact_form.php:888
615
- #: contact_form.php:893
616
- #: contact_form.php:898
617
- #: contact_form.php:908
618
- #: contact_form.php:913
619
- #: contact_form.php:919
620
- #: contact_form.php:930
621
- #: contact_form.php:935
622
- #: contact_form.php:940
623
  msgid "Default"
624
  msgstr ""
625
 
626
- #: contact_form.php:870
627
  msgid "Label text color"
628
  msgstr ""
629
 
630
- #: contact_form.php:875
631
  msgid "Placeholder color"
632
  msgstr ""
633
 
634
- #: contact_form.php:880
635
  msgid "Errors color"
636
  msgstr ""
637
 
638
- #: contact_form.php:885
639
  msgid "Error text color"
640
  msgstr ""
641
 
642
- #: contact_form.php:890
643
  msgid "Background color of the input field errors"
644
  msgstr ""
645
 
646
- #: contact_form.php:895
647
  msgid "Border color of the input field errors"
648
  msgstr ""
649
 
650
- #: contact_form.php:900
651
  msgid "Placeholder color of the input field errors"
652
  msgstr ""
653
 
654
- #: contact_form.php:905
655
  #, fuzzy
656
  msgid "Input fields"
657
  msgstr "نمایش متن"
658
 
659
- #: contact_form.php:910
660
  msgid "Input fields background color"
661
  msgstr ""
662
 
663
- #: contact_form.php:915
664
  msgid "Text fields color"
665
  msgstr ""
666
 
667
- #: contact_form.php:917
668
  msgid "Border width in px, numbers only"
669
  msgstr ""
670
 
671
- #: contact_form.php:921
672
- #: contact_form.php:942
673
  msgid "Border color"
674
  msgstr ""
675
 
676
- #: contact_form.php:926
677
  #, fuzzy
678
  msgid "Submit button"
679
  msgstr "ارسال"
680
 
681
- #: contact_form.php:928
682
  msgid "Width in px, numbers only"
683
  msgstr ""
684
 
685
- #: contact_form.php:932
686
  msgid "Button color"
687
  msgstr ""
688
 
689
- #: contact_form.php:937
690
  msgid "Button text color"
691
  msgstr ""
692
 
693
- #: contact_form.php:953
694
  #, fuzzy
695
  msgid "Contact Form Pro | Preview"
696
  msgstr "فرم ارتباط با مدیریت"
697
 
698
- #: contact_form.php:956
699
  msgid "Show with errors"
700
  msgstr ""
701
 
702
- #: contact_form.php:964
703
- #: contact_form.php:966
704
  msgid "Please enter your full name..."
705
  msgstr ""
706
 
707
- #: contact_form.php:977
708
- #: contact_form.php:979
709
  msgid "Please enter your address..."
710
  msgstr ""
711
 
712
- #: contact_form.php:988
713
- #: contact_form.php:990
714
  #, fuzzy
715
  msgid "Please enter your email address..."
716
  msgstr "استفاده از این رایانامه : "
717
 
718
- #: contact_form.php:999
719
- #: contact_form.php:1001
720
  msgid "Please enter your phone number..."
721
  msgstr ""
722
 
723
- #: contact_form.php:1010
724
- #: contact_form.php:1012
725
  msgid "Please enter subject..."
726
  msgstr ""
727
 
728
- #: contact_form.php:1020
729
- #: contact_form.php:1022
730
  msgid "Please enter your message..."
731
  msgstr ""
732
 
733
- #: contact_form.php:1033
734
  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"
735
  msgstr ""
736
 
737
- #: contact_form.php:1102
738
- msgid "Sorry, email message could not be delivered."
739
- msgstr "امکان ارسال رایانامه برای شما وجود ندارد."
740
-
741
- #: contact_form.php:1186
742
  msgid "You can attach the following file formats"
743
  msgstr "می توانید فایل با این فرمت ارسال فرمایید "
744
 
745
- #: contact_form.php:1470
746
  msgid "Contact from"
747
  msgstr "فرم ارتباط با مدیریت"
748
 
749
- #: contact_form.php:1483
750
  msgid "Email"
751
  msgstr "رایانامه "
752
 
753
- #: contact_form.php:1497
754
  msgid "Site"
755
  msgstr "سایت"
756
 
757
- #: contact_form.php:1547
758
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
759
  msgstr "اگر می توانید این MIME کاربران را ببینید، نوع آن قابل پذیرش نیست!"
760
 
761
- #: contact_form.php:1598
762
  msgid "FAQ"
763
  msgstr "سئوالات مطرح"
764
 
765
- #: contact_form.php:1599
766
  msgid "Support"
767
  msgstr "پشتیبانی"
768
 
769
- #: contact_form.php:1647
770
  msgid "Are you sure that you want to delete this language data?"
771
  msgstr ""
772
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:55+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:55+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: AlirezaJamali <me@alirezaJamali.net>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "متن پیام "
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "سایت"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "استفاده از این رایانامه : "
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "قدردان همیاری شما هستیم."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "امکان ارسال رایانامه برای شما وجود ندارد."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "افزونه های فعال"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "متن کامل"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "تنظیمات"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "افزونه های نصب شده"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "افزونه های پیشنهادی"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "افزونه های پیشنهادی"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "دانلود"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "نصب %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "هم اکنون نصب کنید wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "چنانچه سئوالی دارید لطفا از طریق رایانامه plugin@bestwebsoft.com یا فرم ارتباطی سایت با با تماس بگیرید."
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "افزونه های فعال"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "افزونه های فعال"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "پشتیبانی"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "گزینه های فرم ارتباط با مدیریت"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "فرم ارتباط با مدیریت"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "گزینه های فرم ارتباط با مدیریت"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "فرم ارتباط با مدیریت"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "نام "
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "رایانامه "
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "رایانامه "
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr "شماره تماس "
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "موضوع "
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "متن پیام "
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "پیوست "
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "به رایانامه من ارسال شود"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "ارسال"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "نام ضروری می باشد. "
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "رایانامه ضروری می باشد. "
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "رایانامه ضروری می باشد. "
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "نام ضروری می باشد. "
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "عنوان ضروری می باشد. "
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "متن پیام ضروری می باشد. "
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "فایل آسیب دیده می باشد. "
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "لطفا کد امنیتی را وارد کنید. "
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "لطفا پس از انجام اصلاحات دوباره ارسال نمایید. "
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr "اگر گزینه \"انتقال به\" انتخاب شود بایستی فیلد مربوط به تارنما را تکمیل کنید"
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "این کاربر وجود ندارد، تغییرات ثبت نشد."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "لطفا از صحت رایانامه اطمینان حاصل فرمایید، تغییرات ثبت نشد."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "تغییرات ثبت شد."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "تنظیمات"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "اگر مایل به استفاده از فرم ارتباط با مدیریت می باشید، کد را در صفحه یا نوشته دلخواه قرار دهید : "
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "اگر اطلاعات درخواستی زیر تکمیل نشود پیام به آدرس ثبت نام ارسال خواهد شد."
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "از رایانامه کاربران استفاده کن : "
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "انتخاب شناسه کاربری"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "نام کاربری را که پیام را دریافت می کند مشخص کنید. "
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "استفاده از این رایانامه : "
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "رایانامه ای را برای دریافت پیام مشخص کنید."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "گزینه های بیشتر"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr "چه استفاده ای؟"
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "افزونه ارسال رایانامه Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr "جهت ارسال رایانامه افزونه Wp-mail نصب کنید"
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "رایانامه"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr "برای ارسال رایانامه می توانید از امکانات PHP استفاده کنید"
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "از طریق موارد فرم ارتباط با مدیریت تغییر دهید"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "نمایش متن"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "رایانامه "
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr "شماره تماس"
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "نمایش گزینه پیوست"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "کاربران قادر به ارسال این نوع فایلها می باشند"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "نمایش توضیحات بعد از پیوست"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "نمایش گزینه \"ارسال یک نسخه برای من\""
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "افزونه های فعال"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "دانلود"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "نام "
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "رایانامه "
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "موضوع "
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "متن پیام "
578
 
579
+ #: contact_form.php:857
580
  #, fuzzy
581
  msgid "Display additional info in the email"
582
  msgstr "اطلاعات بیشتر را در رایانامه نمایش بده"
583
 
584
+ #: contact_form.php:862
585
+ #: contact_form.php:1658
586
  msgid "Sent from (ip address)"
587
  msgstr "ارسال از سوی (ip address)"
588
 
589
+ #: contact_form.php:863
590
+ #: contact_form.php:1663
591
  msgid "Date/Time"
592
  msgstr "روز / زمان"
593
 
594
+ #: contact_form.php:864
595
+ #: contact_form.php:1668
596
  msgid "Sent from (referer)"
597
  msgstr "دریافت از سوی (referer)"
598
 
599
+ #: contact_form.php:865
600
+ #: contact_form.php:1673
601
  msgid "Using (user agent)"
602
  msgstr "استفاده از (user agent)"
603
 
604
+ #: contact_form.php:869
605
  msgid "Language settings for the field names in the form"
606
  msgstr ""
607
 
608
+ #: contact_form.php:878
609
  msgid "Add a language"
610
  msgstr ""
611
 
612
+ #: contact_form.php:882
613
  #, fuzzy
614
  msgid "Change the names of the contact form fields and error messages"
615
  msgstr "تغییر عناوین فیلدهای فرم تماس با مدیریت "
616
 
617
+ #: contact_form.php:887
618
+ #: contact_form.php:958
619
  msgid "English"
620
  msgstr ""
621
 
622
+ #: contact_form.php:906
623
+ #: contact_form.php:935
624
  msgid "Error message for the Name field"
625
  msgstr ""
626
 
627
+ #: contact_form.php:907
628
+ #: contact_form.php:936
629
  msgid "Error message for the Address field"
630
  msgstr ""
631
 
632
+ #: contact_form.php:908
633
+ #: contact_form.php:937
634
  msgid "Error message for the Email field"
635
  msgstr ""
636
 
637
+ #: contact_form.php:909
638
+ #: contact_form.php:938
639
  msgid "Error message for the Phone field"
640
  msgstr ""
641
 
642
+ #: contact_form.php:910
643
+ #: contact_form.php:939
644
  msgid "Error message for the Subject field"
645
  msgstr ""
646
 
647
+ #: contact_form.php:911
648
+ #: contact_form.php:940
649
  msgid "Error message for the Message field"
650
  msgstr ""
651
 
652
+ #: contact_form.php:912
653
+ #: contact_form.php:941
654
  msgid "Error message about the file type for the Attachment field"
655
  msgstr ""
656
 
657
+ #: contact_form.php:913
658
+ #: contact_form.php:942
659
  msgid "Error message while uploading a file for the Attachment field to the server"
660
  msgstr ""
661
 
662
+ #: contact_form.php:914
663
+ #: contact_form.php:943
664
  msgid "Error message while moving the file for the Attachment field"
665
  msgstr ""
666
 
667
+ #: contact_form.php:915
668
+ #: contact_form.php:944
669
  msgid "Error message when file size limit for the Attachment field is exceeded"
670
  msgstr ""
671
 
672
+ #: contact_form.php:916
673
+ #: contact_form.php:945
674
  msgid "Error message for the Captcha field"
675
  msgstr ""
676
 
677
+ #: contact_form.php:917
678
+ #: contact_form.php:946
679
  msgid "Error message for the whole form"
680
  msgstr ""
681
 
682
+ #: contact_form.php:919
683
+ #: contact_form.php:948
684
+ #: contact_form.php:967
685
+ #: contact_form.php:973
686
  msgid "Use shortcode"
687
  msgstr ""
688
 
689
+ #: contact_form.php:919
690
+ #: contact_form.php:948
691
+ #: contact_form.php:967
692
+ #: contact_form.php:973
693
  msgid "for this language"
694
  msgstr ""
695
 
696
+ #: contact_form.php:955
697
  msgid "Action after email is sent"
698
  msgstr "عکس العمل پس از ارسال"
699
 
700
+ #: contact_form.php:957
701
  msgid "Display text"
702
  msgstr "نمایش متن"
703
 
704
+ #: contact_form.php:966
705
+ #: contact_form.php:972
706
  msgid "Text"
707
  msgstr "متن"
708
 
709
+ #: contact_form.php:979
710
  msgid "Redirect to the page"
711
  msgstr "انتقال به "
712
 
713
+ #: contact_form.php:980
714
  msgid "Url"
715
  msgstr "تارنما"
716
 
717
+ #: contact_form.php:985
718
+ #: contact_form.php:1160
719
  msgid "Save Changes"
720
  msgstr "ثبت تغییرات"
721
 
722
+ #: contact_form.php:1000
723
  #, fuzzy
724
  msgid "Contact Form Pro | Extra Settings"
725
  msgstr "گزینه های فرم ارتباط با مدیریت"
726
 
727
+ #: contact_form.php:1007
728
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
729
  msgstr ""
730
 
731
+ #: contact_form.php:1014
732
  msgid "Errors output"
733
  msgstr ""
734
 
735
+ #: contact_form.php:1017
736
  msgid "Display error messages"
737
  msgstr ""
738
 
739
+ #: contact_form.php:1018
740
  msgid "Color of the input field errors."
741
  msgstr ""
742
 
743
+ #: contact_form.php:1019
744
  msgid "Display error messages & color of the input field errors"
745
  msgstr ""
746
 
747
+ #: contact_form.php:1024
748
  msgid "Add placeholder to the input blocks"
749
  msgstr ""
750
 
751
+ #: contact_form.php:1030
752
  #, fuzzy
753
  msgid "Add tooltips"
754
  msgstr "گزینه های بیشتر"
755
 
756
+ #: contact_form.php:1044
757
  #, fuzzy
758
  msgid "Email address"
759
  msgstr "رایانامه "
760
 
761
+ #: contact_form.php:1049
762
  #, fuzzy
763
  msgid "Phone Number"
764
  msgstr "شماره تماس "
765
 
766
+ #: contact_form.php:1063
767
  #, fuzzy
768
  msgid "Attachment"
769
  msgstr "پیوست "
770
 
771
+ #: contact_form.php:1073
772
  #, fuzzy
773
  msgid "Style options"
774
  msgstr "گزینه های بیشتر"
775
 
776
+ #: contact_form.php:1076
777
  msgid "Text color"
778
  msgstr ""
779
 
780
+ #: contact_form.php:1079
781
+ #: contact_form.php:1084
782
+ #: contact_form.php:1094
783
+ #: contact_form.php:1099
784
+ #: contact_form.php:1104
785
+ #: contact_form.php:1109
786
+ #: contact_form.php:1119
787
+ #: contact_form.php:1124
788
+ #: contact_form.php:1130
789
+ #: contact_form.php:1141
790
+ #: contact_form.php:1146
791
+ #: contact_form.php:1151
792
  msgid "Default"
793
  msgstr ""
794
 
795
+ #: contact_form.php:1081
796
  msgid "Label text color"
797
  msgstr ""
798
 
799
+ #: contact_form.php:1086
800
  msgid "Placeholder color"
801
  msgstr ""
802
 
803
+ #: contact_form.php:1091
804
  msgid "Errors color"
805
  msgstr ""
806
 
807
+ #: contact_form.php:1096
808
  msgid "Error text color"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1101
812
  msgid "Background color of the input field errors"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1106
816
  msgid "Border color of the input field errors"
817
  msgstr ""
818
 
819
+ #: contact_form.php:1111
820
  msgid "Placeholder color of the input field errors"
821
  msgstr ""
822
 
823
+ #: contact_form.php:1116
824
  #, fuzzy
825
  msgid "Input fields"
826
  msgstr "نمایش متن"
827
 
828
+ #: contact_form.php:1121
829
  msgid "Input fields background color"
830
  msgstr ""
831
 
832
+ #: contact_form.php:1126
833
  msgid "Text fields color"
834
  msgstr ""
835
 
836
+ #: contact_form.php:1128
837
  msgid "Border width in px, numbers only"
838
  msgstr ""
839
 
840
+ #: contact_form.php:1132
841
+ #: contact_form.php:1153
842
  msgid "Border color"
843
  msgstr ""
844
 
845
+ #: contact_form.php:1137
846
  #, fuzzy
847
  msgid "Submit button"
848
  msgstr "ارسال"
849
 
850
+ #: contact_form.php:1139
851
  msgid "Width in px, numbers only"
852
  msgstr ""
853
 
854
+ #: contact_form.php:1143
855
  msgid "Button color"
856
  msgstr ""
857
 
858
+ #: contact_form.php:1148
859
  msgid "Button text color"
860
  msgstr ""
861
 
862
+ #: contact_form.php:1164
863
  #, fuzzy
864
  msgid "Contact Form Pro | Preview"
865
  msgstr "فرم ارتباط با مدیریت"
866
 
867
+ #: contact_form.php:1167
868
  msgid "Show with errors"
869
  msgstr ""
870
 
871
+ #: contact_form.php:1175
872
+ #: contact_form.php:1177
873
  msgid "Please enter your full name..."
874
  msgstr ""
875
 
876
+ #: contact_form.php:1188
877
+ #: contact_form.php:1190
878
  msgid "Please enter your address..."
879
  msgstr ""
880
 
881
+ #: contact_form.php:1199
882
+ #: contact_form.php:1201
883
  #, fuzzy
884
  msgid "Please enter your email address..."
885
  msgstr "استفاده از این رایانامه : "
886
 
887
+ #: contact_form.php:1210
888
+ #: contact_form.php:1212
889
  msgid "Please enter your phone number..."
890
  msgstr ""
891
 
892
+ #: contact_form.php:1221
893
+ #: contact_form.php:1223
894
  msgid "Please enter subject..."
895
  msgstr ""
896
 
897
+ #: contact_form.php:1231
898
+ #: contact_form.php:1233
899
  msgid "Please enter your message..."
900
  msgstr ""
901
 
902
+ #: contact_form.php:1244
903
  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"
904
  msgstr ""
905
 
906
+ #: contact_form.php:1397
 
 
 
 
907
  msgid "You can attach the following file formats"
908
  msgstr "می توانید فایل با این فرمت ارسال فرمایید "
909
 
910
+ #: contact_form.php:1681
911
  msgid "Contact from"
912
  msgstr "فرم ارتباط با مدیریت"
913
 
914
+ #: contact_form.php:1694
915
  msgid "Email"
916
  msgstr "رایانامه "
917
 
918
+ #: contact_form.php:1708
919
  msgid "Site"
920
  msgstr "سایت"
921
 
922
+ #: contact_form.php:1758
923
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
924
  msgstr "اگر می توانید این MIME کاربران را ببینید، نوع آن قابل پذیرش نیست!"
925
 
926
+ #: contact_form.php:1809
927
  msgid "FAQ"
928
  msgstr "سئوالات مطرح"
929
 
930
+ #: contact_form.php:1810
931
  msgid "Support"
932
  msgstr "پشتیبانی"
933
 
934
+ #: contact_form.php:1858
935
  msgid "Are you sure that you want to delete this language data?"
936
  msgstr ""
937
 
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: 2013-07-16 16:04+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:04+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest <joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,755 +16,920 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "Плагины BWS"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Aktivoidut lisäosat"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Lue lisää"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Asetukset"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Asennetut lisäosat"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Suositellut lisäosat"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Suositellut lisäosat"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Lataa"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Asenna %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Asenna osoitteesta wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Jos sinulla on kysyttävää, ota yhteyttä osoitteeseen plugin@bestwebsoft.com tai täytä yhteydenottolomake sivuillamme."
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Yhteydenottolomakeasetukset"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Yhteydenottolomake"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Yhteydenottolomakeasetukset"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Yhteydenottolomake"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Nimi:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "Sähköposti:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "Sähköposti:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr "Puhelinnumero:"
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Aihe:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Viesti:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Liite:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Lähetä minulle kopio"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Lähetä"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Nimikenttä pakollinen."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Anna toimiva sähköpostiosoite."
169
 
170
- #: contact_form.php:212
171
  msgid "A valid email address is required."
172
  msgstr "Anna toimiva sähköpostiosoite."
173
 
174
- #: contact_form.php:213
175
- #: contact_form.php:258
176
- #: contact_form.php:261
177
  msgid "Phone number is required."
178
  msgstr "Puhelinnumero pakollinen."
179
 
180
- #: contact_form.php:214
181
- #: contact_form.php:257
182
- #: contact_form.php:260
183
  msgid "Subject is required."
184
  msgstr "Aihe pakollinen."
185
 
186
- #: contact_form.php:215
187
- #: contact_form.php:256
188
- #: contact_form.php:259
189
  msgid "Message text is required."
190
  msgstr "Viestikenttä pakollinen."
191
 
192
- #: contact_form.php:216
193
  msgid "File format is not valid."
194
  msgstr "Tiedostotyyppi virheellinen."
195
 
196
- #: contact_form.php:217
197
  msgid "File upload error."
198
  msgstr ""
199
 
200
- #: contact_form.php:218
201
  msgid "The file could not be uploaded."
202
  msgstr ""
203
 
204
- #: contact_form.php:219
205
  msgid "This file is too large."
206
  msgstr ""
207
 
208
- #: contact_form.php:220
209
  msgid "Please fill out the CAPTCHA."
210
  msgstr "Täytä CAPTCHA."
211
 
212
- #: contact_form.php:221
213
  msgid "Please make corrections below and try again."
214
  msgstr "Tee allaolevat korjaukset ja yritä uudelleen."
215
 
216
- #: contact_form.php:223
217
- msgid "Thank you for contacting us."
218
- msgstr "Kiitos yhteydenotostanne."
219
-
220
- #: contact_form.php:494
221
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
222
  msgstr "Jos 'Ohjaa sivulle' vaihtoehto on valittu, URL-kentän tulisi olla seuraavaa muotoa"
223
 
224
- #: contact_form.php:503
225
  msgid "Such user does not exist. Settings are not saved."
226
  msgstr "Käyttäjää ei ole olemassa. Asetuksia ei tallennettu."
227
 
228
- #: contact_form.php:508
229
- #: contact_form.php:514
230
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
231
  msgstr "Anna toimiva sähköpostiosoite 'Lähettäjä' kenttään. Asetuksia ei tallennettu."
232
 
233
- #: contact_form.php:519
234
  #, fuzzy
235
  msgid "Settings saved."
236
  msgstr "Asetukset tallennettu."
237
 
238
- #: contact_form.php:544
239
- #: contact_form.php:792
240
  #, fuzzy
241
  msgid "Extra settings"
242
  msgstr "Asetukset"
243
 
244
- #: contact_form.php:549
245
- #: contact_form.php:1048
246
  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:"
247
  msgstr "Jos haluat lisätä yhteydenottolomakkeen sivullesi, kopioi ja liitä tämä shortcode artikkeliin, sivulle tai vimpaimeen."
248
 
249
- #: contact_form.php:550
250
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
251
  msgstr "Jos jätät kentät tyhjäksi, viestit lähetetään rekisteröinnin yhteydessä määriteltyyn sähköpostiin."
252
 
253
- #: contact_form.php:554
254
  msgid "The user's email address:"
255
  msgstr "Käyttäjän sähköpostiosoite:"
256
 
257
- #: contact_form.php:558
258
  msgid "Create a username"
259
  msgstr "Luo käyttäjänimi."
260
 
261
- #: contact_form.php:563
262
  msgid "Enter a username of the person who should get the messages from the contact form."
263
  msgstr "Syötä käyttäjänimi, jolle viestit lähetetään lomakkeesta."
264
 
265
- #: contact_form.php:567
266
  msgid "Use this email address:"
267
  msgstr "Käytä tätä sähköpostiosoitetta:"
268
 
269
- #: contact_form.php:570
270
  msgid "Enter the email address you want the messages forwarded to."
271
  msgstr "Sähköpostiosoite, johon viestit ohjataan."
272
 
273
- #: contact_form.php:574
274
  msgid "Additional options"
275
  msgstr "Lisäasetukset"
276
 
277
- #: contact_form.php:577
278
  msgid "What to use?"
279
  msgstr "Mitä käyttää?"
280
 
281
- #: contact_form.php:580
282
  msgid "Wp-mail"
283
  msgstr "Wp-sähköposti"
284
 
285
- #: contact_form.php:581
286
  msgid "You can use the wp_mail function for mailing"
287
  msgstr "Voit käyttää wp_mail funktiota sähköpostin lähettämiseen"
288
 
289
- #: contact_form.php:587
290
  msgid "Mail"
291
  msgstr "Sähköposti"
292
 
293
- #: contact_form.php:588
294
  msgid "To send mail you can use the php mail function"
295
  msgstr "Voit käyttää php sähköpostifunktiota lähettääksesi sähköpostia"
296
 
297
- #: contact_form.php:592
298
  msgid "Change text of the 'FROM' field"
299
  msgstr "Vaihda teksti 'Lähettäjä'- kentästä"
300
 
301
- #: contact_form.php:598
302
  msgid "Enter the email address in the 'From' field"
303
  msgstr "Syötä sähköpostiosoite 'Lähettäjä'- kenttään"
304
 
305
- #: contact_form.php:600
306
  msgid "User email"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "The email address of the user who fills the form will be used in the field 'From'."
311
  msgstr "Lomakkeen täyttäjän sähköpostiosoitetta käytetään 'Lähettäjä'- kentässä."
312
 
313
- #: contact_form.php:602
314
  msgid "This email address will be used in the 'From' field."
315
  msgstr "Tätä sähöpostiosoitetta käytetään 'Lähettäjä'- kentässä."
316
 
317
- #: contact_form.php:606
318
  #, fuzzy
319
  msgid "Display fields"
320
  msgstr "Näytä teksti"
321
 
322
- #: contact_form.php:608
323
- #: contact_form.php:638
324
- #: contact_form.php:828
325
- #: contact_form.php:1480
326
  #, fuzzy
327
  msgid "Address"
328
  msgstr "Sähköposti"
329
 
330
- #: contact_form.php:609
331
- #: contact_form.php:640
332
- #: contact_form.php:1488
333
  msgid "Phone"
334
  msgstr "Puhelinnumero"
335
 
336
- #: contact_form.php:610
337
  #, fuzzy
338
  msgid "Attachment block"
339
  msgstr "Näytä liitelaatikko."
340
 
341
- #: contact_form.php:610
342
  msgid "Users can attach the following file formats"
343
  msgstr "Käyttäjä voi lisätä seuraavia tiedostotyyppejä"
344
 
345
- #: contact_form.php:611
346
  #, fuzzy
347
  msgid "Tips below the Attachment block"
348
  msgstr "Näytä liitelaatikon allaolevat vinkit."
349
 
350
- #: contact_form.php:612
351
  #, fuzzy
352
  msgid "Send me a copy block"
353
  msgstr "Näytä Lähetä minulle kopio- laatikko"
354
 
355
- #: contact_form.php:624
356
- #: contact_form.php:627
357
- #: contact_form.php:630
358
- #: contact_form.php:857
359
  msgid "Captcha"
360
  msgstr ""
361
 
362
- #: contact_form.php:624
363
- #: contact_form.php:627
364
- #: contact_form.php:630
365
- #: contact_form.php:857
366
  msgid "(powered by bestwebsoft.com)"
367
  msgstr ""
368
 
369
- #: contact_form.php:627
370
  #, fuzzy
371
  msgid "Activate captcha"
372
  msgstr "Aktivoidut lisäosat"
373
 
374
- #: contact_form.php:630
375
  #, fuzzy
376
  msgid "Download captcha"
377
  msgstr "Lataa"
378
 
379
- #: contact_form.php:635
380
  msgid "Required fields"
381
  msgstr "Vaaditut kentät"
382
 
383
- #: contact_form.php:637
384
- #: contact_form.php:823
385
- #: contact_form.php:1475
386
  msgid "Name"
387
  msgstr "Nimi"
388
 
389
- #: contact_form.php:639
390
  msgid "Email Address"
391
  msgstr "Sähköposti"
392
 
393
- #: contact_form.php:641
394
- #: contact_form.php:843
395
- #: contact_form.php:1491
396
  msgid "Subject"
397
  msgstr "Aihe"
398
 
399
- #: contact_form.php:642
400
- #: contact_form.php:847
401
- #: contact_form.php:1494
402
  msgid "Message"
403
  msgstr "Viesti"
404
 
405
- #: contact_form.php:646
406
  msgid "Display additional info in the email"
407
  msgstr "Näytä lisätietoa sähköpostissa"
408
 
409
- #: contact_form.php:651
410
- #: contact_form.php:1447
411
  msgid "Sent from (ip address)"
412
  msgstr "Lähetetty osoitteesta (ip-osoite)"
413
 
414
- #: contact_form.php:652
415
- #: contact_form.php:1452
416
  msgid "Date/Time"
417
  msgstr "Päivä/Aika"
418
 
419
- #: contact_form.php:653
420
- #: contact_form.php:1457
421
  msgid "Sent from (referer)"
422
  msgstr "Lähetetty (referer)"
423
 
424
- #: contact_form.php:654
425
- #: contact_form.php:1462
426
  msgid "Using (user agent)"
427
  msgstr "Käytetään (user agent)"
428
 
429
- #: contact_form.php:658
430
  msgid "Language settings for the field names in the form"
431
  msgstr "Kieliasetukset kenttien nimille lomakkeessa"
432
 
433
- #: contact_form.php:667
434
  msgid "Add a language"
435
  msgstr "Lisää kieli"
436
 
437
- #: contact_form.php:671
438
  msgid "Change the names of the contact form fields and error messages"
439
  msgstr ""
440
 
441
- #: contact_form.php:676
442
- #: contact_form.php:747
443
  msgid "English"
444
  msgstr "Englanti"
445
 
446
- #: contact_form.php:695
447
- #: contact_form.php:724
448
  msgid "Error message for the Name field"
449
  msgstr "Virheilmoitus nimikentälle"
450
 
451
- #: contact_form.php:696
452
- #: contact_form.php:725
453
  #, fuzzy
454
  msgid "Error message for the Address field"
455
  msgstr "Virheilmoitus viestikentälle"
456
 
457
- #: contact_form.php:697
458
- #: contact_form.php:726
459
  msgid "Error message for the Email field"
460
  msgstr "Virheilmoitus sähköpostikentälle"
461
 
462
- #: contact_form.php:698
463
- #: contact_form.php:727
464
  msgid "Error message for the Phone field"
465
  msgstr "Virheilmoitus puhelinnumerokentälle"
466
 
467
- #: contact_form.php:699
468
- #: contact_form.php:728
469
  msgid "Error message for the Subject field"
470
  msgstr "Virheilmoitus aihekentälle"
471
 
472
- #: contact_form.php:700
473
- #: contact_form.php:729
474
  msgid "Error message for the Message field"
475
  msgstr "Virheilmoitus viestikentälle"
476
 
477
- #: contact_form.php:701
478
- #: contact_form.php:730
479
  #, fuzzy
480
  msgid "Error message about the file type for the Attachment field"
481
  msgstr "Virheilmoitus liitekentälle"
482
 
483
- #: contact_form.php:702
484
- #: contact_form.php:731
485
  #, fuzzy
486
  msgid "Error message while uploading a file for the Attachment field to the server"
487
  msgstr "Virheilmoitus liitekentälle"
488
 
489
- #: contact_form.php:703
490
- #: contact_form.php:732
491
  #, fuzzy
492
  msgid "Error message while moving the file for the Attachment field"
493
  msgstr "Virheilmoitus liitekentälle"
494
 
495
- #: contact_form.php:704
496
- #: contact_form.php:733
497
  #, fuzzy
498
  msgid "Error message when file size limit for the Attachment field is exceeded"
499
  msgstr "Virheilmoitus liitekentälle"
500
 
501
- #: contact_form.php:705
502
- #: contact_form.php:734
503
  msgid "Error message for the Captcha field"
504
  msgstr "Virheilmoitus CAPTCHA:lle"
505
 
506
- #: contact_form.php:706
507
- #: contact_form.php:735
508
  msgid "Error message for the whole form"
509
  msgstr "Virheilmoitus koko lomakkeelle"
510
 
511
- #: contact_form.php:708
512
- #: contact_form.php:737
513
- #: contact_form.php:756
514
- #: contact_form.php:762
515
  msgid "Use shortcode"
516
  msgstr "Käytä shortcodea"
517
 
518
- #: contact_form.php:708
519
- #: contact_form.php:737
520
- #: contact_form.php:756
521
- #: contact_form.php:762
522
  msgid "for this language"
523
  msgstr "tälle kielelle"
524
 
525
- #: contact_form.php:744
526
  msgid "Action after email is sent"
527
  msgstr "Toiminta sähköpostin lähetyksen jälkeen"
528
 
529
- #: contact_form.php:746
530
  msgid "Display text"
531
  msgstr "Näytä teksti"
532
 
533
- #: contact_form.php:755
534
- #: contact_form.php:761
535
  msgid "Text"
536
  msgstr "Teksti"
537
 
538
- #: contact_form.php:768
539
  msgid "Redirect to the page"
540
  msgstr "Ohjaa sivulle"
541
 
542
- #: contact_form.php:769
543
  msgid "Url"
544
  msgstr "Url"
545
 
546
- #: contact_form.php:774
547
- #: contact_form.php:949
548
  msgid "Save Changes"
549
  msgstr "Tallenna muutokset"
550
 
551
- #: contact_form.php:789
552
  #, fuzzy
553
  msgid "Contact Form Pro | Extra Settings"
554
  msgstr "Yhteydenottolomakeasetukset"
555
 
556
- #: contact_form.php:796
557
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
558
  msgstr ""
559
 
560
- #: contact_form.php:803
561
  msgid "Errors output"
562
  msgstr ""
563
 
564
- #: contact_form.php:806
565
  msgid "Display error messages"
566
  msgstr ""
567
 
568
- #: contact_form.php:807
569
  msgid "Color of the input field errors."
570
  msgstr ""
571
 
572
- #: contact_form.php:808
573
  #, fuzzy
574
  msgid "Display error messages & color of the input field errors"
575
  msgstr "Virheilmoitus aihekentälle"
576
 
577
- #: contact_form.php:813
578
  msgid "Add placeholder to the input blocks"
579
  msgstr ""
580
 
581
- #: contact_form.php:819
582
  #, fuzzy
583
  msgid "Add tooltips"
584
  msgstr "Lisäasetukset"
585
 
586
- #: contact_form.php:833
587
  #, fuzzy
588
  msgid "Email address"
589
  msgstr "Sähköposti"
590
 
591
- #: contact_form.php:838
592
  #, fuzzy
593
  msgid "Phone Number"
594
  msgstr "Puhelinnumero:"
595
 
596
- #: contact_form.php:852
597
  #, fuzzy
598
  msgid "Attachment"
599
  msgstr "Liite:"
600
 
601
- #: contact_form.php:862
602
  #, fuzzy
603
  msgid "Style options"
604
  msgstr "Lisäasetukset"
605
 
606
- #: contact_form.php:865
607
  msgid "Text color"
608
  msgstr ""
609
 
610
- #: contact_form.php:868
611
- #: contact_form.php:873
612
- #: contact_form.php:883
613
- #: contact_form.php:888
614
- #: contact_form.php:893
615
- #: contact_form.php:898
616
- #: contact_form.php:908
617
- #: contact_form.php:913
618
- #: contact_form.php:919
619
- #: contact_form.php:930
620
- #: contact_form.php:935
621
- #: contact_form.php:940
622
  msgid "Default"
623
  msgstr ""
624
 
625
- #: contact_form.php:870
626
  msgid "Label text color"
627
  msgstr ""
628
 
629
- #: contact_form.php:875
630
  msgid "Placeholder color"
631
  msgstr ""
632
 
633
- #: contact_form.php:880
634
  msgid "Errors color"
635
  msgstr ""
636
 
637
- #: contact_form.php:885
638
  msgid "Error text color"
639
  msgstr ""
640
 
641
- #: contact_form.php:890
642
  msgid "Background color of the input field errors"
643
  msgstr ""
644
 
645
- #: contact_form.php:895
646
  msgid "Border color of the input field errors"
647
  msgstr ""
648
 
649
- #: contact_form.php:900
650
  msgid "Placeholder color of the input field errors"
651
  msgstr ""
652
 
653
- #: contact_form.php:905
654
  msgid "Input fields"
655
  msgstr ""
656
 
657
- #: contact_form.php:910
658
  msgid "Input fields background color"
659
  msgstr ""
660
 
661
- #: contact_form.php:915
662
  msgid "Text fields color"
663
  msgstr ""
664
 
665
- #: contact_form.php:917
666
  msgid "Border width in px, numbers only"
667
  msgstr ""
668
 
669
- #: contact_form.php:921
670
- #: contact_form.php:942
671
  msgid "Border color"
672
  msgstr ""
673
 
674
- #: contact_form.php:926
675
  #, fuzzy
676
  msgid "Submit button"
677
  msgstr "Lähetä"
678
 
679
- #: contact_form.php:928
680
  msgid "Width in px, numbers only"
681
  msgstr ""
682
 
683
- #: contact_form.php:932
684
  msgid "Button color"
685
  msgstr ""
686
 
687
- #: contact_form.php:937
688
  msgid "Button text color"
689
  msgstr ""
690
 
691
- #: contact_form.php:953
692
  #, fuzzy
693
  msgid "Contact Form Pro | Preview"
694
  msgstr "Yhteydenottolomake"
695
 
696
- #: contact_form.php:956
697
  msgid "Show with errors"
698
  msgstr ""
699
 
700
- #: contact_form.php:964
701
- #: contact_form.php:966
702
  msgid "Please enter your full name..."
703
  msgstr ""
704
 
705
- #: contact_form.php:977
706
- #: contact_form.php:979
707
  msgid "Please enter your address..."
708
  msgstr ""
709
 
710
- #: contact_form.php:988
711
- #: contact_form.php:990
712
  #, fuzzy
713
  msgid "Please enter your email address..."
714
  msgstr "Käytä tätä sähköpostiosoitetta:"
715
 
716
- #: contact_form.php:999
717
- #: contact_form.php:1001
718
  msgid "Please enter your phone number..."
719
  msgstr ""
720
 
721
- #: contact_form.php:1010
722
- #: contact_form.php:1012
723
  msgid "Please enter subject..."
724
  msgstr ""
725
 
726
- #: contact_form.php:1020
727
- #: contact_form.php:1022
728
  msgid "Please enter your message..."
729
  msgstr ""
730
 
731
- #: contact_form.php:1033
732
  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"
733
  msgstr ""
734
 
735
- #: contact_form.php:1102
736
- msgid "Sorry, email message could not be delivered."
737
- msgstr "Anteeksi, sähköpostiviestiä ei voitu lähettää."
738
-
739
- #: contact_form.php:1186
740
  msgid "You can attach the following file formats"
741
  msgstr "Voit liittää seuraavia tiedostomuotoja"
742
 
743
- #: contact_form.php:1470
744
  msgid "Contact from"
745
  msgstr "Yhteydenottolomake"
746
 
747
- #: contact_form.php:1483
748
  msgid "Email"
749
  msgstr "Sähköposti"
750
 
751
- #: contact_form.php:1497
752
  msgid "Site"
753
  msgstr "Sivu"
754
 
755
- #: contact_form.php:1547
756
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
757
  msgstr "Jos näet tämän MIME:n, sen tyyppi ei ole tuettu sähköpostiohjelmassasi."
758
 
759
- #: contact_form.php:1598
760
  msgid "FAQ"
761
  msgstr "FAQ"
762
 
763
- #: contact_form.php:1599
764
  msgid "Support"
765
  msgstr "Tuki"
766
 
767
- #: contact_form.php:1647
768
  msgid "Are you sure that you want to delete this language data?"
769
  msgstr "Oletko varma että haluat poistaa kielitiedot?"
770
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:55+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:55+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest <joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Viesti"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Sivu"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Käytä tätä sähköpostiosoitetta:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Kiitos yhteydenotostanne."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Anteeksi, sähköpostiviestiä ei voitu lähettää."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "Плагины BWS"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Aktivoidut lisäosat"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Lue lisää"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Asetukset"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Asennetut lisäosat"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Suositellut lisäosat"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Suositellut lisäosat"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Lataa"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Asenna %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Asenna osoitteesta wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Jos sinulla on kysyttävää, ota yhteyttä osoitteeseen plugin@bestwebsoft.com tai täytä yhteydenottolomake sivuillamme."
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Aktivoidut lisäosat"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Aktivoidut lisäosat"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Tuki"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Yhteydenottolomakeasetukset"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Yhteydenottolomake"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Yhteydenottolomakeasetukset"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Yhteydenottolomake"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Nimi:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "Sähköposti:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "Sähköposti:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr "Puhelinnumero:"
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Aihe:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Viesti:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Liite:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Lähetä minulle kopio"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Lähetä"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Nimikenttä pakollinen."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Anna toimiva sähköpostiosoite."
342
 
343
+ #: contact_form.php:423
344
  msgid "A valid email address is required."
345
  msgstr "Anna toimiva sähköpostiosoite."
346
 
347
+ #: contact_form.php:424
348
+ #: contact_form.php:469
349
+ #: contact_form.php:472
350
  msgid "Phone number is required."
351
  msgstr "Puhelinnumero pakollinen."
352
 
353
+ #: contact_form.php:425
354
+ #: contact_form.php:468
355
+ #: contact_form.php:471
356
  msgid "Subject is required."
357
  msgstr "Aihe pakollinen."
358
 
359
+ #: contact_form.php:426
360
+ #: contact_form.php:467
361
+ #: contact_form.php:470
362
  msgid "Message text is required."
363
  msgstr "Viestikenttä pakollinen."
364
 
365
+ #: contact_form.php:427
366
  msgid "File format is not valid."
367
  msgstr "Tiedostotyyppi virheellinen."
368
 
369
+ #: contact_form.php:428
370
  msgid "File upload error."
371
  msgstr ""
372
 
373
+ #: contact_form.php:429
374
  msgid "The file could not be uploaded."
375
  msgstr ""
376
 
377
+ #: contact_form.php:430
378
  msgid "This file is too large."
379
  msgstr ""
380
 
381
+ #: contact_form.php:431
382
  msgid "Please fill out the CAPTCHA."
383
  msgstr "Täytä CAPTCHA."
384
 
385
+ #: contact_form.php:432
386
  msgid "Please make corrections below and try again."
387
  msgstr "Tee allaolevat korjaukset ja yritä uudelleen."
388
 
389
+ #: contact_form.php:705
 
 
 
 
390
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
391
  msgstr "Jos 'Ohjaa sivulle' vaihtoehto on valittu, URL-kentän tulisi olla seuraavaa muotoa"
392
 
393
+ #: contact_form.php:714
394
  msgid "Such user does not exist. Settings are not saved."
395
  msgstr "Käyttäjää ei ole olemassa. Asetuksia ei tallennettu."
396
 
397
+ #: contact_form.php:719
398
+ #: contact_form.php:725
399
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
400
  msgstr "Anna toimiva sähköpostiosoite 'Lähettäjä' kenttään. Asetuksia ei tallennettu."
401
 
402
+ #: contact_form.php:730
403
  #, fuzzy
404
  msgid "Settings saved."
405
  msgstr "Asetukset tallennettu."
406
 
407
+ #: contact_form.php:755
408
+ #: contact_form.php:1003
409
  #, fuzzy
410
  msgid "Extra settings"
411
  msgstr "Asetukset"
412
 
413
+ #: contact_form.php:760
414
+ #: contact_form.php:1259
415
  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:"
416
  msgstr "Jos haluat lisätä yhteydenottolomakkeen sivullesi, kopioi ja liitä tämä shortcode artikkeliin, sivulle tai vimpaimeen."
417
 
418
+ #: contact_form.php:761
419
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
420
  msgstr "Jos jätät kentät tyhjäksi, viestit lähetetään rekisteröinnin yhteydessä määriteltyyn sähköpostiin."
421
 
422
+ #: contact_form.php:765
423
  msgid "The user's email address:"
424
  msgstr "Käyttäjän sähköpostiosoite:"
425
 
426
+ #: contact_form.php:769
427
  msgid "Create a username"
428
  msgstr "Luo käyttäjänimi."
429
 
430
+ #: contact_form.php:774
431
  msgid "Enter a username of the person who should get the messages from the contact form."
432
  msgstr "Syötä käyttäjänimi, jolle viestit lähetetään lomakkeesta."
433
 
434
+ #: contact_form.php:778
435
  msgid "Use this email address:"
436
  msgstr "Käytä tätä sähköpostiosoitetta:"
437
 
438
+ #: contact_form.php:781
439
  msgid "Enter the email address you want the messages forwarded to."
440
  msgstr "Sähköpostiosoite, johon viestit ohjataan."
441
 
442
+ #: contact_form.php:785
443
  msgid "Additional options"
444
  msgstr "Lisäasetukset"
445
 
446
+ #: contact_form.php:788
447
  msgid "What to use?"
448
  msgstr "Mitä käyttää?"
449
 
450
+ #: contact_form.php:791
451
  msgid "Wp-mail"
452
  msgstr "Wp-sähköposti"
453
 
454
+ #: contact_form.php:792
455
  msgid "You can use the wp_mail function for mailing"
456
  msgstr "Voit käyttää wp_mail funktiota sähköpostin lähettämiseen"
457
 
458
+ #: contact_form.php:798
459
  msgid "Mail"
460
  msgstr "Sähköposti"
461
 
462
+ #: contact_form.php:799
463
  msgid "To send mail you can use the php mail function"
464
  msgstr "Voit käyttää php sähköpostifunktiota lähettääksesi sähköpostia"
465
 
466
+ #: contact_form.php:803
467
  msgid "Change text of the 'FROM' field"
468
  msgstr "Vaihda teksti 'Lähettäjä'- kentästä"
469
 
470
+ #: contact_form.php:809
471
  msgid "Enter the email address in the 'From' field"
472
  msgstr "Syötä sähköpostiosoite 'Lähettäjä'- kenttään"
473
 
474
+ #: contact_form.php:811
475
  msgid "User email"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "The email address of the user who fills the form will be used in the field 'From'."
480
  msgstr "Lomakkeen täyttäjän sähköpostiosoitetta käytetään 'Lähettäjä'- kentässä."
481
 
482
+ #: contact_form.php:813
483
  msgid "This email address will be used in the 'From' field."
484
  msgstr "Tätä sähöpostiosoitetta käytetään 'Lähettäjä'- kentässä."
485
 
486
+ #: contact_form.php:817
487
  #, fuzzy
488
  msgid "Display fields"
489
  msgstr "Näytä teksti"
490
 
491
+ #: contact_form.php:819
492
+ #: contact_form.php:849
493
+ #: contact_form.php:1039
494
+ #: contact_form.php:1691
495
  #, fuzzy
496
  msgid "Address"
497
  msgstr "Sähköposti"
498
 
499
+ #: contact_form.php:820
500
+ #: contact_form.php:851
501
+ #: contact_form.php:1699
502
  msgid "Phone"
503
  msgstr "Puhelinnumero"
504
 
505
+ #: contact_form.php:821
506
  #, fuzzy
507
  msgid "Attachment block"
508
  msgstr "Näytä liitelaatikko."
509
 
510
+ #: contact_form.php:821
511
  msgid "Users can attach the following file formats"
512
  msgstr "Käyttäjä voi lisätä seuraavia tiedostotyyppejä"
513
 
514
+ #: contact_form.php:822
515
  #, fuzzy
516
  msgid "Tips below the Attachment block"
517
  msgstr "Näytä liitelaatikon allaolevat vinkit."
518
 
519
+ #: contact_form.php:823
520
  #, fuzzy
521
  msgid "Send me a copy block"
522
  msgstr "Näytä Lähetä minulle kopio- laatikko"
523
 
524
+ #: contact_form.php:835
525
+ #: contact_form.php:838
526
+ #: contact_form.php:841
527
+ #: contact_form.php:1068
528
  msgid "Captcha"
529
  msgstr ""
530
 
531
+ #: contact_form.php:835
532
+ #: contact_form.php:838
533
+ #: contact_form.php:841
534
+ #: contact_form.php:1068
535
  msgid "(powered by bestwebsoft.com)"
536
  msgstr ""
537
 
538
+ #: contact_form.php:838
539
  #, fuzzy
540
  msgid "Activate captcha"
541
  msgstr "Aktivoidut lisäosat"
542
 
543
+ #: contact_form.php:841
544
  #, fuzzy
545
  msgid "Download captcha"
546
  msgstr "Lataa"
547
 
548
+ #: contact_form.php:846
549
  msgid "Required fields"
550
  msgstr "Vaaditut kentät"
551
 
552
+ #: contact_form.php:848
553
+ #: contact_form.php:1034
554
+ #: contact_form.php:1686
555
  msgid "Name"
556
  msgstr "Nimi"
557
 
558
+ #: contact_form.php:850
559
  msgid "Email Address"
560
  msgstr "Sähköposti"
561
 
562
+ #: contact_form.php:852
563
+ #: contact_form.php:1054
564
+ #: contact_form.php:1702
565
  msgid "Subject"
566
  msgstr "Aihe"
567
 
568
+ #: contact_form.php:853
569
+ #: contact_form.php:1058
570
+ #: contact_form.php:1705
571
  msgid "Message"
572
  msgstr "Viesti"
573
 
574
+ #: contact_form.php:857
575
  msgid "Display additional info in the email"
576
  msgstr "Näytä lisätietoa sähköpostissa"
577
 
578
+ #: contact_form.php:862
579
+ #: contact_form.php:1658
580
  msgid "Sent from (ip address)"
581
  msgstr "Lähetetty osoitteesta (ip-osoite)"
582
 
583
+ #: contact_form.php:863
584
+ #: contact_form.php:1663
585
  msgid "Date/Time"
586
  msgstr "Päivä/Aika"
587
 
588
+ #: contact_form.php:864
589
+ #: contact_form.php:1668
590
  msgid "Sent from (referer)"
591
  msgstr "Lähetetty (referer)"
592
 
593
+ #: contact_form.php:865
594
+ #: contact_form.php:1673
595
  msgid "Using (user agent)"
596
  msgstr "Käytetään (user agent)"
597
 
598
+ #: contact_form.php:869
599
  msgid "Language settings for the field names in the form"
600
  msgstr "Kieliasetukset kenttien nimille lomakkeessa"
601
 
602
+ #: contact_form.php:878
603
  msgid "Add a language"
604
  msgstr "Lisää kieli"
605
 
606
+ #: contact_form.php:882
607
  msgid "Change the names of the contact form fields and error messages"
608
  msgstr ""
609
 
610
+ #: contact_form.php:887
611
+ #: contact_form.php:958
612
  msgid "English"
613
  msgstr "Englanti"
614
 
615
+ #: contact_form.php:906
616
+ #: contact_form.php:935
617
  msgid "Error message for the Name field"
618
  msgstr "Virheilmoitus nimikentälle"
619
 
620
+ #: contact_form.php:907
621
+ #: contact_form.php:936
622
  #, fuzzy
623
  msgid "Error message for the Address field"
624
  msgstr "Virheilmoitus viestikentälle"
625
 
626
+ #: contact_form.php:908
627
+ #: contact_form.php:937
628
  msgid "Error message for the Email field"
629
  msgstr "Virheilmoitus sähköpostikentälle"
630
 
631
+ #: contact_form.php:909
632
+ #: contact_form.php:938
633
  msgid "Error message for the Phone field"
634
  msgstr "Virheilmoitus puhelinnumerokentälle"
635
 
636
+ #: contact_form.php:910
637
+ #: contact_form.php:939
638
  msgid "Error message for the Subject field"
639
  msgstr "Virheilmoitus aihekentälle"
640
 
641
+ #: contact_form.php:911
642
+ #: contact_form.php:940
643
  msgid "Error message for the Message field"
644
  msgstr "Virheilmoitus viestikentälle"
645
 
646
+ #: contact_form.php:912
647
+ #: contact_form.php:941
648
  #, fuzzy
649
  msgid "Error message about the file type for the Attachment field"
650
  msgstr "Virheilmoitus liitekentälle"
651
 
652
+ #: contact_form.php:913
653
+ #: contact_form.php:942
654
  #, fuzzy
655
  msgid "Error message while uploading a file for the Attachment field to the server"
656
  msgstr "Virheilmoitus liitekentälle"
657
 
658
+ #: contact_form.php:914
659
+ #: contact_form.php:943
660
  #, fuzzy
661
  msgid "Error message while moving the file for the Attachment field"
662
  msgstr "Virheilmoitus liitekentälle"
663
 
664
+ #: contact_form.php:915
665
+ #: contact_form.php:944
666
  #, fuzzy
667
  msgid "Error message when file size limit for the Attachment field is exceeded"
668
  msgstr "Virheilmoitus liitekentälle"
669
 
670
+ #: contact_form.php:916
671
+ #: contact_form.php:945
672
  msgid "Error message for the Captcha field"
673
  msgstr "Virheilmoitus CAPTCHA:lle"
674
 
675
+ #: contact_form.php:917
676
+ #: contact_form.php:946
677
  msgid "Error message for the whole form"
678
  msgstr "Virheilmoitus koko lomakkeelle"
679
 
680
+ #: contact_form.php:919
681
+ #: contact_form.php:948
682
+ #: contact_form.php:967
683
+ #: contact_form.php:973
684
  msgid "Use shortcode"
685
  msgstr "Käytä shortcodea"
686
 
687
+ #: contact_form.php:919
688
+ #: contact_form.php:948
689
+ #: contact_form.php:967
690
+ #: contact_form.php:973
691
  msgid "for this language"
692
  msgstr "tälle kielelle"
693
 
694
+ #: contact_form.php:955
695
  msgid "Action after email is sent"
696
  msgstr "Toiminta sähköpostin lähetyksen jälkeen"
697
 
698
+ #: contact_form.php:957
699
  msgid "Display text"
700
  msgstr "Näytä teksti"
701
 
702
+ #: contact_form.php:966
703
+ #: contact_form.php:972
704
  msgid "Text"
705
  msgstr "Teksti"
706
 
707
+ #: contact_form.php:979
708
  msgid "Redirect to the page"
709
  msgstr "Ohjaa sivulle"
710
 
711
+ #: contact_form.php:980
712
  msgid "Url"
713
  msgstr "Url"
714
 
715
+ #: contact_form.php:985
716
+ #: contact_form.php:1160
717
  msgid "Save Changes"
718
  msgstr "Tallenna muutokset"
719
 
720
+ #: contact_form.php:1000
721
  #, fuzzy
722
  msgid "Contact Form Pro | Extra Settings"
723
  msgstr "Yhteydenottolomakeasetukset"
724
 
725
+ #: contact_form.php:1007
726
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
727
  msgstr ""
728
 
729
+ #: contact_form.php:1014
730
  msgid "Errors output"
731
  msgstr ""
732
 
733
+ #: contact_form.php:1017
734
  msgid "Display error messages"
735
  msgstr ""
736
 
737
+ #: contact_form.php:1018
738
  msgid "Color of the input field errors."
739
  msgstr ""
740
 
741
+ #: contact_form.php:1019
742
  #, fuzzy
743
  msgid "Display error messages & color of the input field errors"
744
  msgstr "Virheilmoitus aihekentälle"
745
 
746
+ #: contact_form.php:1024
747
  msgid "Add placeholder to the input blocks"
748
  msgstr ""
749
 
750
+ #: contact_form.php:1030
751
  #, fuzzy
752
  msgid "Add tooltips"
753
  msgstr "Lisäasetukset"
754
 
755
+ #: contact_form.php:1044
756
  #, fuzzy
757
  msgid "Email address"
758
  msgstr "Sähköposti"
759
 
760
+ #: contact_form.php:1049
761
  #, fuzzy
762
  msgid "Phone Number"
763
  msgstr "Puhelinnumero:"
764
 
765
+ #: contact_form.php:1063
766
  #, fuzzy
767
  msgid "Attachment"
768
  msgstr "Liite:"
769
 
770
+ #: contact_form.php:1073
771
  #, fuzzy
772
  msgid "Style options"
773
  msgstr "Lisäasetukset"
774
 
775
+ #: contact_form.php:1076
776
  msgid "Text color"
777
  msgstr ""
778
 
779
+ #: contact_form.php:1079
780
+ #: contact_form.php:1084
781
+ #: contact_form.php:1094
782
+ #: contact_form.php:1099
783
+ #: contact_form.php:1104
784
+ #: contact_form.php:1109
785
+ #: contact_form.php:1119
786
+ #: contact_form.php:1124
787
+ #: contact_form.php:1130
788
+ #: contact_form.php:1141
789
+ #: contact_form.php:1146
790
+ #: contact_form.php:1151
791
  msgid "Default"
792
  msgstr ""
793
 
794
+ #: contact_form.php:1081
795
  msgid "Label text color"
796
  msgstr ""
797
 
798
+ #: contact_form.php:1086
799
  msgid "Placeholder color"
800
  msgstr ""
801
 
802
+ #: contact_form.php:1091
803
  msgid "Errors color"
804
  msgstr ""
805
 
806
+ #: contact_form.php:1096
807
  msgid "Error text color"
808
  msgstr ""
809
 
810
+ #: contact_form.php:1101
811
  msgid "Background color of the input field errors"
812
  msgstr ""
813
 
814
+ #: contact_form.php:1106
815
  msgid "Border color of the input field errors"
816
  msgstr ""
817
 
818
+ #: contact_form.php:1111
819
  msgid "Placeholder color of the input field errors"
820
  msgstr ""
821
 
822
+ #: contact_form.php:1116
823
  msgid "Input fields"
824
  msgstr ""
825
 
826
+ #: contact_form.php:1121
827
  msgid "Input fields background color"
828
  msgstr ""
829
 
830
+ #: contact_form.php:1126
831
  msgid "Text fields color"
832
  msgstr ""
833
 
834
+ #: contact_form.php:1128
835
  msgid "Border width in px, numbers only"
836
  msgstr ""
837
 
838
+ #: contact_form.php:1132
839
+ #: contact_form.php:1153
840
  msgid "Border color"
841
  msgstr ""
842
 
843
+ #: contact_form.php:1137
844
  #, fuzzy
845
  msgid "Submit button"
846
  msgstr "Lähetä"
847
 
848
+ #: contact_form.php:1139
849
  msgid "Width in px, numbers only"
850
  msgstr ""
851
 
852
+ #: contact_form.php:1143
853
  msgid "Button color"
854
  msgstr ""
855
 
856
+ #: contact_form.php:1148
857
  msgid "Button text color"
858
  msgstr ""
859
 
860
+ #: contact_form.php:1164
861
  #, fuzzy
862
  msgid "Contact Form Pro | Preview"
863
  msgstr "Yhteydenottolomake"
864
 
865
+ #: contact_form.php:1167
866
  msgid "Show with errors"
867
  msgstr ""
868
 
869
+ #: contact_form.php:1175
870
+ #: contact_form.php:1177
871
  msgid "Please enter your full name..."
872
  msgstr ""
873
 
874
+ #: contact_form.php:1188
875
+ #: contact_form.php:1190
876
  msgid "Please enter your address..."
877
  msgstr ""
878
 
879
+ #: contact_form.php:1199
880
+ #: contact_form.php:1201
881
  #, fuzzy
882
  msgid "Please enter your email address..."
883
  msgstr "Käytä tätä sähköpostiosoitetta:"
884
 
885
+ #: contact_form.php:1210
886
+ #: contact_form.php:1212
887
  msgid "Please enter your phone number..."
888
  msgstr ""
889
 
890
+ #: contact_form.php:1221
891
+ #: contact_form.php:1223
892
  msgid "Please enter subject..."
893
  msgstr ""
894
 
895
+ #: contact_form.php:1231
896
+ #: contact_form.php:1233
897
  msgid "Please enter your message..."
898
  msgstr ""
899
 
900
+ #: contact_form.php:1244
901
  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"
902
  msgstr ""
903
 
904
+ #: contact_form.php:1397
 
 
 
 
905
  msgid "You can attach the following file formats"
906
  msgstr "Voit liittää seuraavia tiedostomuotoja"
907
 
908
+ #: contact_form.php:1681
909
  msgid "Contact from"
910
  msgstr "Yhteydenottolomake"
911
 
912
+ #: contact_form.php:1694
913
  msgid "Email"
914
  msgstr "Sähköposti"
915
 
916
+ #: contact_form.php:1708
917
  msgid "Site"
918
  msgstr "Sivu"
919
 
920
+ #: contact_form.php:1758
921
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
922
  msgstr "Jos näet tämän MIME:n, sen tyyppi ei ole tuettu sähköpostiohjelmassasi."
923
 
924
+ #: contact_form.php:1809
925
  msgid "FAQ"
926
  msgstr "FAQ"
927
 
928
+ #: contact_form.php:1810
929
  msgid "Support"
930
  msgstr "Tuki"
931
 
932
+ #: contact_form.php:1858
933
  msgid "Are you sure that you want to delete this language data?"
934
  msgstr "Oletko varma että haluat poistaa kielitiedot?"
935
 
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: 2013-07-16 16:04+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:04+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,723 +17,888 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.5\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid "Pro plugins"
22
  msgstr "Plugins Pro"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Plugin activé"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Lire la suite"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Réglages"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Plugin installé"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Plugin recommandé"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr "Achetez"
60
 
61
- #: contact_form.php:126
62
  msgid "Free plugins"
63
  msgstr "Plugins gratuits"
64
 
65
- #: contact_form.php:147
66
  msgid "Download"
67
  msgstr "Téléchargement"
68
 
69
- #: contact_form.php:147
70
  #, php-format
71
  msgid "Install %s"
72
  msgstr "%s installé"
73
 
74
- #: contact_form.php:147
75
  msgid "Install now from wordpress.org"
76
  msgstr "Installer maintenant depuis wordpress.org"
77
 
78
- #: contact_form.php:152
79
  msgid "If you have any questions, please contact us via"
80
  msgstr "Si vous avez des questions, merci de contacter via "
81
 
82
- #: contact_form.php:161
83
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  msgid "Contact Form Settings"
85
  msgstr "Options du formulaire de Contact"
86
 
87
- #: contact_form.php:161
88
  msgid "Contact Form"
89
  msgstr "Formulaire de Contact"
90
 
91
- #: contact_form.php:162
92
  msgid "Contact Form Pro Extra Settings"
93
  msgstr "Options supplémentaires de la version Pro pour le formulaire de Contact"
94
 
95
- #: contact_form.php:162
96
- #: contact_form.php:797
97
  msgid "Contact Form Pro"
98
  msgstr "Formulaire Pro de Contact"
99
 
100
- #: contact_form.php:201
101
- #: contact_form.php:686
102
- #: contact_form.php:715
103
  msgid "Name:"
104
  msgstr "Nom:"
105
 
106
- #: contact_form.php:202
107
- #: contact_form.php:687
108
- #: contact_form.php:716
109
  msgid "Address:"
110
  msgstr "Adresse :"
111
 
112
- #: contact_form.php:203
113
- #: contact_form.php:688
114
- #: contact_form.php:717
115
  msgid "Email Address:"
116
  msgstr "Adresse e-mail:"
117
 
118
- #: contact_form.php:204
119
- #: contact_form.php:689
120
- #: contact_form.php:718
121
  msgid "Phone number:"
122
  msgstr "Téléphone:"
123
 
124
- #: contact_form.php:205
125
- #: contact_form.php:690
126
- #: contact_form.php:719
127
  msgid "Subject:"
128
  msgstr "Sujet:"
129
 
130
- #: contact_form.php:206
131
- #: contact_form.php:691
132
- #: contact_form.php:720
133
  msgid "Message:"
134
  msgstr "Message:"
135
 
136
- #: contact_form.php:207
137
- #: contact_form.php:692
138
- #: contact_form.php:721
139
  msgid "Attachment:"
140
  msgstr "Pièce-jointe:"
141
 
142
- #: contact_form.php:208
143
- #: contact_form.php:263
144
- #: contact_form.php:693
145
- #: contact_form.php:722
146
  msgid "Send me a copy"
147
  msgstr "M'envoyer une copie"
148
 
149
- #: contact_form.php:209
150
- #: contact_form.php:694
151
- #: contact_form.php:723
152
  msgid "Submit"
153
  msgstr "Envoyer"
154
 
155
- #: contact_form.php:210
156
  msgid "Your name is required."
157
  msgstr "Un nom est obligatoire."
158
 
159
- #: contact_form.php:211
160
  msgid "Address is required."
161
  msgstr "Une adresse est obligatoire."
162
 
163
- #: contact_form.php:212
164
  msgid "A valid email address is required."
165
  msgstr "Une adresse e-mail valide est obligatoire."
166
 
167
- #: contact_form.php:213
168
- #: contact_form.php:258
169
- #: contact_form.php:261
170
  msgid "Phone number is required."
171
  msgstr "Le numéro de téléphone est obligatoire."
172
 
173
- #: contact_form.php:214
174
- #: contact_form.php:257
175
- #: contact_form.php:260
176
  msgid "Subject is required."
177
  msgstr "Sujet obligatoire."
178
 
179
- #: contact_form.php:215
180
- #: contact_form.php:256
181
- #: contact_form.php:259
182
  msgid "Message text is required."
183
  msgstr "Un message est obligatoire."
184
 
185
- #: contact_form.php:216
186
  msgid "File format is not valid."
187
  msgstr "La pièce-jointe n'est pas valide."
188
 
189
- #: contact_form.php:217
190
  msgid "File upload error."
191
  msgstr "Erreur de chargement du fichier."
192
 
193
- #: contact_form.php:218
194
  msgid "The file could not be uploaded."
195
  msgstr "Le fichier n'a pas pu être envoyé."
196
 
197
- #: contact_form.php:219
198
  msgid "This file is too large."
199
  msgstr "Le fichier est trop volumineux."
200
 
201
- #: contact_form.php:220
202
  msgid "Please fill out the CAPTCHA."
203
  msgstr "Merci de compléter le CAPTCHA."
204
 
205
- #: contact_form.php:221
206
  msgid "Please make corrections below and try again."
207
  msgstr "Merci de faire les corrections suivantes et de réessayer."
208
 
209
- #: contact_form.php:223
210
- msgid "Thank you for contacting us."
211
- msgstr "Merci de nous avoir contacté."
212
-
213
- #: contact_form.php:494
214
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
215
  msgstr "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url doit être rempli avec le format suivant"
216
 
217
- #: contact_form.php:503
218
  msgid "Such user does not exist. Settings are not saved."
219
  msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
220
 
221
- #: contact_form.php:508
222
- #: contact_form.php:514
223
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
224
  msgstr "Merci de saisir une adresse e-mail valide pour le 'FROM'. Les modifications ne sont pas sauvegardées."
225
 
226
- #: contact_form.php:519
227
  msgid "Settings saved."
228
  msgstr "Options sauvegardées."
229
 
230
- #: contact_form.php:544
231
- #: contact_form.php:792
232
  msgid "Extra settings"
233
  msgstr "Options supplémentaires"
234
 
235
- #: contact_form.php:549
236
- #: contact_form.php:1048
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 vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget:"
239
 
240
- #: contact_form.php:550
241
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
242
  msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
243
 
244
- #: contact_form.php:554
245
  msgid "The user's email address:"
246
  msgstr "Utiliser l'e-mail du compte wordpress:"
247
 
248
- #: contact_form.php:558
249
  msgid "Create a username"
250
  msgstr "Choisir un nom d'utilisateur"
251
 
252
- #: contact_form.php:563
253
  msgid "Enter a username of the person who should get the messages from the contact form."
254
  msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
255
 
256
- #: contact_form.php:567
257
  msgid "Use this email address:"
258
  msgstr "Utiliser cette adresse e-mail:"
259
 
260
- #: contact_form.php:570
261
  msgid "Enter the email address you want the messages forwarded to."
262
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
263
 
264
- #: contact_form.php:574
265
  msgid "Additional options"
266
  msgstr "Options supplémentaires"
267
 
268
- #: contact_form.php:577
269
  msgid "What to use?"
270
  msgstr "Quelle méthode d'envoie ?"
271
 
272
- #: contact_form.php:580
273
  msgid "Wp-mail"
274
  msgstr "Wp-mail"
275
 
276
- #: contact_form.php:581
277
  msgid "You can use the wp_mail function for mailing"
278
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de wordpress"
279
 
280
- #: contact_form.php:587
281
  msgid "Mail"
282
  msgstr "E-mail"
283
 
284
- #: contact_form.php:588
285
  msgid "To send mail you can use the php mail function"
286
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
287
 
288
- #: contact_form.php:592
289
  msgid "Change text of the 'FROM' field"
290
  msgstr "Modifier le texte pour le champ 'FROM' du courriel"
291
 
292
- #: contact_form.php:598
293
  msgid "Enter the email address in the 'From' field"
294
  msgstr "Sélectionner l'adresse e-mail pour le champ 'FROM' du courriel"
295
 
296
- #: contact_form.php:600
297
  msgid "User email"
298
  msgstr ""
299
 
300
- #: contact_form.php:600
301
  msgid "The email address of the user who fills the form will be used in the field 'From'."
302
  msgstr "Dans le champ 'From' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
303
 
304
- #: contact_form.php:602
305
  msgid "This email address will be used in the 'From' field."
306
  msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
307
 
308
- #: contact_form.php:606
309
  msgid "Display fields"
310
  msgstr "Afficher le texte"
311
 
312
- #: contact_form.php:608
313
- #: contact_form.php:638
314
- #: contact_form.php:828
315
- #: contact_form.php:1480
316
  msgid "Address"
317
  msgstr "Adresse"
318
 
319
- #: contact_form.php:609
320
- #: contact_form.php:640
321
- #: contact_form.php:1488
322
  msgid "Phone"
323
  msgstr "Téléphone"
324
 
325
- #: contact_form.php:610
326
  msgid "Attachment block"
327
  msgstr "Bloc pièce-jointe"
328
 
329
- #: contact_form.php:610
330
  msgid "Users can attach the following file formats"
331
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
332
 
333
- #: contact_form.php:611
334
  msgid "Tips below the Attachment block"
335
  msgstr "Afficher les explications après le bloc des pièces jointes"
336
 
337
- #: contact_form.php:612
338
  msgid "Send me a copy block"
339
  msgstr "S'envoyer une copie"
340
 
341
- #: contact_form.php:624
342
- #: contact_form.php:627
343
- #: contact_form.php:630
344
- #: contact_form.php:857
345
  msgid "Captcha"
346
  msgstr "Captcha"
347
 
348
- #: contact_form.php:624
349
- #: contact_form.php:627
350
- #: contact_form.php:630
351
- #: contact_form.php:857
352
  msgid "(powered by bestwebsoft.com)"
353
  msgstr "(fourni par bestwebsoft.com)"
354
 
355
- #: contact_form.php:627
356
  msgid "Activate captcha"
357
  msgstr "Activé le captcha"
358
 
359
- #: contact_form.php:630
360
  msgid "Download captcha"
361
  msgstr "Télécharger le captcha"
362
 
363
- #: contact_form.php:635
364
  msgid "Required fields"
365
  msgstr "Champ obligatoire"
366
 
367
- #: contact_form.php:637
368
- #: contact_form.php:823
369
- #: contact_form.php:1475
370
  msgid "Name"
371
  msgstr "Nom"
372
 
373
- #: contact_form.php:639
374
  msgid "Email Address"
375
  msgstr "Adresse e-mail"
376
 
377
- #: contact_form.php:641
378
- #: contact_form.php:843
379
- #: contact_form.php:1491
380
  msgid "Subject"
381
  msgstr "Sujet"
382
 
383
- #: contact_form.php:642
384
- #: contact_form.php:847
385
- #: contact_form.php:1494
386
  msgid "Message"
387
  msgstr "Message"
388
 
389
- #: contact_form.php:646
390
  msgid "Display additional info in the email"
391
  msgstr "Afficher les informations complémentaires dans le courriel"
392
 
393
- #: contact_form.php:651
394
- #: contact_form.php:1447
395
  msgid "Sent from (ip address)"
396
  msgstr "Envoyé de (adresse IP)"
397
 
398
- #: contact_form.php:652
399
- #: contact_form.php:1452
400
  msgid "Date/Time"
401
  msgstr "Date/Heure"
402
 
403
- #: contact_form.php:653
404
- #: contact_form.php:1457
405
  msgid "Sent from (referer)"
406
  msgstr "Envoyer de (référence)"
407
 
408
- #: contact_form.php:654
409
- #: contact_form.php:1462
410
  msgid "Using (user agent)"
411
  msgstr "Depuis (navigateur)"
412
 
413
- #: contact_form.php:658
414
  msgid "Language settings for the field names in the form"
415
  msgstr "Définition des langues pour les titres des champs"
416
 
417
- #: contact_form.php:667
418
  msgid "Add a language"
419
  msgstr "Ajouter une langue"
420
 
421
- #: contact_form.php:671
422
  msgid "Change the names of the contact form fields and error messages"
423
  msgstr "Modifier le texte pour les champs du formulaire de contact et les messages d'erreur"
424
 
425
- #: contact_form.php:676
426
- #: contact_form.php:747
427
  msgid "English"
428
  msgstr "Anglais"
429
 
430
- #: contact_form.php:695
431
- #: contact_form.php:724
432
  msgid "Error message for the Name field"
433
  msgstr "Message d'erreur pour le champ nom"
434
 
435
- #: contact_form.php:696
436
- #: contact_form.php:725
437
  msgid "Error message for the Address field"
438
  msgstr "Message d'erreur pour le champ Adresse"
439
 
440
- #: contact_form.php:697
441
- #: contact_form.php:726
442
  msgid "Error message for the Email field"
443
  msgstr "Message d'erreur pour le champ e-mail"
444
 
445
- #: contact_form.php:698
446
- #: contact_form.php:727
447
  msgid "Error message for the Phone field"
448
  msgstr "Message d'erreur pour le champ téléphone"
449
 
450
- #: contact_form.php:699
451
- #: contact_form.php:728
452
  msgid "Error message for the Subject field"
453
  msgstr "Message d'erreur pour le champ sujet"
454
 
455
- #: contact_form.php:700
456
- #: contact_form.php:729
457
  msgid "Error message for the Message field"
458
  msgstr "Message d'erreur pour le champ message"
459
 
460
- #: contact_form.php:701
461
- #: contact_form.php:730
462
  msgid "Error message about the file type for the Attachment field"
463
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
464
 
465
- #: contact_form.php:702
466
- #: contact_form.php:731
467
  msgid "Error message while uploading a file for the Attachment field to the server"
468
  msgstr "Message d'erreur pour le champ fichier joint (problème d'envoie vers le serveur)"
469
 
470
- #: contact_form.php:703
471
- #: contact_form.php:732
472
  msgid "Error message while moving the file for the Attachment field"
473
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
474
 
475
- #: contact_form.php:704
476
- #: contact_form.php:733
477
  msgid "Error message when file size limit for the Attachment field is exceeded"
478
  msgstr "Message d'erreur pour le champ fichier joint (taille limite du fichier atteinte)"
479
 
480
- #: contact_form.php:705
481
- #: contact_form.php:734
482
  msgid "Error message for the Captcha field"
483
  msgstr "Message d'erreur pour le captcha"
484
 
485
- #: contact_form.php:706
486
- #: contact_form.php:735
487
  msgid "Error message for the whole form"
488
  msgstr "Message d'erreur demandant à compléter les champs manquants"
489
 
490
- #: contact_form.php:708
491
- #: contact_form.php:737
492
- #: contact_form.php:756
493
- #: contact_form.php:762
494
  msgid "Use shortcode"
495
  msgstr "Utiliser le code court"
496
 
497
- #: contact_form.php:708
498
- #: contact_form.php:737
499
- #: contact_form.php:756
500
- #: contact_form.php:762
501
  msgid "for this language"
502
  msgstr "pour cette langue"
503
 
504
- #: contact_form.php:744
505
  msgid "Action after email is sent"
506
  msgstr "Action après l'envoie de l'e-mail"
507
 
508
- #: contact_form.php:746
509
  msgid "Display text"
510
  msgstr "Afficher le texte"
511
 
512
- #: contact_form.php:755
513
- #: contact_form.php:761
514
  msgid "Text"
515
  msgstr "Texte"
516
 
517
- #: contact_form.php:768
518
  msgid "Redirect to the page"
519
  msgstr "Rediriger vers la page"
520
 
521
- #: contact_form.php:769
522
  msgid "Url"
523
  msgstr "Url"
524
 
525
- #: contact_form.php:774
526
- #: contact_form.php:949
527
  msgid "Save Changes"
528
  msgstr "Sauvegarder les modifications"
529
 
530
- #: contact_form.php:789
531
  msgid "Contact Form Pro | Extra Settings"
532
  msgstr "Formulaire Pro de Contact | Options supplémentaires"
533
 
534
- #: contact_form.php:796
535
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
536
  msgstr "Cette fonctionalité est disponible dans le version Pro de cette extension. Pour plus de détails, merci de suivre ce lien"
537
 
538
- #: contact_form.php:803
539
  msgid "Errors output"
540
  msgstr "Affichage des erreurs"
541
 
542
- #: contact_form.php:806
543
  msgid "Display error messages"
544
  msgstr "Aficher les messages d'erreur"
545
 
546
- #: contact_form.php:807
547
  msgid "Color of the input field errors."
548
  msgstr "Mettre en couleur les champs ayant des erreurs"
549
 
550
- #: contact_form.php:808
551
  msgid "Display error messages & color of the input field errors"
552
  msgstr "Afficher les messages d'erreur et mettre en couleur les champs ayant des erreurs"
553
 
554
- #: contact_form.php:813
555
  msgid "Add placeholder to the input blocks"
556
  msgstr "Ajouter la localisation dans le bloc de saisie"
557
 
558
- #: contact_form.php:819
559
  msgid "Add tooltips"
560
  msgstr "Ajouter les conseils"
561
 
562
- #: contact_form.php:833
563
  msgid "Email address"
564
  msgstr "Adresse e-mail"
565
 
566
- #: contact_form.php:838
567
  msgid "Phone Number"
568
  msgstr "Téléphone"
569
 
570
- #: contact_form.php:852
571
  msgid "Attachment"
572
  msgstr "Pièce-jointe"
573
 
574
- #: contact_form.php:862
575
  msgid "Style options"
576
  msgstr "Options de style"
577
 
578
- #: contact_form.php:865
579
  msgid "Text color"
580
  msgstr "Couleur du texte"
581
 
582
- #: contact_form.php:868
583
- #: contact_form.php:873
584
- #: contact_form.php:883
585
- #: contact_form.php:888
586
- #: contact_form.php:893
587
- #: contact_form.php:898
588
- #: contact_form.php:908
589
- #: contact_form.php:913
590
- #: contact_form.php:919
591
- #: contact_form.php:930
592
- #: contact_form.php:935
593
- #: contact_form.php:940
594
  msgid "Default"
595
  msgstr "Défaut"
596
 
597
- #: contact_form.php:870
598
  msgid "Label text color"
599
  msgstr "Couleur des textes des intitulés"
600
 
601
- #: contact_form.php:875
602
  msgid "Placeholder color"
603
  msgstr "Couleur pour la localisation"
604
 
605
- #: contact_form.php:880
606
  msgid "Errors color"
607
  msgstr "Couleur pour les erreurs"
608
 
609
- #: contact_form.php:885
610
  msgid "Error text color"
611
  msgstr "Couleur pour le texte des erreurs"
612
 
613
- #: contact_form.php:890
614
  msgid "Background color of the input field errors"
615
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
616
 
617
- #: contact_form.php:895
618
  msgid "Border color of the input field errors"
619
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
620
 
621
- #: contact_form.php:900
622
  msgid "Placeholder color of the input field errors"
623
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
624
 
625
- #: contact_form.php:905
626
  msgid "Input fields"
627
  msgstr "Champs de saisie"
628
 
629
- #: contact_form.php:910
630
  msgid "Input fields background color"
631
  msgstr "Couleur de fond pour les champs de saisie"
632
 
633
- #: contact_form.php:915
634
  msgid "Text fields color"
635
  msgstr "Couleur pour les textes des champs de saisie"
636
 
637
- #: contact_form.php:917
638
  msgid "Border width in px, numbers only"
639
  msgstr "Largeur des bordures en px, nombre seulement"
640
 
641
- #: contact_form.php:921
642
- #: contact_form.php:942
643
  msgid "Border color"
644
  msgstr "Couleur des bordures"
645
 
646
- #: contact_form.php:926
647
  msgid "Submit button"
648
  msgstr "Bouton Envoyer"
649
 
650
- #: contact_form.php:928
651
  msgid "Width in px, numbers only"
652
  msgstr "Largeur en px, nombre seulement"
653
 
654
- #: contact_form.php:932
655
  msgid "Button color"
656
  msgstr "Couleur du bouton"
657
 
658
- #: contact_form.php:937
659
  msgid "Button text color"
660
  msgstr "Couleur du texte du bouton"
661
 
662
- #: contact_form.php:953
663
  msgid "Contact Form Pro | Preview"
664
  msgstr "Formulaire Pro de Contact | Prévisualisation"
665
 
666
- #: contact_form.php:956
667
  msgid "Show with errors"
668
  msgstr "Afficher avec les erreurs"
669
 
670
- #: contact_form.php:964
671
- #: contact_form.php:966
672
  msgid "Please enter your full name..."
673
  msgstr "Merci de saisir votre nom..."
674
 
675
- #: contact_form.php:977
676
- #: contact_form.php:979
677
  msgid "Please enter your address..."
678
  msgstr "Merci de saisir votre adresse..."
679
 
680
- #: contact_form.php:988
681
- #: contact_form.php:990
682
  msgid "Please enter your email address..."
683
  msgstr "Merci de saisir votre adresse e-mail..."
684
 
685
- #: contact_form.php:999
686
- #: contact_form.php:1001
687
  msgid "Please enter your phone number..."
688
  msgstr "Merci de saisir votre numéro de téléphone..."
689
 
690
- #: contact_form.php:1010
691
- #: contact_form.php:1012
692
  msgid "Please enter subject..."
693
  msgstr "Merci de saisir le sujet..."
694
 
695
- #: contact_form.php:1020
696
- #: contact_form.php:1022
697
  msgid "Please enter your message..."
698
  msgstr "Merci de saisir votre message..."
699
 
700
- #: contact_form.php:1033
701
  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"
702
  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"
703
 
704
- #: contact_form.php:1102
705
- msgid "Sorry, email message could not be delivered."
706
- msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
707
-
708
- #: contact_form.php:1186
709
  msgid "You can attach the following file formats"
710
  msgstr "Vous pouvez joindre des fichiers aux formats suivants"
711
 
712
- #: contact_form.php:1470
713
  msgid "Contact from"
714
  msgstr "Contact de"
715
 
716
- #: contact_form.php:1483
717
  msgid "Email"
718
  msgstr "E-mail"
719
 
720
- #: contact_form.php:1497
721
  msgid "Site"
722
  msgstr "Site"
723
 
724
- #: contact_form.php:1547
725
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
726
  msgstr "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de MIME !"
727
 
728
- #: contact_form.php:1598
729
  msgid "FAQ"
730
  msgstr "FAQ"
731
 
732
- #: contact_form.php:1599
733
  msgid "Support"
734
  msgstr "Support"
735
 
736
- #: contact_form.php:1647
737
  msgid "Are you sure that you want to delete this language data?"
738
  msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
739
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:55+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:55+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Generator: Poedit 1.5.5\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:106
21
+ msgid "Not set"
22
+ msgstr ""
23
+
24
+ #: contact_form.php:108
25
+ #: contact_form.php:112
26
+ msgid "On"
27
+ msgstr ""
28
+
29
+ #: contact_form.php:110
30
+ #: contact_form.php:114
31
+ msgid "Off"
32
+ msgstr ""
33
+
34
+ #: contact_form.php:118
35
+ #: contact_form.php:122
36
+ #: contact_form.php:126
37
+ #: contact_form.php:130
38
+ #: contact_form.php:134
39
+ #: contact_form.php:160
40
+ msgid "N/A"
41
+ msgstr ""
42
+
43
+ #: contact_form.php:132
44
+ msgid " Mb"
45
+ msgstr ""
46
+
47
+ #: contact_form.php:136
48
+ #: contact_form.php:140
49
+ #: contact_form.php:144
50
+ #: contact_form.php:155
51
+ msgid "Yes"
52
+ msgstr ""
53
+
54
+ #: contact_form.php:138
55
+ #: contact_form.php:142
56
+ #: contact_form.php:146
57
+ #: contact_form.php:157
58
+ msgid "No"
59
+ msgstr ""
60
+
61
+ #: contact_form.php:171
62
+ msgid "Operating System"
63
+ msgstr ""
64
+
65
+ #: contact_form.php:172
66
+ msgid "Server"
67
+ msgstr ""
68
+
69
+ #: contact_form.php:173
70
+ #, fuzzy
71
+ msgid "Memory usage"
72
+ msgstr "Message"
73
+
74
+ #: contact_form.php:174
75
+ msgid "MYSQL Version"
76
+ msgstr ""
77
+
78
+ #: contact_form.php:175
79
+ msgid "SQL Mode"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:176
83
+ msgid "PHP Version"
84
+ msgstr ""
85
+
86
+ #: contact_form.php:177
87
+ msgid "PHP Safe Mode"
88
+ msgstr ""
89
+
90
+ #: contact_form.php:178
91
+ msgid "PHP Allow URL fopen"
92
+ msgstr ""
93
+
94
+ #: contact_form.php:179
95
+ msgid "PHP Memory Limit"
96
+ msgstr ""
97
+
98
+ #: contact_form.php:180
99
+ msgid "PHP Max Upload Size"
100
+ msgstr ""
101
+
102
+ #: contact_form.php:181
103
+ msgid "PHP Max Post Size"
104
+ msgstr ""
105
+
106
+ #: contact_form.php:182
107
+ msgid "PHP Max Script Execute Time"
108
+ msgstr ""
109
+
110
+ #: contact_form.php:183
111
+ msgid "PHP Exif support"
112
+ msgstr ""
113
+
114
+ #: contact_form.php:184
115
+ msgid "PHP IPTC support"
116
+ msgstr ""
117
+
118
+ #: contact_form.php:185
119
+ msgid "PHP XML support"
120
+ msgstr ""
121
+
122
+ #: contact_form.php:186
123
+ #, fuzzy
124
+ msgid "Site URL"
125
+ msgstr "Site"
126
+
127
+ #: contact_form.php:187
128
+ msgid "Home URL"
129
+ msgstr ""
130
+
131
+ #: contact_form.php:188
132
+ msgid "WordPress Version"
133
+ msgstr ""
134
+
135
+ #: contact_form.php:189
136
+ msgid "WordPress DB Version"
137
+ msgstr ""
138
+
139
+ #: contact_form.php:190
140
+ msgid "Multisite"
141
+ msgstr ""
142
+
143
+ #: contact_form.php:191
144
+ msgid "Active Theme"
145
+ msgstr ""
146
+
147
+ #: contact_form.php:206
148
+ #, fuzzy
149
+ msgid "Please enter a valid email address."
150
+ msgstr "Merci de saisir votre adresse e-mail..."
151
+
152
+ #: contact_form.php:210
153
+ msgid "Email with system info is sent to "
154
+ msgstr ""
155
+
156
+ #: contact_form.php:214
157
+ #: contact_form.php:434
158
+ msgid "Thank you for contacting us."
159
+ msgstr "Merci de nous avoir contacté."
160
+
161
+ #: contact_form.php:242
162
+ #: contact_form.php:1313
163
+ msgid "Sorry, email message could not be delivered."
164
+ msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
165
+
166
+ #: contact_form.php:250
167
  msgid "Pro plugins"
168
  msgstr "Plugins Pro"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Plugin activé"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Lire la suite"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Réglages"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Plugin installé"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Plugin recommandé"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr "Achetez"
206
 
207
+ #: contact_form.php:276
208
  msgid "Free plugins"
209
  msgstr "Plugins gratuits"
210
 
211
+ #: contact_form.php:297
212
  msgid "Download"
213
  msgstr "Téléchargement"
214
 
215
+ #: contact_form.php:297
216
  #, php-format
217
  msgid "Install %s"
218
  msgstr "%s installé"
219
 
220
+ #: contact_form.php:297
221
  msgid "Install now from wordpress.org"
222
  msgstr "Installer maintenant depuis wordpress.org"
223
 
224
+ #: contact_form.php:302
225
  msgid "If you have any questions, please contact us via"
226
  msgstr "Si vous avez des questions, merci de contacter via "
227
 
228
+ #: contact_form.php:309
229
+ msgid "System status"
230
+ msgstr ""
231
+
232
+ #: contact_form.php:313
233
+ msgid "Environment"
234
+ msgstr ""
235
+
236
+ #: contact_form.php:324
237
+ #, fuzzy
238
+ msgid "Active Plugins"
239
+ msgstr "Plugin activé"
240
+
241
+ #: contact_form.php:335
242
+ #, fuzzy
243
+ msgid "Inactive Plugins"
244
+ msgstr "Plugin activé"
245
+
246
+ #: contact_form.php:349
247
+ #, fuzzy
248
+ msgid "Send to support"
249
+ msgstr "Support"
250
+
251
+ #: contact_form.php:356
252
+ msgid "Send to custom email &#187;"
253
+ msgstr ""
254
+
255
+ #: contact_form.php:372
256
+ #: contact_form.php:750
257
  msgid "Contact Form Settings"
258
  msgstr "Options du formulaire de Contact"
259
 
260
+ #: contact_form.php:372
261
  msgid "Contact Form"
262
  msgstr "Formulaire de Contact"
263
 
264
+ #: contact_form.php:373
265
  msgid "Contact Form Pro Extra Settings"
266
  msgstr "Options supplémentaires de la version Pro pour le formulaire de Contact"
267
 
268
+ #: contact_form.php:373
269
+ #: contact_form.php:1008
270
  msgid "Contact Form Pro"
271
  msgstr "Formulaire Pro de Contact"
272
 
273
+ #: contact_form.php:412
274
+ #: contact_form.php:897
275
+ #: contact_form.php:926
276
  msgid "Name:"
277
  msgstr "Nom:"
278
 
279
+ #: contact_form.php:413
280
+ #: contact_form.php:898
281
+ #: contact_form.php:927
282
  msgid "Address:"
283
  msgstr "Adresse :"
284
 
285
+ #: contact_form.php:414
286
+ #: contact_form.php:899
287
+ #: contact_form.php:928
288
  msgid "Email Address:"
289
  msgstr "Adresse e-mail:"
290
 
291
+ #: contact_form.php:415
292
+ #: contact_form.php:900
293
+ #: contact_form.php:929
294
  msgid "Phone number:"
295
  msgstr "Téléphone:"
296
 
297
+ #: contact_form.php:416
298
+ #: contact_form.php:901
299
+ #: contact_form.php:930
300
  msgid "Subject:"
301
  msgstr "Sujet:"
302
 
303
+ #: contact_form.php:417
304
+ #: contact_form.php:902
305
+ #: contact_form.php:931
306
  msgid "Message:"
307
  msgstr "Message:"
308
 
309
+ #: contact_form.php:418
310
+ #: contact_form.php:903
311
+ #: contact_form.php:932
312
  msgid "Attachment:"
313
  msgstr "Pièce-jointe:"
314
 
315
+ #: contact_form.php:419
316
+ #: contact_form.php:474
317
+ #: contact_form.php:904
318
+ #: contact_form.php:933
319
  msgid "Send me a copy"
320
  msgstr "M'envoyer une copie"
321
 
322
+ #: contact_form.php:420
323
+ #: contact_form.php:905
324
+ #: contact_form.php:934
325
  msgid "Submit"
326
  msgstr "Envoyer"
327
 
328
+ #: contact_form.php:421
329
  msgid "Your name is required."
330
  msgstr "Un nom est obligatoire."
331
 
332
+ #: contact_form.php:422
333
  msgid "Address is required."
334
  msgstr "Une adresse est obligatoire."
335
 
336
+ #: contact_form.php:423
337
  msgid "A valid email address is required."
338
  msgstr "Une adresse e-mail valide est obligatoire."
339
 
340
+ #: contact_form.php:424
341
+ #: contact_form.php:469
342
+ #: contact_form.php:472
343
  msgid "Phone number is required."
344
  msgstr "Le numéro de téléphone est obligatoire."
345
 
346
+ #: contact_form.php:425
347
+ #: contact_form.php:468
348
+ #: contact_form.php:471
349
  msgid "Subject is required."
350
  msgstr "Sujet obligatoire."
351
 
352
+ #: contact_form.php:426
353
+ #: contact_form.php:467
354
+ #: contact_form.php:470
355
  msgid "Message text is required."
356
  msgstr "Un message est obligatoire."
357
 
358
+ #: contact_form.php:427
359
  msgid "File format is not valid."
360
  msgstr "La pièce-jointe n'est pas valide."
361
 
362
+ #: contact_form.php:428
363
  msgid "File upload error."
364
  msgstr "Erreur de chargement du fichier."
365
 
366
+ #: contact_form.php:429
367
  msgid "The file could not be uploaded."
368
  msgstr "Le fichier n'a pas pu être envoyé."
369
 
370
+ #: contact_form.php:430
371
  msgid "This file is too large."
372
  msgstr "Le fichier est trop volumineux."
373
 
374
+ #: contact_form.php:431
375
  msgid "Please fill out the CAPTCHA."
376
  msgstr "Merci de compléter le CAPTCHA."
377
 
378
+ #: contact_form.php:432
379
  msgid "Please make corrections below and try again."
380
  msgstr "Merci de faire les corrections suivantes et de réessayer."
381
 
382
+ #: contact_form.php:705
 
 
 
 
383
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
384
  msgstr "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url doit être rempli avec le format suivant"
385
 
386
+ #: contact_form.php:714
387
  msgid "Such user does not exist. Settings are not saved."
388
  msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
389
 
390
+ #: contact_form.php:719
391
+ #: contact_form.php:725
392
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
393
  msgstr "Merci de saisir une adresse e-mail valide pour le 'FROM'. Les modifications ne sont pas sauvegardées."
394
 
395
+ #: contact_form.php:730
396
  msgid "Settings saved."
397
  msgstr "Options sauvegardées."
398
 
399
+ #: contact_form.php:755
400
+ #: contact_form.php:1003
401
  msgid "Extra settings"
402
  msgstr "Options supplémentaires"
403
 
404
+ #: contact_form.php:760
405
+ #: contact_form.php:1259
406
  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:"
407
  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:"
408
 
409
+ #: contact_form.php:761
410
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
411
  msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
412
 
413
+ #: contact_form.php:765
414
  msgid "The user's email address:"
415
  msgstr "Utiliser l'e-mail du compte wordpress:"
416
 
417
+ #: contact_form.php:769
418
  msgid "Create a username"
419
  msgstr "Choisir un nom d'utilisateur"
420
 
421
+ #: contact_form.php:774
422
  msgid "Enter a username of the person who should get the messages from the contact form."
423
  msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
424
 
425
+ #: contact_form.php:778
426
  msgid "Use this email address:"
427
  msgstr "Utiliser cette adresse e-mail:"
428
 
429
+ #: contact_form.php:781
430
  msgid "Enter the email address you want the messages forwarded to."
431
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
432
 
433
+ #: contact_form.php:785
434
  msgid "Additional options"
435
  msgstr "Options supplémentaires"
436
 
437
+ #: contact_form.php:788
438
  msgid "What to use?"
439
  msgstr "Quelle méthode d'envoie ?"
440
 
441
+ #: contact_form.php:791
442
  msgid "Wp-mail"
443
  msgstr "Wp-mail"
444
 
445
+ #: contact_form.php:792
446
  msgid "You can use the wp_mail function for mailing"
447
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de wordpress"
448
 
449
+ #: contact_form.php:798
450
  msgid "Mail"
451
  msgstr "E-mail"
452
 
453
+ #: contact_form.php:799
454
  msgid "To send mail you can use the php mail function"
455
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
456
 
457
+ #: contact_form.php:803
458
  msgid "Change text of the 'FROM' field"
459
  msgstr "Modifier le texte pour le champ 'FROM' du courriel"
460
 
461
+ #: contact_form.php:809
462
  msgid "Enter the email address in the 'From' field"
463
  msgstr "Sélectionner l'adresse e-mail pour le champ 'FROM' du courriel"
464
 
465
+ #: contact_form.php:811
466
  msgid "User email"
467
  msgstr ""
468
 
469
+ #: contact_form.php:811
470
  msgid "The email address of the user who fills the form will be used in the field 'From'."
471
  msgstr "Dans le champ 'From' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
472
 
473
+ #: contact_form.php:813
474
  msgid "This email address will be used in the 'From' field."
475
  msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
476
 
477
+ #: contact_form.php:817
478
  msgid "Display fields"
479
  msgstr "Afficher le texte"
480
 
481
+ #: contact_form.php:819
482
+ #: contact_form.php:849
483
+ #: contact_form.php:1039
484
+ #: contact_form.php:1691
485
  msgid "Address"
486
  msgstr "Adresse"
487
 
488
+ #: contact_form.php:820
489
+ #: contact_form.php:851
490
+ #: contact_form.php:1699
491
  msgid "Phone"
492
  msgstr "Téléphone"
493
 
494
+ #: contact_form.php:821
495
  msgid "Attachment block"
496
  msgstr "Bloc pièce-jointe"
497
 
498
+ #: contact_form.php:821
499
  msgid "Users can attach the following file formats"
500
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
501
 
502
+ #: contact_form.php:822
503
  msgid "Tips below the Attachment block"
504
  msgstr "Afficher les explications après le bloc des pièces jointes"
505
 
506
+ #: contact_form.php:823
507
  msgid "Send me a copy block"
508
  msgstr "S'envoyer une copie"
509
 
510
+ #: contact_form.php:835
511
+ #: contact_form.php:838
512
+ #: contact_form.php:841
513
+ #: contact_form.php:1068
514
  msgid "Captcha"
515
  msgstr "Captcha"
516
 
517
+ #: contact_form.php:835
518
+ #: contact_form.php:838
519
+ #: contact_form.php:841
520
+ #: contact_form.php:1068
521
  msgid "(powered by bestwebsoft.com)"
522
  msgstr "(fourni par bestwebsoft.com)"
523
 
524
+ #: contact_form.php:838
525
  msgid "Activate captcha"
526
  msgstr "Activé le captcha"
527
 
528
+ #: contact_form.php:841
529
  msgid "Download captcha"
530
  msgstr "Télécharger le captcha"
531
 
532
+ #: contact_form.php:846
533
  msgid "Required fields"
534
  msgstr "Champ obligatoire"
535
 
536
+ #: contact_form.php:848
537
+ #: contact_form.php:1034
538
+ #: contact_form.php:1686
539
  msgid "Name"
540
  msgstr "Nom"
541
 
542
+ #: contact_form.php:850
543
  msgid "Email Address"
544
  msgstr "Adresse e-mail"
545
 
546
+ #: contact_form.php:852
547
+ #: contact_form.php:1054
548
+ #: contact_form.php:1702
549
  msgid "Subject"
550
  msgstr "Sujet"
551
 
552
+ #: contact_form.php:853
553
+ #: contact_form.php:1058
554
+ #: contact_form.php:1705
555
  msgid "Message"
556
  msgstr "Message"
557
 
558
+ #: contact_form.php:857
559
  msgid "Display additional info in the email"
560
  msgstr "Afficher les informations complémentaires dans le courriel"
561
 
562
+ #: contact_form.php:862
563
+ #: contact_form.php:1658
564
  msgid "Sent from (ip address)"
565
  msgstr "Envoyé de (adresse IP)"
566
 
567
+ #: contact_form.php:863
568
+ #: contact_form.php:1663
569
  msgid "Date/Time"
570
  msgstr "Date/Heure"
571
 
572
+ #: contact_form.php:864
573
+ #: contact_form.php:1668
574
  msgid "Sent from (referer)"
575
  msgstr "Envoyer de (référence)"
576
 
577
+ #: contact_form.php:865
578
+ #: contact_form.php:1673
579
  msgid "Using (user agent)"
580
  msgstr "Depuis (navigateur)"
581
 
582
+ #: contact_form.php:869
583
  msgid "Language settings for the field names in the form"
584
  msgstr "Définition des langues pour les titres des champs"
585
 
586
+ #: contact_form.php:878
587
  msgid "Add a language"
588
  msgstr "Ajouter une langue"
589
 
590
+ #: contact_form.php:882
591
  msgid "Change the names of the contact form fields and error messages"
592
  msgstr "Modifier le texte pour les champs du formulaire de contact et les messages d'erreur"
593
 
594
+ #: contact_form.php:887
595
+ #: contact_form.php:958
596
  msgid "English"
597
  msgstr "Anglais"
598
 
599
+ #: contact_form.php:906
600
+ #: contact_form.php:935
601
  msgid "Error message for the Name field"
602
  msgstr "Message d'erreur pour le champ nom"
603
 
604
+ #: contact_form.php:907
605
+ #: contact_form.php:936
606
  msgid "Error message for the Address field"
607
  msgstr "Message d'erreur pour le champ Adresse"
608
 
609
+ #: contact_form.php:908
610
+ #: contact_form.php:937
611
  msgid "Error message for the Email field"
612
  msgstr "Message d'erreur pour le champ e-mail"
613
 
614
+ #: contact_form.php:909
615
+ #: contact_form.php:938
616
  msgid "Error message for the Phone field"
617
  msgstr "Message d'erreur pour le champ téléphone"
618
 
619
+ #: contact_form.php:910
620
+ #: contact_form.php:939
621
  msgid "Error message for the Subject field"
622
  msgstr "Message d'erreur pour le champ sujet"
623
 
624
+ #: contact_form.php:911
625
+ #: contact_form.php:940
626
  msgid "Error message for the Message field"
627
  msgstr "Message d'erreur pour le champ message"
628
 
629
+ #: contact_form.php:912
630
+ #: contact_form.php:941
631
  msgid "Error message about the file type for the Attachment field"
632
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
633
 
634
+ #: contact_form.php:913
635
+ #: contact_form.php:942
636
  msgid "Error message while uploading a file for the Attachment field to the server"
637
  msgstr "Message d'erreur pour le champ fichier joint (problème d'envoie vers le serveur)"
638
 
639
+ #: contact_form.php:914
640
+ #: contact_form.php:943
641
  msgid "Error message while moving the file for the Attachment field"
642
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
643
 
644
+ #: contact_form.php:915
645
+ #: contact_form.php:944
646
  msgid "Error message when file size limit for the Attachment field is exceeded"
647
  msgstr "Message d'erreur pour le champ fichier joint (taille limite du fichier atteinte)"
648
 
649
+ #: contact_form.php:916
650
+ #: contact_form.php:945
651
  msgid "Error message for the Captcha field"
652
  msgstr "Message d'erreur pour le captcha"
653
 
654
+ #: contact_form.php:917
655
+ #: contact_form.php:946
656
  msgid "Error message for the whole form"
657
  msgstr "Message d'erreur demandant à compléter les champs manquants"
658
 
659
+ #: contact_form.php:919
660
+ #: contact_form.php:948
661
+ #: contact_form.php:967
662
+ #: contact_form.php:973
663
  msgid "Use shortcode"
664
  msgstr "Utiliser le code court"
665
 
666
+ #: contact_form.php:919
667
+ #: contact_form.php:948
668
+ #: contact_form.php:967
669
+ #: contact_form.php:973
670
  msgid "for this language"
671
  msgstr "pour cette langue"
672
 
673
+ #: contact_form.php:955
674
  msgid "Action after email is sent"
675
  msgstr "Action après l'envoie de l'e-mail"
676
 
677
+ #: contact_form.php:957
678
  msgid "Display text"
679
  msgstr "Afficher le texte"
680
 
681
+ #: contact_form.php:966
682
+ #: contact_form.php:972
683
  msgid "Text"
684
  msgstr "Texte"
685
 
686
+ #: contact_form.php:979
687
  msgid "Redirect to the page"
688
  msgstr "Rediriger vers la page"
689
 
690
+ #: contact_form.php:980
691
  msgid "Url"
692
  msgstr "Url"
693
 
694
+ #: contact_form.php:985
695
+ #: contact_form.php:1160
696
  msgid "Save Changes"
697
  msgstr "Sauvegarder les modifications"
698
 
699
+ #: contact_form.php:1000
700
  msgid "Contact Form Pro | Extra Settings"
701
  msgstr "Formulaire Pro de Contact | Options supplémentaires"
702
 
703
+ #: contact_form.php:1007
704
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
705
  msgstr "Cette fonctionalité est disponible dans le version Pro de cette extension. Pour plus de détails, merci de suivre ce lien"
706
 
707
+ #: contact_form.php:1014
708
  msgid "Errors output"
709
  msgstr "Affichage des erreurs"
710
 
711
+ #: contact_form.php:1017
712
  msgid "Display error messages"
713
  msgstr "Aficher les messages d'erreur"
714
 
715
+ #: contact_form.php:1018
716
  msgid "Color of the input field errors."
717
  msgstr "Mettre en couleur les champs ayant des erreurs"
718
 
719
+ #: contact_form.php:1019
720
  msgid "Display error messages & color of the input field errors"
721
  msgstr "Afficher les messages d'erreur et mettre en couleur les champs ayant des erreurs"
722
 
723
+ #: contact_form.php:1024
724
  msgid "Add placeholder to the input blocks"
725
  msgstr "Ajouter la localisation dans le bloc de saisie"
726
 
727
+ #: contact_form.php:1030
728
  msgid "Add tooltips"
729
  msgstr "Ajouter les conseils"
730
 
731
+ #: contact_form.php:1044
732
  msgid "Email address"
733
  msgstr "Adresse e-mail"
734
 
735
+ #: contact_form.php:1049
736
  msgid "Phone Number"
737
  msgstr "Téléphone"
738
 
739
+ #: contact_form.php:1063
740
  msgid "Attachment"
741
  msgstr "Pièce-jointe"
742
 
743
+ #: contact_form.php:1073
744
  msgid "Style options"
745
  msgstr "Options de style"
746
 
747
+ #: contact_form.php:1076
748
  msgid "Text color"
749
  msgstr "Couleur du texte"
750
 
751
+ #: contact_form.php:1079
752
+ #: contact_form.php:1084
753
+ #: contact_form.php:1094
754
+ #: contact_form.php:1099
755
+ #: contact_form.php:1104
756
+ #: contact_form.php:1109
757
+ #: contact_form.php:1119
758
+ #: contact_form.php:1124
759
+ #: contact_form.php:1130
760
+ #: contact_form.php:1141
761
+ #: contact_form.php:1146
762
+ #: contact_form.php:1151
763
  msgid "Default"
764
  msgstr "Défaut"
765
 
766
+ #: contact_form.php:1081
767
  msgid "Label text color"
768
  msgstr "Couleur des textes des intitulés"
769
 
770
+ #: contact_form.php:1086
771
  msgid "Placeholder color"
772
  msgstr "Couleur pour la localisation"
773
 
774
+ #: contact_form.php:1091
775
  msgid "Errors color"
776
  msgstr "Couleur pour les erreurs"
777
 
778
+ #: contact_form.php:1096
779
  msgid "Error text color"
780
  msgstr "Couleur pour le texte des erreurs"
781
 
782
+ #: contact_form.php:1101
783
  msgid "Background color of the input field errors"
784
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
785
 
786
+ #: contact_form.php:1106
787
  msgid "Border color of the input field errors"
788
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
789
 
790
+ #: contact_form.php:1111
791
  msgid "Placeholder color of the input field errors"
792
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
793
 
794
+ #: contact_form.php:1116
795
  msgid "Input fields"
796
  msgstr "Champs de saisie"
797
 
798
+ #: contact_form.php:1121
799
  msgid "Input fields background color"
800
  msgstr "Couleur de fond pour les champs de saisie"
801
 
802
+ #: contact_form.php:1126
803
  msgid "Text fields color"
804
  msgstr "Couleur pour les textes des champs de saisie"
805
 
806
+ #: contact_form.php:1128
807
  msgid "Border width in px, numbers only"
808
  msgstr "Largeur des bordures en px, nombre seulement"
809
 
810
+ #: contact_form.php:1132
811
+ #: contact_form.php:1153
812
  msgid "Border color"
813
  msgstr "Couleur des bordures"
814
 
815
+ #: contact_form.php:1137
816
  msgid "Submit button"
817
  msgstr "Bouton Envoyer"
818
 
819
+ #: contact_form.php:1139
820
  msgid "Width in px, numbers only"
821
  msgstr "Largeur en px, nombre seulement"
822
 
823
+ #: contact_form.php:1143
824
  msgid "Button color"
825
  msgstr "Couleur du bouton"
826
 
827
+ #: contact_form.php:1148
828
  msgid "Button text color"
829
  msgstr "Couleur du texte du bouton"
830
 
831
+ #: contact_form.php:1164
832
  msgid "Contact Form Pro | Preview"
833
  msgstr "Formulaire Pro de Contact | Prévisualisation"
834
 
835
+ #: contact_form.php:1167
836
  msgid "Show with errors"
837
  msgstr "Afficher avec les erreurs"
838
 
839
+ #: contact_form.php:1175
840
+ #: contact_form.php:1177
841
  msgid "Please enter your full name..."
842
  msgstr "Merci de saisir votre nom..."
843
 
844
+ #: contact_form.php:1188
845
+ #: contact_form.php:1190
846
  msgid "Please enter your address..."
847
  msgstr "Merci de saisir votre adresse..."
848
 
849
+ #: contact_form.php:1199
850
+ #: contact_form.php:1201
851
  msgid "Please enter your email address..."
852
  msgstr "Merci de saisir votre adresse e-mail..."
853
 
854
+ #: contact_form.php:1210
855
+ #: contact_form.php:1212
856
  msgid "Please enter your phone number..."
857
  msgstr "Merci de saisir votre numéro de téléphone..."
858
 
859
+ #: contact_form.php:1221
860
+ #: contact_form.php:1223
861
  msgid "Please enter subject..."
862
  msgstr "Merci de saisir le sujet..."
863
 
864
+ #: contact_form.php:1231
865
+ #: contact_form.php:1233
866
  msgid "Please enter your message..."
867
  msgstr "Merci de saisir votre message..."
868
 
869
+ #: contact_form.php:1244
870
  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"
871
  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"
872
 
873
+ #: contact_form.php:1397
 
 
 
 
874
  msgid "You can attach the following file formats"
875
  msgstr "Vous pouvez joindre des fichiers aux formats suivants"
876
 
877
+ #: contact_form.php:1681
878
  msgid "Contact from"
879
  msgstr "Contact de"
880
 
881
+ #: contact_form.php:1694
882
  msgid "Email"
883
  msgstr "E-mail"
884
 
885
+ #: contact_form.php:1708
886
  msgid "Site"
887
  msgstr "Site"
888
 
889
+ #: contact_form.php:1758
890
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
891
  msgstr "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de MIME !"
892
 
893
+ #: contact_form.php:1809
894
  msgid "FAQ"
895
  msgstr "FAQ"
896
 
897
+ #: contact_form.php:1810
898
  msgid "Support"
899
  msgstr "Support"
900
 
901
+ #: contact_form.php:1858
902
  msgid "Are you sure that you want to delete this language data?"
903
  msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
904
 
languages/contact_form-gl_ES.mo CHANGED
Binary file
languages/contact_form-gl_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-16 16:04+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:04+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Paula Rios <paulacompos@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,753 +17,918 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  #, fuzzy
22
  msgid "Pro plugins"
23
  msgstr "BWS Plugins"
24
 
25
- #: contact_form.php:103
26
- #: contact_form.php:129
27
  msgid "Activated plugins"
28
  msgstr "Plugins activados"
29
 
30
- #: contact_form.php:105
31
- #: contact_form.php:113
32
- #: contact_form.php:121
33
- #: contact_form.php:131
34
- #: contact_form.php:139
35
- #: contact_form.php:147
36
  msgid "Read more"
37
  msgstr "Ler máis"
38
 
39
- #: contact_form.php:105
40
- #: contact_form.php:131
41
- #: contact_form.php:543
42
- #: contact_form.php:791
43
- #: contact_form.php:1588
44
- #: contact_form.php:1597
45
  msgid "Settings"
46
  msgstr "Configuracións"
47
 
48
- #: contact_form.php:111
49
- #: contact_form.php:137
50
  msgid "Installed plugins"
51
  msgstr "Plugins instalados"
52
 
53
- #: contact_form.php:119
54
- #: contact_form.php:145
55
  msgid "Recommended plugins"
56
  msgstr "Plugins recomendados"
57
 
58
- #: contact_form.php:121
59
  msgid "Purchase"
60
  msgstr ""
61
 
62
- #: contact_form.php:126
63
  #, fuzzy
64
  msgid "Free plugins"
65
  msgstr "Plugins recomendados"
66
 
67
- #: contact_form.php:147
68
  msgid "Download"
69
  msgstr "Baixar"
70
 
71
- #: contact_form.php:147
72
  #, php-format
73
  msgid "Install %s"
74
  msgstr "Instalar %s"
75
 
76
- #: contact_form.php:147
77
  msgid "Install now from wordpress.org"
78
  msgstr "Instalar agora desde wordpress.org"
79
 
80
- #: contact_form.php:152
81
  #, fuzzy
82
  msgid "If you have any questions, please contact us via"
83
  msgstr "Se tes calquera dúbida, contacta no email plugin@bestwebsoft.com ou por medio do noso formulário de contato no sitio web."
84
 
85
- #: contact_form.php:161
86
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  #, fuzzy
88
  msgid "Contact Form Settings"
89
  msgstr "Configuracións do Formulário de contato"
90
 
91
- #: contact_form.php:161
92
  msgid "Contact Form"
93
  msgstr "Formulario de contato"
94
 
95
- #: contact_form.php:162
96
  #, fuzzy
97
  msgid "Contact Form Pro Extra Settings"
98
  msgstr "Configuracións do Formulário de contato"
99
 
100
- #: contact_form.php:162
101
- #: contact_form.php:797
102
  #, fuzzy
103
  msgid "Contact Form Pro"
104
  msgstr "Formulario de contato"
105
 
106
- #: contact_form.php:201
107
- #: contact_form.php:686
108
- #: contact_form.php:715
109
  msgid "Name:"
110
  msgstr "Nome:"
111
 
112
- #: contact_form.php:202
113
- #: contact_form.php:687
114
- #: contact_form.php:716
115
  #, fuzzy
116
  msgid "Address:"
117
  msgstr "Enderezo electrónico:"
118
 
119
- #: contact_form.php:203
120
- #: contact_form.php:688
121
- #: contact_form.php:717
122
  msgid "Email Address:"
123
  msgstr "Enderezo electrónico:"
124
 
125
- #: contact_form.php:204
126
- #: contact_form.php:689
127
- #: contact_form.php:718
128
  msgid "Phone number:"
129
  msgstr "Teléfono:"
130
 
131
- #: contact_form.php:205
132
- #: contact_form.php:690
133
- #: contact_form.php:719
134
  msgid "Subject:"
135
  msgstr "Asunto:"
136
 
137
- #: contact_form.php:206
138
- #: contact_form.php:691
139
- #: contact_form.php:720
140
  msgid "Message:"
141
  msgstr "Mensaxe:"
142
 
143
- #: contact_form.php:207
144
- #: contact_form.php:692
145
- #: contact_form.php:721
146
  msgid "Attachment:"
147
  msgstr "Anexo:"
148
 
149
- #: contact_form.php:208
150
- #: contact_form.php:263
151
- #: contact_form.php:693
152
- #: contact_form.php:722
153
  msgid "Send me a copy"
154
  msgstr "Enviarme unha copia"
155
 
156
- #: contact_form.php:209
157
- #: contact_form.php:694
158
- #: contact_form.php:723
159
  msgid "Submit"
160
  msgstr "Enviar"
161
 
162
- #: contact_form.php:210
163
  msgid "Your name is required."
164
  msgstr "O teu nome é obrigatorio."
165
 
166
- #: contact_form.php:211
167
  #, fuzzy
168
  msgid "Address is required."
169
  msgstr "É obrigatorio un enderezo de correo válido."
170
 
171
- #: contact_form.php:212
172
  #, fuzzy
173
  msgid "A valid email address is required."
174
  msgstr "É obrigatorio un enderezo de correo válido."
175
 
176
- #: contact_form.php:213
177
- #: contact_form.php:258
178
- #: contact_form.php:261
179
  msgid "Phone number is required."
180
  msgstr "O teléfono é obrigatorio."
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "O Assunto é obrigatorio."
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "O texto da Mensaxe é obrigatorio."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "Non é posíbel anexar o arquivo. "
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "Por favor, completa o CAPTCHA."
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Por favor, fai as correccións abaixo e tenta enviar de novo a mensaxe."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Moitas grazas contatares con nós."
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr "Se seleccionas a opción de Redireccionar para a páxina, tes que engadir un URL no seguinte campo"
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Non existe esta persoa usuaria. No se gardaron as configuracións."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
233
  msgstr "Por favor intorduce un enderezo electrónico válido. Non se gardaron as configuracións."
234
 
235
- #: contact_form.php:519
236
  #, fuzzy
237
  msgid "Settings saved."
238
  msgstr "Configuracións gardadas."
239
 
240
- #: contact_form.php:544
241
- #: contact_form.php:792
242
  #, fuzzy
243
  msgid "Extra settings"
244
  msgstr "Configuracións"
245
 
246
- #: contact_form.php:549
247
- #: contact_form.php:1048
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 "Se queres engadir o Formulário de Contato no seu sitio web, só tes que copiar e colar este código no artigo, páxina ou widget:"
250
 
251
- #: contact_form.php:550
252
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
253
  msgstr "Se a inforación nos campos abaixo está baleira, as mensaxes han ser enviadas para um enderezo que xa foi especificado durante o rexistro."
254
 
255
- #: contact_form.php:554
256
  msgid "The user's email address:"
257
  msgstr "Usar o enderezo dunha das persoas usuarias:"
258
 
259
- #: contact_form.php:558
260
  msgid "Create a username"
261
  msgstr "Seleciona o nome da persoa usuaria"
262
 
263
- #: contact_form.php:563
264
  msgid "Enter a username of the person who should get the messages from the contact form."
265
  msgstr "Determina a persoa usuaria que recibirá as mensaxes enviadas polo Formulario de Contato."
266
 
267
- #: contact_form.php:567
268
  msgid "Use this email address:"
269
  msgstr "Usar este enderezo electrónico:"
270
 
271
- #: contact_form.php:570
272
  msgid "Enter the email address you want the messages forwarded to."
273
  msgstr "Configura o enderezo electrónico que vai ser usado para recibires as mensaxes."
274
 
275
- #: contact_form.php:574
276
  msgid "Additional options"
277
  msgstr "Opcións adicionais"
278
 
279
- #: contact_form.php:577
280
  msgid "What to use?"
281
  msgstr "Que queres usar?"
282
 
283
- #: contact_form.php:580
284
  msgid "Wp-mail"
285
  msgstr "Wp-mail"
286
 
287
- #: contact_form.php:581
288
  msgid "You can use the wp_mail function for mailing"
289
  msgstr "Para enviar o correo podes usar a función wp_mail do WordPress"
290
 
291
- #: contact_form.php:587
292
  msgid "Mail"
293
  msgstr "Enderezo electrónico"
294
 
295
- #: contact_form.php:588
296
  msgid "To send mail you can use the php mail function"
297
  msgstr "Para enviar o correo podes usar a función php mail"
298
 
299
- #: contact_form.php:592
300
  msgid "Change text of the 'FROM' field"
301
  msgstr "Mudar campos do formulario de contato"
302
 
303
- #: contact_form.php:598
304
  msgid "Enter the email address in the 'From' field"
305
  msgstr ""
306
 
307
- #: contact_form.php:600
308
  msgid "User email"
309
  msgstr ""
310
 
311
- #: contact_form.php:600
312
  msgid "The email address of the user who fills the form will be used in the field 'From'."
313
  msgstr ""
314
 
315
- #: contact_form.php:602
316
  msgid "This email address will be used in the 'From' field."
317
  msgstr ""
318
 
319
- #: contact_form.php:606
320
  #, fuzzy
321
  msgid "Display fields"
322
  msgstr "Mostrar a opción para anexar arquivos"
323
 
324
- #: contact_form.php:608
325
- #: contact_form.php:638
326
- #: contact_form.php:828
327
- #: contact_form.php:1480
328
  #, fuzzy
329
  msgid "Address"
330
  msgstr "Enderezo electrónico:"
331
 
332
- #: contact_form.php:609
333
- #: contact_form.php:640
334
- #: contact_form.php:1488
335
  msgid "Phone"
336
  msgstr "Teléfono"
337
 
338
- #: contact_form.php:610
339
  #, fuzzy
340
  msgid "Attachment block"
341
  msgstr "Mostrar a opción para anexar arquivos"
342
 
343
- #: contact_form.php:610
344
  msgid "Users can attach the following file formats"
345
  msgstr "As persoas usuarias poden anexar arquivos do tipo:"
346
 
347
- #: contact_form.php:611
348
  #, fuzzy
349
  msgid "Tips below the Attachment block"
350
  msgstr "Amosar explicacións tras o bloqueo de arquivos adxuntos"
351
 
352
- #: contact_form.php:612
353
  #, fuzzy
354
  msgid "Send me a copy block"
355
  msgstr "Mostrar a opción Enviarme unha cópia"
356
 
357
- #: contact_form.php:624
358
- #: contact_form.php:627
359
- #: contact_form.php:630
360
- #: contact_form.php:857
361
  msgid "Captcha"
362
  msgstr ""
363
 
364
- #: contact_form.php:624
365
- #: contact_form.php:627
366
- #: contact_form.php:630
367
- #: contact_form.php:857
368
  msgid "(powered by bestwebsoft.com)"
369
  msgstr ""
370
 
371
- #: contact_form.php:627
372
  #, fuzzy
373
  msgid "Activate captcha"
374
  msgstr "Plugins activados"
375
 
376
- #: contact_form.php:630
377
  #, fuzzy
378
  msgid "Download captcha"
379
  msgstr "Baixar"
380
 
381
- #: contact_form.php:635
382
  msgid "Required fields"
383
  msgstr "Campo obrigatorio"
384
 
385
- #: contact_form.php:637
386
- #: contact_form.php:823
387
- #: contact_form.php:1475
388
  msgid "Name"
389
  msgstr "Nome"
390
 
391
- #: contact_form.php:639
392
  #, fuzzy
393
  msgid "Email Address"
394
  msgstr "Enderezo electrónico:"
395
 
396
- #: contact_form.php:641
397
- #: contact_form.php:843
398
- #: contact_form.php:1491
399
  msgid "Subject"
400
  msgstr "Asunto"
401
 
402
- #: contact_form.php:642
403
- #: contact_form.php:847
404
- #: contact_form.php:1494
405
  msgid "Message"
406
  msgstr "Mensaxe"
407
 
408
- #: contact_form.php:646
409
  #, fuzzy
410
  msgid "Display additional info in the email"
411
  msgstr "Ver Información adicional no correo"
412
 
413
- #: contact_form.php:651
414
- #: contact_form.php:1447
415
  msgid "Sent from (ip address)"
416
  msgstr "Enviado desde (Enderezo IP)"
417
 
418
- #: contact_form.php:652
419
- #: contact_form.php:1452
420
  msgid "Date/Time"
421
  msgstr "Data/Hora"
422
 
423
- #: contact_form.php:653
424
- #: contact_form.php:1457
425
  msgid "Sent from (referer)"
426
  msgstr "Procedente de de (orixe)"
427
 
428
- #: contact_form.php:654
429
- #: contact_form.php:1462
430
  msgid "Using (user agent)"
431
  msgstr "Usando (cliente de email)"
432
 
433
- #: contact_form.php:658
434
  msgid "Language settings for the field names in the form"
435
  msgstr ""
436
 
437
- #: contact_form.php:667
438
  msgid "Add a language"
439
  msgstr ""
440
 
441
- #: contact_form.php:671
442
  msgid "Change the names of the contact form fields and error messages"
443
  msgstr "Mudar a etiqueta dos campos no Formulario de contato"
444
 
445
- #: contact_form.php:676
446
- #: contact_form.php:747
447
  msgid "English"
448
  msgstr ""
449
 
450
- #: contact_form.php:695
451
- #: contact_form.php:724
452
  msgid "Error message for the Name field"
453
  msgstr ""
454
 
455
- #: contact_form.php:696
456
- #: contact_form.php:725
457
  msgid "Error message for the Address field"
458
  msgstr ""
459
 
460
- #: contact_form.php:697
461
- #: contact_form.php:726
462
  msgid "Error message for the Email field"
463
  msgstr ""
464
 
465
- #: contact_form.php:698
466
- #: contact_form.php:727
467
  msgid "Error message for the Phone field"
468
  msgstr ""
469
 
470
- #: contact_form.php:699
471
- #: contact_form.php:728
472
  msgid "Error message for the Subject field"
473
  msgstr ""
474
 
475
- #: contact_form.php:700
476
- #: contact_form.php:729
477
  msgid "Error message for the Message field"
478
  msgstr ""
479
 
480
- #: contact_form.php:701
481
- #: contact_form.php:730
482
  msgid "Error message about the file type for the Attachment field"
483
  msgstr ""
484
 
485
- #: contact_form.php:702
486
- #: contact_form.php:731
487
  msgid "Error message while uploading a file for the Attachment field to the server"
488
  msgstr ""
489
 
490
- #: contact_form.php:703
491
- #: contact_form.php:732
492
  msgid "Error message while moving the file for the Attachment field"
493
  msgstr ""
494
 
495
- #: contact_form.php:704
496
- #: contact_form.php:733
497
  msgid "Error message when file size limit for the Attachment field is exceeded"
498
  msgstr ""
499
 
500
- #: contact_form.php:705
501
- #: contact_form.php:734
502
  msgid "Error message for the Captcha field"
503
  msgstr ""
504
 
505
- #: contact_form.php:706
506
- #: contact_form.php:735
507
  msgid "Error message for the whole form"
508
  msgstr ""
509
 
510
- #: contact_form.php:708
511
- #: contact_form.php:737
512
- #: contact_form.php:756
513
- #: contact_form.php:762
514
  msgid "Use shortcode"
515
  msgstr ""
516
 
517
- #: contact_form.php:708
518
- #: contact_form.php:737
519
- #: contact_form.php:756
520
- #: contact_form.php:762
521
  msgid "for this language"
522
  msgstr ""
523
 
524
- #: contact_form.php:744
525
  msgid "Action after email is sent"
526
  msgstr "Acción despois do envío de correo"
527
 
528
- #: contact_form.php:746
529
  msgid "Display text"
530
  msgstr "Mostrar a opción para anexar arquivos"
531
 
532
- #: contact_form.php:755
533
- #: contact_form.php:761
534
  msgid "Text"
535
  msgstr "Texto"
536
 
537
- #: contact_form.php:768
538
  msgid "Redirect to the page"
539
  msgstr "Redirecionar á páxina"
540
 
541
- #: contact_form.php:769
542
  msgid "Url"
543
  msgstr "URL"
544
 
545
- #: contact_form.php:774
546
- #: contact_form.php:949
547
  msgid "Save Changes"
548
  msgstr "Gardar as mudanzas"
549
 
550
- #: contact_form.php:789
551
  #, fuzzy
552
  msgid "Contact Form Pro | Extra Settings"
553
  msgstr "Configuracións do Formulário de contato"
554
 
555
- #: contact_form.php:796
556
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
557
  msgstr ""
558
 
559
- #: contact_form.php:803
560
  msgid "Errors output"
561
  msgstr ""
562
 
563
- #: contact_form.php:806
564
  msgid "Display error messages"
565
  msgstr ""
566
 
567
- #: contact_form.php:807
568
  msgid "Color of the input field errors."
569
  msgstr ""
570
 
571
- #: contact_form.php:808
572
  msgid "Display error messages & color of the input field errors"
573
  msgstr ""
574
 
575
- #: contact_form.php:813
576
  msgid "Add placeholder to the input blocks"
577
  msgstr ""
578
 
579
- #: contact_form.php:819
580
  #, fuzzy
581
  msgid "Add tooltips"
582
  msgstr "Opcións adicionais"
583
 
584
- #: contact_form.php:833
585
  #, fuzzy
586
  msgid "Email address"
587
  msgstr "Enderezo electrónico:"
588
 
589
- #: contact_form.php:838
590
  #, fuzzy
591
  msgid "Phone Number"
592
  msgstr "Teléfono:"
593
 
594
- #: contact_form.php:852
595
  #, fuzzy
596
  msgid "Attachment"
597
  msgstr "Anexo:"
598
 
599
- #: contact_form.php:862
600
  #, fuzzy
601
  msgid "Style options"
602
  msgstr "Opcións adicionais"
603
 
604
- #: contact_form.php:865
605
  msgid "Text color"
606
  msgstr ""
607
 
608
- #: contact_form.php:868
609
- #: contact_form.php:873
610
- #: contact_form.php:883
611
- #: contact_form.php:888
612
- #: contact_form.php:893
613
- #: contact_form.php:898
614
- #: contact_form.php:908
615
- #: contact_form.php:913
616
- #: contact_form.php:919
617
- #: contact_form.php:930
618
- #: contact_form.php:935
619
- #: contact_form.php:940
620
  msgid "Default"
621
  msgstr ""
622
 
623
- #: contact_form.php:870
624
  msgid "Label text color"
625
  msgstr ""
626
 
627
- #: contact_form.php:875
628
  msgid "Placeholder color"
629
  msgstr ""
630
 
631
- #: contact_form.php:880
632
  msgid "Errors color"
633
  msgstr ""
634
 
635
- #: contact_form.php:885
636
  msgid "Error text color"
637
  msgstr ""
638
 
639
- #: contact_form.php:890
640
  msgid "Background color of the input field errors"
641
  msgstr ""
642
 
643
- #: contact_form.php:895
644
  msgid "Border color of the input field errors"
645
  msgstr ""
646
 
647
- #: contact_form.php:900
648
  msgid "Placeholder color of the input field errors"
649
  msgstr ""
650
 
651
- #: contact_form.php:905
652
  #, fuzzy
653
  msgid "Input fields"
654
  msgstr "Mostrar a opción para anexar arquivos"
655
 
656
- #: contact_form.php:910
657
  msgid "Input fields background color"
658
  msgstr ""
659
 
660
- #: contact_form.php:915
661
  msgid "Text fields color"
662
  msgstr ""
663
 
664
- #: contact_form.php:917
665
  msgid "Border width in px, numbers only"
666
  msgstr ""
667
 
668
- #: contact_form.php:921
669
- #: contact_form.php:942
670
  msgid "Border color"
671
  msgstr ""
672
 
673
- #: contact_form.php:926
674
  #, fuzzy
675
  msgid "Submit button"
676
  msgstr "Enviar"
677
 
678
- #: contact_form.php:928
679
  msgid "Width in px, numbers only"
680
  msgstr ""
681
 
682
- #: contact_form.php:932
683
  msgid "Button color"
684
  msgstr ""
685
 
686
- #: contact_form.php:937
687
  msgid "Button text color"
688
  msgstr ""
689
 
690
- #: contact_form.php:953
691
  #, fuzzy
692
  msgid "Contact Form Pro | Preview"
693
  msgstr "Formulario de contato"
694
 
695
- #: contact_form.php:956
696
  msgid "Show with errors"
697
  msgstr ""
698
 
699
- #: contact_form.php:964
700
- #: contact_form.php:966
701
  msgid "Please enter your full name..."
702
  msgstr ""
703
 
704
- #: contact_form.php:977
705
- #: contact_form.php:979
706
  msgid "Please enter your address..."
707
  msgstr ""
708
 
709
- #: contact_form.php:988
710
- #: contact_form.php:990
711
  #, fuzzy
712
  msgid "Please enter your email address..."
713
  msgstr "Usar este enderezo electrónico:"
714
 
715
- #: contact_form.php:999
716
- #: contact_form.php:1001
717
  msgid "Please enter your phone number..."
718
  msgstr ""
719
 
720
- #: contact_form.php:1010
721
- #: contact_form.php:1012
722
  msgid "Please enter subject..."
723
  msgstr ""
724
 
725
- #: contact_form.php:1020
726
- #: contact_form.php:1022
727
  msgid "Please enter your message..."
728
  msgstr ""
729
 
730
- #: contact_form.php:1033
731
  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"
732
  msgstr ""
733
 
734
- #: contact_form.php:1102
735
- msgid "Sorry, email message could not be delivered."
736
- msgstr "Sentímoscho, o teu correo non pode ser entregado."
737
-
738
- #: contact_form.php:1186
739
  msgid "You can attach the following file formats"
740
  msgstr "Podes anexar arquivos do tipo:"
741
 
742
- #: contact_form.php:1470
743
  msgid "Contact from"
744
  msgstr "Formulario de contato"
745
 
746
- #: contact_form.php:1483
747
  msgid "Email"
748
  msgstr "Correo electrónico"
749
 
750
- #: contact_form.php:1497
751
  msgid "Site"
752
  msgstr "Sitio web"
753
 
754
- #: contact_form.php:1547
755
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
756
  msgstr "Se consegues ver esta MENSAXE entón é que o teu cliente non acepta tipos MIME! Por favor utiliza un cliente máis actualizado."
757
 
758
- #: contact_form.php:1598
759
  msgid "FAQ"
760
  msgstr "Preguntas frecuentes"
761
 
762
- #: contact_form.php:1599
763
  msgid "Support"
764
  msgstr "Soporte"
765
 
766
- #: contact_form.php:1647
767
  msgid "Are you sure that you want to delete this language data?"
768
  msgstr ""
769
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:56+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:56+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Paula Rios <paulacompos@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:106
21
+ msgid "Not set"
22
+ msgstr ""
23
+
24
+ #: contact_form.php:108
25
+ #: contact_form.php:112
26
+ msgid "On"
27
+ msgstr ""
28
+
29
+ #: contact_form.php:110
30
+ #: contact_form.php:114
31
+ msgid "Off"
32
+ msgstr ""
33
+
34
+ #: contact_form.php:118
35
+ #: contact_form.php:122
36
+ #: contact_form.php:126
37
+ #: contact_form.php:130
38
+ #: contact_form.php:134
39
+ #: contact_form.php:160
40
+ msgid "N/A"
41
+ msgstr ""
42
+
43
+ #: contact_form.php:132
44
+ msgid " Mb"
45
+ msgstr ""
46
+
47
+ #: contact_form.php:136
48
+ #: contact_form.php:140
49
+ #: contact_form.php:144
50
+ #: contact_form.php:155
51
+ msgid "Yes"
52
+ msgstr ""
53
+
54
+ #: contact_form.php:138
55
+ #: contact_form.php:142
56
+ #: contact_form.php:146
57
+ #: contact_form.php:157
58
+ msgid "No"
59
+ msgstr ""
60
+
61
+ #: contact_form.php:171
62
+ msgid "Operating System"
63
+ msgstr ""
64
+
65
+ #: contact_form.php:172
66
+ msgid "Server"
67
+ msgstr ""
68
+
69
+ #: contact_form.php:173
70
+ #, fuzzy
71
+ msgid "Memory usage"
72
+ msgstr "Mensaxe"
73
+
74
+ #: contact_form.php:174
75
+ msgid "MYSQL Version"
76
+ msgstr ""
77
+
78
+ #: contact_form.php:175
79
+ msgid "SQL Mode"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:176
83
+ msgid "PHP Version"
84
+ msgstr ""
85
+
86
+ #: contact_form.php:177
87
+ msgid "PHP Safe Mode"
88
+ msgstr ""
89
+
90
+ #: contact_form.php:178
91
+ msgid "PHP Allow URL fopen"
92
+ msgstr ""
93
+
94
+ #: contact_form.php:179
95
+ msgid "PHP Memory Limit"
96
+ msgstr ""
97
+
98
+ #: contact_form.php:180
99
+ msgid "PHP Max Upload Size"
100
+ msgstr ""
101
+
102
+ #: contact_form.php:181
103
+ msgid "PHP Max Post Size"
104
+ msgstr ""
105
+
106
+ #: contact_form.php:182
107
+ msgid "PHP Max Script Execute Time"
108
+ msgstr ""
109
+
110
+ #: contact_form.php:183
111
+ msgid "PHP Exif support"
112
+ msgstr ""
113
+
114
+ #: contact_form.php:184
115
+ msgid "PHP IPTC support"
116
+ msgstr ""
117
+
118
+ #: contact_form.php:185
119
+ msgid "PHP XML support"
120
+ msgstr ""
121
+
122
+ #: contact_form.php:186
123
+ #, fuzzy
124
+ msgid "Site URL"
125
+ msgstr "Sitio web"
126
+
127
+ #: contact_form.php:187
128
+ msgid "Home URL"
129
+ msgstr ""
130
+
131
+ #: contact_form.php:188
132
+ msgid "WordPress Version"
133
+ msgstr ""
134
+
135
+ #: contact_form.php:189
136
+ msgid "WordPress DB Version"
137
+ msgstr ""
138
+
139
+ #: contact_form.php:190
140
+ msgid "Multisite"
141
+ msgstr ""
142
+
143
+ #: contact_form.php:191
144
+ msgid "Active Theme"
145
+ msgstr ""
146
+
147
+ #: contact_form.php:206
148
+ #, fuzzy
149
+ msgid "Please enter a valid email address."
150
+ msgstr "Usar este enderezo electrónico:"
151
+
152
+ #: contact_form.php:210
153
+ msgid "Email with system info is sent to "
154
+ msgstr ""
155
+
156
+ #: contact_form.php:214
157
+ #: contact_form.php:434
158
+ msgid "Thank you for contacting us."
159
+ msgstr "Moitas grazas contatares con nós."
160
+
161
+ #: contact_form.php:242
162
+ #: contact_form.php:1313
163
+ msgid "Sorry, email message could not be delivered."
164
+ msgstr "Sentímoscho, o teu correo non pode ser entregado."
165
+
166
+ #: contact_form.php:250
167
  #, fuzzy
168
  msgid "Pro plugins"
169
  msgstr "BWS Plugins"
170
 
171
+ #: contact_form.php:253
172
+ #: contact_form.php:279
173
  msgid "Activated plugins"
174
  msgstr "Plugins activados"
175
 
176
+ #: contact_form.php:255
177
+ #: contact_form.php:263
178
+ #: contact_form.php:271
179
+ #: contact_form.php:281
180
+ #: contact_form.php:289
181
+ #: contact_form.php:297
182
  msgid "Read more"
183
  msgstr "Ler máis"
184
 
185
+ #: contact_form.php:255
186
+ #: contact_form.php:281
187
+ #: contact_form.php:754
188
+ #: contact_form.php:1002
189
+ #: contact_form.php:1799
190
+ #: contact_form.php:1808
191
  msgid "Settings"
192
  msgstr "Configuracións"
193
 
194
+ #: contact_form.php:261
195
+ #: contact_form.php:287
196
  msgid "Installed plugins"
197
  msgstr "Plugins instalados"
198
 
199
+ #: contact_form.php:269
200
+ #: contact_form.php:295
201
  msgid "Recommended plugins"
202
  msgstr "Plugins recomendados"
203
 
204
+ #: contact_form.php:271
205
  msgid "Purchase"
206
  msgstr ""
207
 
208
+ #: contact_form.php:276
209
  #, fuzzy
210
  msgid "Free plugins"
211
  msgstr "Plugins recomendados"
212
 
213
+ #: contact_form.php:297
214
  msgid "Download"
215
  msgstr "Baixar"
216
 
217
+ #: contact_form.php:297
218
  #, php-format
219
  msgid "Install %s"
220
  msgstr "Instalar %s"
221
 
222
+ #: contact_form.php:297
223
  msgid "Install now from wordpress.org"
224
  msgstr "Instalar agora desde wordpress.org"
225
 
226
+ #: contact_form.php:302
227
  #, fuzzy
228
  msgid "If you have any questions, please contact us via"
229
  msgstr "Se tes calquera dúbida, contacta no email plugin@bestwebsoft.com ou por medio do noso formulário de contato no sitio web."
230
 
231
+ #: contact_form.php:309
232
+ msgid "System status"
233
+ msgstr ""
234
+
235
+ #: contact_form.php:313
236
+ msgid "Environment"
237
+ msgstr ""
238
+
239
+ #: contact_form.php:324
240
+ #, fuzzy
241
+ msgid "Active Plugins"
242
+ msgstr "Plugins activados"
243
+
244
+ #: contact_form.php:335
245
+ #, fuzzy
246
+ msgid "Inactive Plugins"
247
+ msgstr "Plugins activados"
248
+
249
+ #: contact_form.php:349
250
+ #, fuzzy
251
+ msgid "Send to support"
252
+ msgstr "Soporte"
253
+
254
+ #: contact_form.php:356
255
+ msgid "Send to custom email &#187;"
256
+ msgstr ""
257
+
258
+ #: contact_form.php:372
259
+ #: contact_form.php:750
260
  #, fuzzy
261
  msgid "Contact Form Settings"
262
  msgstr "Configuracións do Formulário de contato"
263
 
264
+ #: contact_form.php:372
265
  msgid "Contact Form"
266
  msgstr "Formulario de contato"
267
 
268
+ #: contact_form.php:373
269
  #, fuzzy
270
  msgid "Contact Form Pro Extra Settings"
271
  msgstr "Configuracións do Formulário de contato"
272
 
273
+ #: contact_form.php:373
274
+ #: contact_form.php:1008
275
  #, fuzzy
276
  msgid "Contact Form Pro"
277
  msgstr "Formulario de contato"
278
 
279
+ #: contact_form.php:412
280
+ #: contact_form.php:897
281
+ #: contact_form.php:926
282
  msgid "Name:"
283
  msgstr "Nome:"
284
 
285
+ #: contact_form.php:413
286
+ #: contact_form.php:898
287
+ #: contact_form.php:927
288
  #, fuzzy
289
  msgid "Address:"
290
  msgstr "Enderezo electrónico:"
291
 
292
+ #: contact_form.php:414
293
+ #: contact_form.php:899
294
+ #: contact_form.php:928
295
  msgid "Email Address:"
296
  msgstr "Enderezo electrónico:"
297
 
298
+ #: contact_form.php:415
299
+ #: contact_form.php:900
300
+ #: contact_form.php:929
301
  msgid "Phone number:"
302
  msgstr "Teléfono:"
303
 
304
+ #: contact_form.php:416
305
+ #: contact_form.php:901
306
+ #: contact_form.php:930
307
  msgid "Subject:"
308
  msgstr "Asunto:"
309
 
310
+ #: contact_form.php:417
311
+ #: contact_form.php:902
312
+ #: contact_form.php:931
313
  msgid "Message:"
314
  msgstr "Mensaxe:"
315
 
316
+ #: contact_form.php:418
317
+ #: contact_form.php:903
318
+ #: contact_form.php:932
319
  msgid "Attachment:"
320
  msgstr "Anexo:"
321
 
322
+ #: contact_form.php:419
323
+ #: contact_form.php:474
324
+ #: contact_form.php:904
325
+ #: contact_form.php:933
326
  msgid "Send me a copy"
327
  msgstr "Enviarme unha copia"
328
 
329
+ #: contact_form.php:420
330
+ #: contact_form.php:905
331
+ #: contact_form.php:934
332
  msgid "Submit"
333
  msgstr "Enviar"
334
 
335
+ #: contact_form.php:421
336
  msgid "Your name is required."
337
  msgstr "O teu nome é obrigatorio."
338
 
339
+ #: contact_form.php:422
340
  #, fuzzy
341
  msgid "Address is required."
342
  msgstr "É obrigatorio un enderezo de correo válido."
343
 
344
+ #: contact_form.php:423
345
  #, fuzzy
346
  msgid "A valid email address is required."
347
  msgstr "É obrigatorio un enderezo de correo válido."
348
 
349
+ #: contact_form.php:424
350
+ #: contact_form.php:469
351
+ #: contact_form.php:472
352
  msgid "Phone number is required."
353
  msgstr "O teléfono é obrigatorio."
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "O Assunto é obrigatorio."
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "O texto da Mensaxe é obrigatorio."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "Non é posíbel anexar o arquivo. "
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "Por favor, completa o CAPTCHA."
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Por favor, fai as correccións abaixo e tenta enviar de novo a mensaxe."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr "Se seleccionas a opción de Redireccionar para a páxina, tes que engadir un URL no seguinte campo"
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Non existe esta persoa usuaria. No se gardaron as configuracións."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
402
  msgstr "Por favor intorduce un enderezo electrónico válido. Non se gardaron as configuracións."
403
 
404
+ #: contact_form.php:730
405
  #, fuzzy
406
  msgid "Settings saved."
407
  msgstr "Configuracións gardadas."
408
 
409
+ #: contact_form.php:755
410
+ #: contact_form.php:1003
411
  #, fuzzy
412
  msgid "Extra settings"
413
  msgstr "Configuracións"
414
 
415
+ #: contact_form.php:760
416
+ #: contact_form.php:1259
417
  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:"
418
  msgstr "Se queres engadir o Formulário de Contato no seu sitio web, só tes que copiar e colar este código no artigo, páxina ou widget:"
419
 
420
+ #: contact_form.php:761
421
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
422
  msgstr "Se a inforación nos campos abaixo está baleira, as mensaxes han ser enviadas para um enderezo que xa foi especificado durante o rexistro."
423
 
424
+ #: contact_form.php:765
425
  msgid "The user's email address:"
426
  msgstr "Usar o enderezo dunha das persoas usuarias:"
427
 
428
+ #: contact_form.php:769
429
  msgid "Create a username"
430
  msgstr "Seleciona o nome da persoa usuaria"
431
 
432
+ #: contact_form.php:774
433
  msgid "Enter a username of the person who should get the messages from the contact form."
434
  msgstr "Determina a persoa usuaria que recibirá as mensaxes enviadas polo Formulario de Contato."
435
 
436
+ #: contact_form.php:778
437
  msgid "Use this email address:"
438
  msgstr "Usar este enderezo electrónico:"
439
 
440
+ #: contact_form.php:781
441
  msgid "Enter the email address you want the messages forwarded to."
442
  msgstr "Configura o enderezo electrónico que vai ser usado para recibires as mensaxes."
443
 
444
+ #: contact_form.php:785
445
  msgid "Additional options"
446
  msgstr "Opcións adicionais"
447
 
448
+ #: contact_form.php:788
449
  msgid "What to use?"
450
  msgstr "Que queres usar?"
451
 
452
+ #: contact_form.php:791
453
  msgid "Wp-mail"
454
  msgstr "Wp-mail"
455
 
456
+ #: contact_form.php:792
457
  msgid "You can use the wp_mail function for mailing"
458
  msgstr "Para enviar o correo podes usar a función wp_mail do WordPress"
459
 
460
+ #: contact_form.php:798
461
  msgid "Mail"
462
  msgstr "Enderezo electrónico"
463
 
464
+ #: contact_form.php:799
465
  msgid "To send mail you can use the php mail function"
466
  msgstr "Para enviar o correo podes usar a función php mail"
467
 
468
+ #: contact_form.php:803
469
  msgid "Change text of the 'FROM' field"
470
  msgstr "Mudar campos do formulario de contato"
471
 
472
+ #: contact_form.php:809
473
  msgid "Enter the email address in the 'From' field"
474
  msgstr ""
475
 
476
+ #: contact_form.php:811
477
  msgid "User email"
478
  msgstr ""
479
 
480
+ #: contact_form.php:811
481
  msgid "The email address of the user who fills the form will be used in the field 'From'."
482
  msgstr ""
483
 
484
+ #: contact_form.php:813
485
  msgid "This email address will be used in the 'From' field."
486
  msgstr ""
487
 
488
+ #: contact_form.php:817
489
  #, fuzzy
490
  msgid "Display fields"
491
  msgstr "Mostrar a opción para anexar arquivos"
492
 
493
+ #: contact_form.php:819
494
+ #: contact_form.php:849
495
+ #: contact_form.php:1039
496
+ #: contact_form.php:1691
497
  #, fuzzy
498
  msgid "Address"
499
  msgstr "Enderezo electrónico:"
500
 
501
+ #: contact_form.php:820
502
+ #: contact_form.php:851
503
+ #: contact_form.php:1699
504
  msgid "Phone"
505
  msgstr "Teléfono"
506
 
507
+ #: contact_form.php:821
508
  #, fuzzy
509
  msgid "Attachment block"
510
  msgstr "Mostrar a opción para anexar arquivos"
511
 
512
+ #: contact_form.php:821
513
  msgid "Users can attach the following file formats"
514
  msgstr "As persoas usuarias poden anexar arquivos do tipo:"
515
 
516
+ #: contact_form.php:822
517
  #, fuzzy
518
  msgid "Tips below the Attachment block"
519
  msgstr "Amosar explicacións tras o bloqueo de arquivos adxuntos"
520
 
521
+ #: contact_form.php:823
522
  #, fuzzy
523
  msgid "Send me a copy block"
524
  msgstr "Mostrar a opción Enviarme unha cópia"
525
 
526
+ #: contact_form.php:835
527
+ #: contact_form.php:838
528
+ #: contact_form.php:841
529
+ #: contact_form.php:1068
530
  msgid "Captcha"
531
  msgstr ""
532
 
533
+ #: contact_form.php:835
534
+ #: contact_form.php:838
535
+ #: contact_form.php:841
536
+ #: contact_form.php:1068
537
  msgid "(powered by bestwebsoft.com)"
538
  msgstr ""
539
 
540
+ #: contact_form.php:838
541
  #, fuzzy
542
  msgid "Activate captcha"
543
  msgstr "Plugins activados"
544
 
545
+ #: contact_form.php:841
546
  #, fuzzy
547
  msgid "Download captcha"
548
  msgstr "Baixar"
549
 
550
+ #: contact_form.php:846
551
  msgid "Required fields"
552
  msgstr "Campo obrigatorio"
553
 
554
+ #: contact_form.php:848
555
+ #: contact_form.php:1034
556
+ #: contact_form.php:1686
557
  msgid "Name"
558
  msgstr "Nome"
559
 
560
+ #: contact_form.php:850
561
  #, fuzzy
562
  msgid "Email Address"
563
  msgstr "Enderezo electrónico:"
564
 
565
+ #: contact_form.php:852
566
+ #: contact_form.php:1054
567
+ #: contact_form.php:1702
568
  msgid "Subject"
569
  msgstr "Asunto"
570
 
571
+ #: contact_form.php:853
572
+ #: contact_form.php:1058
573
+ #: contact_form.php:1705
574
  msgid "Message"
575
  msgstr "Mensaxe"
576
 
577
+ #: contact_form.php:857
578
  #, fuzzy
579
  msgid "Display additional info in the email"
580
  msgstr "Ver Información adicional no correo"
581
 
582
+ #: contact_form.php:862
583
+ #: contact_form.php:1658
584
  msgid "Sent from (ip address)"
585
  msgstr "Enviado desde (Enderezo IP)"
586
 
587
+ #: contact_form.php:863
588
+ #: contact_form.php:1663
589
  msgid "Date/Time"
590
  msgstr "Data/Hora"
591
 
592
+ #: contact_form.php:864
593
+ #: contact_form.php:1668
594
  msgid "Sent from (referer)"
595
  msgstr "Procedente de de (orixe)"
596
 
597
+ #: contact_form.php:865
598
+ #: contact_form.php:1673
599
  msgid "Using (user agent)"
600
  msgstr "Usando (cliente de email)"
601
 
602
+ #: contact_form.php:869
603
  msgid "Language settings for the field names in the form"
604
  msgstr ""
605
 
606
+ #: contact_form.php:878
607
  msgid "Add a language"
608
  msgstr ""
609
 
610
+ #: contact_form.php:882
611
  msgid "Change the names of the contact form fields and error messages"
612
  msgstr "Mudar a etiqueta dos campos no Formulario de contato"
613
 
614
+ #: contact_form.php:887
615
+ #: contact_form.php:958
616
  msgid "English"
617
  msgstr ""
618
 
619
+ #: contact_form.php:906
620
+ #: contact_form.php:935
621
  msgid "Error message for the Name field"
622
  msgstr ""
623
 
624
+ #: contact_form.php:907
625
+ #: contact_form.php:936
626
  msgid "Error message for the Address field"
627
  msgstr ""
628
 
629
+ #: contact_form.php:908
630
+ #: contact_form.php:937
631
  msgid "Error message for the Email field"
632
  msgstr ""
633
 
634
+ #: contact_form.php:909
635
+ #: contact_form.php:938
636
  msgid "Error message for the Phone field"
637
  msgstr ""
638
 
639
+ #: contact_form.php:910
640
+ #: contact_form.php:939
641
  msgid "Error message for the Subject field"
642
  msgstr ""
643
 
644
+ #: contact_form.php:911
645
+ #: contact_form.php:940
646
  msgid "Error message for the Message field"
647
  msgstr ""
648
 
649
+ #: contact_form.php:912
650
+ #: contact_form.php:941
651
  msgid "Error message about the file type for the Attachment field"
652
  msgstr ""
653
 
654
+ #: contact_form.php:913
655
+ #: contact_form.php:942
656
  msgid "Error message while uploading a file for the Attachment field to the server"
657
  msgstr ""
658
 
659
+ #: contact_form.php:914
660
+ #: contact_form.php:943
661
  msgid "Error message while moving the file for the Attachment field"
662
  msgstr ""
663
 
664
+ #: contact_form.php:915
665
+ #: contact_form.php:944
666
  msgid "Error message when file size limit for the Attachment field is exceeded"
667
  msgstr ""
668
 
669
+ #: contact_form.php:916
670
+ #: contact_form.php:945
671
  msgid "Error message for the Captcha field"
672
  msgstr ""
673
 
674
+ #: contact_form.php:917
675
+ #: contact_form.php:946
676
  msgid "Error message for the whole form"
677
  msgstr ""
678
 
679
+ #: contact_form.php:919
680
+ #: contact_form.php:948
681
+ #: contact_form.php:967
682
+ #: contact_form.php:973
683
  msgid "Use shortcode"
684
  msgstr ""
685
 
686
+ #: contact_form.php:919
687
+ #: contact_form.php:948
688
+ #: contact_form.php:967
689
+ #: contact_form.php:973
690
  msgid "for this language"
691
  msgstr ""
692
 
693
+ #: contact_form.php:955
694
  msgid "Action after email is sent"
695
  msgstr "Acción despois do envío de correo"
696
 
697
+ #: contact_form.php:957
698
  msgid "Display text"
699
  msgstr "Mostrar a opción para anexar arquivos"
700
 
701
+ #: contact_form.php:966
702
+ #: contact_form.php:972
703
  msgid "Text"
704
  msgstr "Texto"
705
 
706
+ #: contact_form.php:979
707
  msgid "Redirect to the page"
708
  msgstr "Redirecionar á páxina"
709
 
710
+ #: contact_form.php:980
711
  msgid "Url"
712
  msgstr "URL"
713
 
714
+ #: contact_form.php:985
715
+ #: contact_form.php:1160
716
  msgid "Save Changes"
717
  msgstr "Gardar as mudanzas"
718
 
719
+ #: contact_form.php:1000
720
  #, fuzzy
721
  msgid "Contact Form Pro | Extra Settings"
722
  msgstr "Configuracións do Formulário de contato"
723
 
724
+ #: contact_form.php:1007
725
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
726
  msgstr ""
727
 
728
+ #: contact_form.php:1014
729
  msgid "Errors output"
730
  msgstr ""
731
 
732
+ #: contact_form.php:1017
733
  msgid "Display error messages"
734
  msgstr ""
735
 
736
+ #: contact_form.php:1018
737
  msgid "Color of the input field errors."
738
  msgstr ""
739
 
740
+ #: contact_form.php:1019
741
  msgid "Display error messages & color of the input field errors"
742
  msgstr ""
743
 
744
+ #: contact_form.php:1024
745
  msgid "Add placeholder to the input blocks"
746
  msgstr ""
747
 
748
+ #: contact_form.php:1030
749
  #, fuzzy
750
  msgid "Add tooltips"
751
  msgstr "Opcións adicionais"
752
 
753
+ #: contact_form.php:1044
754
  #, fuzzy
755
  msgid "Email address"
756
  msgstr "Enderezo electrónico:"
757
 
758
+ #: contact_form.php:1049
759
  #, fuzzy
760
  msgid "Phone Number"
761
  msgstr "Teléfono:"
762
 
763
+ #: contact_form.php:1063
764
  #, fuzzy
765
  msgid "Attachment"
766
  msgstr "Anexo:"
767
 
768
+ #: contact_form.php:1073
769
  #, fuzzy
770
  msgid "Style options"
771
  msgstr "Opcións adicionais"
772
 
773
+ #: contact_form.php:1076
774
  msgid "Text color"
775
  msgstr ""
776
 
777
+ #: contact_form.php:1079
778
+ #: contact_form.php:1084
779
+ #: contact_form.php:1094
780
+ #: contact_form.php:1099
781
+ #: contact_form.php:1104
782
+ #: contact_form.php:1109
783
+ #: contact_form.php:1119
784
+ #: contact_form.php:1124
785
+ #: contact_form.php:1130
786
+ #: contact_form.php:1141
787
+ #: contact_form.php:1146
788
+ #: contact_form.php:1151
789
  msgid "Default"
790
  msgstr ""
791
 
792
+ #: contact_form.php:1081
793
  msgid "Label text color"
794
  msgstr ""
795
 
796
+ #: contact_form.php:1086
797
  msgid "Placeholder color"
798
  msgstr ""
799
 
800
+ #: contact_form.php:1091
801
  msgid "Errors color"
802
  msgstr ""
803
 
804
+ #: contact_form.php:1096
805
  msgid "Error text color"
806
  msgstr ""
807
 
808
+ #: contact_form.php:1101
809
  msgid "Background color of the input field errors"
810
  msgstr ""
811
 
812
+ #: contact_form.php:1106
813
  msgid "Border color of the input field errors"
814
  msgstr ""
815
 
816
+ #: contact_form.php:1111
817
  msgid "Placeholder color of the input field errors"
818
  msgstr ""
819
 
820
+ #: contact_form.php:1116
821
  #, fuzzy
822
  msgid "Input fields"
823
  msgstr "Mostrar a opción para anexar arquivos"
824
 
825
+ #: contact_form.php:1121
826
  msgid "Input fields background color"
827
  msgstr ""
828
 
829
+ #: contact_form.php:1126
830
  msgid "Text fields color"
831
  msgstr ""
832
 
833
+ #: contact_form.php:1128
834
  msgid "Border width in px, numbers only"
835
  msgstr ""
836
 
837
+ #: contact_form.php:1132
838
+ #: contact_form.php:1153
839
  msgid "Border color"
840
  msgstr ""
841
 
842
+ #: contact_form.php:1137
843
  #, fuzzy
844
  msgid "Submit button"
845
  msgstr "Enviar"
846
 
847
+ #: contact_form.php:1139
848
  msgid "Width in px, numbers only"
849
  msgstr ""
850
 
851
+ #: contact_form.php:1143
852
  msgid "Button color"
853
  msgstr ""
854
 
855
+ #: contact_form.php:1148
856
  msgid "Button text color"
857
  msgstr ""
858
 
859
+ #: contact_form.php:1164
860
  #, fuzzy
861
  msgid "Contact Form Pro | Preview"
862
  msgstr "Formulario de contato"
863
 
864
+ #: contact_form.php:1167
865
  msgid "Show with errors"
866
  msgstr ""
867
 
868
+ #: contact_form.php:1175
869
+ #: contact_form.php:1177
870
  msgid "Please enter your full name..."
871
  msgstr ""
872
 
873
+ #: contact_form.php:1188
874
+ #: contact_form.php:1190
875
  msgid "Please enter your address..."
876
  msgstr ""
877
 
878
+ #: contact_form.php:1199
879
+ #: contact_form.php:1201
880
  #, fuzzy
881
  msgid "Please enter your email address..."
882
  msgstr "Usar este enderezo electrónico:"
883
 
884
+ #: contact_form.php:1210
885
+ #: contact_form.php:1212
886
  msgid "Please enter your phone number..."
887
  msgstr ""
888
 
889
+ #: contact_form.php:1221
890
+ #: contact_form.php:1223
891
  msgid "Please enter subject..."
892
  msgstr ""
893
 
894
+ #: contact_form.php:1231
895
+ #: contact_form.php:1233
896
  msgid "Please enter your message..."
897
  msgstr ""
898
 
899
+ #: contact_form.php:1244
900
  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"
901
  msgstr ""
902
 
903
+ #: contact_form.php:1397
 
 
 
 
904
  msgid "You can attach the following file formats"
905
  msgstr "Podes anexar arquivos do tipo:"
906
 
907
+ #: contact_form.php:1681
908
  msgid "Contact from"
909
  msgstr "Formulario de contato"
910
 
911
+ #: contact_form.php:1694
912
  msgid "Email"
913
  msgstr "Correo electrónico"
914
 
915
+ #: contact_form.php:1708
916
  msgid "Site"
917
  msgstr "Sitio web"
918
 
919
+ #: contact_form.php:1758
920
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
921
  msgstr "Se consegues ver esta MENSAXE entón é que o teu cliente non acepta tipos MIME! Por favor utiliza un cliente máis actualizado."
922
 
923
+ #: contact_form.php:1809
924
  msgid "FAQ"
925
  msgstr "Preguntas frecuentes"
926
 
927
+ #: contact_form.php:1810
928
  msgid "Support"
929
  msgstr "Soporte"
930
 
931
+ #: contact_form.php:1858
932
  msgid "Are you sure that you want to delete this language data?"
933
  msgstr ""
934
 
languages/contact_form-he_IL.mo CHANGED
Binary file
languages/contact_form-he_IL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.20\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-16 16:04+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:04+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -18,849 +18,1020 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  # @ contact_form
22
- #: contact_form.php:100
23
  #, fuzzy
24
  msgid "Pro plugins"
25
  msgstr "תוספים מומלצים"
26
 
27
  # @ contact_form
28
- #: contact_form.php:103
29
- #: contact_form.php:129
30
  msgid "Activated plugins"
31
  msgstr "תוספים פעילים"
32
 
33
  # @ contact_form
34
- #: contact_form.php:105
35
- #: contact_form.php:113
36
- #: contact_form.php:121
37
- #: contact_form.php:131
38
- #: contact_form.php:139
39
- #: contact_form.php:147
40
  msgid "Read more"
41
  msgstr "קרא עוד"
42
 
43
  # @ contact_form
44
- #: contact_form.php:105
45
- #: contact_form.php:131
46
- #: contact_form.php:543
47
- #: contact_form.php:791
48
- #: contact_form.php:1588
49
- #: contact_form.php:1597
50
  msgid "Settings"
51
  msgstr "הגדרות"
52
 
53
  # @ contact_form
54
- #: contact_form.php:111
55
- #: contact_form.php:137
56
  msgid "Installed plugins"
57
  msgstr "תוספים מותקנים"
58
 
59
  # @ contact_form
60
- #: contact_form.php:119
61
- #: contact_form.php:145
62
  msgid "Recommended plugins"
63
  msgstr "תוספים מומלצים"
64
 
65
- #: contact_form.php:121
66
  msgid "Purchase"
67
  msgstr ""
68
 
69
  # @ contact_form
70
- #: contact_form.php:126
71
  #, fuzzy
72
  msgid "Free plugins"
73
  msgstr "תוספים מומלצים"
74
 
75
  # @ contact_form
76
- #: contact_form.php:147
77
  msgid "Download"
78
  msgstr "הורד"
79
 
80
  # @ default
81
- #: contact_form.php:147
82
  #, php-format
83
  msgid "Install %s"
84
  msgstr ""
85
 
86
  # @ contact_form
87
- #: contact_form.php:147
88
  msgid "Install now from wordpress.org"
89
  msgstr "התקן כעת מ wordpress.org"
90
 
91
  # @ contact_form
92
- #: contact_form.php:152
93
  #, fuzzy
94
  msgid "If you have any questions, please contact us via"
95
  msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  # @ contact_form
98
- #: contact_form.php:161
99
- #: contact_form.php:539
100
  #, fuzzy
101
  msgid "Contact Form Settings"
102
  msgstr "אפשרויות טופס צור קשר"
103
 
104
  # @ contact_form
105
- #: contact_form.php:161
106
  msgid "Contact Form"
107
  msgstr "טופס צור קשר"
108
 
109
  # @ contact_form
110
- #: contact_form.php:162
111
  #, fuzzy
112
  msgid "Contact Form Pro Extra Settings"
113
  msgstr "אפשרויות טופס צור קשר"
114
 
115
  # @ contact_form
116
- #: contact_form.php:162
117
- #: contact_form.php:797
118
  #, fuzzy
119
  msgid "Contact Form Pro"
120
  msgstr "טופס צור קשר"
121
 
122
  # @ contact_form
123
- #: contact_form.php:201
124
- #: contact_form.php:686
125
- #: contact_form.php:715
126
  msgid "Name:"
127
  msgstr "שם:"
128
 
129
  # @ contact_form
130
- #: contact_form.php:202
131
- #: contact_form.php:687
132
- #: contact_form.php:716
133
  #, fuzzy
134
  msgid "Address:"
135
  msgstr "כתובת דוא\\\"ל:"
136
 
137
  # @ contact_form
138
- #: contact_form.php:203
139
- #: contact_form.php:688
140
- #: contact_form.php:717
141
  msgid "Email Address:"
142
  msgstr "כתובת דוא\\\"ל:"
143
 
144
- #: contact_form.php:204
145
- #: contact_form.php:689
146
- #: contact_form.php:718
147
  msgid "Phone number:"
148
  msgstr ""
149
 
150
  # @ contact_form
151
- #: contact_form.php:205
152
- #: contact_form.php:690
153
- #: contact_form.php:719
154
  msgid "Subject:"
155
  msgstr "נושא:"
156
 
157
  # @ contact_form
158
- #: contact_form.php:206
159
- #: contact_form.php:691
160
- #: contact_form.php:720
161
  msgid "Message:"
162
  msgstr "הודעה:"
163
 
164
  # @ contact_form
165
- #: contact_form.php:207
166
- #: contact_form.php:692
167
- #: contact_form.php:721
168
  msgid "Attachment:"
169
  msgstr "קובץ מצורף:"
170
 
171
  # @ contact_form
172
- #: contact_form.php:208
173
- #: contact_form.php:263
174
- #: contact_form.php:693
175
- #: contact_form.php:722
176
  msgid "Send me a copy"
177
  msgstr "שלח לי עותק"
178
 
179
  # @ contact_form
180
- #: contact_form.php:209
181
- #: contact_form.php:694
182
- #: contact_form.php:723
183
  msgid "Submit"
184
  msgstr "שלח"
185
 
186
  # @ contact_form
187
- #: contact_form.php:210
188
  msgid "Your name is required."
189
  msgstr "השם שלך הכרחי."
190
 
191
  # @ contact_form
192
- #: contact_form.php:211
193
  #, fuzzy
194
  msgid "Address is required."
195
  msgstr "כתובת מייל תקנית הכרחית."
196
 
197
  # @ contact_form
198
- #: contact_form.php:212
199
  #, fuzzy
200
  msgid "A valid email address is required."
201
  msgstr "כתובת מייל תקנית הכרחית."
202
 
203
  # @ contact_form
204
- #: contact_form.php:213
205
- #: contact_form.php:258
206
- #: contact_form.php:261
207
  #, fuzzy
208
  msgid "Phone number is required."
209
  msgstr "השם שלך הכרחי."
210
 
211
  # @ contact_form
212
- #: contact_form.php:214
213
- #: contact_form.php:257
214
- #: contact_form.php:260
215
  msgid "Subject is required."
216
  msgstr "הנושא הכרחי."
217
 
218
  # @ contact_form
219
- #: contact_form.php:215
220
- #: contact_form.php:256
221
- #: contact_form.php:259
222
  msgid "Message text is required."
223
  msgstr "מילוי שדה ההודעה הכרחי."
224
 
225
  # @ contact_form
226
- #: contact_form.php:216
227
  msgid "File format is not valid."
228
  msgstr "הקובץ המצורף שבור"
229
 
230
- #: contact_form.php:217
231
  msgid "File upload error."
232
  msgstr ""
233
 
234
- #: contact_form.php:218
235
  msgid "The file could not be uploaded."
236
  msgstr ""
237
 
238
- #: contact_form.php:219
239
  msgid "This file is too large."
240
  msgstr ""
241
 
242
  # @ contact_form
243
- #: contact_form.php:220
244
  msgid "Please fill out the CAPTCHA."
245
  msgstr "אנא השלם את קוד האימות."
246
 
247
  # @ contact_form
248
- #: contact_form.php:221
249
  msgid "Please make corrections below and try again."
250
  msgstr "אנא עשה תיקונים להלן ונסה שוב."
251
 
252
  # @ contact_form
253
- #: contact_form.php:223
254
- msgid "Thank you for contacting us."
255
- msgstr "תודה שיצרת עמנו קשר."
256
-
257
- # @ contact_form
258
- #: contact_form.php:494
259
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
260
  msgstr "אם האפשרות 'הפנה מחדש לדף' מסומנת אז חייבים למלא את שדה כתובת ה URL בפורמט הבא"
261
 
262
  # @ contact_form
263
- #: contact_form.php:503
264
  msgid "Such user does not exist. Settings are not saved."
265
  msgstr "משתמש כזה אינו קיים. ההגדרות לא נשמרו."
266
 
267
  # @ contact_form
268
- #: contact_form.php:508
269
- #: contact_form.php:514
270
  #, fuzzy
271
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
272
  msgstr "בבקשה הזן כתובת מייל נכונה. ההגדרות לא נשמרו."
273
 
274
  # @ contact_form
275
- #: contact_form.php:519
276
  #, fuzzy
277
  msgid "Settings saved."
278
  msgstr "האפשרויות נשמרו."
279
 
280
  # @ contact_form
281
- #: contact_form.php:544
282
- #: contact_form.php:792
283
  #, fuzzy
284
  msgid "Extra settings"
285
  msgstr "הגדרות"
286
 
287
  # @ contact_form
288
- #: contact_form.php:549
289
- #: contact_form.php:1048
290
  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:"
291
  msgstr "אם אתה מעוניין להוסיף טופס צור קשר לאתר שלך, פשוט העתק את קיצור הקוד שלהלן אל הפוסט או הדף או הוידג'ט שלך:"
292
 
293
  # @ contact_form
294
- #: contact_form.php:550
295
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
296
  msgstr "אם השדות שלהלן ריקים, אז המייל יישלח אל לכתובת שצוינה בעת ההרשמה."
297
 
298
  # @ contact_form
299
- #: contact_form.php:554
300
  msgid "The user's email address:"
301
  msgstr "השתמש במייל של משתמש וורדפרס:"
302
 
303
  # @ contact_form
304
- #: contact_form.php:558
305
  msgid "Create a username"
306
  msgstr "בחר שם משתמש"
307
 
308
  # @ contact_form
309
- #: contact_form.php:563
310
  msgid "Enter a username of the person who should get the messages from the contact form."
311
  msgstr "הגדר שם משתמש, אשר יקבל את ההודעות הנשלחות דרך טופס יצירת הקשר."
312
 
313
  # @ contact_form
314
- #: contact_form.php:567
315
  msgid "Use this email address:"
316
  msgstr "השתמש במייל זה:"
317
 
318
  # @ contact_form
319
- #: contact_form.php:570
320
  msgid "Enter the email address you want the messages forwarded to."
321
  msgstr "הגדר כתובת מייל שתשמש לקבלת הודעות."
322
 
323
  # @ contact_form
324
- #: contact_form.php:574
325
  msgid "Additional options"
326
  msgstr "אפשרויות נוספות"
327
 
328
  # @ contact_form
329
- #: contact_form.php:577
330
  msgid "What to use?"
331
  msgstr "איזה שימוש?"
332
 
333
  # @ mail-send
334
- #: contact_form.php:580
335
  msgid "Wp-mail"
336
  msgstr ""
337
 
338
  # @ mail_send
339
- #: contact_form.php:581
340
  msgid "You can use the wp_mail function for mailing"
341
  msgstr ""
342
 
343
  # @ mail-send
344
- #: contact_form.php:587
345
  msgid "Mail"
346
  msgstr ""
347
 
348
  # @ mail_send
349
- #: contact_form.php:588
350
  msgid "To send mail you can use the php mail function"
351
  msgstr ""
352
 
353
  # @ contact_form
354
- #: contact_form.php:592
355
  #, fuzzy
356
  msgid "Change text of the 'FROM' field"
357
  msgstr "שנה את השדות של טופס יצירת הקשר"
358
 
359
- #: contact_form.php:598
360
  msgid "Enter the email address in the 'From' field"
361
  msgstr ""
362
 
363
- #: contact_form.php:600
364
  msgid "User email"
365
  msgstr ""
366
 
367
- #: contact_form.php:600
368
  msgid "The email address of the user who fills the form will be used in the field 'From'."
369
  msgstr ""
370
 
371
- #: contact_form.php:602
372
  msgid "This email address will be used in the 'From' field."
373
  msgstr ""
374
 
375
  # @ contact_form
376
- #: contact_form.php:606
377
  #, fuzzy
378
  msgid "Display fields"
379
  msgstr "הטקסט המוצג"
380
 
381
  # @ contact_form
382
- #: contact_form.php:608
383
- #: contact_form.php:638
384
- #: contact_form.php:828
385
- #: contact_form.php:1480
386
  #, fuzzy
387
  msgid "Address"
388
  msgstr "כתובת דוא\\\"ל:"
389
 
390
- #: contact_form.php:609
391
- #: contact_form.php:640
392
- #: contact_form.php:1488
393
  msgid "Phone"
394
  msgstr ""
395
 
396
  # @ contact_form
397
- #: contact_form.php:610
398
  #, fuzzy
399
  msgid "Attachment block"
400
  msgstr "הצג אפשרות קובץ מצורף"
401
 
402
  # @ contact_form
403
- #: contact_form.php:610
404
  msgid "Users can attach the following file formats"
405
  msgstr "משתמשים יוכלו לצרף קבצים מהסוגים הבאים"
406
 
407
  # @ contact_form
408
- #: contact_form.php:611
409
  #, fuzzy
410
  msgid "Tips below the Attachment block"
411
  msgstr "הצג את ההסברים אחרי תיבת הקובץ המצורף"
412
 
413
  # @ contact_form
414
- #: contact_form.php:612
415
  #, fuzzy
416
  msgid "Send me a copy block"
417
  msgstr "הצג תיבת שלח לי עותק"
418
 
419
- #: contact_form.php:624
420
- #: contact_form.php:627
421
- #: contact_form.php:630
422
- #: contact_form.php:857
423
  msgid "Captcha"
424
  msgstr ""
425
 
426
- #: contact_form.php:624
427
- #: contact_form.php:627
428
- #: contact_form.php:630
429
- #: contact_form.php:857
430
  msgid "(powered by bestwebsoft.com)"
431
  msgstr ""
432
 
433
  # @ contact_form
434
- #: contact_form.php:627
435
  #, fuzzy
436
  msgid "Activate captcha"
437
  msgstr "תוספים פעילים"
438
 
439
  # @ contact_form
440
- #: contact_form.php:630
441
  #, fuzzy
442
  msgid "Download captcha"
443
  msgstr "הורד"
444
 
445
- #: contact_form.php:635
446
  msgid "Required fields"
447
  msgstr ""
448
 
449
  # @ contact_form
450
- #: contact_form.php:637
451
- #: contact_form.php:823
452
- #: contact_form.php:1475
453
  msgid "Name"
454
  msgstr "שם"
455
 
456
  # @ contact_form
457
- #: contact_form.php:639
458
  #, fuzzy
459
  msgid "Email Address"
460
  msgstr "כתובת דוא\\\"ל:"
461
 
462
  # @ contact_form
463
- #: contact_form.php:641
464
- #: contact_form.php:843
465
- #: contact_form.php:1491
466
  msgid "Subject"
467
  msgstr "נושא"
468
 
469
  # @ contact_form
470
- #: contact_form.php:642
471
- #: contact_form.php:847
472
- #: contact_form.php:1494
473
  msgid "Message"
474
  msgstr "תוכן ההודעה"
475
 
476
  # @ contact_form
477
- #: contact_form.php:646
478
  #, fuzzy
479
  msgid "Display additional info in the email"
480
  msgstr "הצג מידע נוסף במייל"
481
 
482
  # @ contact_form
483
- #: contact_form.php:651
484
- #: contact_form.php:1447
485
  msgid "Sent from (ip address)"
486
  msgstr "נשלח מ (כתובת IP)"
487
 
488
  # @ contact_form
489
- #: contact_form.php:652
490
- #: contact_form.php:1452
491
  msgid "Date/Time"
492
  msgstr "תאריך\\שעה"
493
 
494
  # @ contact_form
495
- #: contact_form.php:653
496
- #: contact_form.php:1457
497
  msgid "Sent from (referer)"
498
  msgstr "מגיע מ (השולח)"
499
 
500
  # @ contact_form
501
- #: contact_form.php:654
502
- #: contact_form.php:1462
503
  msgid "Using (user agent)"
504
  msgstr "משתמש ב (user agent)"
505
 
506
- #: contact_form.php:658
507
  msgid "Language settings for the field names in the form"
508
  msgstr ""
509
 
510
- #: contact_form.php:667
511
  msgid "Add a language"
512
  msgstr ""
513
 
514
  # @ contact_form
515
- #: contact_form.php:671
516
  #, fuzzy
517
  msgid "Change the names of the contact form fields and error messages"
518
  msgstr "שנה את תוויות הטופס"
519
 
520
- #: contact_form.php:676
521
- #: contact_form.php:747
522
  msgid "English"
523
  msgstr ""
524
 
525
- #: contact_form.php:695
526
- #: contact_form.php:724
527
  msgid "Error message for the Name field"
528
  msgstr ""
529
 
530
- #: contact_form.php:696
531
- #: contact_form.php:725
532
  msgid "Error message for the Address field"
533
  msgstr ""
534
 
535
- #: contact_form.php:697
536
- #: contact_form.php:726
537
  msgid "Error message for the Email field"
538
  msgstr ""
539
 
540
- #: contact_form.php:698
541
- #: contact_form.php:727
542
  msgid "Error message for the Phone field"
543
  msgstr ""
544
 
545
- #: contact_form.php:699
546
- #: contact_form.php:728
547
  msgid "Error message for the Subject field"
548
  msgstr ""
549
 
550
- #: contact_form.php:700
551
- #: contact_form.php:729
552
  msgid "Error message for the Message field"
553
  msgstr ""
554
 
555
- #: contact_form.php:701
556
- #: contact_form.php:730
557
  msgid "Error message about the file type for the Attachment field"
558
  msgstr ""
559
 
560
- #: contact_form.php:702
561
- #: contact_form.php:731
562
  msgid "Error message while uploading a file for the Attachment field to the server"
563
  msgstr ""
564
 
565
- #: contact_form.php:703
566
- #: contact_form.php:732
567
  msgid "Error message while moving the file for the Attachment field"
568
  msgstr ""
569
 
570
- #: contact_form.php:704
571
- #: contact_form.php:733
572
  msgid "Error message when file size limit for the Attachment field is exceeded"
573
  msgstr ""
574
 
575
- #: contact_form.php:705
576
- #: contact_form.php:734
577
  msgid "Error message for the Captcha field"
578
  msgstr ""
579
 
580
- #: contact_form.php:706
581
- #: contact_form.php:735
582
  msgid "Error message for the whole form"
583
  msgstr ""
584
 
585
- #: contact_form.php:708
586
- #: contact_form.php:737
587
- #: contact_form.php:756
588
- #: contact_form.php:762
589
  msgid "Use shortcode"
590
  msgstr ""
591
 
592
- #: contact_form.php:708
593
- #: contact_form.php:737
594
- #: contact_form.php:756
595
- #: contact_form.php:762
596
  msgid "for this language"
597
  msgstr ""
598
 
599
  # @ contact_form
600
- #: contact_form.php:744
601
  msgid "Action after email is sent"
602
  msgstr "הפעולה שלאחר שליחת הטופס"
603
 
604
  # @ contact_form
605
- #: contact_form.php:746
606
  msgid "Display text"
607
  msgstr "הטקסט המוצג"
608
 
609
  # @ contact_form
610
- #: contact_form.php:755
611
- #: contact_form.php:761
612
  msgid "Text"
613
  msgstr "טקסט"
614
 
615
  # @ contact_form
616
- #: contact_form.php:768
617
  msgid "Redirect to the page"
618
  msgstr "הפנה אל הדף"
619
 
620
  # @ contact_form
621
- #: contact_form.php:769
622
  msgid "Url"
623
  msgstr "URL"
624
 
625
  # @ default
626
- #: contact_form.php:774
627
- #: contact_form.php:949
628
  msgid "Save Changes"
629
  msgstr ""
630
 
631
  # @ contact_form
632
- #: contact_form.php:789
633
  #, fuzzy
634
  msgid "Contact Form Pro | Extra Settings"
635
  msgstr "אפשרויות טופס צור קשר"
636
 
637
- #: contact_form.php:796
638
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
639
  msgstr ""
640
 
641
- #: contact_form.php:803
642
  msgid "Errors output"
643
  msgstr ""
644
 
645
- #: contact_form.php:806
646
  msgid "Display error messages"
647
  msgstr ""
648
 
649
- #: contact_form.php:807
650
  msgid "Color of the input field errors."
651
  msgstr ""
652
 
653
- #: contact_form.php:808
654
  msgid "Display error messages & color of the input field errors"
655
  msgstr ""
656
 
657
- #: contact_form.php:813
658
  msgid "Add placeholder to the input blocks"
659
  msgstr ""
660
 
661
  # @ contact_form
662
- #: contact_form.php:819
663
  #, fuzzy
664
  msgid "Add tooltips"
665
  msgstr "אפשרויות נוספות"
666
 
667
  # @ contact_form
668
- #: contact_form.php:833
669
  #, fuzzy
670
  msgid "Email address"
671
  msgstr "כתובת דוא\\\"ל:"
672
 
673
- #: contact_form.php:838
674
  msgid "Phone Number"
675
  msgstr ""
676
 
677
  # @ contact_form
678
- #: contact_form.php:852
679
  #, fuzzy
680
  msgid "Attachment"
681
  msgstr "קובץ מצורף:"
682
 
683
  # @ contact_form
684
- #: contact_form.php:862
685
  #, fuzzy
686
  msgid "Style options"
687
  msgstr "אפשרויות נוספות"
688
 
689
- #: contact_form.php:865
690
  msgid "Text color"
691
  msgstr ""
692
 
693
- #: contact_form.php:868
694
- #: contact_form.php:873
695
- #: contact_form.php:883
696
- #: contact_form.php:888
697
- #: contact_form.php:893
698
- #: contact_form.php:898
699
- #: contact_form.php:908
700
- #: contact_form.php:913
701
- #: contact_form.php:919
702
- #: contact_form.php:930
703
- #: contact_form.php:935
704
- #: contact_form.php:940
705
  msgid "Default"
706
  msgstr ""
707
 
708
- #: contact_form.php:870
709
  msgid "Label text color"
710
  msgstr ""
711
 
712
- #: contact_form.php:875
713
  msgid "Placeholder color"
714
  msgstr ""
715
 
716
- #: contact_form.php:880
717
  msgid "Errors color"
718
  msgstr ""
719
 
720
- #: contact_form.php:885
721
  msgid "Error text color"
722
  msgstr ""
723
 
724
- #: contact_form.php:890
725
  msgid "Background color of the input field errors"
726
  msgstr ""
727
 
728
- #: contact_form.php:895
729
  msgid "Border color of the input field errors"
730
  msgstr ""
731
 
732
- #: contact_form.php:900
733
  msgid "Placeholder color of the input field errors"
734
  msgstr ""
735
 
736
  # @ contact_form
737
- #: contact_form.php:905
738
  #, fuzzy
739
  msgid "Input fields"
740
  msgstr "הטקסט המוצג"
741
 
742
- #: contact_form.php:910
743
  msgid "Input fields background color"
744
  msgstr ""
745
 
746
- #: contact_form.php:915
747
  msgid "Text fields color"
748
  msgstr ""
749
 
750
- #: contact_form.php:917
751
  msgid "Border width in px, numbers only"
752
  msgstr ""
753
 
754
- #: contact_form.php:921
755
- #: contact_form.php:942
756
  msgid "Border color"
757
  msgstr ""
758
 
759
  # @ contact_form
760
- #: contact_form.php:926
761
  #, fuzzy
762
  msgid "Submit button"
763
  msgstr "שלח"
764
 
765
- #: contact_form.php:928
766
  msgid "Width in px, numbers only"
767
  msgstr ""
768
 
769
- #: contact_form.php:932
770
  msgid "Button color"
771
  msgstr ""
772
 
773
- #: contact_form.php:937
774
  msgid "Button text color"
775
  msgstr ""
776
 
777
  # @ contact_form
778
- #: contact_form.php:953
779
  #, fuzzy
780
  msgid "Contact Form Pro | Preview"
781
  msgstr "טופס צור קשר"
782
 
783
- #: contact_form.php:956
784
  msgid "Show with errors"
785
  msgstr ""
786
 
787
- #: contact_form.php:964
788
- #: contact_form.php:966
789
  msgid "Please enter your full name..."
790
  msgstr ""
791
 
792
- #: contact_form.php:977
793
- #: contact_form.php:979
794
  msgid "Please enter your address..."
795
  msgstr ""
796
 
797
  # @ contact_form
798
- #: contact_form.php:988
799
- #: contact_form.php:990
800
  #, fuzzy
801
  msgid "Please enter your email address..."
802
  msgstr "השתמש במייל זה:"
803
 
804
- #: contact_form.php:999
805
- #: contact_form.php:1001
806
  msgid "Please enter your phone number..."
807
  msgstr ""
808
 
809
- #: contact_form.php:1010
810
- #: contact_form.php:1012
811
  msgid "Please enter subject..."
812
  msgstr ""
813
 
814
- #: contact_form.php:1020
815
- #: contact_form.php:1022
816
  msgid "Please enter your message..."
817
  msgstr ""
818
 
819
- #: contact_form.php:1033
820
  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"
821
  msgstr ""
822
 
823
  # @ contact_form
824
- #: contact_form.php:1102
825
- msgid "Sorry, email message could not be delivered."
826
- msgstr "מצטערים, אי אפשר היה לשלוח את המייל שלך."
827
-
828
- # @ contact_form
829
- #: contact_form.php:1186
830
  msgid "You can attach the following file formats"
831
  msgstr "אתה יכול לצרף קבצים מן הסוגים הבאים"
832
 
833
  # @ contact_form
834
- #: contact_form.php:1470
835
  msgid "Contact from"
836
  msgstr "טופס צור קשר"
837
 
838
  # @ contact_form
839
- #: contact_form.php:1483
840
  msgid "Email"
841
  msgstr "כתובת מייל"
842
 
843
  # @ contact_form
844
- #: contact_form.php:1497
845
  msgid "Site"
846
  msgstr "אתר"
847
 
848
  # @ contact_form
849
- #: contact_form.php:1547
850
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
851
  msgstr "אם אתה יכול לראות את ה MIME הזה, אז הלקוח שלך אינו יכול לקבל סוגי MIME!"
852
 
853
  # @ contact_form
854
- #: contact_form.php:1598
855
  msgid "FAQ"
856
  msgstr "שאלות ותשובות"
857
 
858
  # @ contact_form
859
- #: contact_form.php:1599
860
  msgid "Support"
861
  msgstr "תמיכה"
862
 
863
- #: contact_form.php:1647
864
  msgid "Are you sure that you want to delete this language data?"
865
  msgstr ""
866
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.20\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:56+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:56+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: contact_form.php:106
22
+ msgid "Not set"
23
+ msgstr ""
24
+
25
+ #: contact_form.php:108
26
+ #: contact_form.php:112
27
+ msgid "On"
28
+ msgstr ""
29
+
30
+ #: contact_form.php:110
31
+ #: contact_form.php:114
32
+ msgid "Off"
33
+ msgstr ""
34
+
35
+ #: contact_form.php:118
36
+ #: contact_form.php:122
37
+ #: contact_form.php:126
38
+ #: contact_form.php:130
39
+ #: contact_form.php:134
40
+ #: contact_form.php:160
41
+ msgid "N/A"
42
+ msgstr ""
43
+
44
+ #: contact_form.php:132
45
+ msgid " Mb"
46
+ msgstr ""
47
+
48
+ #: contact_form.php:136
49
+ #: contact_form.php:140
50
+ #: contact_form.php:144
51
+ #: contact_form.php:155
52
+ msgid "Yes"
53
+ msgstr ""
54
+
55
+ #: contact_form.php:138
56
+ #: contact_form.php:142
57
+ #: contact_form.php:146
58
+ #: contact_form.php:157
59
+ msgid "No"
60
+ msgstr ""
61
+
62
+ #: contact_form.php:171
63
+ msgid "Operating System"
64
+ msgstr ""
65
+
66
+ #: contact_form.php:172
67
+ msgid "Server"
68
+ msgstr ""
69
+
70
+ # @ contact_form
71
+ #: contact_form.php:173
72
+ #, fuzzy
73
+ msgid "Memory usage"
74
+ msgstr "תוכן ההודעה"
75
+
76
+ #: contact_form.php:174
77
+ msgid "MYSQL Version"
78
+ msgstr ""
79
+
80
+ #: contact_form.php:175
81
+ msgid "SQL Mode"
82
+ msgstr ""
83
+
84
+ #: contact_form.php:176
85
+ msgid "PHP Version"
86
+ msgstr ""
87
+
88
+ #: contact_form.php:177
89
+ msgid "PHP Safe Mode"
90
+ msgstr ""
91
+
92
+ #: contact_form.php:178
93
+ msgid "PHP Allow URL fopen"
94
+ msgstr ""
95
+
96
+ #: contact_form.php:179
97
+ msgid "PHP Memory Limit"
98
+ msgstr ""
99
+
100
+ #: contact_form.php:180
101
+ msgid "PHP Max Upload Size"
102
+ msgstr ""
103
+
104
+ #: contact_form.php:181
105
+ msgid "PHP Max Post Size"
106
+ msgstr ""
107
+
108
+ #: contact_form.php:182
109
+ msgid "PHP Max Script Execute Time"
110
+ msgstr ""
111
+
112
+ #: contact_form.php:183
113
+ msgid "PHP Exif support"
114
+ msgstr ""
115
+
116
+ #: contact_form.php:184
117
+ msgid "PHP IPTC support"
118
+ msgstr ""
119
+
120
+ #: contact_form.php:185
121
+ msgid "PHP XML support"
122
+ msgstr ""
123
+
124
+ # @ contact_form
125
+ #: contact_form.php:186
126
+ #, fuzzy
127
+ msgid "Site URL"
128
+ msgstr "אתר"
129
+
130
+ #: contact_form.php:187
131
+ msgid "Home URL"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:188
135
+ msgid "WordPress Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:189
139
+ msgid "WordPress DB Version"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:190
143
+ msgid "Multisite"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:191
147
+ msgid "Active Theme"
148
+ msgstr ""
149
+
150
+ # @ contact_form
151
+ #: contact_form.php:206
152
+ #, fuzzy
153
+ msgid "Please enter a valid email address."
154
+ msgstr "השתמש במייל זה:"
155
+
156
+ #: contact_form.php:210
157
+ msgid "Email with system info is sent to "
158
+ msgstr ""
159
+
160
+ # @ contact_form
161
+ #: contact_form.php:214
162
+ #: contact_form.php:434
163
+ msgid "Thank you for contacting us."
164
+ msgstr "תודה שיצרת עמנו קשר."
165
+
166
+ # @ contact_form
167
+ #: contact_form.php:242
168
+ #: contact_form.php:1313
169
+ msgid "Sorry, email message could not be delivered."
170
+ msgstr "מצטערים, אי אפשר היה לשלוח את המייל שלך."
171
+
172
  # @ contact_form
173
+ #: contact_form.php:250
174
  #, fuzzy
175
  msgid "Pro plugins"
176
  msgstr "תוספים מומלצים"
177
 
178
  # @ contact_form
179
+ #: contact_form.php:253
180
+ #: contact_form.php:279
181
  msgid "Activated plugins"
182
  msgstr "תוספים פעילים"
183
 
184
  # @ contact_form
185
+ #: contact_form.php:255
186
+ #: contact_form.php:263
187
+ #: contact_form.php:271
188
+ #: contact_form.php:281
189
+ #: contact_form.php:289
190
+ #: contact_form.php:297
191
  msgid "Read more"
192
  msgstr "קרא עוד"
193
 
194
  # @ contact_form
195
+ #: contact_form.php:255
196
+ #: contact_form.php:281
197
+ #: contact_form.php:754
198
+ #: contact_form.php:1002
199
+ #: contact_form.php:1799
200
+ #: contact_form.php:1808
201
  msgid "Settings"
202
  msgstr "הגדרות"
203
 
204
  # @ contact_form
205
+ #: contact_form.php:261
206
+ #: contact_form.php:287
207
  msgid "Installed plugins"
208
  msgstr "תוספים מותקנים"
209
 
210
  # @ contact_form
211
+ #: contact_form.php:269
212
+ #: contact_form.php:295
213
  msgid "Recommended plugins"
214
  msgstr "תוספים מומלצים"
215
 
216
+ #: contact_form.php:271
217
  msgid "Purchase"
218
  msgstr ""
219
 
220
  # @ contact_form
221
+ #: contact_form.php:276
222
  #, fuzzy
223
  msgid "Free plugins"
224
  msgstr "תוספים מומלצים"
225
 
226
  # @ contact_form
227
+ #: contact_form.php:297
228
  msgid "Download"
229
  msgstr "הורד"
230
 
231
  # @ default
232
+ #: contact_form.php:297
233
  #, php-format
234
  msgid "Install %s"
235
  msgstr ""
236
 
237
  # @ contact_form
238
+ #: contact_form.php:297
239
  msgid "Install now from wordpress.org"
240
  msgstr "התקן כעת מ wordpress.org"
241
 
242
  # @ contact_form
243
+ #: contact_form.php:302
244
  #, fuzzy
245
  msgid "If you have any questions, please contact us via"
246
  msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
247
 
248
+ #: contact_form.php:309
249
+ msgid "System status"
250
+ msgstr ""
251
+
252
+ #: contact_form.php:313
253
+ msgid "Environment"
254
+ msgstr ""
255
+
256
+ # @ contact_form
257
+ #: contact_form.php:324
258
+ #, fuzzy
259
+ msgid "Active Plugins"
260
+ msgstr "תוספים פעילים"
261
+
262
+ # @ contact_form
263
+ #: contact_form.php:335
264
+ #, fuzzy
265
+ msgid "Inactive Plugins"
266
+ msgstr "תוספים פעילים"
267
+
268
+ # @ contact_form
269
+ #: contact_form.php:349
270
+ #, fuzzy
271
+ msgid "Send to support"
272
+ msgstr "תמיכה"
273
+
274
+ #: contact_form.php:356
275
+ msgid "Send to custom email &#187;"
276
+ msgstr ""
277
+
278
  # @ contact_form
279
+ #: contact_form.php:372
280
+ #: contact_form.php:750
281
  #, fuzzy
282
  msgid "Contact Form Settings"
283
  msgstr "אפשרויות טופס צור קשר"
284
 
285
  # @ contact_form
286
+ #: contact_form.php:372
287
  msgid "Contact Form"
288
  msgstr "טופס צור קשר"
289
 
290
  # @ contact_form
291
+ #: contact_form.php:373
292
  #, fuzzy
293
  msgid "Contact Form Pro Extra Settings"
294
  msgstr "אפשרויות טופס צור קשר"
295
 
296
  # @ contact_form
297
+ #: contact_form.php:373
298
+ #: contact_form.php:1008
299
  #, fuzzy
300
  msgid "Contact Form Pro"
301
  msgstr "טופס צור קשר"
302
 
303
  # @ contact_form
304
+ #: contact_form.php:412
305
+ #: contact_form.php:897
306
+ #: contact_form.php:926
307
  msgid "Name:"
308
  msgstr "שם:"
309
 
310
  # @ contact_form
311
+ #: contact_form.php:413
312
+ #: contact_form.php:898
313
+ #: contact_form.php:927
314
  #, fuzzy
315
  msgid "Address:"
316
  msgstr "כתובת דוא\\\"ל:"
317
 
318
  # @ contact_form
319
+ #: contact_form.php:414
320
+ #: contact_form.php:899
321
+ #: contact_form.php:928
322
  msgid "Email Address:"
323
  msgstr "כתובת דוא\\\"ל:"
324
 
325
+ #: contact_form.php:415
326
+ #: contact_form.php:900
327
+ #: contact_form.php:929
328
  msgid "Phone number:"
329
  msgstr ""
330
 
331
  # @ contact_form
332
+ #: contact_form.php:416
333
+ #: contact_form.php:901
334
+ #: contact_form.php:930
335
  msgid "Subject:"
336
  msgstr "נושא:"
337
 
338
  # @ contact_form
339
+ #: contact_form.php:417
340
+ #: contact_form.php:902
341
+ #: contact_form.php:931
342
  msgid "Message:"
343
  msgstr "הודעה:"
344
 
345
  # @ contact_form
346
+ #: contact_form.php:418
347
+ #: contact_form.php:903
348
+ #: contact_form.php:932
349
  msgid "Attachment:"
350
  msgstr "קובץ מצורף:"
351
 
352
  # @ contact_form
353
+ #: contact_form.php:419
354
+ #: contact_form.php:474
355
+ #: contact_form.php:904
356
+ #: contact_form.php:933
357
  msgid "Send me a copy"
358
  msgstr "שלח לי עותק"
359
 
360
  # @ contact_form
361
+ #: contact_form.php:420
362
+ #: contact_form.php:905
363
+ #: contact_form.php:934
364
  msgid "Submit"
365
  msgstr "שלח"
366
 
367
  # @ contact_form
368
+ #: contact_form.php:421
369
  msgid "Your name is required."
370
  msgstr "השם שלך הכרחי."
371
 
372
  # @ contact_form
373
+ #: contact_form.php:422
374
  #, fuzzy
375
  msgid "Address is required."
376
  msgstr "כתובת מייל תקנית הכרחית."
377
 
378
  # @ contact_form
379
+ #: contact_form.php:423
380
  #, fuzzy
381
  msgid "A valid email address is required."
382
  msgstr "כתובת מייל תקנית הכרחית."
383
 
384
  # @ contact_form
385
+ #: contact_form.php:424
386
+ #: contact_form.php:469
387
+ #: contact_form.php:472
388
  #, fuzzy
389
  msgid "Phone number is required."
390
  msgstr "השם שלך הכרחי."
391
 
392
  # @ contact_form
393
+ #: contact_form.php:425
394
+ #: contact_form.php:468
395
+ #: contact_form.php:471
396
  msgid "Subject is required."
397
  msgstr "הנושא הכרחי."
398
 
399
  # @ contact_form
400
+ #: contact_form.php:426
401
+ #: contact_form.php:467
402
+ #: contact_form.php:470
403
  msgid "Message text is required."
404
  msgstr "מילוי שדה ההודעה הכרחי."
405
 
406
  # @ contact_form
407
+ #: contact_form.php:427
408
  msgid "File format is not valid."
409
  msgstr "הקובץ המצורף שבור"
410
 
411
+ #: contact_form.php:428
412
  msgid "File upload error."
413
  msgstr ""
414
 
415
+ #: contact_form.php:429
416
  msgid "The file could not be uploaded."
417
  msgstr ""
418
 
419
+ #: contact_form.php:430
420
  msgid "This file is too large."
421
  msgstr ""
422
 
423
  # @ contact_form
424
+ #: contact_form.php:431
425
  msgid "Please fill out the CAPTCHA."
426
  msgstr "אנא השלם את קוד האימות."
427
 
428
  # @ contact_form
429
+ #: contact_form.php:432
430
  msgid "Please make corrections below and try again."
431
  msgstr "אנא עשה תיקונים להלן ונסה שוב."
432
 
433
  # @ contact_form
434
+ #: contact_form.php:705
 
 
 
 
 
435
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
436
  msgstr "אם האפשרות 'הפנה מחדש לדף' מסומנת אז חייבים למלא את שדה כתובת ה URL בפורמט הבא"
437
 
438
  # @ contact_form
439
+ #: contact_form.php:714
440
  msgid "Such user does not exist. Settings are not saved."
441
  msgstr "משתמש כזה אינו קיים. ההגדרות לא נשמרו."
442
 
443
  # @ contact_form
444
+ #: contact_form.php:719
445
+ #: contact_form.php:725
446
  #, fuzzy
447
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
448
  msgstr "בבקשה הזן כתובת מייל נכונה. ההגדרות לא נשמרו."
449
 
450
  # @ contact_form
451
+ #: contact_form.php:730
452
  #, fuzzy
453
  msgid "Settings saved."
454
  msgstr "האפשרויות נשמרו."
455
 
456
  # @ contact_form
457
+ #: contact_form.php:755
458
+ #: contact_form.php:1003
459
  #, fuzzy
460
  msgid "Extra settings"
461
  msgstr "הגדרות"
462
 
463
  # @ contact_form
464
+ #: contact_form.php:760
465
+ #: contact_form.php:1259
466
  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:"
467
  msgstr "אם אתה מעוניין להוסיף טופס צור קשר לאתר שלך, פשוט העתק את קיצור הקוד שלהלן אל הפוסט או הדף או הוידג'ט שלך:"
468
 
469
  # @ contact_form
470
+ #: contact_form.php:761
471
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
472
  msgstr "אם השדות שלהלן ריקים, אז המייל יישלח אל לכתובת שצוינה בעת ההרשמה."
473
 
474
  # @ contact_form
475
+ #: contact_form.php:765
476
  msgid "The user's email address:"
477
  msgstr "השתמש במייל של משתמש וורדפרס:"
478
 
479
  # @ contact_form
480
+ #: contact_form.php:769
481
  msgid "Create a username"
482
  msgstr "בחר שם משתמש"
483
 
484
  # @ contact_form
485
+ #: contact_form.php:774
486
  msgid "Enter a username of the person who should get the messages from the contact form."
487
  msgstr "הגדר שם משתמש, אשר יקבל את ההודעות הנשלחות דרך טופס יצירת הקשר."
488
 
489
  # @ contact_form
490
+ #: contact_form.php:778
491
  msgid "Use this email address:"
492
  msgstr "השתמש במייל זה:"
493
 
494
  # @ contact_form
495
+ #: contact_form.php:781
496
  msgid "Enter the email address you want the messages forwarded to."
497
  msgstr "הגדר כתובת מייל שתשמש לקבלת הודעות."
498
 
499
  # @ contact_form
500
+ #: contact_form.php:785
501
  msgid "Additional options"
502
  msgstr "אפשרויות נוספות"
503
 
504
  # @ contact_form
505
+ #: contact_form.php:788
506
  msgid "What to use?"
507
  msgstr "איזה שימוש?"
508
 
509
  # @ mail-send
510
+ #: contact_form.php:791
511
  msgid "Wp-mail"
512
  msgstr ""
513
 
514
  # @ mail_send
515
+ #: contact_form.php:792
516
  msgid "You can use the wp_mail function for mailing"
517
  msgstr ""
518
 
519
  # @ mail-send
520
+ #: contact_form.php:798
521
  msgid "Mail"
522
  msgstr ""
523
 
524
  # @ mail_send
525
+ #: contact_form.php:799
526
  msgid "To send mail you can use the php mail function"
527
  msgstr ""
528
 
529
  # @ contact_form
530
+ #: contact_form.php:803
531
  #, fuzzy
532
  msgid "Change text of the 'FROM' field"
533
  msgstr "שנה את השדות של טופס יצירת הקשר"
534
 
535
+ #: contact_form.php:809
536
  msgid "Enter the email address in the 'From' field"
537
  msgstr ""
538
 
539
+ #: contact_form.php:811
540
  msgid "User email"
541
  msgstr ""
542
 
543
+ #: contact_form.php:811
544
  msgid "The email address of the user who fills the form will be used in the field 'From'."
545
  msgstr ""
546
 
547
+ #: contact_form.php:813
548
  msgid "This email address will be used in the 'From' field."
549
  msgstr ""
550
 
551
  # @ contact_form
552
+ #: contact_form.php:817
553
  #, fuzzy
554
  msgid "Display fields"
555
  msgstr "הטקסט המוצג"
556
 
557
  # @ contact_form
558
+ #: contact_form.php:819
559
+ #: contact_form.php:849
560
+ #: contact_form.php:1039
561
+ #: contact_form.php:1691
562
  #, fuzzy
563
  msgid "Address"
564
  msgstr "כתובת דוא\\\"ל:"
565
 
566
+ #: contact_form.php:820
567
+ #: contact_form.php:851
568
+ #: contact_form.php:1699
569
  msgid "Phone"
570
  msgstr ""
571
 
572
  # @ contact_form
573
+ #: contact_form.php:821
574
  #, fuzzy
575
  msgid "Attachment block"
576
  msgstr "הצג אפשרות קובץ מצורף"
577
 
578
  # @ contact_form
579
+ #: contact_form.php:821
580
  msgid "Users can attach the following file formats"
581
  msgstr "משתמשים יוכלו לצרף קבצים מהסוגים הבאים"
582
 
583
  # @ contact_form
584
+ #: contact_form.php:822
585
  #, fuzzy
586
  msgid "Tips below the Attachment block"
587
  msgstr "הצג את ההסברים אחרי תיבת הקובץ המצורף"
588
 
589
  # @ contact_form
590
+ #: contact_form.php:823
591
  #, fuzzy
592
  msgid "Send me a copy block"
593
  msgstr "הצג תיבת שלח לי עותק"
594
 
595
+ #: contact_form.php:835
596
+ #: contact_form.php:838
597
+ #: contact_form.php:841
598
+ #: contact_form.php:1068
599
  msgid "Captcha"
600
  msgstr ""
601
 
602
+ #: contact_form.php:835
603
+ #: contact_form.php:838
604
+ #: contact_form.php:841
605
+ #: contact_form.php:1068
606
  msgid "(powered by bestwebsoft.com)"
607
  msgstr ""
608
 
609
  # @ contact_form
610
+ #: contact_form.php:838
611
  #, fuzzy
612
  msgid "Activate captcha"
613
  msgstr "תוספים פעילים"
614
 
615
  # @ contact_form
616
+ #: contact_form.php:841
617
  #, fuzzy
618
  msgid "Download captcha"
619
  msgstr "הורד"
620
 
621
+ #: contact_form.php:846
622
  msgid "Required fields"
623
  msgstr ""
624
 
625
  # @ contact_form
626
+ #: contact_form.php:848
627
+ #: contact_form.php:1034
628
+ #: contact_form.php:1686
629
  msgid "Name"
630
  msgstr "שם"
631
 
632
  # @ contact_form
633
+ #: contact_form.php:850
634
  #, fuzzy
635
  msgid "Email Address"
636
  msgstr "כתובת דוא\\\"ל:"
637
 
638
  # @ contact_form
639
+ #: contact_form.php:852
640
+ #: contact_form.php:1054
641
+ #: contact_form.php:1702
642
  msgid "Subject"
643
  msgstr "נושא"
644
 
645
  # @ contact_form
646
+ #: contact_form.php:853
647
+ #: contact_form.php:1058
648
+ #: contact_form.php:1705
649
  msgid "Message"
650
  msgstr "תוכן ההודעה"
651
 
652
  # @ contact_form
653
+ #: contact_form.php:857
654
  #, fuzzy
655
  msgid "Display additional info in the email"
656
  msgstr "הצג מידע נוסף במייל"
657
 
658
  # @ contact_form
659
+ #: contact_form.php:862
660
+ #: contact_form.php:1658
661
  msgid "Sent from (ip address)"
662
  msgstr "נשלח מ (כתובת IP)"
663
 
664
  # @ contact_form
665
+ #: contact_form.php:863
666
+ #: contact_form.php:1663
667
  msgid "Date/Time"
668
  msgstr "תאריך\\שעה"
669
 
670
  # @ contact_form
671
+ #: contact_form.php:864
672
+ #: contact_form.php:1668
673
  msgid "Sent from (referer)"
674
  msgstr "מגיע מ (השולח)"
675
 
676
  # @ contact_form
677
+ #: contact_form.php:865
678
+ #: contact_form.php:1673
679
  msgid "Using (user agent)"
680
  msgstr "משתמש ב (user agent)"
681
 
682
+ #: contact_form.php:869
683
  msgid "Language settings for the field names in the form"
684
  msgstr ""
685
 
686
+ #: contact_form.php:878
687
  msgid "Add a language"
688
  msgstr ""
689
 
690
  # @ contact_form
691
+ #: contact_form.php:882
692
  #, fuzzy
693
  msgid "Change the names of the contact form fields and error messages"
694
  msgstr "שנה את תוויות הטופס"
695
 
696
+ #: contact_form.php:887
697
+ #: contact_form.php:958
698
  msgid "English"
699
  msgstr ""
700
 
701
+ #: contact_form.php:906
702
+ #: contact_form.php:935
703
  msgid "Error message for the Name field"
704
  msgstr ""
705
 
706
+ #: contact_form.php:907
707
+ #: contact_form.php:936
708
  msgid "Error message for the Address field"
709
  msgstr ""
710
 
711
+ #: contact_form.php:908
712
+ #: contact_form.php:937
713
  msgid "Error message for the Email field"
714
  msgstr ""
715
 
716
+ #: contact_form.php:909
717
+ #: contact_form.php:938
718
  msgid "Error message for the Phone field"
719
  msgstr ""
720
 
721
+ #: contact_form.php:910
722
+ #: contact_form.php:939
723
  msgid "Error message for the Subject field"
724
  msgstr ""
725
 
726
+ #: contact_form.php:911
727
+ #: contact_form.php:940
728
  msgid "Error message for the Message field"
729
  msgstr ""
730
 
731
+ #: contact_form.php:912
732
+ #: contact_form.php:941
733
  msgid "Error message about the file type for the Attachment field"
734
  msgstr ""
735
 
736
+ #: contact_form.php:913
737
+ #: contact_form.php:942
738
  msgid "Error message while uploading a file for the Attachment field to the server"
739
  msgstr ""
740
 
741
+ #: contact_form.php:914
742
+ #: contact_form.php:943
743
  msgid "Error message while moving the file for the Attachment field"
744
  msgstr ""
745
 
746
+ #: contact_form.php:915
747
+ #: contact_form.php:944
748
  msgid "Error message when file size limit for the Attachment field is exceeded"
749
  msgstr ""
750
 
751
+ #: contact_form.php:916
752
+ #: contact_form.php:945
753
  msgid "Error message for the Captcha field"
754
  msgstr ""
755
 
756
+ #: contact_form.php:917
757
+ #: contact_form.php:946
758
  msgid "Error message for the whole form"
759
  msgstr ""
760
 
761
+ #: contact_form.php:919
762
+ #: contact_form.php:948
763
+ #: contact_form.php:967
764
+ #: contact_form.php:973
765
  msgid "Use shortcode"
766
  msgstr ""
767
 
768
+ #: contact_form.php:919
769
+ #: contact_form.php:948
770
+ #: contact_form.php:967
771
+ #: contact_form.php:973
772
  msgid "for this language"
773
  msgstr ""
774
 
775
  # @ contact_form
776
+ #: contact_form.php:955
777
  msgid "Action after email is sent"
778
  msgstr "הפעולה שלאחר שליחת הטופס"
779
 
780
  # @ contact_form
781
+ #: contact_form.php:957
782
  msgid "Display text"
783
  msgstr "הטקסט המוצג"
784
 
785
  # @ contact_form
786
+ #: contact_form.php:966
787
+ #: contact_form.php:972
788
  msgid "Text"
789
  msgstr "טקסט"
790
 
791
  # @ contact_form
792
+ #: contact_form.php:979
793
  msgid "Redirect to the page"
794
  msgstr "הפנה אל הדף"
795
 
796
  # @ contact_form
797
+ #: contact_form.php:980
798
  msgid "Url"
799
  msgstr "URL"
800
 
801
  # @ default
802
+ #: contact_form.php:985
803
+ #: contact_form.php:1160
804
  msgid "Save Changes"
805
  msgstr ""
806
 
807
  # @ contact_form
808
+ #: contact_form.php:1000
809
  #, fuzzy
810
  msgid "Contact Form Pro | Extra Settings"
811
  msgstr "אפשרויות טופס צור קשר"
812
 
813
+ #: contact_form.php:1007
814
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
815
  msgstr ""
816
 
817
+ #: contact_form.php:1014
818
  msgid "Errors output"
819
  msgstr ""
820
 
821
+ #: contact_form.php:1017
822
  msgid "Display error messages"
823
  msgstr ""
824
 
825
+ #: contact_form.php:1018
826
  msgid "Color of the input field errors."
827
  msgstr ""
828
 
829
+ #: contact_form.php:1019
830
  msgid "Display error messages & color of the input field errors"
831
  msgstr ""
832
 
833
+ #: contact_form.php:1024
834
  msgid "Add placeholder to the input blocks"
835
  msgstr ""
836
 
837
  # @ contact_form
838
+ #: contact_form.php:1030
839
  #, fuzzy
840
  msgid "Add tooltips"
841
  msgstr "אפשרויות נוספות"
842
 
843
  # @ contact_form
844
+ #: contact_form.php:1044
845
  #, fuzzy
846
  msgid "Email address"
847
  msgstr "כתובת דוא\\\"ל:"
848
 
849
+ #: contact_form.php:1049
850
  msgid "Phone Number"
851
  msgstr ""
852
 
853
  # @ contact_form
854
+ #: contact_form.php:1063
855
  #, fuzzy
856
  msgid "Attachment"
857
  msgstr "קובץ מצורף:"
858
 
859
  # @ contact_form
860
+ #: contact_form.php:1073
861
  #, fuzzy
862
  msgid "Style options"
863
  msgstr "אפשרויות נוספות"
864
 
865
+ #: contact_form.php:1076
866
  msgid "Text color"
867
  msgstr ""
868
 
869
+ #: contact_form.php:1079
870
+ #: contact_form.php:1084
871
+ #: contact_form.php:1094
872
+ #: contact_form.php:1099
873
+ #: contact_form.php:1104
874
+ #: contact_form.php:1109
875
+ #: contact_form.php:1119
876
+ #: contact_form.php:1124
877
+ #: contact_form.php:1130
878
+ #: contact_form.php:1141
879
+ #: contact_form.php:1146
880
+ #: contact_form.php:1151
881
  msgid "Default"
882
  msgstr ""
883
 
884
+ #: contact_form.php:1081
885
  msgid "Label text color"
886
  msgstr ""
887
 
888
+ #: contact_form.php:1086
889
  msgid "Placeholder color"
890
  msgstr ""
891
 
892
+ #: contact_form.php:1091
893
  msgid "Errors color"
894
  msgstr ""
895
 
896
+ #: contact_form.php:1096
897
  msgid "Error text color"
898
  msgstr ""
899
 
900
+ #: contact_form.php:1101
901
  msgid "Background color of the input field errors"
902
  msgstr ""
903
 
904
+ #: contact_form.php:1106
905
  msgid "Border color of the input field errors"
906
  msgstr ""
907
 
908
+ #: contact_form.php:1111
909
  msgid "Placeholder color of the input field errors"
910
  msgstr ""
911
 
912
  # @ contact_form
913
+ #: contact_form.php:1116
914
  #, fuzzy
915
  msgid "Input fields"
916
  msgstr "הטקסט המוצג"
917
 
918
+ #: contact_form.php:1121
919
  msgid "Input fields background color"
920
  msgstr ""
921
 
922
+ #: contact_form.php:1126
923
  msgid "Text fields color"
924
  msgstr ""
925
 
926
+ #: contact_form.php:1128
927
  msgid "Border width in px, numbers only"
928
  msgstr ""
929
 
930
+ #: contact_form.php:1132
931
+ #: contact_form.php:1153
932
  msgid "Border color"
933
  msgstr ""
934
 
935
  # @ contact_form
936
+ #: contact_form.php:1137
937
  #, fuzzy
938
  msgid "Submit button"
939
  msgstr "שלח"
940
 
941
+ #: contact_form.php:1139
942
  msgid "Width in px, numbers only"
943
  msgstr ""
944
 
945
+ #: contact_form.php:1143
946
  msgid "Button color"
947
  msgstr ""
948
 
949
+ #: contact_form.php:1148
950
  msgid "Button text color"
951
  msgstr ""
952
 
953
  # @ contact_form
954
+ #: contact_form.php:1164
955
  #, fuzzy
956
  msgid "Contact Form Pro | Preview"
957
  msgstr "טופס צור קשר"
958
 
959
+ #: contact_form.php:1167
960
  msgid "Show with errors"
961
  msgstr ""
962
 
963
+ #: contact_form.php:1175
964
+ #: contact_form.php:1177
965
  msgid "Please enter your full name..."
966
  msgstr ""
967
 
968
+ #: contact_form.php:1188
969
+ #: contact_form.php:1190
970
  msgid "Please enter your address..."
971
  msgstr ""
972
 
973
  # @ contact_form
974
+ #: contact_form.php:1199
975
+ #: contact_form.php:1201
976
  #, fuzzy
977
  msgid "Please enter your email address..."
978
  msgstr "השתמש במייל זה:"
979
 
980
+ #: contact_form.php:1210
981
+ #: contact_form.php:1212
982
  msgid "Please enter your phone number..."
983
  msgstr ""
984
 
985
+ #: contact_form.php:1221
986
+ #: contact_form.php:1223
987
  msgid "Please enter subject..."
988
  msgstr ""
989
 
990
+ #: contact_form.php:1231
991
+ #: contact_form.php:1233
992
  msgid "Please enter your message..."
993
  msgstr ""
994
 
995
+ #: contact_form.php:1244
996
  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"
997
  msgstr ""
998
 
999
  # @ contact_form
1000
+ #: contact_form.php:1397
 
 
 
 
 
1001
  msgid "You can attach the following file formats"
1002
  msgstr "אתה יכול לצרף קבצים מן הסוגים הבאים"
1003
 
1004
  # @ contact_form
1005
+ #: contact_form.php:1681
1006
  msgid "Contact from"
1007
  msgstr "טופס צור קשר"
1008
 
1009
  # @ contact_form
1010
+ #: contact_form.php:1694
1011
  msgid "Email"
1012
  msgstr "כתובת מייל"
1013
 
1014
  # @ contact_form
1015
+ #: contact_form.php:1708
1016
  msgid "Site"
1017
  msgstr "אתר"
1018
 
1019
  # @ contact_form
1020
+ #: contact_form.php:1758
1021
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
1022
  msgstr "אם אתה יכול לראות את ה MIME הזה, אז הלקוח שלך אינו יכול לקבל סוגי MIME!"
1023
 
1024
  # @ contact_form
1025
+ #: contact_form.php:1809
1026
  msgid "FAQ"
1027
  msgstr "שאלות ותשובות"
1028
 
1029
  # @ contact_form
1030
+ #: contact_form.php:1810
1031
  msgid "Support"
1032
  msgstr "תמיכה"
1033
 
1034
+ #: contact_form.php:1858
1035
  msgid "Are you sure that you want to delete this language data?"
1036
  msgstr ""
1037
 
languages/contact_form-hi_IN.mo CHANGED
Binary file
languages/contact_form-hi_IN.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: 2013-07-16 16:04+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:04+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,757 +16,922 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "सक्रिय प्लगिन"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "अधिक पढ़ें"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "सेटिंग्स"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "स्थापित plugins"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "अनुशंसित प्लगिन"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "अनुशंसित प्लगिन"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "डाउनलोड"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "स्थापित%s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Wordpress.org से अब स्थापित"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "यदि आप कोई प्रश्न हैं, हमें plugin@bestwebsoft.com के माध्यम से संपर्क करें या हमारी साइट पर हमारे संपर्क फार्म में भरें"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "संपर्क प्रपत्र विकल्प"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "संपर्क प्रपत्र"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "संपर्क प्रपत्र विकल्प"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "संपर्क प्रपत्र"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "नाम:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "ई - मेल पता:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "ई - मेल पता:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "विषय:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "संदेश:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "लगाव:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "मुझे एक प्रतिलिपि भेजें"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "सबमिट"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "आपका नाम की आवश्यकता है."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "एक उचित ई - मेल पते की आवश्यकता है."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "एक उचित ई - मेल पते की आवश्यकता है."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "आपका नाम की आवश्यकता है."
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "विषय पाठ की आवश्यकता होती है"
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "संदेश पाठ की आवश्यकता है."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "अटैचमेंट टूटा ."
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "कॅप्चा पूरा करें."
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "सुधार नीचे बनाने के लिए और फिर प्रयास करें"
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "हमसे संपर्क करने के लिए धन्यवाद.हमसे संपर्क करने के लिए धन्यवाद."
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr ""
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "इस तरह के उपयोगकर्ता मौजूद नहीं है. सेटिंग्स सहेजे नहीं जाते हैं."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "कृपया सही ईमेल इनपुट करे . सेटिंग्स सहेजे नहीं जाते हैं."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "विकल्प बचाया."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "सेटिंग्स"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "यदि आप अपनी वेबसाइट पर एक संपर्क फ़ॉर्म को जोड़ना चाहते हैं, बस कॉपी और अपनी पोस्ट या पृष्ठ या विजेट पर यह लघुकोडः को रखा:"
251
 
252
- #: contact_form.php:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "यदि नीचे दी गई फ़ील्ड्स में जानकारी खाली रहे हैं तो जो पंजीकरण के दौरान निर्दिष्ट किया गया था एक पता करने के लिए संदेश भेजने के लिए किया जाएगा."
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "WordPress के उपयोगकर्ता का ईमेल का उपयोग करें:"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "उपयोगकर्ता नाम का चयन करें"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "उपयोगकर्ता का नाम है जो एक संपर्क फ़ॉर्म से संदेश मिल जाएगा"
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "इस ईमेल का उपयोग करें:"
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "एक ईमेल पता है जो संदेश प्राप्त करने के लिए इस्तेमाल किया जाएगा "
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "अतिरिक्त विकल्प"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr "किस का उपयोग करें?."
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr "मेल भेजने के लिए आपको WordPress के wp_mail समारोह का उपयोग कर सकते हैं"
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "मेल"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr "मेल भेजने के लिए आपको php मेल समारोह का उपयोग कर सकते हैं"
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "संपर्क प्रपत्र की फ़ील्ड्स से बदलें"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "ई - मेल पता:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr ""
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "उपयोगकर्ताओं को निम्नलिखित प्रकार की फ़ाइलों को संलग्न कर सकते हैं"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "मुझे एक प्रति ब्लॉक भेजें प्रदर्शित करें"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "सक्रिय प्लगिन"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "डाउनलोड"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "नाम"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "ई - मेल पता:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "विषय"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "संदेश"
409
 
410
- #: contact_form.php:646
411
  #, fuzzy
412
  msgid "Display additional info in the email"
413
  msgstr "ईमेल में अतिरिक्त जानकारी प्रदर्शित करें"
414
 
415
- #: contact_form.php:651
416
- #: contact_form.php:1447
417
  msgid "Sent from (ip address)"
418
  msgstr "(आईपी पते से भेजा गया)"
419
 
420
- #: contact_form.php:652
421
- #: contact_form.php:1452
422
  msgid "Date/Time"
423
  msgstr "दिनांक / समय"
424
 
425
- #: contact_form.php:653
426
- #: contact_form.php:1457
427
  msgid "Sent from (referer)"
428
  msgstr "से आ रहा है (referer)"
429
 
430
- #: contact_form.php:654
431
- #: contact_form.php:1462
432
  msgid "Using (user agent)"
433
  msgstr "उपयोग करना (प्रयोक्ता एजेंट)"
434
 
435
- #: contact_form.php:658
436
  msgid "Language settings for the field names in the form"
437
  msgstr ""
438
 
439
- #: contact_form.php:667
440
  msgid "Add a language"
441
  msgstr ""
442
 
443
- #: contact_form.php:671
444
  #, fuzzy
445
  msgid "Change the names of the contact form fields and error messages"
446
  msgstr "संपर्क प्रपत्र का फ़ील्ड्स के लिए लेबल बदलें"
447
 
448
- #: contact_form.php:676
449
- #: contact_form.php:747
450
  msgid "English"
451
  msgstr ""
452
 
453
- #: contact_form.php:695
454
- #: contact_form.php:724
455
  msgid "Error message for the Name field"
456
  msgstr ""
457
 
458
- #: contact_form.php:696
459
- #: contact_form.php:725
460
  msgid "Error message for the Address field"
461
  msgstr ""
462
 
463
- #: contact_form.php:697
464
- #: contact_form.php:726
465
  msgid "Error message for the Email field"
466
  msgstr ""
467
 
468
- #: contact_form.php:698
469
- #: contact_form.php:727
470
  msgid "Error message for the Phone field"
471
  msgstr ""
472
 
473
- #: contact_form.php:699
474
- #: contact_form.php:728
475
  msgid "Error message for the Subject field"
476
  msgstr ""
477
 
478
- #: contact_form.php:700
479
- #: contact_form.php:729
480
  msgid "Error message for the Message field"
481
  msgstr ""
482
 
483
- #: contact_form.php:701
484
- #: contact_form.php:730
485
  msgid "Error message about the file type for the Attachment field"
486
  msgstr ""
487
 
488
- #: contact_form.php:702
489
- #: contact_form.php:731
490
  msgid "Error message while uploading a file for the Attachment field to the server"
491
  msgstr ""
492
 
493
- #: contact_form.php:703
494
- #: contact_form.php:732
495
  msgid "Error message while moving the file for the Attachment field"
496
  msgstr ""
497
 
498
- #: contact_form.php:704
499
- #: contact_form.php:733
500
  msgid "Error message when file size limit for the Attachment field is exceeded"
501
  msgstr ""
502
 
503
- #: contact_form.php:705
504
- #: contact_form.php:734
505
  msgid "Error message for the Captcha field"
506
  msgstr ""
507
 
508
- #: contact_form.php:706
509
- #: contact_form.php:735
510
  msgid "Error message for the whole form"
511
  msgstr ""
512
 
513
- #: contact_form.php:708
514
- #: contact_form.php:737
515
- #: contact_form.php:756
516
- #: contact_form.php:762
517
  msgid "Use shortcode"
518
  msgstr ""
519
 
520
- #: contact_form.php:708
521
- #: contact_form.php:737
522
- #: contact_form.php:756
523
- #: contact_form.php:762
524
  msgid "for this language"
525
  msgstr ""
526
 
527
- #: contact_form.php:744
528
  msgid "Action after email is sent"
529
  msgstr ""
530
 
531
- #: contact_form.php:746
532
  #, fuzzy
533
  msgid "Display text"
534
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
535
 
536
- #: contact_form.php:755
537
- #: contact_form.php:761
538
  msgid "Text"
539
  msgstr ""
540
 
541
- #: contact_form.php:768
542
  msgid "Redirect to the page"
543
  msgstr ""
544
 
545
- #: contact_form.php:769
546
  msgid "Url"
547
  msgstr ""
548
 
549
- #: contact_form.php:774
550
- #: contact_form.php:949
551
  msgid "Save Changes"
552
  msgstr "परिवर्तन सहेजें"
553
 
554
- #: contact_form.php:789
555
  #, fuzzy
556
  msgid "Contact Form Pro | Extra Settings"
557
  msgstr "संपर्क प्रपत्र विकल्प"
558
 
559
- #: contact_form.php:796
560
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
561
  msgstr ""
562
 
563
- #: contact_form.php:803
564
  msgid "Errors output"
565
  msgstr ""
566
 
567
- #: contact_form.php:806
568
  msgid "Display error messages"
569
  msgstr ""
570
 
571
- #: contact_form.php:807
572
  msgid "Color of the input field errors."
573
  msgstr ""
574
 
575
- #: contact_form.php:808
576
  msgid "Display error messages & color of the input field errors"
577
  msgstr ""
578
 
579
- #: contact_form.php:813
580
  msgid "Add placeholder to the input blocks"
581
  msgstr ""
582
 
583
- #: contact_form.php:819
584
  #, fuzzy
585
  msgid "Add tooltips"
586
  msgstr "अतिरिक्त विकल्प"
587
 
588
- #: contact_form.php:833
589
  #, fuzzy
590
  msgid "Email address"
591
  msgstr "ई - मेल पता:"
592
 
593
- #: contact_form.php:838
594
  msgid "Phone Number"
595
  msgstr ""
596
 
597
- #: contact_form.php:852
598
  #, fuzzy
599
  msgid "Attachment"
600
  msgstr "लगाव:"
601
 
602
- #: contact_form.php:862
603
  #, fuzzy
604
  msgid "Style options"
605
  msgstr "अतिरिक्त विकल्प"
606
 
607
- #: contact_form.php:865
608
  msgid "Text color"
609
  msgstr ""
610
 
611
- #: contact_form.php:868
612
- #: contact_form.php:873
613
- #: contact_form.php:883
614
- #: contact_form.php:888
615
- #: contact_form.php:893
616
- #: contact_form.php:898
617
- #: contact_form.php:908
618
- #: contact_form.php:913
619
- #: contact_form.php:919
620
- #: contact_form.php:930
621
- #: contact_form.php:935
622
- #: contact_form.php:940
623
  msgid "Default"
624
  msgstr ""
625
 
626
- #: contact_form.php:870
627
  msgid "Label text color"
628
  msgstr ""
629
 
630
- #: contact_form.php:875
631
  msgid "Placeholder color"
632
  msgstr ""
633
 
634
- #: contact_form.php:880
635
  msgid "Errors color"
636
  msgstr ""
637
 
638
- #: contact_form.php:885
639
  msgid "Error text color"
640
  msgstr ""
641
 
642
- #: contact_form.php:890
643
  msgid "Background color of the input field errors"
644
  msgstr ""
645
 
646
- #: contact_form.php:895
647
  msgid "Border color of the input field errors"
648
  msgstr ""
649
 
650
- #: contact_form.php:900
651
  msgid "Placeholder color of the input field errors"
652
  msgstr ""
653
 
654
- #: contact_form.php:905
655
  #, fuzzy
656
  msgid "Input fields"
657
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
658
 
659
- #: contact_form.php:910
660
  msgid "Input fields background color"
661
  msgstr ""
662
 
663
- #: contact_form.php:915
664
  msgid "Text fields color"
665
  msgstr ""
666
 
667
- #: contact_form.php:917
668
  msgid "Border width in px, numbers only"
669
  msgstr ""
670
 
671
- #: contact_form.php:921
672
- #: contact_form.php:942
673
  msgid "Border color"
674
  msgstr ""
675
 
676
- #: contact_form.php:926
677
  #, fuzzy
678
  msgid "Submit button"
679
  msgstr "सबमिट"
680
 
681
- #: contact_form.php:928
682
  msgid "Width in px, numbers only"
683
  msgstr ""
684
 
685
- #: contact_form.php:932
686
  msgid "Button color"
687
  msgstr ""
688
 
689
- #: contact_form.php:937
690
  msgid "Button text color"
691
  msgstr ""
692
 
693
- #: contact_form.php:953
694
  #, fuzzy
695
  msgid "Contact Form Pro | Preview"
696
  msgstr "संपर्क प्रपत्र"
697
 
698
- #: contact_form.php:956
699
  msgid "Show with errors"
700
  msgstr ""
701
 
702
- #: contact_form.php:964
703
- #: contact_form.php:966
704
  msgid "Please enter your full name..."
705
  msgstr ""
706
 
707
- #: contact_form.php:977
708
- #: contact_form.php:979
709
  msgid "Please enter your address..."
710
  msgstr ""
711
 
712
- #: contact_form.php:988
713
- #: contact_form.php:990
714
  #, fuzzy
715
  msgid "Please enter your email address..."
716
  msgstr "इस ईमेल का उपयोग करें:"
717
 
718
- #: contact_form.php:999
719
- #: contact_form.php:1001
720
  msgid "Please enter your phone number..."
721
  msgstr ""
722
 
723
- #: contact_form.php:1010
724
- #: contact_form.php:1012
725
  msgid "Please enter subject..."
726
  msgstr ""
727
 
728
- #: contact_form.php:1020
729
- #: contact_form.php:1022
730
  msgid "Please enter your message..."
731
  msgstr ""
732
 
733
- #: contact_form.php:1033
734
  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"
735
  msgstr ""
736
 
737
- #: contact_form.php:1102
738
- msgid "Sorry, email message could not be delivered."
739
- msgstr "क्षमा करें, आपका ई - मेल वितरित नहीं किया जा सकता है."
740
-
741
- #: contact_form.php:1186
742
  msgid "You can attach the following file formats"
743
  msgstr "आप निम्न प्रकार का फ़ाइलों को संलग्न कर सकते हैं"
744
 
745
- #: contact_form.php:1470
746
  msgid "Contact from"
747
  msgstr "संपर्क करें"
748
 
749
- #: contact_form.php:1483
750
  msgid "Email"
751
  msgstr "ईमेल"
752
 
753
- #: contact_form.php:1497
754
  msgid "Site"
755
  msgstr "साइट"
756
 
757
- #: contact_form.php:1547
758
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
759
  msgstr "यदि आप अपने ग्राहक की तुलना में इस माइम देख सकते हैं MIME प्रकार स्वीकार नहीं करता है!"
760
 
761
- #: contact_form.php:1598
762
  msgid "FAQ"
763
  msgstr "अक्सर पूछे जाने वाले प्रश्न"
764
 
765
- #: contact_form.php:1599
766
  msgid "Support"
767
  msgstr "समर्थन"
768
 
769
- #: contact_form.php:1647
770
  msgid "Are you sure that you want to delete this language data?"
771
  msgstr ""
772
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:56+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:56+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "संदेश"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "साइट"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "इस ईमेल का उपयोग करें:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "हमसे संपर्क करने के लिए धन्यवाद.हमसे संपर्क करने के लिए धन्यवाद."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "क्षमा करें, आपका ई - मेल वितरित नहीं किया जा सकता है."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "सक्रिय प्लगिन"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "अधिक पढ़ें"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "सेटिंग्स"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "स्थापित plugins"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "अनुशंसित प्लगिन"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "अनुशंसित प्लगिन"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "डाउनलोड"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "स्थापित%s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Wordpress.org से अब स्थापित"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "यदि आप कोई प्रश्न हैं, हमें plugin@bestwebsoft.com के माध्यम से संपर्क करें या हमारी साइट पर हमारे संपर्क फार्म में भरें"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "सक्रिय प्लगिन"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "सक्रिय प्लगिन"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "समर्थन"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "संपर्क प्रपत्र विकल्प"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "संपर्क प्रपत्र"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "संपर्क प्रपत्र विकल्प"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "संपर्क प्रपत्र"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "नाम:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "ई - मेल पता:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "ई - मेल पता:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "विषय:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "संदेश:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "लगाव:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "मुझे एक प्रतिलिपि भेजें"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "सबमिट"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "आपका नाम की आवश्यकता है."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "एक उचित ई - मेल पते की आवश्यकता है."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "एक उचित ई - मेल पते की आवश्यकता है."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "आपका नाम की आवश्यकता है."
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "विषय पाठ की आवश्यकता होती है"
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "संदेश पाठ की आवश्यकता है."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "अटैचमेंट टूटा ."
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "कॅप्चा पूरा करें."
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "सुधार नीचे बनाने के लिए और फिर प्रयास करें"
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr ""
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "इस तरह के उपयोगकर्ता मौजूद नहीं है. सेटिंग्स सहेजे नहीं जाते हैं."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "कृपया सही ईमेल इनपुट करे . सेटिंग्स सहेजे नहीं जाते हैं."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "विकल्प बचाया."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "सेटिंग्स"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "यदि आप अपनी वेबसाइट पर एक संपर्क फ़ॉर्म को जोड़ना चाहते हैं, बस कॉपी और अपनी पोस्ट या पृष्ठ या विजेट पर यह लघुकोडः को रखा:"
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "यदि नीचे दी गई फ़ील्ड्स में जानकारी खाली रहे हैं तो जो पंजीकरण के दौरान निर्दिष्ट किया गया था एक पता करने के लिए संदेश भेजने के लिए किया जाएगा."
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "WordPress के उपयोगकर्ता का ईमेल का उपयोग करें:"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "उपयोगकर्ता नाम का चयन करें"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "उपयोगकर्ता का नाम है जो एक संपर्क फ़ॉर्म से संदेश मिल जाएगा"
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "इस ईमेल का उपयोग करें:"
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "एक ईमेल पता है जो संदेश प्राप्त करने के लिए इस्तेमाल किया जाएगा "
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "अतिरिक्त विकल्प"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr "किस का उपयोग करें?."
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr "मेल भेजने के लिए आपको WordPress के wp_mail समारोह का उपयोग कर सकते हैं"
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "मेल"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr "मेल भेजने के लिए आपको php मेल समारोह का उपयोग कर सकते हैं"
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "संपर्क प्रपत्र की फ़ील्ड्स से बदलें"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "ई - मेल पता:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr ""
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "उपयोगकर्ताओं को निम्नलिखित प्रकार की फ़ाइलों को संलग्न कर सकते हैं"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "मुझे एक प्रति ब्लॉक भेजें प्रदर्शित करें"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "सक्रिय प्लगिन"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "डाउनलोड"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "नाम"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "ई - मेल पता:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "विषय"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "संदेश"
578
 
579
+ #: contact_form.php:857
580
  #, fuzzy
581
  msgid "Display additional info in the email"
582
  msgstr "ईमेल में अतिरिक्त जानकारी प्रदर्शित करें"
583
 
584
+ #: contact_form.php:862
585
+ #: contact_form.php:1658
586
  msgid "Sent from (ip address)"
587
  msgstr "(आईपी पते से भेजा गया)"
588
 
589
+ #: contact_form.php:863
590
+ #: contact_form.php:1663
591
  msgid "Date/Time"
592
  msgstr "दिनांक / समय"
593
 
594
+ #: contact_form.php:864
595
+ #: contact_form.php:1668
596
  msgid "Sent from (referer)"
597
  msgstr "से आ रहा है (referer)"
598
 
599
+ #: contact_form.php:865
600
+ #: contact_form.php:1673
601
  msgid "Using (user agent)"
602
  msgstr "उपयोग करना (प्रयोक्ता एजेंट)"
603
 
604
+ #: contact_form.php:869
605
  msgid "Language settings for the field names in the form"
606
  msgstr ""
607
 
608
+ #: contact_form.php:878
609
  msgid "Add a language"
610
  msgstr ""
611
 
612
+ #: contact_form.php:882
613
  #, fuzzy
614
  msgid "Change the names of the contact form fields and error messages"
615
  msgstr "संपर्क प्रपत्र का फ़ील्ड्स के लिए लेबल बदलें"
616
 
617
+ #: contact_form.php:887
618
+ #: contact_form.php:958
619
  msgid "English"
620
  msgstr ""
621
 
622
+ #: contact_form.php:906
623
+ #: contact_form.php:935
624
  msgid "Error message for the Name field"
625
  msgstr ""
626
 
627
+ #: contact_form.php:907
628
+ #: contact_form.php:936
629
  msgid "Error message for the Address field"
630
  msgstr ""
631
 
632
+ #: contact_form.php:908
633
+ #: contact_form.php:937
634
  msgid "Error message for the Email field"
635
  msgstr ""
636
 
637
+ #: contact_form.php:909
638
+ #: contact_form.php:938
639
  msgid "Error message for the Phone field"
640
  msgstr ""
641
 
642
+ #: contact_form.php:910
643
+ #: contact_form.php:939
644
  msgid "Error message for the Subject field"
645
  msgstr ""
646
 
647
+ #: contact_form.php:911
648
+ #: contact_form.php:940
649
  msgid "Error message for the Message field"
650
  msgstr ""
651
 
652
+ #: contact_form.php:912
653
+ #: contact_form.php:941
654
  msgid "Error message about the file type for the Attachment field"
655
  msgstr ""
656
 
657
+ #: contact_form.php:913
658
+ #: contact_form.php:942
659
  msgid "Error message while uploading a file for the Attachment field to the server"
660
  msgstr ""
661
 
662
+ #: contact_form.php:914
663
+ #: contact_form.php:943
664
  msgid "Error message while moving the file for the Attachment field"
665
  msgstr ""
666
 
667
+ #: contact_form.php:915
668
+ #: contact_form.php:944
669
  msgid "Error message when file size limit for the Attachment field is exceeded"
670
  msgstr ""
671
 
672
+ #: contact_form.php:916
673
+ #: contact_form.php:945
674
  msgid "Error message for the Captcha field"
675
  msgstr ""
676
 
677
+ #: contact_form.php:917
678
+ #: contact_form.php:946
679
  msgid "Error message for the whole form"
680
  msgstr ""
681
 
682
+ #: contact_form.php:919
683
+ #: contact_form.php:948
684
+ #: contact_form.php:967
685
+ #: contact_form.php:973
686
  msgid "Use shortcode"
687
  msgstr ""
688
 
689
+ #: contact_form.php:919
690
+ #: contact_form.php:948
691
+ #: contact_form.php:967
692
+ #: contact_form.php:973
693
  msgid "for this language"
694
  msgstr ""
695
 
696
+ #: contact_form.php:955
697
  msgid "Action after email is sent"
698
  msgstr ""
699
 
700
+ #: contact_form.php:957
701
  #, fuzzy
702
  msgid "Display text"
703
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
704
 
705
+ #: contact_form.php:966
706
+ #: contact_form.php:972
707
  msgid "Text"
708
  msgstr ""
709
 
710
+ #: contact_form.php:979
711
  msgid "Redirect to the page"
712
  msgstr ""
713
 
714
+ #: contact_form.php:980
715
  msgid "Url"
716
  msgstr ""
717
 
718
+ #: contact_form.php:985
719
+ #: contact_form.php:1160
720
  msgid "Save Changes"
721
  msgstr "परिवर्तन सहेजें"
722
 
723
+ #: contact_form.php:1000
724
  #, fuzzy
725
  msgid "Contact Form Pro | Extra Settings"
726
  msgstr "संपर्क प्रपत्र विकल्प"
727
 
728
+ #: contact_form.php:1007
729
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
730
  msgstr ""
731
 
732
+ #: contact_form.php:1014
733
  msgid "Errors output"
734
  msgstr ""
735
 
736
+ #: contact_form.php:1017
737
  msgid "Display error messages"
738
  msgstr ""
739
 
740
+ #: contact_form.php:1018
741
  msgid "Color of the input field errors."
742
  msgstr ""
743
 
744
+ #: contact_form.php:1019
745
  msgid "Display error messages & color of the input field errors"
746
  msgstr ""
747
 
748
+ #: contact_form.php:1024
749
  msgid "Add placeholder to the input blocks"
750
  msgstr ""
751
 
752
+ #: contact_form.php:1030
753
  #, fuzzy
754
  msgid "Add tooltips"
755
  msgstr "अतिरिक्त विकल्प"
756
 
757
+ #: contact_form.php:1044
758
  #, fuzzy
759
  msgid "Email address"
760
  msgstr "ई - मेल पता:"
761
 
762
+ #: contact_form.php:1049
763
  msgid "Phone Number"
764
  msgstr ""
765
 
766
+ #: contact_form.php:1063
767
  #, fuzzy
768
  msgid "Attachment"
769
  msgstr "लगाव:"
770
 
771
+ #: contact_form.php:1073
772
  #, fuzzy
773
  msgid "Style options"
774
  msgstr "अतिरिक्त विकल्प"
775
 
776
+ #: contact_form.php:1076
777
  msgid "Text color"
778
  msgstr ""
779
 
780
+ #: contact_form.php:1079
781
+ #: contact_form.php:1084
782
+ #: contact_form.php:1094
783
+ #: contact_form.php:1099
784
+ #: contact_form.php:1104
785
+ #: contact_form.php:1109
786
+ #: contact_form.php:1119
787
+ #: contact_form.php:1124
788
+ #: contact_form.php:1130
789
+ #: contact_form.php:1141
790
+ #: contact_form.php:1146
791
+ #: contact_form.php:1151
792
  msgid "Default"
793
  msgstr ""
794
 
795
+ #: contact_form.php:1081
796
  msgid "Label text color"
797
  msgstr ""
798
 
799
+ #: contact_form.php:1086
800
  msgid "Placeholder color"
801
  msgstr ""
802
 
803
+ #: contact_form.php:1091
804
  msgid "Errors color"
805
  msgstr ""
806
 
807
+ #: contact_form.php:1096
808
  msgid "Error text color"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1101
812
  msgid "Background color of the input field errors"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1106
816
  msgid "Border color of the input field errors"
817
  msgstr ""
818
 
819
+ #: contact_form.php:1111
820
  msgid "Placeholder color of the input field errors"
821
  msgstr ""
822
 
823
+ #: contact_form.php:1116
824
  #, fuzzy
825
  msgid "Input fields"
826
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
827
 
828
+ #: contact_form.php:1121
829
  msgid "Input fields background color"
830
  msgstr ""
831
 
832
+ #: contact_form.php:1126
833
  msgid "Text fields color"
834
  msgstr ""
835
 
836
+ #: contact_form.php:1128
837
  msgid "Border width in px, numbers only"
838
  msgstr ""
839
 
840
+ #: contact_form.php:1132
841
+ #: contact_form.php:1153
842
  msgid "Border color"
843
  msgstr ""
844
 
845
+ #: contact_form.php:1137
846
  #, fuzzy
847
  msgid "Submit button"
848
  msgstr "सबमिट"
849
 
850
+ #: contact_form.php:1139
851
  msgid "Width in px, numbers only"
852
  msgstr ""
853
 
854
+ #: contact_form.php:1143
855
  msgid "Button color"
856
  msgstr ""
857
 
858
+ #: contact_form.php:1148
859
  msgid "Button text color"
860
  msgstr ""
861
 
862
+ #: contact_form.php:1164
863
  #, fuzzy
864
  msgid "Contact Form Pro | Preview"
865
  msgstr "संपर्क प्रपत्र"
866
 
867
+ #: contact_form.php:1167
868
  msgid "Show with errors"
869
  msgstr ""
870
 
871
+ #: contact_form.php:1175
872
+ #: contact_form.php:1177
873
  msgid "Please enter your full name..."
874
  msgstr ""
875
 
876
+ #: contact_form.php:1188
877
+ #: contact_form.php:1190
878
  msgid "Please enter your address..."
879
  msgstr ""
880
 
881
+ #: contact_form.php:1199
882
+ #: contact_form.php:1201
883
  #, fuzzy
884
  msgid "Please enter your email address..."
885
  msgstr "इस ईमेल का उपयोग करें:"
886
 
887
+ #: contact_form.php:1210
888
+ #: contact_form.php:1212
889
  msgid "Please enter your phone number..."
890
  msgstr ""
891
 
892
+ #: contact_form.php:1221
893
+ #: contact_form.php:1223
894
  msgid "Please enter subject..."
895
  msgstr ""
896
 
897
+ #: contact_form.php:1231
898
+ #: contact_form.php:1233
899
  msgid "Please enter your message..."
900
  msgstr ""
901
 
902
+ #: contact_form.php:1244
903
  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"
904
  msgstr ""
905
 
906
+ #: contact_form.php:1397
 
 
 
 
907
  msgid "You can attach the following file formats"
908
  msgstr "आप निम्न प्रकार का फ़ाइलों को संलग्न कर सकते हैं"
909
 
910
+ #: contact_form.php:1681
911
  msgid "Contact from"
912
  msgstr "संपर्क करें"
913
 
914
+ #: contact_form.php:1694
915
  msgid "Email"
916
  msgstr "ईमेल"
917
 
918
+ #: contact_form.php:1708
919
  msgid "Site"
920
  msgstr "साइट"
921
 
922
+ #: contact_form.php:1758
923
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
924
  msgstr "यदि आप अपने ग्राहक की तुलना में इस माइम देख सकते हैं MIME प्रकार स्वीकार नहीं करता है!"
925
 
926
+ #: contact_form.php:1809
927
  msgid "FAQ"
928
  msgstr "अक्सर पूछे जाने वाले प्रश्न"
929
 
930
+ #: contact_form.php:1810
931
  msgid "Support"
932
  msgstr "समर्थन"
933
 
934
+ #: contact_form.php:1858
935
  msgid "Are you sure that you want to delete this language data?"
936
  msgstr ""
937
 
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: 2013-07-16 16:04+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:05+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Karoly Kovacs <karcsi1978@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,761 +17,926 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  #, fuzzy
22
  msgid "Pro plugins"
23
  msgstr "Ajánlott pluginok"
24
 
25
- #: contact_form.php:103
26
- #: contact_form.php:129
27
  msgid "Activated plugins"
28
  msgstr "Aktivált pluginok"
29
 
30
- #: contact_form.php:105
31
- #: contact_form.php:113
32
- #: contact_form.php:121
33
- #: contact_form.php:131
34
- #: contact_form.php:139
35
- #: contact_form.php:147
36
  msgid "Read more"
37
  msgstr "Részletek megtekintése"
38
 
39
- #: contact_form.php:105
40
- #: contact_form.php:131
41
- #: contact_form.php:543
42
- #: contact_form.php:791
43
- #: contact_form.php:1588
44
- #: contact_form.php:1597
45
  msgid "Settings"
46
  msgstr "Beállítások"
47
 
48
- #: contact_form.php:111
49
- #: contact_form.php:137
50
  msgid "Installed plugins"
51
  msgstr "Telepített pluginok"
52
 
53
- #: contact_form.php:119
54
- #: contact_form.php:145
55
  msgid "Recommended plugins"
56
  msgstr "Ajánlott pluginok"
57
 
58
- #: contact_form.php:121
59
  msgid "Purchase"
60
  msgstr ""
61
 
62
- #: contact_form.php:126
63
  #, fuzzy
64
  msgid "Free plugins"
65
  msgstr "Ajánlott pluginok"
66
 
67
- #: contact_form.php:147
68
  msgid "Download"
69
  msgstr "Letöltés"
70
 
71
- #: contact_form.php:147
72
  #, php-format
73
  msgid "Install %s"
74
  msgstr "%s telepítése"
75
 
76
- #: contact_form.php:147
77
  msgid "Install now from wordpress.org"
78
  msgstr "Telepítés most a wordpress.org oldalról"
79
 
80
- #: contact_form.php:152
81
  #, fuzzy
82
  msgid "If you have any questions, please contact us via"
83
  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"
84
 
85
- #: contact_form.php:161
86
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  #, fuzzy
88
  msgid "Contact Form Settings"
89
  msgstr "Kapcsolatfelvételi Ürlap Beállítások"
90
 
91
- #: contact_form.php:161
92
  msgid "Contact Form"
93
  msgstr "Kapcsolatfelvételi Ürlap"
94
 
95
- #: contact_form.php:162
96
  #, fuzzy
97
  msgid "Contact Form Pro Extra Settings"
98
  msgstr "Kapcsolatfelvételi Ürlap Beállítások"
99
 
100
- #: contact_form.php:162
101
- #: contact_form.php:797
102
  #, fuzzy
103
  msgid "Contact Form Pro"
104
  msgstr "Kapcsolatfelvételi Ürlap"
105
 
106
- #: contact_form.php:201
107
- #: contact_form.php:686
108
- #: contact_form.php:715
109
  msgid "Name:"
110
  msgstr "Noév:"
111
 
112
- #: contact_form.php:202
113
- #: contact_form.php:687
114
- #: contact_form.php:716
115
  #, fuzzy
116
  msgid "Address:"
117
  msgstr "Email cím:"
118
 
119
- #: contact_form.php:203
120
- #: contact_form.php:688
121
- #: contact_form.php:717
122
  msgid "Email Address:"
123
  msgstr "Email cím:"
124
 
125
- #: contact_form.php:204
126
- #: contact_form.php:689
127
- #: contact_form.php:718
128
  msgid "Phone number:"
129
  msgstr "Telefonszám:"
130
 
131
- #: contact_form.php:205
132
- #: contact_form.php:690
133
- #: contact_form.php:719
134
  msgid "Subject:"
135
  msgstr "Tárgy:"
136
 
137
- #: contact_form.php:206
138
- #: contact_form.php:691
139
- #: contact_form.php:720
140
  msgid "Message:"
141
  msgstr "Üzenet:"
142
 
143
- #: contact_form.php:207
144
- #: contact_form.php:692
145
- #: contact_form.php:721
146
  msgid "Attachment:"
147
  msgstr "Csatolmány:"
148
 
149
- #: contact_form.php:208
150
- #: contact_form.php:263
151
- #: contact_form.php:693
152
- #: contact_form.php:722
153
  msgid "Send me a copy"
154
  msgstr "Kérek másolatot"
155
 
156
- #: contact_form.php:209
157
- #: contact_form.php:694
158
- #: contact_form.php:723
159
  msgid "Submit"
160
  msgstr "Küldés"
161
 
162
- #: contact_form.php:210
163
  msgid "Your name is required."
164
  msgstr "Név megadása kötelező."
165
 
166
- #: contact_form.php:211
167
  #, fuzzy
168
  msgid "Address is required."
169
  msgstr "Valós email cím megadása kötelező."
170
 
171
- #: contact_form.php:212
172
  #, fuzzy
173
  msgid "A valid email address is required."
174
  msgstr "Valós email cím megadása kötelező."
175
 
176
- #: contact_form.php:213
177
- #: contact_form.php:258
178
- #: contact_form.php:261
179
  msgid "Phone number is required."
180
  msgstr "Le numéro de téléphone est obligatoire."
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "Tárgy megadása kötelező."
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "Üzenet megírása kötelező."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "Fájl formátuma nem megengedett."
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "Kérem töltse ki a CAPTCHA mezőt."
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Kérem javítsa ki a szükséges mezőket és próbálja újra."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Köszönjük az üzenetét."
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  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"
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Nincs ilyen felhasználó. Beállítások nem kerültek mentésre."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
233
  msgstr "Kérem valós email címet adjon meg a 'FKITÖL' mezőben. Beállítások nem kerültek mentésre."
234
 
235
- #: contact_form.php:519
236
  #, fuzzy
237
  msgid "Settings saved."
238
  msgstr "Opciók elmentve."
239
 
240
- #: contact_form.php:544
241
- #: contact_form.php:792
242
  #, fuzzy
243
  msgid "Extra settings"
244
  msgstr "Beállítások"
245
 
246
- #: contact_form.php:549
247
- #: contact_form.php:1048
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 "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:"
250
 
251
- #: contact_form.php:550
252
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
253
  msgstr "Amennyiben ezeket a mezőket üresen hagyja, az üzenet a regisztráció során megadott email címre lesz elküldve."
254
 
255
- #: contact_form.php:554
256
  msgid "The user's email address:"
257
  msgstr "A felhasználó email címe:"
258
 
259
- #: contact_form.php:558
260
  msgid "Create a username"
261
  msgstr "felhasználónév létrehozása"
262
 
263
- #: contact_form.php:563
264
  msgid "Enter a username of the person who should get the messages from the contact form."
265
  msgstr "Adja meg azon személy felhasználónevét, akitől az üzeneteket szeretné kapni a Kapcsolatfelvételi Ürlap segítségével."
266
 
267
- #: contact_form.php:567
268
  msgid "Use this email address:"
269
  msgstr "Ezen email cím használata:"
270
 
271
- #: contact_form.php:570
272
  msgid "Enter the email address you want the messages forwarded to."
273
  msgstr "Adja meg az email címet, ahova az üzenetek érkezzenek."
274
 
275
- #: contact_form.php:574
276
  msgid "Additional options"
277
  msgstr "További opciók"
278
 
279
- #: contact_form.php:577
280
  msgid "What to use?"
281
  msgstr "Mit szeretne használni?"
282
 
283
- #: contact_form.php:580
284
  msgid "Wp-mail"
285
  msgstr "Wp-mail"
286
 
287
- #: contact_form.php:581
288
  msgid "You can use the wp_mail function for mailing"
289
  msgstr "Használhatja a wp_mail funkciót a levelezéshez"
290
 
291
- #: contact_form.php:587
292
  msgid "Mail"
293
  msgstr "E-mail"
294
 
295
- #: contact_form.php:588
296
  msgid "To send mail you can use the php mail function"
297
  msgstr "Email küldéshez használhatja a php mail funkciót"
298
 
299
- #: contact_form.php:592
300
  msgid "Change text of the 'FROM' field"
301
  msgstr "A 'KITÖL' mező szövegének módosítása"
302
 
303
- #: contact_form.php:598
304
  msgid "Enter the email address in the 'From' field"
305
  msgstr "Adja meg a 'KITÖL' mező email címét"
306
 
307
- #: contact_form.php:600
308
  msgid "User email"
309
  msgstr ""
310
 
311
- #: contact_form.php:600
312
  #, fuzzy
313
  msgid "The email address of the user who fills the form will be used in the field 'From'."
314
  msgstr "A felhasználó e-mail címe, akinek az adatai szerepelnek a 'KITÖL' mezőben."
315
 
316
- #: contact_form.php:602
317
  msgid "This email address will be used in the 'From' field."
318
  msgstr "Ez az email cím szerepel a 'KITÖL' mezőben."
319
 
320
- #: contact_form.php:606
321
  #, fuzzy
322
  msgid "Display fields"
323
  msgstr "Szöveg megjelenítése"
324
 
325
- #: contact_form.php:608
326
- #: contact_form.php:638
327
- #: contact_form.php:828
328
- #: contact_form.php:1480
329
  #, fuzzy
330
  msgid "Address"
331
  msgstr "Email cím:"
332
 
333
- #: contact_form.php:609
334
- #: contact_form.php:640
335
- #: contact_form.php:1488
336
  msgid "Phone"
337
  msgstr "Telefonszám"
338
 
339
- #: contact_form.php:610
340
  #, fuzzy
341
  msgid "Attachment block"
342
  msgstr "Csatolmány doboz megjelenítése"
343
 
344
- #: contact_form.php:610
345
  msgid "Users can attach the following file formats"
346
  msgstr "A felhasználók a következő fájlformátumokat csatolhatják"
347
 
348
- #: contact_form.php:611
349
  #, fuzzy
350
  msgid "Tips below the Attachment block"
351
  msgstr "Tippek megjelenítése a Csatolmányok doboz alatt"
352
 
353
- #: contact_form.php:612
354
  #, fuzzy
355
  msgid "Send me a copy block"
356
  msgstr "A 'Kérek másolatot' opció megjelenítése"
357
 
358
- #: contact_form.php:624
359
- #: contact_form.php:627
360
- #: contact_form.php:630
361
- #: contact_form.php:857
362
  msgid "Captcha"
363
  msgstr ""
364
 
365
- #: contact_form.php:624
366
- #: contact_form.php:627
367
- #: contact_form.php:630
368
- #: contact_form.php:857
369
  msgid "(powered by bestwebsoft.com)"
370
  msgstr ""
371
 
372
- #: contact_form.php:627
373
  #, fuzzy
374
  msgid "Activate captcha"
375
  msgstr "Aktivált pluginok"
376
 
377
- #: contact_form.php:630
378
  #, fuzzy
379
  msgid "Download captcha"
380
  msgstr "Letöltés"
381
 
382
- #: contact_form.php:635
383
  msgid "Required fields"
384
  msgstr "Kötelező mező"
385
 
386
- #: contact_form.php:637
387
- #: contact_form.php:823
388
- #: contact_form.php:1475
389
  msgid "Name"
390
  msgstr "Név"
391
 
392
- #: contact_form.php:639
393
  #, fuzzy
394
  msgid "Email Address"
395
  msgstr "Email cím:"
396
 
397
- #: contact_form.php:641
398
- #: contact_form.php:843
399
- #: contact_form.php:1491
400
  msgid "Subject"
401
  msgstr "Sujet"
402
 
403
- #: contact_form.php:642
404
- #: contact_form.php:847
405
- #: contact_form.php:1494
406
  msgid "Message"
407
  msgstr "Üzenet"
408
 
409
- #: contact_form.php:646
410
  #, fuzzy
411
  msgid "Display additional info in the email"
412
  msgstr "További információk megjelenítése az emailben"
413
 
414
- #: contact_form.php:651
415
- #: contact_form.php:1447
416
  msgid "Sent from (ip address)"
417
  msgstr "Küldő (IP cím)"
418
 
419
- #: contact_form.php:652
420
- #: contact_form.php:1452
421
  msgid "Date/Time"
422
  msgstr "Dátum/Idő"
423
 
424
- #: contact_form.php:653
425
- #: contact_form.php:1457
426
  msgid "Sent from (referer)"
427
  msgstr "Envoyer de (référence)"
428
 
429
- #: contact_form.php:654
430
- #: contact_form.php:1462
431
  msgid "Using (user agent)"
432
  msgstr "Alkalmazás (böngésző)"
433
 
434
- #: contact_form.php:658
435
  msgid "Language settings for the field names in the form"
436
  msgstr "Az ürlap mezőinek nyelvi beállítása"
437
 
438
- #: contact_form.php:667
439
  #, fuzzy
440
  msgid "Add a language"
441
  msgstr "Nyelv hozzáadása"
442
 
443
- #: contact_form.php:671
444
  msgid "Change the names of the contact form fields and error messages"
445
  msgstr "A Kapcsolatfelvételi Ürlap mező és hibaüzenet neveinek módosítása"
446
 
447
- #: contact_form.php:676
448
- #: contact_form.php:747
449
  msgid "English"
450
  msgstr "Angol"
451
 
452
- #: contact_form.php:695
453
- #: contact_form.php:724
454
  msgid "Error message for the Name field"
455
  msgstr "Név mező hibaüzenet"
456
 
457
- #: contact_form.php:696
458
- #: contact_form.php:725
459
  #, fuzzy
460
  msgid "Error message for the Address field"
461
  msgstr "Üzenet mező hibaüzenet"
462
 
463
- #: contact_form.php:697
464
- #: contact_form.php:726
465
  msgid "Error message for the Email field"
466
  msgstr "Email cím mező hibaüzenet"
467
 
468
- #: contact_form.php:698
469
- #: contact_form.php:727
470
  msgid "Error message for the Phone field"
471
  msgstr "Telefonszám mező hibaüzenet"
472
 
473
- #: contact_form.php:699
474
- #: contact_form.php:728
475
  msgid "Error message for the Subject field"
476
  msgstr "Tárgy mező hibaüzenet"
477
 
478
- #: contact_form.php:700
479
- #: contact_form.php:729
480
  msgid "Error message for the Message field"
481
  msgstr "Üzenet mező hibaüzenet"
482
 
483
- #: contact_form.php:701
484
- #: contact_form.php:730
485
  #, fuzzy
486
  msgid "Error message about the file type for the Attachment field"
487
  msgstr "Csatolmány doboz hibaüzenet"
488
 
489
- #: contact_form.php:702
490
- #: contact_form.php:731
491
  #, fuzzy
492
  msgid "Error message while uploading a file for the Attachment field to the server"
493
  msgstr "Csatolmány doboz hibaüzenet"
494
 
495
- #: contact_form.php:703
496
- #: contact_form.php:732
497
  #, fuzzy
498
  msgid "Error message while moving the file for the Attachment field"
499
  msgstr "Csatolmány doboz hibaüzenet"
500
 
501
- #: contact_form.php:704
502
- #: contact_form.php:733
503
  #, fuzzy
504
  msgid "Error message when file size limit for the Attachment field is exceeded"
505
  msgstr "Csatolmány doboz hibaüzenet"
506
 
507
- #: contact_form.php:705
508
- #: contact_form.php:734
509
  msgid "Error message for the Captcha field"
510
  msgstr "CAPTCHA mező hibaüzenet"
511
 
512
- #: contact_form.php:706
513
- #: contact_form.php:735
514
  msgid "Error message for the whole form"
515
  msgstr "Hibaüzenet az egész form számára"
516
 
517
- #: contact_form.php:708
518
- #: contact_form.php:737
519
- #: contact_form.php:756
520
- #: contact_form.php:762
521
  msgid "Use shortcode"
522
  msgstr "Gyorskód használata"
523
 
524
- #: contact_form.php:708
525
- #: contact_form.php:737
526
- #: contact_form.php:756
527
- #: contact_form.php:762
528
  msgid "for this language"
529
  msgstr "ehhez a nyelvhez"
530
 
531
- #: contact_form.php:744
532
  msgid "Action after email is sent"
533
  msgstr "Művelet az email elküldése után"
534
 
535
- #: contact_form.php:746
536
  msgid "Display text"
537
  msgstr "Szöveg megjelenítése"
538
 
539
- #: contact_form.php:755
540
- #: contact_form.php:761
541
  msgid "Text"
542
  msgstr "Szöveg"
543
 
544
- #: contact_form.php:768
545
  msgid "Redirect to the page"
546
  msgstr "Átirányítás egy weboldalra"
547
 
548
- #: contact_form.php:769
549
  msgid "Url"
550
  msgstr "Url"
551
 
552
- #: contact_form.php:774
553
- #: contact_form.php:949
554
  msgid "Save Changes"
555
  msgstr "Módosítások Mentése"
556
 
557
- #: contact_form.php:789
558
  #, fuzzy
559
  msgid "Contact Form Pro | Extra Settings"
560
  msgstr "Kapcsolatfelvételi Ürlap Beállítások"
561
 
562
- #: contact_form.php:796
563
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
564
  msgstr ""
565
 
566
- #: contact_form.php:803
567
  msgid "Errors output"
568
  msgstr ""
569
 
570
- #: contact_form.php:806
571
  msgid "Display error messages"
572
  msgstr ""
573
 
574
- #: contact_form.php:807
575
  msgid "Color of the input field errors."
576
  msgstr ""
577
 
578
- #: contact_form.php:808
579
  #, fuzzy
580
  msgid "Display error messages & color of the input field errors"
581
  msgstr "Tárgy mező hibaüzenet"
582
 
583
- #: contact_form.php:813
584
  msgid "Add placeholder to the input blocks"
585
  msgstr ""
586
 
587
- #: contact_form.php:819
588
  #, fuzzy
589
  msgid "Add tooltips"
590
  msgstr "További opciók"
591
 
592
- #: contact_form.php:833
593
  #, fuzzy
594
  msgid "Email address"
595
  msgstr "Email cím:"
596
 
597
- #: contact_form.php:838
598
  #, fuzzy
599
  msgid "Phone Number"
600
  msgstr "Telefonszám:"
601
 
602
- #: contact_form.php:852
603
  #, fuzzy
604
  msgid "Attachment"
605
  msgstr "Csatolmány:"
606
 
607
- #: contact_form.php:862
608
  #, fuzzy
609
  msgid "Style options"
610
  msgstr "További opciók"
611
 
612
- #: contact_form.php:865
613
  msgid "Text color"
614
  msgstr ""
615
 
616
- #: contact_form.php:868
617
- #: contact_form.php:873
618
- #: contact_form.php:883
619
- #: contact_form.php:888
620
- #: contact_form.php:893
621
- #: contact_form.php:898
622
- #: contact_form.php:908
623
- #: contact_form.php:913
624
- #: contact_form.php:919
625
- #: contact_form.php:930
626
- #: contact_form.php:935
627
- #: contact_form.php:940
628
  msgid "Default"
629
  msgstr ""
630
 
631
- #: contact_form.php:870
632
  msgid "Label text color"
633
  msgstr ""
634
 
635
- #: contact_form.php:875
636
  msgid "Placeholder color"
637
  msgstr ""
638
 
639
- #: contact_form.php:880
640
  msgid "Errors color"
641
  msgstr ""
642
 
643
- #: contact_form.php:885
644
  msgid "Error text color"
645
  msgstr ""
646
 
647
- #: contact_form.php:890
648
  msgid "Background color of the input field errors"
649
  msgstr ""
650
 
651
- #: contact_form.php:895
652
  msgid "Border color of the input field errors"
653
  msgstr ""
654
 
655
- #: contact_form.php:900
656
  msgid "Placeholder color of the input field errors"
657
  msgstr ""
658
 
659
- #: contact_form.php:905
660
  #, fuzzy
661
  msgid "Input fields"
662
  msgstr "Szöveg megjelenítése"
663
 
664
- #: contact_form.php:910
665
  msgid "Input fields background color"
666
  msgstr ""
667
 
668
- #: contact_form.php:915
669
  msgid "Text fields color"
670
  msgstr ""
671
 
672
- #: contact_form.php:917
673
  msgid "Border width in px, numbers only"
674
  msgstr ""
675
 
676
- #: contact_form.php:921
677
- #: contact_form.php:942
678
  msgid "Border color"
679
  msgstr ""
680
 
681
- #: contact_form.php:926
682
  #, fuzzy
683
  msgid "Submit button"
684
  msgstr "Küldés"
685
 
686
- #: contact_form.php:928
687
  msgid "Width in px, numbers only"
688
  msgstr ""
689
 
690
- #: contact_form.php:932
691
  msgid "Button color"
692
  msgstr ""
693
 
694
- #: contact_form.php:937
695
  msgid "Button text color"
696
  msgstr ""
697
 
698
- #: contact_form.php:953
699
  #, fuzzy
700
  msgid "Contact Form Pro | Preview"
701
  msgstr "Kapcsolatfelvételi Ürlap"
702
 
703
- #: contact_form.php:956
704
  msgid "Show with errors"
705
  msgstr ""
706
 
707
- #: contact_form.php:964
708
- #: contact_form.php:966
709
  msgid "Please enter your full name..."
710
  msgstr ""
711
 
712
- #: contact_form.php:977
713
- #: contact_form.php:979
714
  msgid "Please enter your address..."
715
  msgstr ""
716
 
717
- #: contact_form.php:988
718
- #: contact_form.php:990
719
  #, fuzzy
720
  msgid "Please enter your email address..."
721
  msgstr "Ezen email cím használata:"
722
 
723
- #: contact_form.php:999
724
- #: contact_form.php:1001
725
  msgid "Please enter your phone number..."
726
  msgstr ""
727
 
728
- #: contact_form.php:1010
729
- #: contact_form.php:1012
730
  msgid "Please enter subject..."
731
  msgstr ""
732
 
733
- #: contact_form.php:1020
734
- #: contact_form.php:1022
735
  msgid "Please enter your message..."
736
  msgstr ""
737
 
738
- #: contact_form.php:1033
739
  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"
740
  msgstr ""
741
 
742
- #: contact_form.php:1102
743
- msgid "Sorry, email message could not be delivered."
744
- msgstr "Sajnáljuk, az email üzenet nem továbbítható."
745
-
746
- #: contact_form.php:1186
747
  msgid "You can attach the following file formats"
748
  msgstr "A következő fájlformátumokat csatolhatja"
749
 
750
- #: contact_form.php:1470
751
  msgid "Contact from"
752
  msgstr "Üzenet küldött"
753
 
754
- #: contact_form.php:1483
755
  msgid "Email"
756
  msgstr "E-mail"
757
 
758
- #: contact_form.php:1497
759
  msgid "Site"
760
  msgstr "Oldal"
761
 
762
- #: contact_form.php:1547
763
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
764
  msgstr "Amennyiben ez a MIME nem jelenik meg, akkör az ön Levelezője nem támogatja ezt a MIME típust !"
765
 
766
- #: contact_form.php:1598
767
  msgid "FAQ"
768
  msgstr "GYIK (FAQ)"
769
 
770
- #: contact_form.php:1599
771
  msgid "Support"
772
  msgstr "Támogatás"
773
 
774
- #: contact_form.php:1647
775
  msgid "Are you sure that you want to delete this language data?"
776
  msgstr "Biztosan törölni szeretné ezt a nyelvi adatot ?"
777
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:56+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:56+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Karoly Kovacs <karcsi1978@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:106
21
+ msgid "Not set"
22
+ msgstr ""
23
+
24
+ #: contact_form.php:108
25
+ #: contact_form.php:112
26
+ msgid "On"
27
+ msgstr ""
28
+
29
+ #: contact_form.php:110
30
+ #: contact_form.php:114
31
+ msgid "Off"
32
+ msgstr ""
33
+
34
+ #: contact_form.php:118
35
+ #: contact_form.php:122
36
+ #: contact_form.php:126
37
+ #: contact_form.php:130
38
+ #: contact_form.php:134
39
+ #: contact_form.php:160
40
+ msgid "N/A"
41
+ msgstr ""
42
+
43
+ #: contact_form.php:132
44
+ msgid " Mb"
45
+ msgstr ""
46
+
47
+ #: contact_form.php:136
48
+ #: contact_form.php:140
49
+ #: contact_form.php:144
50
+ #: contact_form.php:155
51
+ msgid "Yes"
52
+ msgstr ""
53
+
54
+ #: contact_form.php:138
55
+ #: contact_form.php:142
56
+ #: contact_form.php:146
57
+ #: contact_form.php:157
58
+ msgid "No"
59
+ msgstr ""
60
+
61
+ #: contact_form.php:171
62
+ msgid "Operating System"
63
+ msgstr ""
64
+
65
+ #: contact_form.php:172
66
+ msgid "Server"
67
+ msgstr ""
68
+
69
+ #: contact_form.php:173
70
+ #, fuzzy
71
+ msgid "Memory usage"
72
+ msgstr "Üzenet"
73
+
74
+ #: contact_form.php:174
75
+ msgid "MYSQL Version"
76
+ msgstr ""
77
+
78
+ #: contact_form.php:175
79
+ msgid "SQL Mode"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:176
83
+ msgid "PHP Version"
84
+ msgstr ""
85
+
86
+ #: contact_form.php:177
87
+ msgid "PHP Safe Mode"
88
+ msgstr ""
89
+
90
+ #: contact_form.php:178
91
+ msgid "PHP Allow URL fopen"
92
+ msgstr ""
93
+
94
+ #: contact_form.php:179
95
+ msgid "PHP Memory Limit"
96
+ msgstr ""
97
+
98
+ #: contact_form.php:180
99
+ msgid "PHP Max Upload Size"
100
+ msgstr ""
101
+
102
+ #: contact_form.php:181
103
+ msgid "PHP Max Post Size"
104
+ msgstr ""
105
+
106
+ #: contact_form.php:182
107
+ msgid "PHP Max Script Execute Time"
108
+ msgstr ""
109
+
110
+ #: contact_form.php:183
111
+ msgid "PHP Exif support"
112
+ msgstr ""
113
+
114
+ #: contact_form.php:184
115
+ msgid "PHP IPTC support"
116
+ msgstr ""
117
+
118
+ #: contact_form.php:185
119
+ msgid "PHP XML support"
120
+ msgstr ""
121
+
122
+ #: contact_form.php:186
123
+ #, fuzzy
124
+ msgid "Site URL"
125
+ msgstr "Oldal"
126
+
127
+ #: contact_form.php:187
128
+ msgid "Home URL"
129
+ msgstr ""
130
+
131
+ #: contact_form.php:188
132
+ msgid "WordPress Version"
133
+ msgstr ""
134
+
135
+ #: contact_form.php:189
136
+ msgid "WordPress DB Version"
137
+ msgstr ""
138
+
139
+ #: contact_form.php:190
140
+ msgid "Multisite"
141
+ msgstr ""
142
+
143
+ #: contact_form.php:191
144
+ msgid "Active Theme"
145
+ msgstr ""
146
+
147
+ #: contact_form.php:206
148
+ #, fuzzy
149
+ msgid "Please enter a valid email address."
150
+ msgstr "Ezen email cím használata:"
151
+
152
+ #: contact_form.php:210
153
+ msgid "Email with system info is sent to "
154
+ msgstr ""
155
+
156
+ #: contact_form.php:214
157
+ #: contact_form.php:434
158
+ msgid "Thank you for contacting us."
159
+ msgstr "Köszönjük az üzenetét."
160
+
161
+ #: contact_form.php:242
162
+ #: contact_form.php:1313
163
+ msgid "Sorry, email message could not be delivered."
164
+ msgstr "Sajnáljuk, az email üzenet nem továbbítható."
165
+
166
+ #: contact_form.php:250
167
  #, fuzzy
168
  msgid "Pro plugins"
169
  msgstr "Ajánlott pluginok"
170
 
171
+ #: contact_form.php:253
172
+ #: contact_form.php:279
173
  msgid "Activated plugins"
174
  msgstr "Aktivált pluginok"
175
 
176
+ #: contact_form.php:255
177
+ #: contact_form.php:263
178
+ #: contact_form.php:271
179
+ #: contact_form.php:281
180
+ #: contact_form.php:289
181
+ #: contact_form.php:297
182
  msgid "Read more"
183
  msgstr "Részletek megtekintése"
184
 
185
+ #: contact_form.php:255
186
+ #: contact_form.php:281
187
+ #: contact_form.php:754
188
+ #: contact_form.php:1002
189
+ #: contact_form.php:1799
190
+ #: contact_form.php:1808
191
  msgid "Settings"
192
  msgstr "Beállítások"
193
 
194
+ #: contact_form.php:261
195
+ #: contact_form.php:287
196
  msgid "Installed plugins"
197
  msgstr "Telepített pluginok"
198
 
199
+ #: contact_form.php:269
200
+ #: contact_form.php:295
201
  msgid "Recommended plugins"
202
  msgstr "Ajánlott pluginok"
203
 
204
+ #: contact_form.php:271
205
  msgid "Purchase"
206
  msgstr ""
207
 
208
+ #: contact_form.php:276
209
  #, fuzzy
210
  msgid "Free plugins"
211
  msgstr "Ajánlott pluginok"
212
 
213
+ #: contact_form.php:297
214
  msgid "Download"
215
  msgstr "Letöltés"
216
 
217
+ #: contact_form.php:297
218
  #, php-format
219
  msgid "Install %s"
220
  msgstr "%s telepítése"
221
 
222
+ #: contact_form.php:297
223
  msgid "Install now from wordpress.org"
224
  msgstr "Telepítés most a wordpress.org oldalról"
225
 
226
+ #: contact_form.php:302
227
  #, fuzzy
228
  msgid "If you have any questions, please contact us via"
229
  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"
230
 
231
+ #: contact_form.php:309
232
+ msgid "System status"
233
+ msgstr ""
234
+
235
+ #: contact_form.php:313
236
+ msgid "Environment"
237
+ msgstr ""
238
+
239
+ #: contact_form.php:324
240
+ #, fuzzy
241
+ msgid "Active Plugins"
242
+ msgstr "Aktivált pluginok"
243
+
244
+ #: contact_form.php:335
245
+ #, fuzzy
246
+ msgid "Inactive Plugins"
247
+ msgstr "Aktivált pluginok"
248
+
249
+ #: contact_form.php:349
250
+ #, fuzzy
251
+ msgid "Send to support"
252
+ msgstr "Támogatás"
253
+
254
+ #: contact_form.php:356
255
+ msgid "Send to custom email &#187;"
256
+ msgstr ""
257
+
258
+ #: contact_form.php:372
259
+ #: contact_form.php:750
260
  #, fuzzy
261
  msgid "Contact Form Settings"
262
  msgstr "Kapcsolatfelvételi Ürlap Beállítások"
263
 
264
+ #: contact_form.php:372
265
  msgid "Contact Form"
266
  msgstr "Kapcsolatfelvételi Ürlap"
267
 
268
+ #: contact_form.php:373
269
  #, fuzzy
270
  msgid "Contact Form Pro Extra Settings"
271
  msgstr "Kapcsolatfelvételi Ürlap Beállítások"
272
 
273
+ #: contact_form.php:373
274
+ #: contact_form.php:1008
275
  #, fuzzy
276
  msgid "Contact Form Pro"
277
  msgstr "Kapcsolatfelvételi Ürlap"
278
 
279
+ #: contact_form.php:412
280
+ #: contact_form.php:897
281
+ #: contact_form.php:926
282
  msgid "Name:"
283
  msgstr "Noév:"
284
 
285
+ #: contact_form.php:413
286
+ #: contact_form.php:898
287
+ #: contact_form.php:927
288
  #, fuzzy
289
  msgid "Address:"
290
  msgstr "Email cím:"
291
 
292
+ #: contact_form.php:414
293
+ #: contact_form.php:899
294
+ #: contact_form.php:928
295
  msgid "Email Address:"
296
  msgstr "Email cím:"
297
 
298
+ #: contact_form.php:415
299
+ #: contact_form.php:900
300
+ #: contact_form.php:929
301
  msgid "Phone number:"
302
  msgstr "Telefonszám:"
303
 
304
+ #: contact_form.php:416
305
+ #: contact_form.php:901
306
+ #: contact_form.php:930
307
  msgid "Subject:"
308
  msgstr "Tárgy:"
309
 
310
+ #: contact_form.php:417
311
+ #: contact_form.php:902
312
+ #: contact_form.php:931
313
  msgid "Message:"
314
  msgstr "Üzenet:"
315
 
316
+ #: contact_form.php:418
317
+ #: contact_form.php:903
318
+ #: contact_form.php:932
319
  msgid "Attachment:"
320
  msgstr "Csatolmány:"
321
 
322
+ #: contact_form.php:419
323
+ #: contact_form.php:474
324
+ #: contact_form.php:904
325
+ #: contact_form.php:933
326
  msgid "Send me a copy"
327
  msgstr "Kérek másolatot"
328
 
329
+ #: contact_form.php:420
330
+ #: contact_form.php:905
331
+ #: contact_form.php:934
332
  msgid "Submit"
333
  msgstr "Küldés"
334
 
335
+ #: contact_form.php:421
336
  msgid "Your name is required."
337
  msgstr "Név megadása kötelező."
338
 
339
+ #: contact_form.php:422
340
  #, fuzzy
341
  msgid "Address is required."
342
  msgstr "Valós email cím megadása kötelező."
343
 
344
+ #: contact_form.php:423
345
  #, fuzzy
346
  msgid "A valid email address is required."
347
  msgstr "Valós email cím megadása kötelező."
348
 
349
+ #: contact_form.php:424
350
+ #: contact_form.php:469
351
+ #: contact_form.php:472
352
  msgid "Phone number is required."
353
  msgstr "Le numéro de téléphone est obligatoire."
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "Tárgy megadása kötelező."
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "Üzenet megírása kötelező."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "Fájl formátuma nem megengedett."
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "Kérem töltse ki a CAPTCHA mezőt."
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Kérem javítsa ki a szükséges mezőket és próbálja újra."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  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"
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Nincs ilyen felhasználó. Beállítások nem kerültek mentésre."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
402
  msgstr "Kérem valós email címet adjon meg a 'FKITÖL' mezőben. Beállítások nem kerültek mentésre."
403
 
404
+ #: contact_form.php:730
405
  #, fuzzy
406
  msgid "Settings saved."
407
  msgstr "Opciók elmentve."
408
 
409
+ #: contact_form.php:755
410
+ #: contact_form.php:1003
411
  #, fuzzy
412
  msgid "Extra settings"
413
  msgstr "Beállítások"
414
 
415
+ #: contact_form.php:760
416
+ #: contact_form.php:1259
417
  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:"
418
  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:"
419
 
420
+ #: contact_form.php:761
421
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
422
  msgstr "Amennyiben ezeket a mezőket üresen hagyja, az üzenet a regisztráció során megadott email címre lesz elküldve."
423
 
424
+ #: contact_form.php:765
425
  msgid "The user's email address:"
426
  msgstr "A felhasználó email címe:"
427
 
428
+ #: contact_form.php:769
429
  msgid "Create a username"
430
  msgstr "felhasználónév létrehozása"
431
 
432
+ #: contact_form.php:774
433
  msgid "Enter a username of the person who should get the messages from the contact form."
434
  msgstr "Adja meg azon személy felhasználónevét, akitől az üzeneteket szeretné kapni a Kapcsolatfelvételi Ürlap segítségével."
435
 
436
+ #: contact_form.php:778
437
  msgid "Use this email address:"
438
  msgstr "Ezen email cím használata:"
439
 
440
+ #: contact_form.php:781
441
  msgid "Enter the email address you want the messages forwarded to."
442
  msgstr "Adja meg az email címet, ahova az üzenetek érkezzenek."
443
 
444
+ #: contact_form.php:785
445
  msgid "Additional options"
446
  msgstr "További opciók"
447
 
448
+ #: contact_form.php:788
449
  msgid "What to use?"
450
  msgstr "Mit szeretne használni?"
451
 
452
+ #: contact_form.php:791
453
  msgid "Wp-mail"
454
  msgstr "Wp-mail"
455
 
456
+ #: contact_form.php:792
457
  msgid "You can use the wp_mail function for mailing"
458
  msgstr "Használhatja a wp_mail funkciót a levelezéshez"
459
 
460
+ #: contact_form.php:798
461
  msgid "Mail"
462
  msgstr "E-mail"
463
 
464
+ #: contact_form.php:799
465
  msgid "To send mail you can use the php mail function"
466
  msgstr "Email küldéshez használhatja a php mail funkciót"
467
 
468
+ #: contact_form.php:803
469
  msgid "Change text of the 'FROM' field"
470
  msgstr "A 'KITÖL' mező szövegének módosítása"
471
 
472
+ #: contact_form.php:809
473
  msgid "Enter the email address in the 'From' field"
474
  msgstr "Adja meg a 'KITÖL' mező email címét"
475
 
476
+ #: contact_form.php:811
477
  msgid "User email"
478
  msgstr ""
479
 
480
+ #: contact_form.php:811
481
  #, fuzzy
482
  msgid "The email address of the user who fills the form will be used in the field 'From'."
483
  msgstr "A felhasználó e-mail címe, akinek az adatai szerepelnek a 'KITÖL' mezőben."
484
 
485
+ #: contact_form.php:813
486
  msgid "This email address will be used in the 'From' field."
487
  msgstr "Ez az email cím szerepel a 'KITÖL' mezőben."
488
 
489
+ #: contact_form.php:817
490
  #, fuzzy
491
  msgid "Display fields"
492
  msgstr "Szöveg megjelenítése"
493
 
494
+ #: contact_form.php:819
495
+ #: contact_form.php:849
496
+ #: contact_form.php:1039
497
+ #: contact_form.php:1691
498
  #, fuzzy
499
  msgid "Address"
500
  msgstr "Email cím:"
501
 
502
+ #: contact_form.php:820
503
+ #: contact_form.php:851
504
+ #: contact_form.php:1699
505
  msgid "Phone"
506
  msgstr "Telefonszám"
507
 
508
+ #: contact_form.php:821
509
  #, fuzzy
510
  msgid "Attachment block"
511
  msgstr "Csatolmány doboz megjelenítése"
512
 
513
+ #: contact_form.php:821
514
  msgid "Users can attach the following file formats"
515
  msgstr "A felhasználók a következő fájlformátumokat csatolhatják"
516
 
517
+ #: contact_form.php:822
518
  #, fuzzy
519
  msgid "Tips below the Attachment block"
520
  msgstr "Tippek megjelenítése a Csatolmányok doboz alatt"
521
 
522
+ #: contact_form.php:823
523
  #, fuzzy
524
  msgid "Send me a copy block"
525
  msgstr "A 'Kérek másolatot' opció megjelenítése"
526
 
527
+ #: contact_form.php:835
528
+ #: contact_form.php:838
529
+ #: contact_form.php:841
530
+ #: contact_form.php:1068
531
  msgid "Captcha"
532
  msgstr ""
533
 
534
+ #: contact_form.php:835
535
+ #: contact_form.php:838
536
+ #: contact_form.php:841
537
+ #: contact_form.php:1068
538
  msgid "(powered by bestwebsoft.com)"
539
  msgstr ""
540
 
541
+ #: contact_form.php:838
542
  #, fuzzy
543
  msgid "Activate captcha"
544
  msgstr "Aktivált pluginok"
545
 
546
+ #: contact_form.php:841
547
  #, fuzzy
548
  msgid "Download captcha"
549
  msgstr "Letöltés"
550
 
551
+ #: contact_form.php:846
552
  msgid "Required fields"
553
  msgstr "Kötelező mező"
554
 
555
+ #: contact_form.php:848
556
+ #: contact_form.php:1034
557
+ #: contact_form.php:1686
558
  msgid "Name"
559
  msgstr "Név"
560
 
561
+ #: contact_form.php:850
562
  #, fuzzy
563
  msgid "Email Address"
564
  msgstr "Email cím:"
565
 
566
+ #: contact_form.php:852
567
+ #: contact_form.php:1054
568
+ #: contact_form.php:1702
569
  msgid "Subject"
570
  msgstr "Sujet"
571
 
572
+ #: contact_form.php:853
573
+ #: contact_form.php:1058
574
+ #: contact_form.php:1705
575
  msgid "Message"
576
  msgstr "Üzenet"
577
 
578
+ #: contact_form.php:857
579
  #, fuzzy
580
  msgid "Display additional info in the email"
581
  msgstr "További információk megjelenítése az emailben"
582
 
583
+ #: contact_form.php:862
584
+ #: contact_form.php:1658
585
  msgid "Sent from (ip address)"
586
  msgstr "Küldő (IP cím)"
587
 
588
+ #: contact_form.php:863
589
+ #: contact_form.php:1663
590
  msgid "Date/Time"
591
  msgstr "Dátum/Idő"
592
 
593
+ #: contact_form.php:864
594
+ #: contact_form.php:1668
595
  msgid "Sent from (referer)"
596
  msgstr "Envoyer de (référence)"
597
 
598
+ #: contact_form.php:865
599
+ #: contact_form.php:1673
600
  msgid "Using (user agent)"
601
  msgstr "Alkalmazás (böngésző)"
602
 
603
+ #: contact_form.php:869
604
  msgid "Language settings for the field names in the form"
605
  msgstr "Az ürlap mezőinek nyelvi beállítása"
606
 
607
+ #: contact_form.php:878
608
  #, fuzzy
609
  msgid "Add a language"
610
  msgstr "Nyelv hozzáadása"
611
 
612
+ #: contact_form.php:882
613
  msgid "Change the names of the contact form fields and error messages"
614
  msgstr "A Kapcsolatfelvételi Ürlap mező és hibaüzenet neveinek módosítása"
615
 
616
+ #: contact_form.php:887
617
+ #: contact_form.php:958
618
  msgid "English"
619
  msgstr "Angol"
620
 
621
+ #: contact_form.php:906
622
+ #: contact_form.php:935
623
  msgid "Error message for the Name field"
624
  msgstr "Név mező hibaüzenet"
625
 
626
+ #: contact_form.php:907
627
+ #: contact_form.php:936
628
  #, fuzzy
629
  msgid "Error message for the Address field"
630
  msgstr "Üzenet mező hibaüzenet"
631
 
632
+ #: contact_form.php:908
633
+ #: contact_form.php:937
634
  msgid "Error message for the Email field"
635
  msgstr "Email cím mező hibaüzenet"
636
 
637
+ #: contact_form.php:909
638
+ #: contact_form.php:938
639
  msgid "Error message for the Phone field"
640
  msgstr "Telefonszám mező hibaüzenet"
641
 
642
+ #: contact_form.php:910
643
+ #: contact_form.php:939
644
  msgid "Error message for the Subject field"
645
  msgstr "Tárgy mező hibaüzenet"
646
 
647
+ #: contact_form.php:911
648
+ #: contact_form.php:940
649
  msgid "Error message for the Message field"
650
  msgstr "Üzenet mező hibaüzenet"
651
 
652
+ #: contact_form.php:912
653
+ #: contact_form.php:941
654
  #, fuzzy
655
  msgid "Error message about the file type for the Attachment field"
656
  msgstr "Csatolmány doboz hibaüzenet"
657
 
658
+ #: contact_form.php:913
659
+ #: contact_form.php:942
660
  #, fuzzy
661
  msgid "Error message while uploading a file for the Attachment field to the server"
662
  msgstr "Csatolmány doboz hibaüzenet"
663
 
664
+ #: contact_form.php:914
665
+ #: contact_form.php:943
666
  #, fuzzy
667
  msgid "Error message while moving the file for the Attachment field"
668
  msgstr "Csatolmány doboz hibaüzenet"
669
 
670
+ #: contact_form.php:915
671
+ #: contact_form.php:944
672
  #, fuzzy
673
  msgid "Error message when file size limit for the Attachment field is exceeded"
674
  msgstr "Csatolmány doboz hibaüzenet"
675
 
676
+ #: contact_form.php:916
677
+ #: contact_form.php:945
678
  msgid "Error message for the Captcha field"
679
  msgstr "CAPTCHA mező hibaüzenet"
680
 
681
+ #: contact_form.php:917
682
+ #: contact_form.php:946
683
  msgid "Error message for the whole form"
684
  msgstr "Hibaüzenet az egész form számára"
685
 
686
+ #: contact_form.php:919
687
+ #: contact_form.php:948
688
+ #: contact_form.php:967
689
+ #: contact_form.php:973
690
  msgid "Use shortcode"
691
  msgstr "Gyorskód használata"
692
 
693
+ #: contact_form.php:919
694
+ #: contact_form.php:948
695
+ #: contact_form.php:967
696
+ #: contact_form.php:973
697
  msgid "for this language"
698
  msgstr "ehhez a nyelvhez"
699
 
700
+ #: contact_form.php:955
701
  msgid "Action after email is sent"
702
  msgstr "Művelet az email elküldése után"
703
 
704
+ #: contact_form.php:957
705
  msgid "Display text"
706
  msgstr "Szöveg megjelenítése"
707
 
708
+ #: contact_form.php:966
709
+ #: contact_form.php:972
710
  msgid "Text"
711
  msgstr "Szöveg"
712
 
713
+ #: contact_form.php:979
714
  msgid "Redirect to the page"
715
  msgstr "Átirányítás egy weboldalra"
716
 
717
+ #: contact_form.php:980
718
  msgid "Url"
719
  msgstr "Url"
720
 
721
+ #: contact_form.php:985
722
+ #: contact_form.php:1160
723
  msgid "Save Changes"
724
  msgstr "Módosítások Mentése"
725
 
726
+ #: contact_form.php:1000
727
  #, fuzzy
728
  msgid "Contact Form Pro | Extra Settings"
729
  msgstr "Kapcsolatfelvételi Ürlap Beállítások"
730
 
731
+ #: contact_form.php:1007
732
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
733
  msgstr ""
734
 
735
+ #: contact_form.php:1014
736
  msgid "Errors output"
737
  msgstr ""
738
 
739
+ #: contact_form.php:1017
740
  msgid "Display error messages"
741
  msgstr ""
742
 
743
+ #: contact_form.php:1018
744
  msgid "Color of the input field errors."
745
  msgstr ""
746
 
747
+ #: contact_form.php:1019
748
  #, fuzzy
749
  msgid "Display error messages & color of the input field errors"
750
  msgstr "Tárgy mező hibaüzenet"
751
 
752
+ #: contact_form.php:1024
753
  msgid "Add placeholder to the input blocks"
754
  msgstr ""
755
 
756
+ #: contact_form.php:1030
757
  #, fuzzy
758
  msgid "Add tooltips"
759
  msgstr "További opciók"
760
 
761
+ #: contact_form.php:1044
762
  #, fuzzy
763
  msgid "Email address"
764
  msgstr "Email cím:"
765
 
766
+ #: contact_form.php:1049
767
  #, fuzzy
768
  msgid "Phone Number"
769
  msgstr "Telefonszám:"
770
 
771
+ #: contact_form.php:1063
772
  #, fuzzy
773
  msgid "Attachment"
774
  msgstr "Csatolmány:"
775
 
776
+ #: contact_form.php:1073
777
  #, fuzzy
778
  msgid "Style options"
779
  msgstr "További opciók"
780
 
781
+ #: contact_form.php:1076
782
  msgid "Text color"
783
  msgstr ""
784
 
785
+ #: contact_form.php:1079
786
+ #: contact_form.php:1084
787
+ #: contact_form.php:1094
788
+ #: contact_form.php:1099
789
+ #: contact_form.php:1104
790
+ #: contact_form.php:1109
791
+ #: contact_form.php:1119
792
+ #: contact_form.php:1124
793
+ #: contact_form.php:1130
794
+ #: contact_form.php:1141
795
+ #: contact_form.php:1146
796
+ #: contact_form.php:1151
797
  msgid "Default"
798
  msgstr ""
799
 
800
+ #: contact_form.php:1081
801
  msgid "Label text color"
802
  msgstr ""
803
 
804
+ #: contact_form.php:1086
805
  msgid "Placeholder color"
806
  msgstr ""
807
 
808
+ #: contact_form.php:1091
809
  msgid "Errors color"
810
  msgstr ""
811
 
812
+ #: contact_form.php:1096
813
  msgid "Error text color"
814
  msgstr ""
815
 
816
+ #: contact_form.php:1101
817
  msgid "Background color of the input field errors"
818
  msgstr ""
819
 
820
+ #: contact_form.php:1106
821
  msgid "Border color of the input field errors"
822
  msgstr ""
823
 
824
+ #: contact_form.php:1111
825
  msgid "Placeholder color of the input field errors"
826
  msgstr ""
827
 
828
+ #: contact_form.php:1116
829
  #, fuzzy
830
  msgid "Input fields"
831
  msgstr "Szöveg megjelenítése"
832
 
833
+ #: contact_form.php:1121
834
  msgid "Input fields background color"
835
  msgstr ""
836
 
837
+ #: contact_form.php:1126
838
  msgid "Text fields color"
839
  msgstr ""
840
 
841
+ #: contact_form.php:1128
842
  msgid "Border width in px, numbers only"
843
  msgstr ""
844
 
845
+ #: contact_form.php:1132
846
+ #: contact_form.php:1153
847
  msgid "Border color"
848
  msgstr ""
849
 
850
+ #: contact_form.php:1137
851
  #, fuzzy
852
  msgid "Submit button"
853
  msgstr "Küldés"
854
 
855
+ #: contact_form.php:1139
856
  msgid "Width in px, numbers only"
857
  msgstr ""
858
 
859
+ #: contact_form.php:1143
860
  msgid "Button color"
861
  msgstr ""
862
 
863
+ #: contact_form.php:1148
864
  msgid "Button text color"
865
  msgstr ""
866
 
867
+ #: contact_form.php:1164
868
  #, fuzzy
869
  msgid "Contact Form Pro | Preview"
870
  msgstr "Kapcsolatfelvételi Ürlap"
871
 
872
+ #: contact_form.php:1167
873
  msgid "Show with errors"
874
  msgstr ""
875
 
876
+ #: contact_form.php:1175
877
+ #: contact_form.php:1177
878
  msgid "Please enter your full name..."
879
  msgstr ""
880
 
881
+ #: contact_form.php:1188
882
+ #: contact_form.php:1190
883
  msgid "Please enter your address..."
884
  msgstr ""
885
 
886
+ #: contact_form.php:1199
887
+ #: contact_form.php:1201
888
  #, fuzzy
889
  msgid "Please enter your email address..."
890
  msgstr "Ezen email cím használata:"
891
 
892
+ #: contact_form.php:1210
893
+ #: contact_form.php:1212
894
  msgid "Please enter your phone number..."
895
  msgstr ""
896
 
897
+ #: contact_form.php:1221
898
+ #: contact_form.php:1223
899
  msgid "Please enter subject..."
900
  msgstr ""
901
 
902
+ #: contact_form.php:1231
903
+ #: contact_form.php:1233
904
  msgid "Please enter your message..."
905
  msgstr ""
906
 
907
+ #: contact_form.php:1244
908
  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"
909
  msgstr ""
910
 
911
+ #: contact_form.php:1397
 
 
 
 
912
  msgid "You can attach the following file formats"
913
  msgstr "A következő fájlformátumokat csatolhatja"
914
 
915
+ #: contact_form.php:1681
916
  msgid "Contact from"
917
  msgstr "Üzenet küldött"
918
 
919
+ #: contact_form.php:1694
920
  msgid "Email"
921
  msgstr "E-mail"
922
 
923
+ #: contact_form.php:1708
924
  msgid "Site"
925
  msgstr "Oldal"
926
 
927
+ #: contact_form.php:1758
928
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
929
  msgstr "Amennyiben ez a MIME nem jelenik meg, akkör az ön Levelezője nem támogatja ezt a MIME típust !"
930
 
931
+ #: contact_form.php:1809
932
  msgid "FAQ"
933
  msgstr "GYIK (FAQ)"
934
 
935
+ #: contact_form.php:1810
936
  msgid "Support"
937
  msgstr "Támogatás"
938
 
939
+ #: contact_form.php:1858
940
  msgid "Are you sure that you want to delete this language data?"
941
  msgstr "Biztosan törölni szeretné ezt a nyelvi adatot ?"
942
 
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: 2013-07-16 16:05+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:05+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ilian Gagliardi <ilian@ultra-violet.it>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,756 +16,921 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Plugin attivati"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Leggi"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Settaggi"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Plugin installati"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Plugin raccomandati"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Plugin raccomandati"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Download"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Installa %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Installa ora da wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Opzioni Contact Form"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Contact Form"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Opzioni Contact Form"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Contact Form"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Nome:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "Indirizzo e-mail:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "Indirizzo e-mail:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr "Numero di telefono:"
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Oggetto:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Messaggio:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Attachment:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Inviami una copia"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Invia"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Il nome è obbligatorio"
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "È richiesto un indirizzo e-mail valido."
169
 
170
- #: contact_form.php:212
171
  msgid "A valid email address is required."
172
  msgstr "È richiesto un indirizzo e-mail valido."
173
 
174
- #: contact_form.php:213
175
- #: contact_form.php:258
176
- #: contact_form.php:261
177
  msgid "Phone number is required."
178
  msgstr "Il numero di telefono è obbligatorio"
179
 
180
- #: contact_form.php:214
181
- #: contact_form.php:257
182
- #: contact_form.php:260
183
  msgid "Subject is required."
184
  msgstr "L'oggetto è obbligatorio"
185
 
186
- #: contact_form.php:215
187
- #: contact_form.php:256
188
- #: contact_form.php:259
189
  msgid "Message text is required."
190
  msgstr "Il campo messaggio è obbligatorio"
191
 
192
- #: contact_form.php:216
193
  msgid "File format is not valid."
194
  msgstr "L'attachment non è corretto"
195
 
196
- #: contact_form.php:217
197
  msgid "File upload error."
198
  msgstr ""
199
 
200
- #: contact_form.php:218
201
  msgid "The file could not be uploaded."
202
  msgstr ""
203
 
204
- #: contact_form.php:219
205
  msgid "This file is too large."
206
  msgstr ""
207
 
208
- #: contact_form.php:220
209
  msgid "Please fill out the CAPTCHA."
210
  msgstr "Completa il CAPTCHA"
211
 
212
- #: contact_form.php:221
213
  msgid "Please make corrections below and try again."
214
  msgstr "Controlla i dati del modulo e riprova!"
215
 
216
- #: contact_form.php:223
217
- msgid "Thank you for contacting us."
218
- msgstr "Grazie per averci contattato."
219
-
220
- #: contact_form.php:494
221
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
222
  msgstr "se l'opzione 'Reindirizza a pagina' è impostata, allora il campo URL deve essere nel seguente formato"
223
 
224
- #: contact_form.php:503
225
  msgid "Such user does not exist. Settings are not saved."
226
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
227
 
228
- #: contact_form.php:508
229
- #: contact_form.php:514
230
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
231
  msgstr "Perfavore inserisci una e-mail corretta nel campo 'DA'. Opzioni non salvate."
232
 
233
- #: contact_form.php:519
234
  #, fuzzy
235
  msgid "Settings saved."
236
  msgstr "Opzioni salvate."
237
 
238
- #: contact_form.php:544
239
- #: contact_form.php:792
240
  #, fuzzy
241
  msgid "Extra settings"
242
  msgstr "Settaggi"
243
 
244
- #: contact_form.php:549
245
- #: contact_form.php:1048
246
  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:"
247
  msgstr "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine o widget:"
248
 
249
- #: contact_form.php:550
250
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
251
  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. "
252
 
253
- #: contact_form.php:554
254
  msgid "The user's email address:"
255
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
256
 
257
- #: contact_form.php:558
258
  msgid "Create a username"
259
  msgstr "Seleziona nome utente"
260
 
261
- #: contact_form.php:563
262
  msgid "Enter a username of the person who should get the messages from the contact form."
263
  msgstr "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
264
 
265
- #: contact_form.php:567
266
  msgid "Use this email address:"
267
  msgstr "Utilizza questa e-mail:"
268
 
269
- #: contact_form.php:570
270
  msgid "Enter the email address you want the messages forwarded to."
271
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
272
 
273
- #: contact_form.php:574
274
  msgid "Additional options"
275
  msgstr "Impostazioni aggiuntive"
276
 
277
- #: contact_form.php:577
278
  msgid "What to use?"
279
  msgstr "Cosa utilizzare?"
280
 
281
- #: contact_form.php:580
282
  msgid "Wp-mail"
283
  msgstr "Wp-mail"
284
 
285
- #: contact_form.php:581
286
  msgid "You can use the wp_mail function for mailing"
287
  msgstr "Per inviare e-mail puoi utilizzare la funzione wp_mail"
288
 
289
- #: contact_form.php:587
290
  msgid "Mail"
291
  msgstr "Mail"
292
 
293
- #: contact_form.php:588
294
  msgid "To send mail you can use the php mail function"
295
  msgstr "Per inviare e-mail puoi utilizzare la funzione mail di php"
296
 
297
- #: contact_form.php:592
298
  msgid "Change text of the 'FROM' field"
299
  msgstr "Modifica il contenuto del campo 'DA'"
300
 
301
- #: contact_form.php:598
302
  msgid "Enter the email address in the 'From' field"
303
  msgstr "Inserisci l'indirizzo e-mail nel campo 'DA'"
304
 
305
- #: contact_form.php:600
306
  msgid "User email"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "The email address of the user who fills the form will be used in the field 'From'."
311
  msgstr "L'indirizzo e-mail dell'utente che compila il form verrà usato nel campo 'DA'"
312
 
313
- #: contact_form.php:602
314
  msgid "This email address will be used in the 'From' field."
315
  msgstr "Questo indirizzo e-mail verrà utilizzato nel campo 'DA'"
316
 
317
- #: contact_form.php:606
318
  #, fuzzy
319
  msgid "Display fields"
320
  msgstr "Visualizza il testo"
321
 
322
- #: contact_form.php:608
323
- #: contact_form.php:638
324
- #: contact_form.php:828
325
- #: contact_form.php:1480
326
  #, fuzzy
327
  msgid "Address"
328
  msgstr "Indirizzo e-mail"
329
 
330
- #: contact_form.php:609
331
- #: contact_form.php:640
332
- #: contact_form.php:1488
333
  msgid "Phone"
334
  msgstr "Telefono"
335
 
336
- #: contact_form.php:610
337
  #, fuzzy
338
  msgid "Attachment block"
339
  msgstr "Visualizza l'attachment"
340
 
341
- #: contact_form.php:610
342
  msgid "Users can attach the following file formats"
343
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
344
 
345
- #: contact_form.php:611
346
  #, fuzzy
347
  msgid "Tips below the Attachment block"
348
  msgstr "Visualizza suggeriementi sotto il blocco Allegato"
349
 
350
- #: contact_form.php:612
351
  #, fuzzy
352
  msgid "Send me a copy block"
353
  msgstr "Visualizza il blocco \"Inviami una copia\" "
354
 
355
- #: contact_form.php:624
356
- #: contact_form.php:627
357
- #: contact_form.php:630
358
- #: contact_form.php:857
359
  msgid "Captcha"
360
  msgstr ""
361
 
362
- #: contact_form.php:624
363
- #: contact_form.php:627
364
- #: contact_form.php:630
365
- #: contact_form.php:857
366
  msgid "(powered by bestwebsoft.com)"
367
  msgstr ""
368
 
369
- #: contact_form.php:627
370
  #, fuzzy
371
  msgid "Activate captcha"
372
  msgstr "Plugin attivati"
373
 
374
- #: contact_form.php:630
375
  #, fuzzy
376
  msgid "Download captcha"
377
  msgstr "Download"
378
 
379
- #: contact_form.php:635
380
  msgid "Required fields"
381
  msgstr "Campi richiesti"
382
 
383
- #: contact_form.php:637
384
- #: contact_form.php:823
385
- #: contact_form.php:1475
386
  msgid "Name"
387
  msgstr "Nome"
388
 
389
- #: contact_form.php:639
390
  msgid "Email Address"
391
  msgstr "Indirizzo e-mail"
392
 
393
- #: contact_form.php:641
394
- #: contact_form.php:843
395
- #: contact_form.php:1491
396
  msgid "Subject"
397
  msgstr "Oggetto"
398
 
399
- #: contact_form.php:642
400
- #: contact_form.php:847
401
- #: contact_form.php:1494
402
  msgid "Message"
403
  msgstr "Messaggio"
404
 
405
- #: contact_form.php:646
406
  msgid "Display additional info in the email"
407
  msgstr "Visualizza informazioni aggiuntive nella e-mail"
408
 
409
- #: contact_form.php:651
410
- #: contact_form.php:1447
411
  msgid "Sent from (ip address)"
412
  msgstr "Inviato da (indirizzi IP)"
413
 
414
- #: contact_form.php:652
415
- #: contact_form.php:1452
416
  msgid "Date/Time"
417
  msgstr "Data/Ora"
418
 
419
- #: contact_form.php:653
420
- #: contact_form.php:1457
421
  msgid "Sent from (referer)"
422
  msgstr "Da (referente)"
423
 
424
- #: contact_form.php:654
425
- #: contact_form.php:1462
426
  msgid "Using (user agent)"
427
  msgstr "Utilizza (user agent)"
428
 
429
- #: contact_form.php:658
430
  msgid "Language settings for the field names in the form"
431
  msgstr "Impostazione della lingua per i nomi dei campi del form"
432
 
433
- #: contact_form.php:667
434
  msgid "Add a language"
435
  msgstr "Aggiungi un linguaggio"
436
 
437
- #: contact_form.php:671
438
  msgid "Change the names of the contact form fields and error messages"
439
  msgstr "Modifica le etichette dei campi del contact form"
440
 
441
- #: contact_form.php:676
442
- #: contact_form.php:747
443
  msgid "English"
444
  msgstr "Inglese"
445
 
446
- #: contact_form.php:695
447
- #: contact_form.php:724
448
  msgid "Error message for the Name field"
449
  msgstr "Messaggio d'errore per il campo Nome"
450
 
451
- #: contact_form.php:696
452
- #: contact_form.php:725
453
  #, fuzzy
454
  msgid "Error message for the Address field"
455
  msgstr "Messaggio d'errore per il campo Testo del Messaggio"
456
 
457
- #: contact_form.php:697
458
- #: contact_form.php:726
459
  msgid "Error message for the Email field"
460
  msgstr "Messaggio d'errore per il campo e-mail"
461
 
462
- #: contact_form.php:698
463
- #: contact_form.php:727
464
  msgid "Error message for the Phone field"
465
  msgstr "Messaggio d'errore per il campo Telefono"
466
 
467
- #: contact_form.php:699
468
- #: contact_form.php:728
469
  msgid "Error message for the Subject field"
470
  msgstr "Messaggio d'errore per il campo Soggetto"
471
 
472
- #: contact_form.php:700
473
- #: contact_form.php:729
474
  msgid "Error message for the Message field"
475
  msgstr "Messaggio d'errore per il campo Testo del Messaggio"
476
 
477
- #: contact_form.php:701
478
- #: contact_form.php:730
479
  #, fuzzy
480
  msgid "Error message about the file type for the Attachment field"
481
  msgstr "Messaggio d'errore per il campo Allegato"
482
 
483
- #: contact_form.php:702
484
- #: contact_form.php:731
485
  #, fuzzy
486
  msgid "Error message while uploading a file for the Attachment field to the server"
487
  msgstr "Messaggio d'errore per il campo Allegato"
488
 
489
- #: contact_form.php:703
490
- #: contact_form.php:732
491
  #, fuzzy
492
  msgid "Error message while moving the file for the Attachment field"
493
  msgstr "Messaggio d'errore per il campo Allegato"
494
 
495
- #: contact_form.php:704
496
- #: contact_form.php:733
497
  #, fuzzy
498
  msgid "Error message when file size limit for the Attachment field is exceeded"
499
  msgstr "Messaggio d'errore per il campo Allegato"
500
 
501
- #: contact_form.php:705
502
- #: contact_form.php:734
503
  msgid "Error message for the Captcha field"
504
  msgstr "Messaggio d'errore per il campo Captcha"
505
 
506
- #: contact_form.php:706
507
- #: contact_form.php:735
508
  msgid "Error message for the whole form"
509
  msgstr "Messaggio d'errore per l'intero modulo"
510
 
511
- #: contact_form.php:708
512
- #: contact_form.php:737
513
- #: contact_form.php:756
514
- #: contact_form.php:762
515
  msgid "Use shortcode"
516
  msgstr "usa lo shortcode"
517
 
518
- #: contact_form.php:708
519
- #: contact_form.php:737
520
- #: contact_form.php:756
521
- #: contact_form.php:762
522
  msgid "for this language"
523
  msgstr "per questa lingua"
524
 
525
- #: contact_form.php:744
526
  msgid "Action after email is sent"
527
  msgstr "Azione successiva all'invio dell'e-mail"
528
 
529
- #: contact_form.php:746
530
  msgid "Display text"
531
  msgstr "Visualizza il testo"
532
 
533
- #: contact_form.php:755
534
- #: contact_form.php:761
535
  msgid "Text"
536
  msgstr "Testo"
537
 
538
- #: contact_form.php:768
539
  msgid "Redirect to the page"
540
  msgstr "Reindirizza alla pagina"
541
 
542
- #: contact_form.php:769
543
  msgid "Url"
544
  msgstr "Url"
545
 
546
- #: contact_form.php:774
547
- #: contact_form.php:949
548
  msgid "Save Changes"
549
  msgstr "Salva le modifiche"
550
 
551
- #: contact_form.php:789
552
  #, fuzzy
553
  msgid "Contact Form Pro | Extra Settings"
554
  msgstr "Opzioni Contact Form"
555
 
556
- #: contact_form.php:796
557
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
558
  msgstr ""
559
 
560
- #: contact_form.php:803
561
  msgid "Errors output"
562
  msgstr ""
563
 
564
- #: contact_form.php:806
565
  msgid "Display error messages"
566
  msgstr ""
567
 
568
- #: contact_form.php:807
569
  msgid "Color of the input field errors."
570
  msgstr ""
571
 
572
- #: contact_form.php:808
573
  #, fuzzy
574
  msgid "Display error messages & color of the input field errors"
575
  msgstr "Messaggio d'errore per il campo Soggetto"
576
 
577
- #: contact_form.php:813
578
  msgid "Add placeholder to the input blocks"
579
  msgstr ""
580
 
581
- #: contact_form.php:819
582
  #, fuzzy
583
  msgid "Add tooltips"
584
  msgstr "Impostazioni aggiuntive"
585
 
586
- #: contact_form.php:833
587
  #, fuzzy
588
  msgid "Email address"
589
  msgstr "Indirizzo e-mail"
590
 
591
- #: contact_form.php:838
592
  #, fuzzy
593
  msgid "Phone Number"
594
  msgstr "Numero di telefono:"
595
 
596
- #: contact_form.php:852
597
  #, fuzzy
598
  msgid "Attachment"
599
  msgstr "Attachment:"
600
 
601
- #: contact_form.php:862
602
  #, fuzzy
603
  msgid "Style options"
604
  msgstr "Impostazioni aggiuntive"
605
 
606
- #: contact_form.php:865
607
  msgid "Text color"
608
  msgstr ""
609
 
610
- #: contact_form.php:868
611
- #: contact_form.php:873
612
- #: contact_form.php:883
613
- #: contact_form.php:888
614
- #: contact_form.php:893
615
- #: contact_form.php:898
616
- #: contact_form.php:908
617
- #: contact_form.php:913
618
- #: contact_form.php:919
619
- #: contact_form.php:930
620
- #: contact_form.php:935
621
- #: contact_form.php:940
622
  msgid "Default"
623
  msgstr ""
624
 
625
- #: contact_form.php:870
626
  msgid "Label text color"
627
  msgstr ""
628
 
629
- #: contact_form.php:875
630
  msgid "Placeholder color"
631
  msgstr ""
632
 
633
- #: contact_form.php:880
634
  msgid "Errors color"
635
  msgstr ""
636
 
637
- #: contact_form.php:885
638
  msgid "Error text color"
639
  msgstr ""
640
 
641
- #: contact_form.php:890
642
  msgid "Background color of the input field errors"
643
  msgstr ""
644
 
645
- #: contact_form.php:895
646
  msgid "Border color of the input field errors"
647
  msgstr ""
648
 
649
- #: contact_form.php:900
650
  msgid "Placeholder color of the input field errors"
651
  msgstr ""
652
 
653
- #: contact_form.php:905
654
  #, fuzzy
655
  msgid "Input fields"
656
  msgstr "Visualizza il testo"
657
 
658
- #: contact_form.php:910
659
  msgid "Input fields background color"
660
  msgstr ""
661
 
662
- #: contact_form.php:915
663
  msgid "Text fields color"
664
  msgstr ""
665
 
666
- #: contact_form.php:917
667
  msgid "Border width in px, numbers only"
668
  msgstr ""
669
 
670
- #: contact_form.php:921
671
- #: contact_form.php:942
672
  msgid "Border color"
673
  msgstr ""
674
 
675
- #: contact_form.php:926
676
  #, fuzzy
677
  msgid "Submit button"
678
  msgstr "Invia"
679
 
680
- #: contact_form.php:928
681
  msgid "Width in px, numbers only"
682
  msgstr ""
683
 
684
- #: contact_form.php:932
685
  msgid "Button color"
686
  msgstr ""
687
 
688
- #: contact_form.php:937
689
  msgid "Button text color"
690
  msgstr ""
691
 
692
- #: contact_form.php:953
693
  #, fuzzy
694
  msgid "Contact Form Pro | Preview"
695
  msgstr "Contact Form"
696
 
697
- #: contact_form.php:956
698
  msgid "Show with errors"
699
  msgstr ""
700
 
701
- #: contact_form.php:964
702
- #: contact_form.php:966
703
  msgid "Please enter your full name..."
704
  msgstr ""
705
 
706
- #: contact_form.php:977
707
- #: contact_form.php:979
708
  msgid "Please enter your address..."
709
  msgstr ""
710
 
711
- #: contact_form.php:988
712
- #: contact_form.php:990
713
  #, fuzzy
714
  msgid "Please enter your email address..."
715
  msgstr "Utilizza questa e-mail:"
716
 
717
- #: contact_form.php:999
718
- #: contact_form.php:1001
719
  msgid "Please enter your phone number..."
720
  msgstr ""
721
 
722
- #: contact_form.php:1010
723
- #: contact_form.php:1012
724
  msgid "Please enter subject..."
725
  msgstr ""
726
 
727
- #: contact_form.php:1020
728
- #: contact_form.php:1022
729
  msgid "Please enter your message..."
730
  msgstr ""
731
 
732
- #: contact_form.php:1033
733
  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"
734
  msgstr ""
735
 
736
- #: contact_form.php:1102
737
- msgid "Sorry, email message could not be delivered."
738
- msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
739
-
740
- #: contact_form.php:1186
741
  msgid "You can attach the following file formats"
742
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
743
 
744
- #: contact_form.php:1470
745
  msgid "Contact from"
746
  msgstr "Contact from"
747
 
748
- #: contact_form.php:1483
749
  msgid "Email"
750
  msgstr "e-mail"
751
 
752
- #: contact_form.php:1497
753
  msgid "Site"
754
  msgstr "Sito"
755
 
756
- #: contact_form.php:1547
757
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
758
  msgstr "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
759
 
760
- #: contact_form.php:1598
761
  msgid "FAQ"
762
  msgstr "FAQ"
763
 
764
- #: contact_form.php:1599
765
  msgid "Support"
766
  msgstr "Supporto"
767
 
768
- #: contact_form.php:1647
769
  msgid "Are you sure that you want to delete this language data?"
770
  msgstr "Sei sicuro di voler cancellare questo linguaggio?"
771
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:56+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:56+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ilian Gagliardi <ilian@ultra-violet.it>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Messaggio"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Sito"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Utilizza questa e-mail:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Grazie per averci contattato."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Plugin attivati"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Leggi"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Settaggi"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Plugin installati"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Plugin raccomandati"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Plugin raccomandati"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Download"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Installa %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Installa ora da wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Plugin attivati"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Plugin attivati"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Supporto"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Opzioni Contact Form"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Contact Form"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Opzioni Contact Form"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Contact Form"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Nome:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "Indirizzo e-mail:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "Indirizzo e-mail:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr "Numero di telefono:"
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Oggetto:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Messaggio:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Attachment:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Inviami una copia"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Invia"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Il nome è obbligatorio"
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "È richiesto un indirizzo e-mail valido."
342
 
343
+ #: contact_form.php:423
344
  msgid "A valid email address is required."
345
  msgstr "È richiesto un indirizzo e-mail valido."
346
 
347
+ #: contact_form.php:424
348
+ #: contact_form.php:469
349
+ #: contact_form.php:472
350
  msgid "Phone number is required."
351
  msgstr "Il numero di telefono è obbligatorio"
352
 
353
+ #: contact_form.php:425
354
+ #: contact_form.php:468
355
+ #: contact_form.php:471
356
  msgid "Subject is required."
357
  msgstr "L'oggetto è obbligatorio"
358
 
359
+ #: contact_form.php:426
360
+ #: contact_form.php:467
361
+ #: contact_form.php:470
362
  msgid "Message text is required."
363
  msgstr "Il campo messaggio è obbligatorio"
364
 
365
+ #: contact_form.php:427
366
  msgid "File format is not valid."
367
  msgstr "L'attachment non è corretto"
368
 
369
+ #: contact_form.php:428
370
  msgid "File upload error."
371
  msgstr ""
372
 
373
+ #: contact_form.php:429
374
  msgid "The file could not be uploaded."
375
  msgstr ""
376
 
377
+ #: contact_form.php:430
378
  msgid "This file is too large."
379
  msgstr ""
380
 
381
+ #: contact_form.php:431
382
  msgid "Please fill out the CAPTCHA."
383
  msgstr "Completa il CAPTCHA"
384
 
385
+ #: contact_form.php:432
386
  msgid "Please make corrections below and try again."
387
  msgstr "Controlla i dati del modulo e riprova!"
388
 
389
+ #: contact_form.php:705
 
 
 
 
390
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
391
  msgstr "se l'opzione 'Reindirizza a pagina' è impostata, allora il campo URL deve essere nel seguente formato"
392
 
393
+ #: contact_form.php:714
394
  msgid "Such user does not exist. Settings are not saved."
395
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
396
 
397
+ #: contact_form.php:719
398
+ #: contact_form.php:725
399
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
400
  msgstr "Perfavore inserisci una e-mail corretta nel campo 'DA'. Opzioni non salvate."
401
 
402
+ #: contact_form.php:730
403
  #, fuzzy
404
  msgid "Settings saved."
405
  msgstr "Opzioni salvate."
406
 
407
+ #: contact_form.php:755
408
+ #: contact_form.php:1003
409
  #, fuzzy
410
  msgid "Extra settings"
411
  msgstr "Settaggi"
412
 
413
+ #: contact_form.php:760
414
+ #: contact_form.php:1259
415
  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:"
416
  msgstr "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine o widget:"
417
 
418
+ #: contact_form.php:761
419
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
420
  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. "
421
 
422
+ #: contact_form.php:765
423
  msgid "The user's email address:"
424
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
425
 
426
+ #: contact_form.php:769
427
  msgid "Create a username"
428
  msgstr "Seleziona nome utente"
429
 
430
+ #: contact_form.php:774
431
  msgid "Enter a username of the person who should get the messages from the contact form."
432
  msgstr "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
433
 
434
+ #: contact_form.php:778
435
  msgid "Use this email address:"
436
  msgstr "Utilizza questa e-mail:"
437
 
438
+ #: contact_form.php:781
439
  msgid "Enter the email address you want the messages forwarded to."
440
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
441
 
442
+ #: contact_form.php:785
443
  msgid "Additional options"
444
  msgstr "Impostazioni aggiuntive"
445
 
446
+ #: contact_form.php:788
447
  msgid "What to use?"
448
  msgstr "Cosa utilizzare?"
449
 
450
+ #: contact_form.php:791
451
  msgid "Wp-mail"
452
  msgstr "Wp-mail"
453
 
454
+ #: contact_form.php:792
455
  msgid "You can use the wp_mail function for mailing"
456
  msgstr "Per inviare e-mail puoi utilizzare la funzione wp_mail"
457
 
458
+ #: contact_form.php:798
459
  msgid "Mail"
460
  msgstr "Mail"
461
 
462
+ #: contact_form.php:799
463
  msgid "To send mail you can use the php mail function"
464
  msgstr "Per inviare e-mail puoi utilizzare la funzione mail di php"
465
 
466
+ #: contact_form.php:803
467
  msgid "Change text of the 'FROM' field"
468
  msgstr "Modifica il contenuto del campo 'DA'"
469
 
470
+ #: contact_form.php:809
471
  msgid "Enter the email address in the 'From' field"
472
  msgstr "Inserisci l'indirizzo e-mail nel campo 'DA'"
473
 
474
+ #: contact_form.php:811
475
  msgid "User email"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "The email address of the user who fills the form will be used in the field 'From'."
480
  msgstr "L'indirizzo e-mail dell'utente che compila il form verrà usato nel campo 'DA'"
481
 
482
+ #: contact_form.php:813
483
  msgid "This email address will be used in the 'From' field."
484
  msgstr "Questo indirizzo e-mail verrà utilizzato nel campo 'DA'"
485
 
486
+ #: contact_form.php:817
487
  #, fuzzy
488
  msgid "Display fields"
489
  msgstr "Visualizza il testo"
490
 
491
+ #: contact_form.php:819
492
+ #: contact_form.php:849
493
+ #: contact_form.php:1039
494
+ #: contact_form.php:1691
495
  #, fuzzy
496
  msgid "Address"
497
  msgstr "Indirizzo e-mail"
498
 
499
+ #: contact_form.php:820
500
+ #: contact_form.php:851
501
+ #: contact_form.php:1699
502
  msgid "Phone"
503
  msgstr "Telefono"
504
 
505
+ #: contact_form.php:821
506
  #, fuzzy
507
  msgid "Attachment block"
508
  msgstr "Visualizza l'attachment"
509
 
510
+ #: contact_form.php:821
511
  msgid "Users can attach the following file formats"
512
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
513
 
514
+ #: contact_form.php:822
515
  #, fuzzy
516
  msgid "Tips below the Attachment block"
517
  msgstr "Visualizza suggeriementi sotto il blocco Allegato"
518
 
519
+ #: contact_form.php:823
520
  #, fuzzy
521
  msgid "Send me a copy block"
522
  msgstr "Visualizza il blocco \"Inviami una copia\" "
523
 
524
+ #: contact_form.php:835
525
+ #: contact_form.php:838
526
+ #: contact_form.php:841
527
+ #: contact_form.php:1068
528
  msgid "Captcha"
529
  msgstr ""
530
 
531
+ #: contact_form.php:835
532
+ #: contact_form.php:838
533
+ #: contact_form.php:841
534
+ #: contact_form.php:1068
535
  msgid "(powered by bestwebsoft.com)"
536
  msgstr ""
537
 
538
+ #: contact_form.php:838
539
  #, fuzzy
540
  msgid "Activate captcha"
541
  msgstr "Plugin attivati"
542
 
543
+ #: contact_form.php:841
544
  #, fuzzy
545
  msgid "Download captcha"
546
  msgstr "Download"
547
 
548
+ #: contact_form.php:846
549
  msgid "Required fields"
550
  msgstr "Campi richiesti"
551
 
552
+ #: contact_form.php:848
553
+ #: contact_form.php:1034
554
+ #: contact_form.php:1686
555
  msgid "Name"
556
  msgstr "Nome"
557
 
558
+ #: contact_form.php:850
559
  msgid "Email Address"
560
  msgstr "Indirizzo e-mail"
561
 
562
+ #: contact_form.php:852
563
+ #: contact_form.php:1054
564
+ #: contact_form.php:1702
565
  msgid "Subject"
566
  msgstr "Oggetto"
567
 
568
+ #: contact_form.php:853
569
+ #: contact_form.php:1058
570
+ #: contact_form.php:1705
571
  msgid "Message"
572
  msgstr "Messaggio"
573
 
574
+ #: contact_form.php:857
575
  msgid "Display additional info in the email"
576
  msgstr "Visualizza informazioni aggiuntive nella e-mail"
577
 
578
+ #: contact_form.php:862
579
+ #: contact_form.php:1658
580
  msgid "Sent from (ip address)"
581
  msgstr "Inviato da (indirizzi IP)"
582
 
583
+ #: contact_form.php:863
584
+ #: contact_form.php:1663
585
  msgid "Date/Time"
586
  msgstr "Data/Ora"
587
 
588
+ #: contact_form.php:864
589
+ #: contact_form.php:1668
590
  msgid "Sent from (referer)"
591
  msgstr "Da (referente)"
592
 
593
+ #: contact_form.php:865
594
+ #: contact_form.php:1673
595
  msgid "Using (user agent)"
596
  msgstr "Utilizza (user agent)"
597
 
598
+ #: contact_form.php:869
599
  msgid "Language settings for the field names in the form"
600
  msgstr "Impostazione della lingua per i nomi dei campi del form"
601
 
602
+ #: contact_form.php:878
603
  msgid "Add a language"
604
  msgstr "Aggiungi un linguaggio"
605
 
606
+ #: contact_form.php:882
607
  msgid "Change the names of the contact form fields and error messages"
608
  msgstr "Modifica le etichette dei campi del contact form"
609
 
610
+ #: contact_form.php:887
611
+ #: contact_form.php:958
612
  msgid "English"
613
  msgstr "Inglese"
614
 
615
+ #: contact_form.php:906
616
+ #: contact_form.php:935
617
  msgid "Error message for the Name field"
618
  msgstr "Messaggio d'errore per il campo Nome"
619
 
620
+ #: contact_form.php:907
621
+ #: contact_form.php:936
622
  #, fuzzy
623
  msgid "Error message for the Address field"
624
  msgstr "Messaggio d'errore per il campo Testo del Messaggio"
625
 
626
+ #: contact_form.php:908
627
+ #: contact_form.php:937
628
  msgid "Error message for the Email field"
629
  msgstr "Messaggio d'errore per il campo e-mail"
630
 
631
+ #: contact_form.php:909
632
+ #: contact_form.php:938
633
  msgid "Error message for the Phone field"
634
  msgstr "Messaggio d'errore per il campo Telefono"
635
 
636
+ #: contact_form.php:910
637
+ #: contact_form.php:939
638
  msgid "Error message for the Subject field"
639
  msgstr "Messaggio d'errore per il campo Soggetto"
640
 
641
+ #: contact_form.php:911
642
+ #: contact_form.php:940
643
  msgid "Error message for the Message field"
644
  msgstr "Messaggio d'errore per il campo Testo del Messaggio"
645
 
646
+ #: contact_form.php:912
647
+ #: contact_form.php:941
648
  #, fuzzy
649
  msgid "Error message about the file type for the Attachment field"
650
  msgstr "Messaggio d'errore per il campo Allegato"
651
 
652
+ #: contact_form.php:913
653
+ #: contact_form.php:942
654
  #, fuzzy
655
  msgid "Error message while uploading a file for the Attachment field to the server"
656
  msgstr "Messaggio d'errore per il campo Allegato"
657
 
658
+ #: contact_form.php:914
659
+ #: contact_form.php:943
660
  #, fuzzy
661
  msgid "Error message while moving the file for the Attachment field"
662
  msgstr "Messaggio d'errore per il campo Allegato"
663
 
664
+ #: contact_form.php:915
665
+ #: contact_form.php:944
666
  #, fuzzy
667
  msgid "Error message when file size limit for the Attachment field is exceeded"
668
  msgstr "Messaggio d'errore per il campo Allegato"
669
 
670
+ #: contact_form.php:916
671
+ #: contact_form.php:945
672
  msgid "Error message for the Captcha field"
673
  msgstr "Messaggio d'errore per il campo Captcha"
674
 
675
+ #: contact_form.php:917
676
+ #: contact_form.php:946
677
  msgid "Error message for the whole form"
678
  msgstr "Messaggio d'errore per l'intero modulo"
679
 
680
+ #: contact_form.php:919
681
+ #: contact_form.php:948
682
+ #: contact_form.php:967
683
+ #: contact_form.php:973
684
  msgid "Use shortcode"
685
  msgstr "usa lo shortcode"
686
 
687
+ #: contact_form.php:919
688
+ #: contact_form.php:948
689
+ #: contact_form.php:967
690
+ #: contact_form.php:973
691
  msgid "for this language"
692
  msgstr "per questa lingua"
693
 
694
+ #: contact_form.php:955
695
  msgid "Action after email is sent"
696
  msgstr "Azione successiva all'invio dell'e-mail"
697
 
698
+ #: contact_form.php:957
699
  msgid "Display text"
700
  msgstr "Visualizza il testo"
701
 
702
+ #: contact_form.php:966
703
+ #: contact_form.php:972
704
  msgid "Text"
705
  msgstr "Testo"
706
 
707
+ #: contact_form.php:979
708
  msgid "Redirect to the page"
709
  msgstr "Reindirizza alla pagina"
710
 
711
+ #: contact_form.php:980
712
  msgid "Url"
713
  msgstr "Url"
714
 
715
+ #: contact_form.php:985
716
+ #: contact_form.php:1160
717
  msgid "Save Changes"
718
  msgstr "Salva le modifiche"
719
 
720
+ #: contact_form.php:1000
721
  #, fuzzy
722
  msgid "Contact Form Pro | Extra Settings"
723
  msgstr "Opzioni Contact Form"
724
 
725
+ #: contact_form.php:1007
726
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
727
  msgstr ""
728
 
729
+ #: contact_form.php:1014
730
  msgid "Errors output"
731
  msgstr ""
732
 
733
+ #: contact_form.php:1017
734
  msgid "Display error messages"
735
  msgstr ""
736
 
737
+ #: contact_form.php:1018
738
  msgid "Color of the input field errors."
739
  msgstr ""
740
 
741
+ #: contact_form.php:1019
742
  #, fuzzy
743
  msgid "Display error messages & color of the input field errors"
744
  msgstr "Messaggio d'errore per il campo Soggetto"
745
 
746
+ #: contact_form.php:1024
747
  msgid "Add placeholder to the input blocks"
748
  msgstr ""
749
 
750
+ #: contact_form.php:1030
751
  #, fuzzy
752
  msgid "Add tooltips"
753
  msgstr "Impostazioni aggiuntive"
754
 
755
+ #: contact_form.php:1044
756
  #, fuzzy
757
  msgid "Email address"
758
  msgstr "Indirizzo e-mail"
759
 
760
+ #: contact_form.php:1049
761
  #, fuzzy
762
  msgid "Phone Number"
763
  msgstr "Numero di telefono:"
764
 
765
+ #: contact_form.php:1063
766
  #, fuzzy
767
  msgid "Attachment"
768
  msgstr "Attachment:"
769
 
770
+ #: contact_form.php:1073
771
  #, fuzzy
772
  msgid "Style options"
773
  msgstr "Impostazioni aggiuntive"
774
 
775
+ #: contact_form.php:1076
776
  msgid "Text color"
777
  msgstr ""
778
 
779
+ #: contact_form.php:1079
780
+ #: contact_form.php:1084
781
+ #: contact_form.php:1094
782
+ #: contact_form.php:1099
783
+ #: contact_form.php:1104
784
+ #: contact_form.php:1109
785
+ #: contact_form.php:1119
786
+ #: contact_form.php:1124
787
+ #: contact_form.php:1130
788
+ #: contact_form.php:1141
789
+ #: contact_form.php:1146
790
+ #: contact_form.php:1151
791
  msgid "Default"
792
  msgstr ""
793
 
794
+ #: contact_form.php:1081
795
  msgid "Label text color"
796
  msgstr ""
797
 
798
+ #: contact_form.php:1086
799
  msgid "Placeholder color"
800
  msgstr ""
801
 
802
+ #: contact_form.php:1091
803
  msgid "Errors color"
804
  msgstr ""
805
 
806
+ #: contact_form.php:1096
807
  msgid "Error text color"
808
  msgstr ""
809
 
810
+ #: contact_form.php:1101
811
  msgid "Background color of the input field errors"
812
  msgstr ""
813
 
814
+ #: contact_form.php:1106
815
  msgid "Border color of the input field errors"
816
  msgstr ""
817
 
818
+ #: contact_form.php:1111
819
  msgid "Placeholder color of the input field errors"
820
  msgstr ""
821
 
822
+ #: contact_form.php:1116
823
  #, fuzzy
824
  msgid "Input fields"
825
  msgstr "Visualizza il testo"
826
 
827
+ #: contact_form.php:1121
828
  msgid "Input fields background color"
829
  msgstr ""
830
 
831
+ #: contact_form.php:1126
832
  msgid "Text fields color"
833
  msgstr ""
834
 
835
+ #: contact_form.php:1128
836
  msgid "Border width in px, numbers only"
837
  msgstr ""
838
 
839
+ #: contact_form.php:1132
840
+ #: contact_form.php:1153
841
  msgid "Border color"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1137
845
  #, fuzzy
846
  msgid "Submit button"
847
  msgstr "Invia"
848
 
849
+ #: contact_form.php:1139
850
  msgid "Width in px, numbers only"
851
  msgstr ""
852
 
853
+ #: contact_form.php:1143
854
  msgid "Button color"
855
  msgstr ""
856
 
857
+ #: contact_form.php:1148
858
  msgid "Button text color"
859
  msgstr ""
860
 
861
+ #: contact_form.php:1164
862
  #, fuzzy
863
  msgid "Contact Form Pro | Preview"
864
  msgstr "Contact Form"
865
 
866
+ #: contact_form.php:1167
867
  msgid "Show with errors"
868
  msgstr ""
869
 
870
+ #: contact_form.php:1175
871
+ #: contact_form.php:1177
872
  msgid "Please enter your full name..."
873
  msgstr ""
874
 
875
+ #: contact_form.php:1188
876
+ #: contact_form.php:1190
877
  msgid "Please enter your address..."
878
  msgstr ""
879
 
880
+ #: contact_form.php:1199
881
+ #: contact_form.php:1201
882
  #, fuzzy
883
  msgid "Please enter your email address..."
884
  msgstr "Utilizza questa e-mail:"
885
 
886
+ #: contact_form.php:1210
887
+ #: contact_form.php:1212
888
  msgid "Please enter your phone number..."
889
  msgstr ""
890
 
891
+ #: contact_form.php:1221
892
+ #: contact_form.php:1223
893
  msgid "Please enter subject..."
894
  msgstr ""
895
 
896
+ #: contact_form.php:1231
897
+ #: contact_form.php:1233
898
  msgid "Please enter your message..."
899
  msgstr ""
900
 
901
+ #: contact_form.php:1244
902
  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"
903
  msgstr ""
904
 
905
+ #: contact_form.php:1397
 
 
 
 
906
  msgid "You can attach the following file formats"
907
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
908
 
909
+ #: contact_form.php:1681
910
  msgid "Contact from"
911
  msgstr "Contact from"
912
 
913
+ #: contact_form.php:1694
914
  msgid "Email"
915
  msgstr "e-mail"
916
 
917
+ #: contact_form.php:1708
918
  msgid "Site"
919
  msgstr "Sito"
920
 
921
+ #: contact_form.php:1758
922
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
923
  msgstr "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
924
 
925
+ #: contact_form.php:1809
926
  msgid "FAQ"
927
  msgstr "FAQ"
928
 
929
+ #: contact_form.php:1810
930
  msgid "Support"
931
  msgstr "Supporto"
932
 
933
+ #: contact_form.php:1858
934
  msgid "Are you sure that you want to delete this language data?"
935
  msgstr "Sei sicuro di voler cancellare questo linguaggio?"
936
 
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: 2013-07-16 16:05+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:05+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,759 +16,924 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "有効なプラグイン"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "もっと読む"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "設定"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "導入済みプラグイン"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "推奨プラグイン"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "推奨プラグイン"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "ダウンロード"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "%s 導入"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "wordpress.org から直ぐに導入"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "もそご質問がある場合は、plugin@bestwebsoft.comにご連絡頂くか、我々のサイトのコンタクトフォームからお願いします。"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "コンタクトフォーム オプション"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Contact Form"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "コンタクトフォーム オプション"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Contact Form"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "名前:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "E-Mail:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "E-Mail:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "件名:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "メッセージ:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "添付:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "コピーを自分に送る"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "送信"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "名前は必須です。"
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "正確なemailが必須です。"
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "正確なemailが必須です。"
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "名前は必須です。"
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "件名は必須です。"
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "メッセージ本文は必須です。"
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "添付が壊れています。"
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "CAPTCHAを入力して下さい。"
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "以下を修正し、再度試して下さい。"
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "ご連絡ありがとうございます"
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr ""
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "このようなユーザは存在しません。設定は保存されません。"
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "正確なemailを入力して下さい。設定は保存されません。"
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "オプション保存."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "設定"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
249
  #, fuzzy
250
  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:"
251
  msgstr "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを投稿またはページにコピーして貼り付けるだけです。"
252
 
253
- #: contact_form.php:550
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:554
258
  msgid "The user's email address:"
259
  msgstr "wordpressユーザのemailを利用r:"
260
 
261
- #: contact_form.php:558
262
  msgid "Create a username"
263
  msgstr "ユーザ名の選択"
264
 
265
- #: contact_form.php:563
266
  #, fuzzy
267
  msgid "Enter a username of the person who should get the messages from the contact form."
268
  msgstr "コンタクトフォームからメッセージを受け取るユーザ名を設定。"
269
 
270
- #: contact_form.php:567
271
  msgid "Use this email address:"
272
  msgstr "このemailを利用:"
273
 
274
- #: contact_form.php:570
275
  msgid "Enter the email address you want the messages forwarded to."
276
  msgstr "メッセージ受信用のemailを設定。"
277
 
278
- #: contact_form.php:574
279
  msgid "Additional options"
280
  msgstr "追加オプション"
281
 
282
- #: contact_form.php:577
283
  msgid "What to use?"
284
  msgstr ""
285
 
286
- #: contact_form.php:580
287
  #, fuzzy
288
  msgid "Wp-mail"
289
  msgstr "E-Mail"
290
 
291
- #: contact_form.php:581
292
  msgid "You can use the wp_mail function for mailing"
293
  msgstr ""
294
 
295
- #: contact_form.php:587
296
  msgid "Mail"
297
  msgstr ""
298
 
299
- #: contact_form.php:588
300
  msgid "To send mail you can use the php mail function"
301
  msgstr ""
302
 
303
- #: contact_form.php:592
304
  #, fuzzy
305
  msgid "Change text of the 'FROM' field"
306
  msgstr "コンタクトフォームのフィールドのラベルを変更"
307
 
308
- #: contact_form.php:598
309
  msgid "Enter the email address in the 'From' field"
310
  msgstr ""
311
 
312
- #: contact_form.php:600
313
  msgid "User email"
314
  msgstr ""
315
 
316
- #: contact_form.php:600
317
  msgid "The email address of the user who fills the form will be used in the field 'From'."
318
  msgstr ""
319
 
320
- #: contact_form.php:602
321
  msgid "This email address will be used in the 'From' field."
322
  msgstr ""
323
 
324
- #: contact_form.php:606
325
  #, fuzzy
326
  msgid "Display fields"
327
  msgstr "添付ブロックを表示"
328
 
329
- #: contact_form.php:608
330
- #: contact_form.php:638
331
- #: contact_form.php:828
332
- #: contact_form.php:1480
333
  #, fuzzy
334
  msgid "Address"
335
  msgstr "E-Mail:"
336
 
337
- #: contact_form.php:609
338
- #: contact_form.php:640
339
- #: contact_form.php:1488
340
  msgid "Phone"
341
  msgstr ""
342
 
343
- #: contact_form.php:610
344
  #, fuzzy
345
  msgid "Attachment block"
346
  msgstr "添付ブロックを表示"
347
 
348
- #: contact_form.php:610
349
  msgid "Users can attach the following file formats"
350
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
351
 
352
- #: contact_form.php:611
353
  #, fuzzy
354
  msgid "Tips below the Attachment block"
355
  msgstr "添付ブロックを表示"
356
 
357
- #: contact_form.php:612
358
  #, fuzzy
359
  msgid "Send me a copy block"
360
  msgstr "コピーブロックを自分に送るを表示"
361
 
362
- #: contact_form.php:624
363
- #: contact_form.php:627
364
- #: contact_form.php:630
365
- #: contact_form.php:857
366
  msgid "Captcha"
367
  msgstr ""
368
 
369
- #: contact_form.php:624
370
- #: contact_form.php:627
371
- #: contact_form.php:630
372
- #: contact_form.php:857
373
  msgid "(powered by bestwebsoft.com)"
374
  msgstr ""
375
 
376
- #: contact_form.php:627
377
  #, fuzzy
378
  msgid "Activate captcha"
379
  msgstr "有効なプラグイン"
380
 
381
- #: contact_form.php:630
382
  #, fuzzy
383
  msgid "Download captcha"
384
  msgstr "ダウンロード"
385
 
386
- #: contact_form.php:635
387
  msgid "Required fields"
388
  msgstr ""
389
 
390
- #: contact_form.php:637
391
- #: contact_form.php:823
392
- #: contact_form.php:1475
393
  msgid "Name"
394
  msgstr "名前"
395
 
396
- #: contact_form.php:639
397
  #, fuzzy
398
  msgid "Email Address"
399
  msgstr "E-Mail:"
400
 
401
- #: contact_form.php:641
402
- #: contact_form.php:843
403
- #: contact_form.php:1491
404
  msgid "Subject"
405
  msgstr "件名"
406
 
407
- #: contact_form.php:642
408
- #: contact_form.php:847
409
- #: contact_form.php:1494
410
  msgid "Message"
411
  msgstr "メッセージ"
412
 
413
- #: contact_form.php:646
414
  msgid "Display additional info in the email"
415
  msgstr ""
416
 
417
- #: contact_form.php:651
418
- #: contact_form.php:1447
419
  msgid "Sent from (ip address)"
420
  msgstr "(IP-Adresse)から送られた"
421
 
422
- #: contact_form.php:652
423
- #: contact_form.php:1452
424
  msgid "Date/Time"
425
  msgstr "日時"
426
 
427
- #: contact_form.php:653
428
- #: contact_form.php:1457
429
  msgid "Sent from (referer)"
430
  msgstr "(referer)から送られている"
431
 
432
- #: contact_form.php:654
433
- #: contact_form.php:1462
434
  msgid "Using (user agent)"
435
  msgstr "(user agent)使用"
436
 
437
- #: contact_form.php:658
438
  msgid "Language settings for the field names in the form"
439
  msgstr ""
440
 
441
- #: contact_form.php:667
442
  msgid "Add a language"
443
  msgstr ""
444
 
445
- #: contact_form.php:671
446
  #, fuzzy
447
  msgid "Change the names of the contact form fields and error messages"
448
  msgstr "コンタクトフォームのフィールドのラベルを変更"
449
 
450
- #: contact_form.php:676
451
- #: contact_form.php:747
452
  msgid "English"
453
  msgstr ""
454
 
455
- #: contact_form.php:695
456
- #: contact_form.php:724
457
  msgid "Error message for the Name field"
458
  msgstr ""
459
 
460
- #: contact_form.php:696
461
- #: contact_form.php:725
462
  msgid "Error message for the Address field"
463
  msgstr ""
464
 
465
- #: contact_form.php:697
466
- #: contact_form.php:726
467
  msgid "Error message for the Email field"
468
  msgstr ""
469
 
470
- #: contact_form.php:698
471
- #: contact_form.php:727
472
  msgid "Error message for the Phone field"
473
  msgstr ""
474
 
475
- #: contact_form.php:699
476
- #: contact_form.php:728
477
  msgid "Error message for the Subject field"
478
  msgstr ""
479
 
480
- #: contact_form.php:700
481
- #: contact_form.php:729
482
  msgid "Error message for the Message field"
483
  msgstr ""
484
 
485
- #: contact_form.php:701
486
- #: contact_form.php:730
487
  msgid "Error message about the file type for the Attachment field"
488
  msgstr ""
489
 
490
- #: contact_form.php:702
491
- #: contact_form.php:731
492
  msgid "Error message while uploading a file for the Attachment field to the server"
493
  msgstr ""
494
 
495
- #: contact_form.php:703
496
- #: contact_form.php:732
497
  msgid "Error message while moving the file for the Attachment field"
498
  msgstr ""
499
 
500
- #: contact_form.php:704
501
- #: contact_form.php:733
502
  msgid "Error message when file size limit for the Attachment field is exceeded"
503
  msgstr ""
504
 
505
- #: contact_form.php:705
506
- #: contact_form.php:734
507
  msgid "Error message for the Captcha field"
508
  msgstr ""
509
 
510
- #: contact_form.php:706
511
- #: contact_form.php:735
512
  msgid "Error message for the whole form"
513
  msgstr ""
514
 
515
- #: contact_form.php:708
516
- #: contact_form.php:737
517
- #: contact_form.php:756
518
- #: contact_form.php:762
519
  msgid "Use shortcode"
520
  msgstr ""
521
 
522
- #: contact_form.php:708
523
- #: contact_form.php:737
524
- #: contact_form.php:756
525
- #: contact_form.php:762
526
  msgid "for this language"
527
  msgstr ""
528
 
529
- #: contact_form.php:744
530
  msgid "Action after email is sent"
531
  msgstr ""
532
 
533
- #: contact_form.php:746
534
  #, fuzzy
535
  msgid "Display text"
536
  msgstr "添付ブロックを表示"
537
 
538
- #: contact_form.php:755
539
- #: contact_form.php:761
540
  msgid "Text"
541
  msgstr ""
542
 
543
- #: contact_form.php:768
544
  msgid "Redirect to the page"
545
  msgstr ""
546
 
547
- #: contact_form.php:769
548
  msgid "Url"
549
  msgstr ""
550
 
551
- #: contact_form.php:774
552
- #: contact_form.php:949
553
  msgid "Save Changes"
554
  msgstr "変更を保存"
555
 
556
- #: contact_form.php:789
557
  #, fuzzy
558
  msgid "Contact Form Pro | Extra Settings"
559
  msgstr "コンタクトフォーム オプション"
560
 
561
- #: contact_form.php:796
562
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
563
  msgstr ""
564
 
565
- #: contact_form.php:803
566
  msgid "Errors output"
567
  msgstr ""
568
 
569
- #: contact_form.php:806
570
  msgid "Display error messages"
571
  msgstr ""
572
 
573
- #: contact_form.php:807
574
  msgid "Color of the input field errors."
575
  msgstr ""
576
 
577
- #: contact_form.php:808
578
  msgid "Display error messages & color of the input field errors"
579
  msgstr ""
580
 
581
- #: contact_form.php:813
582
  msgid "Add placeholder to the input blocks"
583
  msgstr ""
584
 
585
- #: contact_form.php:819
586
  #, fuzzy
587
  msgid "Add tooltips"
588
  msgstr "追加オプション"
589
 
590
- #: contact_form.php:833
591
  #, fuzzy
592
  msgid "Email address"
593
  msgstr "E-Mail:"
594
 
595
- #: contact_form.php:838
596
  msgid "Phone Number"
597
  msgstr ""
598
 
599
- #: contact_form.php:852
600
  #, fuzzy
601
  msgid "Attachment"
602
  msgstr "添付:"
603
 
604
- #: contact_form.php:862
605
  #, fuzzy
606
  msgid "Style options"
607
  msgstr "追加オプション"
608
 
609
- #: contact_form.php:865
610
  msgid "Text color"
611
  msgstr ""
612
 
613
- #: contact_form.php:868
614
- #: contact_form.php:873
615
- #: contact_form.php:883
616
- #: contact_form.php:888
617
- #: contact_form.php:893
618
- #: contact_form.php:898
619
- #: contact_form.php:908
620
- #: contact_form.php:913
621
- #: contact_form.php:919
622
- #: contact_form.php:930
623
- #: contact_form.php:935
624
- #: contact_form.php:940
625
  msgid "Default"
626
  msgstr ""
627
 
628
- #: contact_form.php:870
629
  msgid "Label text color"
630
  msgstr ""
631
 
632
- #: contact_form.php:875
633
  msgid "Placeholder color"
634
  msgstr ""
635
 
636
- #: contact_form.php:880
637
  msgid "Errors color"
638
  msgstr ""
639
 
640
- #: contact_form.php:885
641
  msgid "Error text color"
642
  msgstr ""
643
 
644
- #: contact_form.php:890
645
  msgid "Background color of the input field errors"
646
  msgstr ""
647
 
648
- #: contact_form.php:895
649
  msgid "Border color of the input field errors"
650
  msgstr ""
651
 
652
- #: contact_form.php:900
653
  msgid "Placeholder color of the input field errors"
654
  msgstr ""
655
 
656
- #: contact_form.php:905
657
  #, fuzzy
658
  msgid "Input fields"
659
  msgstr "添付ブロックを表示"
660
 
661
- #: contact_form.php:910
662
  msgid "Input fields background color"
663
  msgstr ""
664
 
665
- #: contact_form.php:915
666
  msgid "Text fields color"
667
  msgstr ""
668
 
669
- #: contact_form.php:917
670
  msgid "Border width in px, numbers only"
671
  msgstr ""
672
 
673
- #: contact_form.php:921
674
- #: contact_form.php:942
675
  msgid "Border color"
676
  msgstr ""
677
 
678
- #: contact_form.php:926
679
  #, fuzzy
680
  msgid "Submit button"
681
  msgstr "送信"
682
 
683
- #: contact_form.php:928
684
  msgid "Width in px, numbers only"
685
  msgstr ""
686
 
687
- #: contact_form.php:932
688
  msgid "Button color"
689
  msgstr ""
690
 
691
- #: contact_form.php:937
692
  msgid "Button text color"
693
  msgstr ""
694
 
695
- #: contact_form.php:953
696
  #, fuzzy
697
  msgid "Contact Form Pro | Preview"
698
  msgstr "Contact Form"
699
 
700
- #: contact_form.php:956
701
  msgid "Show with errors"
702
  msgstr ""
703
 
704
- #: contact_form.php:964
705
- #: contact_form.php:966
706
  msgid "Please enter your full name..."
707
  msgstr ""
708
 
709
- #: contact_form.php:977
710
- #: contact_form.php:979
711
  msgid "Please enter your address..."
712
  msgstr ""
713
 
714
- #: contact_form.php:988
715
- #: contact_form.php:990
716
  #, fuzzy
717
  msgid "Please enter your email address..."
718
  msgstr "このemailを利用:"
719
 
720
- #: contact_form.php:999
721
- #: contact_form.php:1001
722
  msgid "Please enter your phone number..."
723
  msgstr ""
724
 
725
- #: contact_form.php:1010
726
- #: contact_form.php:1012
727
  msgid "Please enter subject..."
728
  msgstr ""
729
 
730
- #: contact_form.php:1020
731
- #: contact_form.php:1022
732
  msgid "Please enter your message..."
733
  msgstr ""
734
 
735
- #: contact_form.php:1033
736
  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"
737
  msgstr ""
738
 
739
- #: contact_form.php:1102
740
- msgid "Sorry, email message could not be delivered."
741
- msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
742
-
743
- #: contact_form.php:1186
744
  msgid "You can attach the following file formats"
745
  msgstr "貴方は、以下のタイプのファイルを添付できます"
746
 
747
- #: contact_form.php:1470
748
  msgid "Contact from"
749
  msgstr "コンタクトフォーム"
750
 
751
- #: contact_form.php:1483
752
  msgid "Email"
753
  msgstr "E-Mail"
754
 
755
- #: contact_form.php:1497
756
  msgid "Site"
757
  msgstr "サイト"
758
 
759
- #: contact_form.php:1547
760
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
761
  msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
762
 
763
- #: contact_form.php:1598
764
  msgid "FAQ"
765
  msgstr "FAQ"
766
 
767
- #: contact_form.php:1599
768
  msgid "Support"
769
  msgstr "サポート"
770
 
771
- #: contact_form.php:1647
772
  msgid "Are you sure that you want to delete this language data?"
773
  msgstr ""
774
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:56+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:56+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "メッセージ"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "サイト"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "このemailを利用:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "ご連絡ありがとうございます"
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "有効なプラグイン"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "もっと読む"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "設定"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "導入済みプラグイン"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "推奨プラグイン"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "推奨プラグイン"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "ダウンロード"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "%s 導入"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "wordpress.org から直ぐに導入"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "もそご質問がある場合は、plugin@bestwebsoft.comにご連絡頂くか、我々のサイトのコンタクトフォームからお願いします。"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "有効なプラグイン"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "有効なプラグイン"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "サポート"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "コンタクトフォーム オプション"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Contact Form"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "コンタクトフォーム オプション"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Contact Form"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "名前:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "E-Mail:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "E-Mail:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "件名:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "メッセージ:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "添付:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "コピーを自分に送る"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "送信"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "名前は必須です。"
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "正確なemailが必須です。"
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "正確なemailが必須です。"
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "名前は必須です。"
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "件名は必須です。"
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "メッセージ本文は必須です。"
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "添付が壊れています。"
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "CAPTCHAを入力して下さい。"
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "以下を修正し、再度試して下さい。"
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr ""
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "このようなユーザは存在しません。設定は保存されません。"
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "正確なemailを入力して下さい。設定は保存されません。"
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "オプション保存."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "設定"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  #, fuzzy
419
  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:"
420
  msgstr "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを投稿またはページにコピーして貼り付けるだけです。"
421
 
422
+ #: contact_form.php:761
423
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
424
  msgstr "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られます。"
425
 
426
+ #: contact_form.php:765
427
  msgid "The user's email address:"
428
  msgstr "wordpressユーザのemailを利用r:"
429
 
430
+ #: contact_form.php:769
431
  msgid "Create a username"
432
  msgstr "ユーザ名の選択"
433
 
434
+ #: contact_form.php:774
435
  #, fuzzy
436
  msgid "Enter a username of the person who should get the messages from the contact form."
437
  msgstr "コンタクトフォームからメッセージを受け取るユーザ名を設定。"
438
 
439
+ #: contact_form.php:778
440
  msgid "Use this email address:"
441
  msgstr "このemailを利用:"
442
 
443
+ #: contact_form.php:781
444
  msgid "Enter the email address you want the messages forwarded to."
445
  msgstr "メッセージ受信用のemailを設定。"
446
 
447
+ #: contact_form.php:785
448
  msgid "Additional options"
449
  msgstr "追加オプション"
450
 
451
+ #: contact_form.php:788
452
  msgid "What to use?"
453
  msgstr ""
454
 
455
+ #: contact_form.php:791
456
  #, fuzzy
457
  msgid "Wp-mail"
458
  msgstr "E-Mail"
459
 
460
+ #: contact_form.php:792
461
  msgid "You can use the wp_mail function for mailing"
462
  msgstr ""
463
 
464
+ #: contact_form.php:798
465
  msgid "Mail"
466
  msgstr ""
467
 
468
+ #: contact_form.php:799
469
  msgid "To send mail you can use the php mail function"
470
  msgstr ""
471
 
472
+ #: contact_form.php:803
473
  #, fuzzy
474
  msgid "Change text of the 'FROM' field"
475
  msgstr "コンタクトフォームのフィールドのラベルを変更"
476
 
477
+ #: contact_form.php:809
478
  msgid "Enter the email address in the 'From' field"
479
  msgstr ""
480
 
481
+ #: contact_form.php:811
482
  msgid "User email"
483
  msgstr ""
484
 
485
+ #: contact_form.php:811
486
  msgid "The email address of the user who fills the form will be used in the field 'From'."
487
  msgstr ""
488
 
489
+ #: contact_form.php:813
490
  msgid "This email address will be used in the 'From' field."
491
  msgstr ""
492
 
493
+ #: contact_form.php:817
494
  #, fuzzy
495
  msgid "Display fields"
496
  msgstr "添付ブロックを表示"
497
 
498
+ #: contact_form.php:819
499
+ #: contact_form.php:849
500
+ #: contact_form.php:1039
501
+ #: contact_form.php:1691
502
  #, fuzzy
503
  msgid "Address"
504
  msgstr "E-Mail:"
505
 
506
+ #: contact_form.php:820
507
+ #: contact_form.php:851
508
+ #: contact_form.php:1699
509
  msgid "Phone"
510
  msgstr ""
511
 
512
+ #: contact_form.php:821
513
  #, fuzzy
514
  msgid "Attachment block"
515
  msgstr "添付ブロックを表示"
516
 
517
+ #: contact_form.php:821
518
  msgid "Users can attach the following file formats"
519
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
520
 
521
+ #: contact_form.php:822
522
  #, fuzzy
523
  msgid "Tips below the Attachment block"
524
  msgstr "添付ブロックを表示"
525
 
526
+ #: contact_form.php:823
527
  #, fuzzy
528
  msgid "Send me a copy block"
529
  msgstr "コピーブロックを自分に送るを表示"
530
 
531
+ #: contact_form.php:835
532
+ #: contact_form.php:838
533
+ #: contact_form.php:841
534
+ #: contact_form.php:1068
535
  msgid "Captcha"
536
  msgstr ""
537
 
538
+ #: contact_form.php:835
539
+ #: contact_form.php:838
540
+ #: contact_form.php:841
541
+ #: contact_form.php:1068
542
  msgid "(powered by bestwebsoft.com)"
543
  msgstr ""
544
 
545
+ #: contact_form.php:838
546
  #, fuzzy
547
  msgid "Activate captcha"
548
  msgstr "有効なプラグイン"
549
 
550
+ #: contact_form.php:841
551
  #, fuzzy
552
  msgid "Download captcha"
553
  msgstr "ダウンロード"
554
 
555
+ #: contact_form.php:846
556
  msgid "Required fields"
557
  msgstr ""
558
 
559
+ #: contact_form.php:848
560
+ #: contact_form.php:1034
561
+ #: contact_form.php:1686
562
  msgid "Name"
563
  msgstr "名前"
564
 
565
+ #: contact_form.php:850
566
  #, fuzzy
567
  msgid "Email Address"
568
  msgstr "E-Mail:"
569
 
570
+ #: contact_form.php:852
571
+ #: contact_form.php:1054
572
+ #: contact_form.php:1702
573
  msgid "Subject"
574
  msgstr "件名"
575
 
576
+ #: contact_form.php:853
577
+ #: contact_form.php:1058
578
+ #: contact_form.php:1705
579
  msgid "Message"
580
  msgstr "メッセージ"
581
 
582
+ #: contact_form.php:857
583
  msgid "Display additional info in the email"
584
  msgstr ""
585
 
586
+ #: contact_form.php:862
587
+ #: contact_form.php:1658
588
  msgid "Sent from (ip address)"
589
  msgstr "(IP-Adresse)から送られた"
590
 
591
+ #: contact_form.php:863
592
+ #: contact_form.php:1663
593
  msgid "Date/Time"
594
  msgstr "日時"
595
 
596
+ #: contact_form.php:864
597
+ #: contact_form.php:1668
598
  msgid "Sent from (referer)"
599
  msgstr "(referer)から送られている"
600
 
601
+ #: contact_form.php:865
602
+ #: contact_form.php:1673
603
  msgid "Using (user agent)"
604
  msgstr "(user agent)使用"
605
 
606
+ #: contact_form.php:869
607
  msgid "Language settings for the field names in the form"
608
  msgstr ""
609
 
610
+ #: contact_form.php:878
611
  msgid "Add a language"
612
  msgstr ""
613
 
614
+ #: contact_form.php:882
615
  #, fuzzy
616
  msgid "Change the names of the contact form fields and error messages"
617
  msgstr "コンタクトフォームのフィールドのラベルを変更"
618
 
619
+ #: contact_form.php:887
620
+ #: contact_form.php:958
621
  msgid "English"
622
  msgstr ""
623
 
624
+ #: contact_form.php:906
625
+ #: contact_form.php:935
626
  msgid "Error message for the Name field"
627
  msgstr ""
628
 
629
+ #: contact_form.php:907
630
+ #: contact_form.php:936
631
  msgid "Error message for the Address field"
632
  msgstr ""
633
 
634
+ #: contact_form.php:908
635
+ #: contact_form.php:937
636
  msgid "Error message for the Email field"
637
  msgstr ""
638
 
639
+ #: contact_form.php:909
640
+ #: contact_form.php:938
641
  msgid "Error message for the Phone field"
642
  msgstr ""
643
 
644
+ #: contact_form.php:910
645
+ #: contact_form.php:939
646
  msgid "Error message for the Subject field"
647
  msgstr ""
648
 
649
+ #: contact_form.php:911
650
+ #: contact_form.php:940
651
  msgid "Error message for the Message field"
652
  msgstr ""
653
 
654
+ #: contact_form.php:912
655
+ #: contact_form.php:941
656
  msgid "Error message about the file type for the Attachment field"
657
  msgstr ""
658
 
659
+ #: contact_form.php:913
660
+ #: contact_form.php:942
661
  msgid "Error message while uploading a file for the Attachment field to the server"
662
  msgstr ""
663
 
664
+ #: contact_form.php:914
665
+ #: contact_form.php:943
666
  msgid "Error message while moving the file for the Attachment field"
667
  msgstr ""
668
 
669
+ #: contact_form.php:915
670
+ #: contact_form.php:944
671
  msgid "Error message when file size limit for the Attachment field is exceeded"
672
  msgstr ""
673
 
674
+ #: contact_form.php:916
675
+ #: contact_form.php:945
676
  msgid "Error message for the Captcha field"
677
  msgstr ""
678
 
679
+ #: contact_form.php:917
680
+ #: contact_form.php:946
681
  msgid "Error message for the whole form"
682
  msgstr ""
683
 
684
+ #: contact_form.php:919
685
+ #: contact_form.php:948
686
+ #: contact_form.php:967
687
+ #: contact_form.php:973
688
  msgid "Use shortcode"
689
  msgstr ""
690
 
691
+ #: contact_form.php:919
692
+ #: contact_form.php:948
693
+ #: contact_form.php:967
694
+ #: contact_form.php:973
695
  msgid "for this language"
696
  msgstr ""
697
 
698
+ #: contact_form.php:955
699
  msgid "Action after email is sent"
700
  msgstr ""
701
 
702
+ #: contact_form.php:957
703
  #, fuzzy
704
  msgid "Display text"
705
  msgstr "添付ブロックを表示"
706
 
707
+ #: contact_form.php:966
708
+ #: contact_form.php:972
709
  msgid "Text"
710
  msgstr ""
711
 
712
+ #: contact_form.php:979
713
  msgid "Redirect to the page"
714
  msgstr ""
715
 
716
+ #: contact_form.php:980
717
  msgid "Url"
718
  msgstr ""
719
 
720
+ #: contact_form.php:985
721
+ #: contact_form.php:1160
722
  msgid "Save Changes"
723
  msgstr "変更を保存"
724
 
725
+ #: contact_form.php:1000
726
  #, fuzzy
727
  msgid "Contact Form Pro | Extra Settings"
728
  msgstr "コンタクトフォーム オプション"
729
 
730
+ #: contact_form.php:1007
731
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
732
  msgstr ""
733
 
734
+ #: contact_form.php:1014
735
  msgid "Errors output"
736
  msgstr ""
737
 
738
+ #: contact_form.php:1017
739
  msgid "Display error messages"
740
  msgstr ""
741
 
742
+ #: contact_form.php:1018
743
  msgid "Color of the input field errors."
744
  msgstr ""
745
 
746
+ #: contact_form.php:1019
747
  msgid "Display error messages & color of the input field errors"
748
  msgstr ""
749
 
750
+ #: contact_form.php:1024
751
  msgid "Add placeholder to the input blocks"
752
  msgstr ""
753
 
754
+ #: contact_form.php:1030
755
  #, fuzzy
756
  msgid "Add tooltips"
757
  msgstr "追加オプション"
758
 
759
+ #: contact_form.php:1044
760
  #, fuzzy
761
  msgid "Email address"
762
  msgstr "E-Mail:"
763
 
764
+ #: contact_form.php:1049
765
  msgid "Phone Number"
766
  msgstr ""
767
 
768
+ #: contact_form.php:1063
769
  #, fuzzy
770
  msgid "Attachment"
771
  msgstr "添付:"
772
 
773
+ #: contact_form.php:1073
774
  #, fuzzy
775
  msgid "Style options"
776
  msgstr "追加オプション"
777
 
778
+ #: contact_form.php:1076
779
  msgid "Text color"
780
  msgstr ""
781
 
782
+ #: contact_form.php:1079
783
+ #: contact_form.php:1084
784
+ #: contact_form.php:1094
785
+ #: contact_form.php:1099
786
+ #: contact_form.php:1104
787
+ #: contact_form.php:1109
788
+ #: contact_form.php:1119
789
+ #: contact_form.php:1124
790
+ #: contact_form.php:1130
791
+ #: contact_form.php:1141
792
+ #: contact_form.php:1146
793
+ #: contact_form.php:1151
794
  msgid "Default"
795
  msgstr ""
796
 
797
+ #: contact_form.php:1081
798
  msgid "Label text color"
799
  msgstr ""
800
 
801
+ #: contact_form.php:1086
802
  msgid "Placeholder color"
803
  msgstr ""
804
 
805
+ #: contact_form.php:1091
806
  msgid "Errors color"
807
  msgstr ""
808
 
809
+ #: contact_form.php:1096
810
  msgid "Error text color"
811
  msgstr ""
812
 
813
+ #: contact_form.php:1101
814
  msgid "Background color of the input field errors"
815
  msgstr ""
816
 
817
+ #: contact_form.php:1106
818
  msgid "Border color of the input field errors"
819
  msgstr ""
820
 
821
+ #: contact_form.php:1111
822
  msgid "Placeholder color of the input field errors"
823
  msgstr ""
824
 
825
+ #: contact_form.php:1116
826
  #, fuzzy
827
  msgid "Input fields"
828
  msgstr "添付ブロックを表示"
829
 
830
+ #: contact_form.php:1121
831
  msgid "Input fields background color"
832
  msgstr ""
833
 
834
+ #: contact_form.php:1126
835
  msgid "Text fields color"
836
  msgstr ""
837
 
838
+ #: contact_form.php:1128
839
  msgid "Border width in px, numbers only"
840
  msgstr ""
841
 
842
+ #: contact_form.php:1132
843
+ #: contact_form.php:1153
844
  msgid "Border color"
845
  msgstr ""
846
 
847
+ #: contact_form.php:1137
848
  #, fuzzy
849
  msgid "Submit button"
850
  msgstr "送信"
851
 
852
+ #: contact_form.php:1139
853
  msgid "Width in px, numbers only"
854
  msgstr ""
855
 
856
+ #: contact_form.php:1143
857
  msgid "Button color"
858
  msgstr ""
859
 
860
+ #: contact_form.php:1148
861
  msgid "Button text color"
862
  msgstr ""
863
 
864
+ #: contact_form.php:1164
865
  #, fuzzy
866
  msgid "Contact Form Pro | Preview"
867
  msgstr "Contact Form"
868
 
869
+ #: contact_form.php:1167
870
  msgid "Show with errors"
871
  msgstr ""
872
 
873
+ #: contact_form.php:1175
874
+ #: contact_form.php:1177
875
  msgid "Please enter your full name..."
876
  msgstr ""
877
 
878
+ #: contact_form.php:1188
879
+ #: contact_form.php:1190
880
  msgid "Please enter your address..."
881
  msgstr ""
882
 
883
+ #: contact_form.php:1199
884
+ #: contact_form.php:1201
885
  #, fuzzy
886
  msgid "Please enter your email address..."
887
  msgstr "このemailを利用:"
888
 
889
+ #: contact_form.php:1210
890
+ #: contact_form.php:1212
891
  msgid "Please enter your phone number..."
892
  msgstr ""
893
 
894
+ #: contact_form.php:1221
895
+ #: contact_form.php:1223
896
  msgid "Please enter subject..."
897
  msgstr ""
898
 
899
+ #: contact_form.php:1231
900
+ #: contact_form.php:1233
901
  msgid "Please enter your message..."
902
  msgstr ""
903
 
904
+ #: contact_form.php:1244
905
  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"
906
  msgstr ""
907
 
908
+ #: contact_form.php:1397
 
 
 
 
909
  msgid "You can attach the following file formats"
910
  msgstr "貴方は、以下のタイプのファイルを添付できます"
911
 
912
+ #: contact_form.php:1681
913
  msgid "Contact from"
914
  msgstr "コンタクトフォーム"
915
 
916
+ #: contact_form.php:1694
917
  msgid "Email"
918
  msgstr "E-Mail"
919
 
920
+ #: contact_form.php:1708
921
  msgid "Site"
922
  msgstr "サイト"
923
 
924
+ #: contact_form.php:1758
925
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
926
  msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
927
 
928
+ #: contact_form.php:1809
929
  msgid "FAQ"
930
  msgstr "FAQ"
931
 
932
+ #: contact_form.php:1810
933
  msgid "Support"
934
  msgstr "サポート"
935
 
936
+ #: contact_form.php:1858
937
  msgid "Are you sure that you want to delete this language data?"
938
  msgstr ""
939
 
languages/contact_form-lt_LT.mo CHANGED
Binary file
languages/contact_form-lt_LT.po CHANGED
@@ -3,8 +3,8 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: contact_form\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2013-07-16 16:05+0300\n"
7
- "PO-Revision-Date: 2013-07-16 16:05+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
10
  "MIME-Version: 1.0\n"
@@ -18,756 +18,921 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  #, fuzzy
23
  msgid "Pro plugins"
24
  msgstr "Разширение BWS"
25
 
26
- #: contact_form.php:103
27
- #: contact_form.php:129
28
  msgid "Activated plugins"
29
  msgstr "Aktyvuoti įskiepiai"
30
 
31
- #: contact_form.php:105
32
- #: contact_form.php:113
33
- #: contact_form.php:121
34
- #: contact_form.php:131
35
- #: contact_form.php:139
36
- #: contact_form.php:147
37
  msgid "Read more"
38
  msgstr "Skaityti daugiau"
39
 
40
- #: contact_form.php:105
41
- #: contact_form.php:131
42
- #: contact_form.php:543
43
- #: contact_form.php:791
44
- #: contact_form.php:1588
45
- #: contact_form.php:1597
46
  msgid "Settings"
47
  msgstr "Nustatymai"
48
 
49
- #: contact_form.php:111
50
- #: contact_form.php:137
51
  msgid "Installed plugins"
52
  msgstr "Įdiegti įskiepiai"
53
 
54
- #: contact_form.php:119
55
- #: contact_form.php:145
56
  msgid "Recommended plugins"
57
  msgstr "Rekomenduojami įskiepiai"
58
 
59
- #: contact_form.php:121
60
  msgid "Purchase"
61
  msgstr "Purchase"
62
 
63
- #: contact_form.php:126
64
  #, fuzzy
65
  msgid "Free plugins"
66
  msgstr "Rekomenduojami įskiepiai"
67
 
68
- #: contact_form.php:147
69
  msgid "Download"
70
  msgstr "Atsisiųsti"
71
 
72
- #: contact_form.php:147
73
  #, php-format
74
  msgid "Install %s"
75
  msgstr "Įdiegti %s"
76
 
77
- #: contact_form.php:147
78
  msgid "Install now from wordpress.org"
79
  msgstr "Įdiegti dabar iš wordpress.org"
80
 
81
- #: contact_form.php:152
82
  #, fuzzy
83
  msgid "If you have any questions, please contact us via"
84
  msgstr "Jei turite klausimų, prašome susisiekti su mumis per plugin@bestwebsoft.com arba užpildykite mūsų kontaktų formą mūsų svetainėje"
85
 
86
- #: contact_form.php:161
87
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  #, fuzzy
89
  msgid "Contact Form Settings"
90
  msgstr "Kontaktų formos parinktys"
91
 
92
- #: contact_form.php:161
93
  msgid "Contact Form"
94
  msgstr "Kontaktų forma"
95
 
96
- #: contact_form.php:162
97
  #, fuzzy
98
  msgid "Contact Form Pro Extra Settings"
99
  msgstr "Kontaktų formos parinktys"
100
 
101
- #: contact_form.php:162
102
- #: contact_form.php:797
103
  #, fuzzy
104
  msgid "Contact Form Pro"
105
  msgstr "Kontaktų forma"
106
 
107
- #: contact_form.php:201
108
- #: contact_form.php:686
109
- #: contact_form.php:715
110
  msgid "Name:"
111
  msgstr "Vardas:"
112
 
113
- #: contact_form.php:202
114
- #: contact_form.php:687
115
- #: contact_form.php:716
116
  #, fuzzy
117
  msgid "Address:"
118
  msgstr "El. pašto adresas:"
119
 
120
- #: contact_form.php:203
121
- #: contact_form.php:688
122
- #: contact_form.php:717
123
  msgid "Email Address:"
124
  msgstr "El. pašto adresas:"
125
 
126
- #: contact_form.php:204
127
- #: contact_form.php:689
128
- #: contact_form.php:718
129
  msgid "Phone number:"
130
  msgstr ""
131
 
132
- #: contact_form.php:205
133
- #: contact_form.php:690
134
- #: contact_form.php:719
135
  msgid "Subject:"
136
  msgstr "Tema:"
137
 
138
- #: contact_form.php:206
139
- #: contact_form.php:691
140
- #: contact_form.php:720
141
  msgid "Message:"
142
  msgstr "Pranešimas:"
143
 
144
- #: contact_form.php:207
145
- #: contact_form.php:692
146
- #: contact_form.php:721
147
  msgid "Attachment:"
148
  msgstr "Priedas:"
149
 
150
- #: contact_form.php:208
151
- #: contact_form.php:263
152
- #: contact_form.php:693
153
- #: contact_form.php:722
154
  msgid "Send me a copy"
155
  msgstr "Siųsti kopiją man"
156
 
157
- #: contact_form.php:209
158
- #: contact_form.php:694
159
- #: contact_form.php:723
160
  msgid "Submit"
161
  msgstr "Siųsti"
162
 
163
- #: contact_form.php:210
164
  msgid "Your name is required."
165
  msgstr "Būtina įrašyti vardą."
166
 
167
- #: contact_form.php:211
168
  #, fuzzy
169
  msgid "Address is required."
170
  msgstr "Būtina įrašyti teisingą el. pašto adresą."
171
 
172
- #: contact_form.php:212
173
  #, fuzzy
174
  msgid "A valid email address is required."
175
  msgstr "Būtina įrašyti teisingą el. pašto adresą."
176
 
177
- #: contact_form.php:213
178
- #: contact_form.php:258
179
- #: contact_form.php:261
180
  #, fuzzy
181
  msgid "Phone number is required."
182
  msgstr "Būtina įrašyti vardą."
183
 
184
- #: contact_form.php:214
185
- #: contact_form.php:257
186
- #: contact_form.php:260
187
  msgid "Subject is required."
188
  msgstr "Būtina įrašyti temą."
189
 
190
- #: contact_form.php:215
191
- #: contact_form.php:256
192
- #: contact_form.php:259
193
  msgid "Message text is required."
194
  msgstr "Būtina įrašyti laiško turinį."
195
 
196
- #: contact_form.php:216
197
  msgid "File format is not valid."
198
  msgstr "Pridedamas failas sugadintas."
199
 
200
- #: contact_form.php:217
201
  msgid "File upload error."
202
  msgstr ""
203
 
204
- #: contact_form.php:218
205
  msgid "The file could not be uploaded."
206
  msgstr ""
207
 
208
- #: contact_form.php:219
209
  msgid "This file is too large."
210
  msgstr ""
211
 
212
- #: contact_form.php:220
213
  msgid "Please fill out the CAPTCHA."
214
  msgstr "Prašome užpildyti CAPTCHA."
215
 
216
- #: contact_form.php:221
217
  msgid "Please make corrections below and try again."
218
  msgstr "Prašome pataisyti laišką ir bandyti iš naujo."
219
 
220
- #: contact_form.php:223
221
- msgid "Thank you for contacting us."
222
- msgstr "Dėkojame, kad su mumis susisiekėte."
223
-
224
- #: contact_form.php:494
225
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
226
  msgstr ""
227
 
228
- #: contact_form.php:503
229
  msgid "Such user does not exist. Settings are not saved."
230
  msgstr "Toks vartotojas neegzistuoja. Nustatymai neišsaugoti."
231
 
232
- #: contact_form.php:508
233
- #: contact_form.php:514
234
  #, fuzzy
235
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
236
  msgstr "Prašome įrašyti teisingą el. pašto adresą. Nustatymai neįrašyti."
237
 
238
- #: contact_form.php:519
239
  #, fuzzy
240
  msgid "Settings saved."
241
  msgstr "Parinktys išsaugotos."
242
 
243
- #: contact_form.php:544
244
- #: contact_form.php:792
245
  #, fuzzy
246
  msgid "Extra settings"
247
  msgstr "Nustatymai"
248
 
249
- #: contact_form.php:549
250
- #: contact_form.php:1048
251
  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:"
252
  msgstr "Jei norite pridėti kontaktų formą prie savo svetainės, tiesiog nukopijuokite šį trumpą kodą į savo puslapį ar elementą:"
253
 
254
- #: contact_form.php:550
255
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
256
  msgstr "Jei informacijos žemiau esančiuose laukuose nėra, pranešimas bus išsiųstas adresu, kuris buvo nurodytas prisiregistravimo metu."
257
 
258
- #: contact_form.php:554
259
  msgid "The user's email address:"
260
  msgstr "Naudoti wordpress vartotojo el. pašto adresą:"
261
 
262
- #: contact_form.php:558
263
  msgid "Create a username"
264
  msgstr "Pasirinkite vartotojo vardą"
265
 
266
- #: contact_form.php:563
267
  msgid "Enter a username of the person who should get the messages from the contact form."
268
  msgstr "Nurodykite vardą vartotojo, kuris gaus pranešimus iš Kontaktų formos."
269
 
270
- #: contact_form.php:567
271
  msgid "Use this email address:"
272
  msgstr "Naudoti šį el. pašto adresą:"
273
 
274
- #: contact_form.php:570
275
  msgid "Enter the email address you want the messages forwarded to."
276
  msgstr "Nustatykite el. pašto adresą, kuris bus naudojamas pranešimams gauti."
277
 
278
- #: contact_form.php:574
279
  msgid "Additional options"
280
  msgstr "Papildomos parinktys"
281
 
282
- #: contact_form.php:577
283
  msgid "What to use?"
284
  msgstr ""
285
 
286
- #: contact_form.php:580
287
  msgid "Wp-mail"
288
  msgstr "Wp-mail"
289
 
290
- #: contact_form.php:581
291
  msgid "You can use the wp_mail function for mailing"
292
  msgstr ""
293
 
294
- #: contact_form.php:587
295
  msgid "Mail"
296
  msgstr "Mail"
297
 
298
- #: contact_form.php:588
299
  msgid "To send mail you can use the php mail function"
300
  msgstr ""
301
 
302
- #: contact_form.php:592
303
  #, fuzzy
304
  msgid "Change text of the 'FROM' field"
305
  msgstr "Pakeiskite IŠ srityse kontaktų formos"
306
 
307
- #: contact_form.php:598
308
  msgid "Enter the email address in the 'From' field"
309
  msgstr ""
310
 
311
- #: contact_form.php:600
312
  msgid "User email"
313
  msgstr ""
314
 
315
- #: contact_form.php:600
316
  msgid "The email address of the user who fills the form will be used in the field 'From'."
317
  msgstr ""
318
 
319
- #: contact_form.php:602
320
  msgid "This email address will be used in the 'From' field."
321
  msgstr ""
322
 
323
- #: contact_form.php:606
324
  #, fuzzy
325
  msgid "Display fields"
326
  msgstr "Rodyti priedų įrašą"
327
 
328
- #: contact_form.php:608
329
- #: contact_form.php:638
330
- #: contact_form.php:828
331
- #: contact_form.php:1480
332
  #, fuzzy
333
  msgid "Address"
334
  msgstr "El. pašto adresas:"
335
 
336
- #: contact_form.php:609
337
- #: contact_form.php:640
338
- #: contact_form.php:1488
339
  msgid "Phone"
340
  msgstr ""
341
 
342
- #: contact_form.php:610
343
  #, fuzzy
344
  msgid "Attachment block"
345
  msgstr "Rodyti priedų įrašą"
346
 
347
- #: contact_form.php:610
348
  msgid "Users can attach the following file formats"
349
  msgstr "Vartotojai gali prikabinti šių tipų failus"
350
 
351
- #: contact_form.php:611
352
  #, fuzzy
353
  msgid "Tips below the Attachment block"
354
  msgstr "Rodyti priedų įrašą"
355
 
356
- #: contact_form.php:612
357
  #, fuzzy
358
  msgid "Send me a copy block"
359
  msgstr "Rodyti „Siųsti kopiją man“ įrašą"
360
 
361
- #: contact_form.php:624
362
- #: contact_form.php:627
363
- #: contact_form.php:630
364
- #: contact_form.php:857
365
  msgid "Captcha"
366
  msgstr ""
367
 
368
- #: contact_form.php:624
369
- #: contact_form.php:627
370
- #: contact_form.php:630
371
- #: contact_form.php:857
372
  msgid "(powered by bestwebsoft.com)"
373
  msgstr ""
374
 
375
- #: contact_form.php:627
376
  #, fuzzy
377
  msgid "Activate captcha"
378
  msgstr "Aktyvuoti įskiepiai"
379
 
380
- #: contact_form.php:630
381
  #, fuzzy
382
  msgid "Download captcha"
383
  msgstr "Atsisiųsti"
384
 
385
- #: contact_form.php:635
386
  msgid "Required fields"
387
  msgstr ""
388
 
389
- #: contact_form.php:637
390
- #: contact_form.php:823
391
- #: contact_form.php:1475
392
  msgid "Name"
393
  msgstr "Vardas"
394
 
395
- #: contact_form.php:639
396
  #, fuzzy
397
  msgid "Email Address"
398
  msgstr "El. pašto adresas:"
399
 
400
- #: contact_form.php:641
401
- #: contact_form.php:843
402
- #: contact_form.php:1491
403
  msgid "Subject"
404
  msgstr "Tema"
405
 
406
- #: contact_form.php:642
407
- #: contact_form.php:847
408
- #: contact_form.php:1494
409
  msgid "Message"
410
  msgstr "Tekstas"
411
 
412
- #: contact_form.php:646
413
  msgid "Display additional info in the email"
414
  msgstr ""
415
 
416
- #: contact_form.php:651
417
- #: contact_form.php:1447
418
  msgid "Sent from (ip address)"
419
  msgstr "Siųsta iš (ip adresas)"
420
 
421
- #: contact_form.php:652
422
- #: contact_form.php:1452
423
  msgid "Date/Time"
424
  msgstr "Data/laikas"
425
 
426
- #: contact_form.php:653
427
- #: contact_form.php:1457
428
  msgid "Sent from (referer)"
429
  msgstr "Ateita iš (nukreipiklis)"
430
 
431
- #: contact_form.php:654
432
- #: contact_form.php:1462
433
  msgid "Using (user agent)"
434
  msgstr "Naudoja (naršyklės įrašas)"
435
 
436
- #: contact_form.php:658
437
  msgid "Language settings for the field names in the form"
438
  msgstr ""
439
 
440
- #: contact_form.php:667
441
  msgid "Add a language"
442
  msgstr ""
443
 
444
- #: contact_form.php:671
445
  #, fuzzy
446
  msgid "Change the names of the contact form fields and error messages"
447
  msgstr "Pakeiskite antraštes kontaktų formos etiketėms"
448
 
449
- #: contact_form.php:676
450
- #: contact_form.php:747
451
  msgid "English"
452
  msgstr ""
453
 
454
- #: contact_form.php:695
455
- #: contact_form.php:724
456
  msgid "Error message for the Name field"
457
  msgstr ""
458
 
459
- #: contact_form.php:696
460
- #: contact_form.php:725
461
  msgid "Error message for the Address field"
462
  msgstr ""
463
 
464
- #: contact_form.php:697
465
- #: contact_form.php:726
466
  msgid "Error message for the Email field"
467
  msgstr ""
468
 
469
- #: contact_form.php:698
470
- #: contact_form.php:727
471
  msgid "Error message for the Phone field"
472
  msgstr ""
473
 
474
- #: contact_form.php:699
475
- #: contact_form.php:728
476
  msgid "Error message for the Subject field"
477
  msgstr ""
478
 
479
- #: contact_form.php:700
480
- #: contact_form.php:729
481
  msgid "Error message for the Message field"
482
  msgstr ""
483
 
484
- #: contact_form.php:701
485
- #: contact_form.php:730
486
  msgid "Error message about the file type for the Attachment field"
487
  msgstr ""
488
 
489
- #: contact_form.php:702
490
- #: contact_form.php:731
491
  msgid "Error message while uploading a file for the Attachment field to the server"
492
  msgstr ""
493
 
494
- #: contact_form.php:703
495
- #: contact_form.php:732
496
  msgid "Error message while moving the file for the Attachment field"
497
  msgstr ""
498
 
499
- #: contact_form.php:704
500
- #: contact_form.php:733
501
  msgid "Error message when file size limit for the Attachment field is exceeded"
502
  msgstr ""
503
 
504
- #: contact_form.php:705
505
- #: contact_form.php:734
506
  msgid "Error message for the Captcha field"
507
  msgstr ""
508
 
509
- #: contact_form.php:706
510
- #: contact_form.php:735
511
  msgid "Error message for the whole form"
512
  msgstr ""
513
 
514
- #: contact_form.php:708
515
- #: contact_form.php:737
516
- #: contact_form.php:756
517
- #: contact_form.php:762
518
  msgid "Use shortcode"
519
  msgstr ""
520
 
521
- #: contact_form.php:708
522
- #: contact_form.php:737
523
- #: contact_form.php:756
524
- #: contact_form.php:762
525
  msgid "for this language"
526
  msgstr ""
527
 
528
- #: contact_form.php:744
529
  msgid "Action after email is sent"
530
  msgstr ""
531
 
532
- #: contact_form.php:746
533
  #, fuzzy
534
  msgid "Display text"
535
  msgstr "Rodyti priedų įrašą"
536
 
537
- #: contact_form.php:755
538
- #: contact_form.php:761
539
  msgid "Text"
540
  msgstr ""
541
 
542
- #: contact_form.php:768
543
  msgid "Redirect to the page"
544
  msgstr ""
545
 
546
- #: contact_form.php:769
547
  msgid "Url"
548
  msgstr ""
549
 
550
- #: contact_form.php:774
551
- #: contact_form.php:949
552
  msgid "Save Changes"
553
  msgstr "Įrašyti pakeitimus"
554
 
555
- #: contact_form.php:789
556
  #, fuzzy
557
  msgid "Contact Form Pro | Extra Settings"
558
  msgstr "Kontaktų formos parinktys"
559
 
560
- #: contact_form.php:796
561
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
562
  msgstr ""
563
 
564
- #: contact_form.php:803
565
  msgid "Errors output"
566
  msgstr ""
567
 
568
- #: contact_form.php:806
569
  msgid "Display error messages"
570
  msgstr ""
571
 
572
- #: contact_form.php:807
573
  msgid "Color of the input field errors."
574
  msgstr ""
575
 
576
- #: contact_form.php:808
577
  msgid "Display error messages & color of the input field errors"
578
  msgstr ""
579
 
580
- #: contact_form.php:813
581
  msgid "Add placeholder to the input blocks"
582
  msgstr ""
583
 
584
- #: contact_form.php:819
585
  #, fuzzy
586
  msgid "Add tooltips"
587
  msgstr "Papildomos parinktys"
588
 
589
- #: contact_form.php:833
590
  #, fuzzy
591
  msgid "Email address"
592
  msgstr "El. pašto adresas:"
593
 
594
- #: contact_form.php:838
595
  msgid "Phone Number"
596
  msgstr ""
597
 
598
- #: contact_form.php:852
599
  #, fuzzy
600
  msgid "Attachment"
601
  msgstr "Priedas:"
602
 
603
- #: contact_form.php:862
604
  #, fuzzy
605
  msgid "Style options"
606
  msgstr "Papildomos parinktys"
607
 
608
- #: contact_form.php:865
609
  msgid "Text color"
610
  msgstr ""
611
 
612
- #: contact_form.php:868
613
- #: contact_form.php:873
614
- #: contact_form.php:883
615
- #: contact_form.php:888
616
- #: contact_form.php:893
617
- #: contact_form.php:898
618
- #: contact_form.php:908
619
- #: contact_form.php:913
620
- #: contact_form.php:919
621
- #: contact_form.php:930
622
- #: contact_form.php:935
623
- #: contact_form.php:940
624
  msgid "Default"
625
  msgstr ""
626
 
627
- #: contact_form.php:870
628
  msgid "Label text color"
629
  msgstr ""
630
 
631
- #: contact_form.php:875
632
  msgid "Placeholder color"
633
  msgstr ""
634
 
635
- #: contact_form.php:880
636
  msgid "Errors color"
637
  msgstr ""
638
 
639
- #: contact_form.php:885
640
  msgid "Error text color"
641
  msgstr ""
642
 
643
- #: contact_form.php:890
644
  msgid "Background color of the input field errors"
645
  msgstr ""
646
 
647
- #: contact_form.php:895
648
  msgid "Border color of the input field errors"
649
  msgstr ""
650
 
651
- #: contact_form.php:900
652
  msgid "Placeholder color of the input field errors"
653
  msgstr ""
654
 
655
- #: contact_form.php:905
656
  #, fuzzy
657
  msgid "Input fields"
658
  msgstr "Rodyti priedų įrašą"
659
 
660
- #: contact_form.php:910
661
  msgid "Input fields background color"
662
  msgstr ""
663
 
664
- #: contact_form.php:915
665
  msgid "Text fields color"
666
  msgstr ""
667
 
668
- #: contact_form.php:917
669
  msgid "Border width in px, numbers only"
670
  msgstr ""
671
 
672
- #: contact_form.php:921
673
- #: contact_form.php:942
674
  msgid "Border color"
675
  msgstr ""
676
 
677
- #: contact_form.php:926
678
  #, fuzzy
679
  msgid "Submit button"
680
  msgstr "Siųsti"
681
 
682
- #: contact_form.php:928
683
  msgid "Width in px, numbers only"
684
  msgstr ""
685
 
686
- #: contact_form.php:932
687
  msgid "Button color"
688
  msgstr ""
689
 
690
- #: contact_form.php:937
691
  msgid "Button text color"
692
  msgstr ""
693
 
694
- #: contact_form.php:953
695
  #, fuzzy
696
  msgid "Contact Form Pro | Preview"
697
  msgstr "Kontaktų forma"
698
 
699
- #: contact_form.php:956
700
  msgid "Show with errors"
701
  msgstr ""
702
 
703
- #: contact_form.php:964
704
- #: contact_form.php:966
705
  msgid "Please enter your full name..."
706
  msgstr ""
707
 
708
- #: contact_form.php:977
709
- #: contact_form.php:979
710
  msgid "Please enter your address..."
711
  msgstr ""
712
 
713
- #: contact_form.php:988
714
- #: contact_form.php:990
715
  #, fuzzy
716
  msgid "Please enter your email address..."
717
  msgstr "Naudoti šį el. pašto adresą:"
718
 
719
- #: contact_form.php:999
720
- #: contact_form.php:1001
721
  msgid "Please enter your phone number..."
722
  msgstr ""
723
 
724
- #: contact_form.php:1010
725
- #: contact_form.php:1012
726
  msgid "Please enter subject..."
727
  msgstr ""
728
 
729
- #: contact_form.php:1020
730
- #: contact_form.php:1022
731
  msgid "Please enter your message..."
732
  msgstr ""
733
 
734
- #: contact_form.php:1033
735
  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"
736
  msgstr ""
737
 
738
- #: contact_form.php:1102
739
- msgid "Sorry, email message could not be delivered."
740
- msgstr "Deja, jūsų el. laiško nepavyko pristatyti."
741
-
742
- #: contact_form.php:1186
743
  msgid "You can attach the following file formats"
744
  msgstr "Galite prikabinti šių tipų failus"
745
 
746
- #: contact_form.php:1470
747
  msgid "Contact from"
748
  msgstr "Kontaktų forma"
749
 
750
- #: contact_form.php:1483
751
  msgid "Email"
752
  msgstr "El. paštas"
753
 
754
- #: contact_form.php:1497
755
  msgid "Site"
756
  msgstr "Svetainė"
757
 
758
- #: contact_form.php:1547
759
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
760
  msgstr "Jei galite matyti šį MIME tipą, jūsų klientas nepriima MIME tipų!"
761
 
762
- #: contact_form.php:1598
763
  msgid "FAQ"
764
  msgstr "DUK"
765
 
766
- #: contact_form.php:1599
767
  msgid "Support"
768
  msgstr "Palaikymas"
769
 
770
- #: contact_form.php:1647
771
  msgid "Are you sure that you want to delete this language data?"
772
  msgstr ""
773
 
3
  msgstr ""
4
  "Project-Id-Version: contact_form\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2013-07-22 16:56+0300\n"
7
+ "PO-Revision-Date: 2013-07-22 16:56+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
10
  "MIME-Version: 1.0\n"
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: contact_form.php:106
22
+ msgid "Not set"
23
+ msgstr ""
24
+
25
+ #: contact_form.php:108
26
+ #: contact_form.php:112
27
+ msgid "On"
28
+ msgstr ""
29
+
30
+ #: contact_form.php:110
31
+ #: contact_form.php:114
32
+ msgid "Off"
33
+ msgstr ""
34
+
35
+ #: contact_form.php:118
36
+ #: contact_form.php:122
37
+ #: contact_form.php:126
38
+ #: contact_form.php:130
39
+ #: contact_form.php:134
40
+ #: contact_form.php:160
41
+ msgid "N/A"
42
+ msgstr ""
43
+
44
+ #: contact_form.php:132
45
+ msgid " Mb"
46
+ msgstr ""
47
+
48
+ #: contact_form.php:136
49
+ #: contact_form.php:140
50
+ #: contact_form.php:144
51
+ #: contact_form.php:155
52
+ msgid "Yes"
53
+ msgstr ""
54
+
55
+ #: contact_form.php:138
56
+ #: contact_form.php:142
57
+ #: contact_form.php:146
58
+ #: contact_form.php:157
59
+ msgid "No"
60
+ msgstr ""
61
+
62
+ #: contact_form.php:171
63
+ msgid "Operating System"
64
+ msgstr ""
65
+
66
+ #: contact_form.php:172
67
+ msgid "Server"
68
+ msgstr ""
69
+
70
+ #: contact_form.php:173
71
+ #, fuzzy
72
+ msgid "Memory usage"
73
+ msgstr "Tekstas"
74
+
75
+ #: contact_form.php:174
76
+ msgid "MYSQL Version"
77
+ msgstr ""
78
+
79
+ #: contact_form.php:175
80
+ msgid "SQL Mode"
81
+ msgstr ""
82
+
83
+ #: contact_form.php:176
84
+ msgid "PHP Version"
85
+ msgstr ""
86
+
87
+ #: contact_form.php:177
88
+ msgid "PHP Safe Mode"
89
+ msgstr ""
90
+
91
+ #: contact_form.php:178
92
+ msgid "PHP Allow URL fopen"
93
+ msgstr ""
94
+
95
+ #: contact_form.php:179
96
+ msgid "PHP Memory Limit"
97
+ msgstr ""
98
+
99
+ #: contact_form.php:180
100
+ msgid "PHP Max Upload Size"
101
+ msgstr ""
102
+
103
+ #: contact_form.php:181
104
+ msgid "PHP Max Post Size"
105
+ msgstr ""
106
+
107
+ #: contact_form.php:182
108
+ msgid "PHP Max Script Execute Time"
109
+ msgstr ""
110
+
111
+ #: contact_form.php:183
112
+ msgid "PHP Exif support"
113
+ msgstr ""
114
+
115
+ #: contact_form.php:184
116
+ msgid "PHP IPTC support"
117
+ msgstr ""
118
+
119
+ #: contact_form.php:185
120
+ msgid "PHP XML support"
121
+ msgstr ""
122
+
123
+ #: contact_form.php:186
124
+ #, fuzzy
125
+ msgid "Site URL"
126
+ msgstr "Svetainė"
127
+
128
+ #: contact_form.php:187
129
+ msgid "Home URL"
130
+ msgstr ""
131
+
132
+ #: contact_form.php:188
133
+ msgid "WordPress Version"
134
+ msgstr ""
135
+
136
+ #: contact_form.php:189
137
+ msgid "WordPress DB Version"
138
+ msgstr ""
139
+
140
+ #: contact_form.php:190
141
+ msgid "Multisite"
142
+ msgstr ""
143
+
144
+ #: contact_form.php:191
145
+ msgid "Active Theme"
146
+ msgstr ""
147
+
148
+ #: contact_form.php:206
149
+ #, fuzzy
150
+ msgid "Please enter a valid email address."
151
+ msgstr "Naudoti šį el. pašto adresą:"
152
+
153
+ #: contact_form.php:210
154
+ msgid "Email with system info is sent to "
155
+ msgstr ""
156
+
157
+ #: contact_form.php:214
158
+ #: contact_form.php:434
159
+ msgid "Thank you for contacting us."
160
+ msgstr "Dėkojame, kad su mumis susisiekėte."
161
+
162
+ #: contact_form.php:242
163
+ #: contact_form.php:1313
164
+ msgid "Sorry, email message could not be delivered."
165
+ msgstr "Deja, jūsų el. laiško nepavyko pristatyti."
166
+
167
+ #: contact_form.php:250
168
  #, fuzzy
169
  msgid "Pro plugins"
170
  msgstr "Разширение BWS"
171
 
172
+ #: contact_form.php:253
173
+ #: contact_form.php:279
174
  msgid "Activated plugins"
175
  msgstr "Aktyvuoti įskiepiai"
176
 
177
+ #: contact_form.php:255
178
+ #: contact_form.php:263
179
+ #: contact_form.php:271
180
+ #: contact_form.php:281
181
+ #: contact_form.php:289
182
+ #: contact_form.php:297
183
  msgid "Read more"
184
  msgstr "Skaityti daugiau"
185
 
186
+ #: contact_form.php:255
187
+ #: contact_form.php:281
188
+ #: contact_form.php:754
189
+ #: contact_form.php:1002
190
+ #: contact_form.php:1799
191
+ #: contact_form.php:1808
192
  msgid "Settings"
193
  msgstr "Nustatymai"
194
 
195
+ #: contact_form.php:261
196
+ #: contact_form.php:287
197
  msgid "Installed plugins"
198
  msgstr "Įdiegti įskiepiai"
199
 
200
+ #: contact_form.php:269
201
+ #: contact_form.php:295
202
  msgid "Recommended plugins"
203
  msgstr "Rekomenduojami įskiepiai"
204
 
205
+ #: contact_form.php:271
206
  msgid "Purchase"
207
  msgstr "Purchase"
208
 
209
+ #: contact_form.php:276
210
  #, fuzzy
211
  msgid "Free plugins"
212
  msgstr "Rekomenduojami įskiepiai"
213
 
214
+ #: contact_form.php:297
215
  msgid "Download"
216
  msgstr "Atsisiųsti"
217
 
218
+ #: contact_form.php:297
219
  #, php-format
220
  msgid "Install %s"
221
  msgstr "Įdiegti %s"
222
 
223
+ #: contact_form.php:297
224
  msgid "Install now from wordpress.org"
225
  msgstr "Įdiegti dabar iš wordpress.org"
226
 
227
+ #: contact_form.php:302
228
  #, fuzzy
229
  msgid "If you have any questions, please contact us via"
230
  msgstr "Jei turite klausimų, prašome susisiekti su mumis per plugin@bestwebsoft.com arba užpildykite mūsų kontaktų formą mūsų svetainėje"
231
 
232
+ #: contact_form.php:309
233
+ msgid "System status"
234
+ msgstr ""
235
+
236
+ #: contact_form.php:313
237
+ msgid "Environment"
238
+ msgstr ""
239
+
240
+ #: contact_form.php:324
241
+ #, fuzzy
242
+ msgid "Active Plugins"
243
+ msgstr "Aktyvuoti įskiepiai"
244
+
245
+ #: contact_form.php:335
246
+ #, fuzzy
247
+ msgid "Inactive Plugins"
248
+ msgstr "Aktyvuoti įskiepiai"
249
+
250
+ #: contact_form.php:349
251
+ #, fuzzy
252
+ msgid "Send to support"
253
+ msgstr "Palaikymas"
254
+
255
+ #: contact_form.php:356
256
+ msgid "Send to custom email &#187;"
257
+ msgstr ""
258
+
259
+ #: contact_form.php:372
260
+ #: contact_form.php:750
261
  #, fuzzy
262
  msgid "Contact Form Settings"
263
  msgstr "Kontaktų formos parinktys"
264
 
265
+ #: contact_form.php:372
266
  msgid "Contact Form"
267
  msgstr "Kontaktų forma"
268
 
269
+ #: contact_form.php:373
270
  #, fuzzy
271
  msgid "Contact Form Pro Extra Settings"
272
  msgstr "Kontaktų formos parinktys"
273
 
274
+ #: contact_form.php:373
275
+ #: contact_form.php:1008
276
  #, fuzzy
277
  msgid "Contact Form Pro"
278
  msgstr "Kontaktų forma"
279
 
280
+ #: contact_form.php:412
281
+ #: contact_form.php:897
282
+ #: contact_form.php:926
283
  msgid "Name:"
284
  msgstr "Vardas:"
285
 
286
+ #: contact_form.php:413
287
+ #: contact_form.php:898
288
+ #: contact_form.php:927
289
  #, fuzzy
290
  msgid "Address:"
291
  msgstr "El. pašto adresas:"
292
 
293
+ #: contact_form.php:414
294
+ #: contact_form.php:899
295
+ #: contact_form.php:928
296
  msgid "Email Address:"
297
  msgstr "El. pašto adresas:"
298
 
299
+ #: contact_form.php:415
300
+ #: contact_form.php:900
301
+ #: contact_form.php:929
302
  msgid "Phone number:"
303
  msgstr ""
304
 
305
+ #: contact_form.php:416
306
+ #: contact_form.php:901
307
+ #: contact_form.php:930
308
  msgid "Subject:"
309
  msgstr "Tema:"
310
 
311
+ #: contact_form.php:417
312
+ #: contact_form.php:902
313
+ #: contact_form.php:931
314
  msgid "Message:"
315
  msgstr "Pranešimas:"
316
 
317
+ #: contact_form.php:418
318
+ #: contact_form.php:903
319
+ #: contact_form.php:932
320
  msgid "Attachment:"
321
  msgstr "Priedas:"
322
 
323
+ #: contact_form.php:419
324
+ #: contact_form.php:474
325
+ #: contact_form.php:904
326
+ #: contact_form.php:933
327
  msgid "Send me a copy"
328
  msgstr "Siųsti kopiją man"
329
 
330
+ #: contact_form.php:420
331
+ #: contact_form.php:905
332
+ #: contact_form.php:934
333
  msgid "Submit"
334
  msgstr "Siųsti"
335
 
336
+ #: contact_form.php:421
337
  msgid "Your name is required."
338
  msgstr "Būtina įrašyti vardą."
339
 
340
+ #: contact_form.php:422
341
  #, fuzzy
342
  msgid "Address is required."
343
  msgstr "Būtina įrašyti teisingą el. pašto adresą."
344
 
345
+ #: contact_form.php:423
346
  #, fuzzy
347
  msgid "A valid email address is required."
348
  msgstr "Būtina įrašyti teisingą el. pašto adresą."
349
 
350
+ #: contact_form.php:424
351
+ #: contact_form.php:469
352
+ #: contact_form.php:472
353
  #, fuzzy
354
  msgid "Phone number is required."
355
  msgstr "Būtina įrašyti vardą."
356
 
357
+ #: contact_form.php:425
358
+ #: contact_form.php:468
359
+ #: contact_form.php:471
360
  msgid "Subject is required."
361
  msgstr "Būtina įrašyti temą."
362
 
363
+ #: contact_form.php:426
364
+ #: contact_form.php:467
365
+ #: contact_form.php:470
366
  msgid "Message text is required."
367
  msgstr "Būtina įrašyti laiško turinį."
368
 
369
+ #: contact_form.php:427
370
  msgid "File format is not valid."
371
  msgstr "Pridedamas failas sugadintas."
372
 
373
+ #: contact_form.php:428
374
  msgid "File upload error."
375
  msgstr ""
376
 
377
+ #: contact_form.php:429
378
  msgid "The file could not be uploaded."
379
  msgstr ""
380
 
381
+ #: contact_form.php:430
382
  msgid "This file is too large."
383
  msgstr ""
384
 
385
+ #: contact_form.php:431
386
  msgid "Please fill out the CAPTCHA."
387
  msgstr "Prašome užpildyti CAPTCHA."
388
 
389
+ #: contact_form.php:432
390
  msgid "Please make corrections below and try again."
391
  msgstr "Prašome pataisyti laišką ir bandyti iš naujo."
392
 
393
+ #: contact_form.php:705
 
 
 
 
394
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
395
  msgstr ""
396
 
397
+ #: contact_form.php:714
398
  msgid "Such user does not exist. Settings are not saved."
399
  msgstr "Toks vartotojas neegzistuoja. Nustatymai neišsaugoti."
400
 
401
+ #: contact_form.php:719
402
+ #: contact_form.php:725
403
  #, fuzzy
404
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
405
  msgstr "Prašome įrašyti teisingą el. pašto adresą. Nustatymai neįrašyti."
406
 
407
+ #: contact_form.php:730
408
  #, fuzzy
409
  msgid "Settings saved."
410
  msgstr "Parinktys išsaugotos."
411
 
412
+ #: contact_form.php:755
413
+ #: contact_form.php:1003
414
  #, fuzzy
415
  msgid "Extra settings"
416
  msgstr "Nustatymai"
417
 
418
+ #: contact_form.php:760
419
+ #: contact_form.php:1259
420
  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:"
421
  msgstr "Jei norite pridėti kontaktų formą prie savo svetainės, tiesiog nukopijuokite šį trumpą kodą į savo puslapį ar elementą:"
422
 
423
+ #: contact_form.php:761
424
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
425
  msgstr "Jei informacijos žemiau esančiuose laukuose nėra, pranešimas bus išsiųstas adresu, kuris buvo nurodytas prisiregistravimo metu."
426
 
427
+ #: contact_form.php:765
428
  msgid "The user's email address:"
429
  msgstr "Naudoti wordpress vartotojo el. pašto adresą:"
430
 
431
+ #: contact_form.php:769
432
  msgid "Create a username"
433
  msgstr "Pasirinkite vartotojo vardą"
434
 
435
+ #: contact_form.php:774
436
  msgid "Enter a username of the person who should get the messages from the contact form."
437
  msgstr "Nurodykite vardą vartotojo, kuris gaus pranešimus iš Kontaktų formos."
438
 
439
+ #: contact_form.php:778
440
  msgid "Use this email address:"
441
  msgstr "Naudoti šį el. pašto adresą:"
442
 
443
+ #: contact_form.php:781
444
  msgid "Enter the email address you want the messages forwarded to."
445
  msgstr "Nustatykite el. pašto adresą, kuris bus naudojamas pranešimams gauti."
446
 
447
+ #: contact_form.php:785
448
  msgid "Additional options"
449
  msgstr "Papildomos parinktys"
450
 
451
+ #: contact_form.php:788
452
  msgid "What to use?"
453
  msgstr ""
454
 
455
+ #: contact_form.php:791
456
  msgid "Wp-mail"
457
  msgstr "Wp-mail"
458
 
459
+ #: contact_form.php:792
460
  msgid "You can use the wp_mail function for mailing"
461
  msgstr ""
462
 
463
+ #: contact_form.php:798
464
  msgid "Mail"
465
  msgstr "Mail"
466
 
467
+ #: contact_form.php:799
468
  msgid "To send mail you can use the php mail function"
469
  msgstr ""
470
 
471
+ #: contact_form.php:803
472
  #, fuzzy
473
  msgid "Change text of the 'FROM' field"
474
  msgstr "Pakeiskite IŠ srityse kontaktų formos"
475
 
476
+ #: contact_form.php:809
477
  msgid "Enter the email address in the 'From' field"
478
  msgstr ""
479
 
480
+ #: contact_form.php:811
481
  msgid "User email"
482
  msgstr ""
483
 
484
+ #: contact_form.php:811
485
  msgid "The email address of the user who fills the form will be used in the field 'From'."
486
  msgstr ""
487
 
488
+ #: contact_form.php:813
489
  msgid "This email address will be used in the 'From' field."
490
  msgstr ""
491
 
492
+ #: contact_form.php:817
493
  #, fuzzy
494
  msgid "Display fields"
495
  msgstr "Rodyti priedų įrašą"
496
 
497
+ #: contact_form.php:819
498
+ #: contact_form.php:849
499
+ #: contact_form.php:1039
500
+ #: contact_form.php:1691
501
  #, fuzzy
502
  msgid "Address"
503
  msgstr "El. pašto adresas:"
504
 
505
+ #: contact_form.php:820
506
+ #: contact_form.php:851
507
+ #: contact_form.php:1699
508
  msgid "Phone"
509
  msgstr ""
510
 
511
+ #: contact_form.php:821
512
  #, fuzzy
513
  msgid "Attachment block"
514
  msgstr "Rodyti priedų įrašą"
515
 
516
+ #: contact_form.php:821
517
  msgid "Users can attach the following file formats"
518
  msgstr "Vartotojai gali prikabinti šių tipų failus"
519
 
520
+ #: contact_form.php:822
521
  #, fuzzy
522
  msgid "Tips below the Attachment block"
523
  msgstr "Rodyti priedų įrašą"
524
 
525
+ #: contact_form.php:823
526
  #, fuzzy
527
  msgid "Send me a copy block"
528
  msgstr "Rodyti „Siųsti kopiją man“ įrašą"
529
 
530
+ #: contact_form.php:835
531
+ #: contact_form.php:838
532
+ #: contact_form.php:841
533
+ #: contact_form.php:1068
534
  msgid "Captcha"
535
  msgstr ""
536
 
537
+ #: contact_form.php:835
538
+ #: contact_form.php:838
539
+ #: contact_form.php:841
540
+ #: contact_form.php:1068
541
  msgid "(powered by bestwebsoft.com)"
542
  msgstr ""
543
 
544
+ #: contact_form.php:838
545
  #, fuzzy
546
  msgid "Activate captcha"
547
  msgstr "Aktyvuoti įskiepiai"
548
 
549
+ #: contact_form.php:841
550
  #, fuzzy
551
  msgid "Download captcha"
552
  msgstr "Atsisiųsti"
553
 
554
+ #: contact_form.php:846
555
  msgid "Required fields"
556
  msgstr ""
557
 
558
+ #: contact_form.php:848
559
+ #: contact_form.php:1034
560
+ #: contact_form.php:1686
561
  msgid "Name"
562
  msgstr "Vardas"
563
 
564
+ #: contact_form.php:850
565
  #, fuzzy
566
  msgid "Email Address"
567
  msgstr "El. pašto adresas:"
568
 
569
+ #: contact_form.php:852
570
+ #: contact_form.php:1054
571
+ #: contact_form.php:1702
572
  msgid "Subject"
573
  msgstr "Tema"
574
 
575
+ #: contact_form.php:853
576
+ #: contact_form.php:1058
577
+ #: contact_form.php:1705
578
  msgid "Message"
579
  msgstr "Tekstas"
580
 
581
+ #: contact_form.php:857
582
  msgid "Display additional info in the email"
583
  msgstr ""
584
 
585
+ #: contact_form.php:862
586
+ #: contact_form.php:1658
587
  msgid "Sent from (ip address)"
588
  msgstr "Siųsta iš (ip adresas)"
589
 
590
+ #: contact_form.php:863
591
+ #: contact_form.php:1663
592
  msgid "Date/Time"
593
  msgstr "Data/laikas"
594
 
595
+ #: contact_form.php:864
596
+ #: contact_form.php:1668
597
  msgid "Sent from (referer)"
598
  msgstr "Ateita iš (nukreipiklis)"
599
 
600
+ #: contact_form.php:865
601
+ #: contact_form.php:1673
602
  msgid "Using (user agent)"
603
  msgstr "Naudoja (naršyklės įrašas)"
604
 
605
+ #: contact_form.php:869
606
  msgid "Language settings for the field names in the form"
607
  msgstr ""
608
 
609
+ #: contact_form.php:878
610
  msgid "Add a language"
611
  msgstr ""
612
 
613
+ #: contact_form.php:882
614
  #, fuzzy
615
  msgid "Change the names of the contact form fields and error messages"
616
  msgstr "Pakeiskite antraštes kontaktų formos etiketėms"
617
 
618
+ #: contact_form.php:887
619
+ #: contact_form.php:958
620
  msgid "English"
621
  msgstr ""
622
 
623
+ #: contact_form.php:906
624
+ #: contact_form.php:935
625
  msgid "Error message for the Name field"
626
  msgstr ""
627
 
628
+ #: contact_form.php:907
629
+ #: contact_form.php:936
630
  msgid "Error message for the Address field"
631
  msgstr ""
632
 
633
+ #: contact_form.php:908
634
+ #: contact_form.php:937
635
  msgid "Error message for the Email field"
636
  msgstr ""
637
 
638
+ #: contact_form.php:909
639
+ #: contact_form.php:938
640
  msgid "Error message for the Phone field"
641
  msgstr ""
642
 
643
+ #: contact_form.php:910
644
+ #: contact_form.php:939
645
  msgid "Error message for the Subject field"
646
  msgstr ""
647
 
648
+ #: contact_form.php:911
649
+ #: contact_form.php:940
650
  msgid "Error message for the Message field"
651
  msgstr ""
652
 
653
+ #: contact_form.php:912
654
+ #: contact_form.php:941
655
  msgid "Error message about the file type for the Attachment field"
656
  msgstr ""
657
 
658
+ #: contact_form.php:913
659
+ #: contact_form.php:942
660
  msgid "Error message while uploading a file for the Attachment field to the server"
661
  msgstr ""
662
 
663
+ #: contact_form.php:914
664
+ #: contact_form.php:943
665
  msgid "Error message while moving the file for the Attachment field"
666
  msgstr ""
667
 
668
+ #: contact_form.php:915
669
+ #: contact_form.php:944
670
  msgid "Error message when file size limit for the Attachment field is exceeded"
671
  msgstr ""
672
 
673
+ #: contact_form.php:916
674
+ #: contact_form.php:945
675
  msgid "Error message for the Captcha field"
676
  msgstr ""
677
 
678
+ #: contact_form.php:917
679
+ #: contact_form.php:946
680
  msgid "Error message for the whole form"
681
  msgstr ""
682
 
683
+ #: contact_form.php:919
684
+ #: contact_form.php:948
685
+ #: contact_form.php:967
686
+ #: contact_form.php:973
687
  msgid "Use shortcode"
688
  msgstr ""
689
 
690
+ #: contact_form.php:919
691
+ #: contact_form.php:948
692
+ #: contact_form.php:967
693
+ #: contact_form.php:973
694
  msgid "for this language"
695
  msgstr ""
696
 
697
+ #: contact_form.php:955
698
  msgid "Action after email is sent"
699
  msgstr ""
700
 
701
+ #: contact_form.php:957
702
  #, fuzzy
703
  msgid "Display text"
704
  msgstr "Rodyti priedų įrašą"
705
 
706
+ #: contact_form.php:966
707
+ #: contact_form.php:972
708
  msgid "Text"
709
  msgstr ""
710
 
711
+ #: contact_form.php:979
712
  msgid "Redirect to the page"
713
  msgstr ""
714
 
715
+ #: contact_form.php:980
716
  msgid "Url"
717
  msgstr ""
718
 
719
+ #: contact_form.php:985
720
+ #: contact_form.php:1160
721
  msgid "Save Changes"
722
  msgstr "Įrašyti pakeitimus"
723
 
724
+ #: contact_form.php:1000
725
  #, fuzzy
726
  msgid "Contact Form Pro | Extra Settings"
727
  msgstr "Kontaktų formos parinktys"
728
 
729
+ #: contact_form.php:1007
730
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
731
  msgstr ""
732
 
733
+ #: contact_form.php:1014
734
  msgid "Errors output"
735
  msgstr ""
736
 
737
+ #: contact_form.php:1017
738
  msgid "Display error messages"
739
  msgstr ""
740
 
741
+ #: contact_form.php:1018
742
  msgid "Color of the input field errors."
743
  msgstr ""
744
 
745
+ #: contact_form.php:1019
746
  msgid "Display error messages & color of the input field errors"
747
  msgstr ""
748
 
749
+ #: contact_form.php:1024
750
  msgid "Add placeholder to the input blocks"
751
  msgstr ""
752
 
753
+ #: contact_form.php:1030
754
  #, fuzzy
755
  msgid "Add tooltips"
756
  msgstr "Papildomos parinktys"
757
 
758
+ #: contact_form.php:1044
759
  #, fuzzy
760
  msgid "Email address"
761
  msgstr "El. pašto adresas:"
762
 
763
+ #: contact_form.php:1049
764
  msgid "Phone Number"
765
  msgstr ""
766
 
767
+ #: contact_form.php:1063
768
  #, fuzzy
769
  msgid "Attachment"
770
  msgstr "Priedas:"
771
 
772
+ #: contact_form.php:1073
773
  #, fuzzy
774
  msgid "Style options"
775
  msgstr "Papildomos parinktys"
776
 
777
+ #: contact_form.php:1076
778
  msgid "Text color"
779
  msgstr ""
780
 
781
+ #: contact_form.php:1079
782
+ #: contact_form.php:1084
783
+ #: contact_form.php:1094
784
+ #: contact_form.php:1099
785
+ #: contact_form.php:1104
786
+ #: contact_form.php:1109
787
+ #: contact_form.php:1119
788
+ #: contact_form.php:1124
789
+ #: contact_form.php:1130
790
+ #: contact_form.php:1141
791
+ #: contact_form.php:1146
792
+ #: contact_form.php:1151
793
  msgid "Default"
794
  msgstr ""
795
 
796
+ #: contact_form.php:1081
797
  msgid "Label text color"
798
  msgstr ""
799
 
800
+ #: contact_form.php:1086
801
  msgid "Placeholder color"
802
  msgstr ""
803
 
804
+ #: contact_form.php:1091
805
  msgid "Errors color"
806
  msgstr ""
807
 
808
+ #: contact_form.php:1096
809
  msgid "Error text color"
810
  msgstr ""
811
 
812
+ #: contact_form.php:1101
813
  msgid "Background color of the input field errors"
814
  msgstr ""
815
 
816
+ #: contact_form.php:1106
817
  msgid "Border color of the input field errors"
818
  msgstr ""
819
 
820
+ #: contact_form.php:1111
821
  msgid "Placeholder color of the input field errors"
822
  msgstr ""
823
 
824
+ #: contact_form.php:1116
825
  #, fuzzy
826
  msgid "Input fields"
827
  msgstr "Rodyti priedų įrašą"
828
 
829
+ #: contact_form.php:1121
830
  msgid "Input fields background color"
831
  msgstr ""
832
 
833
+ #: contact_form.php:1126
834
  msgid "Text fields color"
835
  msgstr ""
836
 
837
+ #: contact_form.php:1128
838
  msgid "Border width in px, numbers only"
839
  msgstr ""
840
 
841
+ #: contact_form.php:1132
842
+ #: contact_form.php:1153
843
  msgid "Border color"
844
  msgstr ""
845
 
846
+ #: contact_form.php:1137
847
  #, fuzzy
848
  msgid "Submit button"
849
  msgstr "Siųsti"
850
 
851
+ #: contact_form.php:1139
852
  msgid "Width in px, numbers only"
853
  msgstr ""
854
 
855
+ #: contact_form.php:1143
856
  msgid "Button color"
857
  msgstr ""
858
 
859
+ #: contact_form.php:1148
860
  msgid "Button text color"
861
  msgstr ""
862
 
863
+ #: contact_form.php:1164
864
  #, fuzzy
865
  msgid "Contact Form Pro | Preview"
866
  msgstr "Kontaktų forma"
867
 
868
+ #: contact_form.php:1167
869
  msgid "Show with errors"
870
  msgstr ""
871
 
872
+ #: contact_form.php:1175
873
+ #: contact_form.php:1177
874
  msgid "Please enter your full name..."
875
  msgstr ""
876
 
877
+ #: contact_form.php:1188
878
+ #: contact_form.php:1190
879
  msgid "Please enter your address..."
880
  msgstr ""
881
 
882
+ #: contact_form.php:1199
883
+ #: contact_form.php:1201
884
  #, fuzzy
885
  msgid "Please enter your email address..."
886
  msgstr "Naudoti šį el. pašto adresą:"
887
 
888
+ #: contact_form.php:1210
889
+ #: contact_form.php:1212
890
  msgid "Please enter your phone number..."
891
  msgstr ""
892
 
893
+ #: contact_form.php:1221
894
+ #: contact_form.php:1223
895
  msgid "Please enter subject..."
896
  msgstr ""
897
 
898
+ #: contact_form.php:1231
899
+ #: contact_form.php:1233
900
  msgid "Please enter your message..."
901
  msgstr ""
902
 
903
+ #: contact_form.php:1244
904
  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"
905
  msgstr ""
906
 
907
+ #: contact_form.php:1397
 
 
 
 
908
  msgid "You can attach the following file formats"
909
  msgstr "Galite prikabinti šių tipų failus"
910
 
911
+ #: contact_form.php:1681
912
  msgid "Contact from"
913
  msgstr "Kontaktų forma"
914
 
915
+ #: contact_form.php:1694
916
  msgid "Email"
917
  msgstr "El. paštas"
918
 
919
+ #: contact_form.php:1708
920
  msgid "Site"
921
  msgstr "Svetainė"
922
 
923
+ #: contact_form.php:1758
924
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
925
  msgstr "Jei galite matyti šį MIME tipą, jūsų klientas nepriima MIME tipų!"
926
 
927
+ #: contact_form.php:1809
928
  msgid "FAQ"
929
  msgstr "DUK"
930
 
931
+ #: contact_form.php:1810
932
  msgid "Support"
933
  msgstr "Palaikymas"
934
 
935
+ #: contact_form.php:1858
936
  msgid "Are you sure that you want to delete this language data?"
937
  msgstr ""
938
 
languages/contact_form-nb_NO.mo CHANGED
Binary file
languages/contact_form-nb_NO.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-16 16:05+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:05+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,756 +16,921 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Aktiverte innstikk"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Les mer"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Innstilllinger"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Installerte instikk"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Anbefalte innstikk"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Anbefalte innstikk"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Last ned"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Installér %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Innstallér nå fra wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Hvis du har spørsmål kan du kontakte oss på plugin@bestwebsoft.com eller bruke kontaktskjemaet på hjemmesiden vår"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Innstillinger for kontaktskjema"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Kontaktskjema"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Innstillinger for kontaktskjema"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Kontaktskjema"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Navn:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "Epostadresse:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "Epostadresse:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Tema:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Melding:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Vedlegg:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Send meg en kopi"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Send"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Navnet ditt er påkrevet."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "En korrekt epostadresse er påkrevet."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "En korrekt epostadresse er påkrevet."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "Navnet ditt er påkrevet."
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "Tekst i temafeltet er påkrevet."
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "Tekst i meldingsfeltet er påkrevet"
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "Vedlegget fungerer ikke."
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "Vennligst fyll ut CAPTCHA"
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Takk for at du tok kontakt med oss"
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr ""
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Denne brukeren finnes ikke. Innstillingene er ikke lagret."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "Innstillinger lagret."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "Innstilllinger"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "Dersom du ønsket å legge til et kontaktskjema på wedsiden din, kopier og put denne koden i kommentaren din eller på siden din: "
251
 
252
- #: contact_form.php:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "Dersom feltene under er tomme, vil meldingen bli sendt til en adresse som var spesifisert ved registrering."
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "Benytt eposten til wordpressbruker:"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "Velg brukernavn"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "Sett et brukernavn for mottaker av meldinger fra kontaktskjemaet"
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "Benytt denne epostadressen:"
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "Sett en epostadresse som skal benyttes for å motta meldinger."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "Flere valg"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr ""
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr ""
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "Mail"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr ""
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "Endring fra feltene i kontaktskjemaet"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Vis vedlegg"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "Epostadresse:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr ""
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Vis vedlegg"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Brukere kan legge ved filer av følgende typer"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Vis vedlegg"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Vis send meg en kopi"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Aktiverte innstikk"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "Last ned"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Navn"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "Epostadresse:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Tema"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Melding"
409
 
410
- #: contact_form.php:646
411
  msgid "Display additional info in the email"
412
  msgstr ""
413
 
414
- #: contact_form.php:651
415
- #: contact_form.php:1447
416
  msgid "Sent from (ip address)"
417
  msgstr "Sendt fra (IP-adresse)"
418
 
419
- #: contact_form.php:652
420
- #: contact_form.php:1452
421
  msgid "Date/Time"
422
  msgstr "Dato/tid"
423
 
424
- #: contact_form.php:653
425
- #: contact_form.php:1457
426
  msgid "Sent from (referer)"
427
  msgstr "Sendt fra (referent)"
428
 
429
- #: contact_form.php:654
430
- #: contact_form.php:1462
431
  msgid "Using (user agent)"
432
  msgstr "med (user agent)"
433
 
434
- #: contact_form.php:658
435
  msgid "Language settings for the field names in the form"
436
  msgstr ""
437
 
438
- #: contact_form.php:667
439
  msgid "Add a language"
440
  msgstr ""
441
 
442
- #: contact_form.php:671
443
  #, fuzzy
444
  msgid "Change the names of the contact form fields and error messages"
445
  msgstr "Forandre etikett for felter i kontaktskjemaet"
446
 
447
- #: contact_form.php:676
448
- #: contact_form.php:747
449
  msgid "English"
450
  msgstr ""
451
 
452
- #: contact_form.php:695
453
- #: contact_form.php:724
454
  msgid "Error message for the Name field"
455
  msgstr ""
456
 
457
- #: contact_form.php:696
458
- #: contact_form.php:725
459
  msgid "Error message for the Address field"
460
  msgstr ""
461
 
462
- #: contact_form.php:697
463
- #: contact_form.php:726
464
  msgid "Error message for the Email field"
465
  msgstr ""
466
 
467
- #: contact_form.php:698
468
- #: contact_form.php:727
469
  msgid "Error message for the Phone field"
470
  msgstr ""
471
 
472
- #: contact_form.php:699
473
- #: contact_form.php:728
474
  msgid "Error message for the Subject field"
475
  msgstr ""
476
 
477
- #: contact_form.php:700
478
- #: contact_form.php:729
479
  msgid "Error message for the Message field"
480
  msgstr ""
481
 
482
- #: contact_form.php:701
483
- #: contact_form.php:730
484
  msgid "Error message about the file type for the Attachment field"
485
  msgstr ""
486
 
487
- #: contact_form.php:702
488
- #: contact_form.php:731
489
  msgid "Error message while uploading a file for the Attachment field to the server"
490
  msgstr ""
491
 
492
- #: contact_form.php:703
493
- #: contact_form.php:732
494
  msgid "Error message while moving the file for the Attachment field"
495
  msgstr ""
496
 
497
- #: contact_form.php:704
498
- #: contact_form.php:733
499
  msgid "Error message when file size limit for the Attachment field is exceeded"
500
  msgstr ""
501
 
502
- #: contact_form.php:705
503
- #: contact_form.php:734
504
  msgid "Error message for the Captcha field"
505
  msgstr ""
506
 
507
- #: contact_form.php:706
508
- #: contact_form.php:735
509
  msgid "Error message for the whole form"
510
  msgstr ""
511
 
512
- #: contact_form.php:708
513
- #: contact_form.php:737
514
- #: contact_form.php:756
515
- #: contact_form.php:762
516
  msgid "Use shortcode"
517
  msgstr ""
518
 
519
- #: contact_form.php:708
520
- #: contact_form.php:737
521
- #: contact_form.php:756
522
- #: contact_form.php:762
523
  msgid "for this language"
524
  msgstr ""
525
 
526
- #: contact_form.php:744
527
  msgid "Action after email is sent"
528
  msgstr ""
529
 
530
- #: contact_form.php:746
531
  #, fuzzy
532
  msgid "Display text"
533
  msgstr "Vis vedlegg"
534
 
535
- #: contact_form.php:755
536
- #: contact_form.php:761
537
  msgid "Text"
538
  msgstr ""
539
 
540
- #: contact_form.php:768
541
  msgid "Redirect to the page"
542
  msgstr ""
543
 
544
- #: contact_form.php:769
545
  msgid "Url"
546
  msgstr ""
547
 
548
- #: contact_form.php:774
549
- #: contact_form.php:949
550
  msgid "Save Changes"
551
  msgstr "Lagre endringer"
552
 
553
- #: contact_form.php:789
554
  #, fuzzy
555
  msgid "Contact Form Pro | Extra Settings"
556
  msgstr "Innstillinger for kontaktskjema"
557
 
558
- #: contact_form.php:796
559
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
560
  msgstr ""
561
 
562
- #: contact_form.php:803
563
  msgid "Errors output"
564
  msgstr ""
565
 
566
- #: contact_form.php:806
567
  msgid "Display error messages"
568
  msgstr ""
569
 
570
- #: contact_form.php:807
571
  msgid "Color of the input field errors."
572
  msgstr ""
573
 
574
- #: contact_form.php:808
575
  msgid "Display error messages & color of the input field errors"
576
  msgstr ""
577
 
578
- #: contact_form.php:813
579
  msgid "Add placeholder to the input blocks"
580
  msgstr ""
581
 
582
- #: contact_form.php:819
583
  #, fuzzy
584
  msgid "Add tooltips"
585
  msgstr "Flere valg"
586
 
587
- #: contact_form.php:833
588
  #, fuzzy
589
  msgid "Email address"
590
  msgstr "Epostadresse:"
591
 
592
- #: contact_form.php:838
593
  msgid "Phone Number"
594
  msgstr ""
595
 
596
- #: contact_form.php:852
597
  #, fuzzy
598
  msgid "Attachment"
599
  msgstr "Vedlegg:"
600
 
601
- #: contact_form.php:862
602
  #, fuzzy
603
  msgid "Style options"
604
  msgstr "Flere valg"
605
 
606
- #: contact_form.php:865
607
  msgid "Text color"
608
  msgstr ""
609
 
610
- #: contact_form.php:868
611
- #: contact_form.php:873
612
- #: contact_form.php:883
613
- #: contact_form.php:888
614
- #: contact_form.php:893
615
- #: contact_form.php:898
616
- #: contact_form.php:908
617
- #: contact_form.php:913
618
- #: contact_form.php:919
619
- #: contact_form.php:930
620
- #: contact_form.php:935
621
- #: contact_form.php:940
622
  msgid "Default"
623
  msgstr ""
624
 
625
- #: contact_form.php:870
626
  msgid "Label text color"
627
  msgstr ""
628
 
629
- #: contact_form.php:875
630
  msgid "Placeholder color"
631
  msgstr ""
632
 
633
- #: contact_form.php:880
634
  msgid "Errors color"
635
  msgstr ""
636
 
637
- #: contact_form.php:885
638
  msgid "Error text color"
639
  msgstr ""
640
 
641
- #: contact_form.php:890
642
  msgid "Background color of the input field errors"
643
  msgstr ""
644
 
645
- #: contact_form.php:895
646
  msgid "Border color of the input field errors"
647
  msgstr ""
648
 
649
- #: contact_form.php:900
650
  msgid "Placeholder color of the input field errors"
651
  msgstr ""
652
 
653
- #: contact_form.php:905
654
  #, fuzzy
655
  msgid "Input fields"
656
  msgstr "Vis vedlegg"
657
 
658
- #: contact_form.php:910
659
  msgid "Input fields background color"
660
  msgstr ""
661
 
662
- #: contact_form.php:915
663
  msgid "Text fields color"
664
  msgstr ""
665
 
666
- #: contact_form.php:917
667
  msgid "Border width in px, numbers only"
668
  msgstr ""
669
 
670
- #: contact_form.php:921
671
- #: contact_form.php:942
672
  msgid "Border color"
673
  msgstr ""
674
 
675
- #: contact_form.php:926
676
  #, fuzzy
677
  msgid "Submit button"
678
  msgstr "Send"
679
 
680
- #: contact_form.php:928
681
  msgid "Width in px, numbers only"
682
  msgstr ""
683
 
684
- #: contact_form.php:932
685
  msgid "Button color"
686
  msgstr ""
687
 
688
- #: contact_form.php:937
689
  msgid "Button text color"
690
  msgstr ""
691
 
692
- #: contact_form.php:953
693
  #, fuzzy
694
  msgid "Contact Form Pro | Preview"
695
  msgstr "Kontaktskjema"
696
 
697
- #: contact_form.php:956
698
  msgid "Show with errors"
699
  msgstr ""
700
 
701
- #: contact_form.php:964
702
- #: contact_form.php:966
703
  msgid "Please enter your full name..."
704
  msgstr ""
705
 
706
- #: contact_form.php:977
707
- #: contact_form.php:979
708
  msgid "Please enter your address..."
709
  msgstr ""
710
 
711
- #: contact_form.php:988
712
- #: contact_form.php:990
713
  #, fuzzy
714
  msgid "Please enter your email address..."
715
  msgstr "Benytt denne epostadressen:"
716
 
717
- #: contact_form.php:999
718
- #: contact_form.php:1001
719
  msgid "Please enter your phone number..."
720
  msgstr ""
721
 
722
- #: contact_form.php:1010
723
- #: contact_form.php:1012
724
  msgid "Please enter subject..."
725
  msgstr ""
726
 
727
- #: contact_form.php:1020
728
- #: contact_form.php:1022
729
  msgid "Please enter your message..."
730
  msgstr ""
731
 
732
- #: contact_form.php:1033
733
  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"
734
  msgstr ""
735
 
736
- #: contact_form.php:1102
737
- msgid "Sorry, email message could not be delivered."
738
- msgstr "Beklager, eposten din kunne ikke leveres."
739
-
740
- #: contact_form.php:1186
741
  msgid "You can attach the following file formats"
742
  msgstr "Du kan legge til filer av følgende typer"
743
 
744
- #: contact_form.php:1470
745
  msgid "Contact from"
746
  msgstr "Kontakt fra"
747
 
748
- #: contact_form.php:1483
749
  msgid "Email"
750
  msgstr "Epost"
751
 
752
- #: contact_form.php:1497
753
  msgid "Site"
754
  msgstr "Site"
755
 
756
- #: contact_form.php:1547
757
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
758
  msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
759
 
760
- #: contact_form.php:1598
761
  msgid "FAQ"
762
  msgstr "Vanlige spørsmål"
763
 
764
- #: contact_form.php:1599
765
  msgid "Support"
766
  msgstr "Support"
767
 
768
- #: contact_form.php:1647
769
  msgid "Are you sure that you want to delete this language data?"
770
  msgstr ""
771
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:57+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:57+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Melding"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Site"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Benytt denne epostadressen:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Takk for at du tok kontakt med oss"
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Beklager, eposten din kunne ikke leveres."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Aktiverte innstikk"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Les mer"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Innstilllinger"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Installerte instikk"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Anbefalte innstikk"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Anbefalte innstikk"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Last ned"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Installér %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Innstallér nå fra wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Hvis du har spørsmål kan du kontakte oss på plugin@bestwebsoft.com eller bruke kontaktskjemaet på hjemmesiden vår"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Aktiverte innstikk"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Aktiverte innstikk"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Support"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Innstillinger for kontaktskjema"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Kontaktskjema"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Innstillinger for kontaktskjema"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Kontaktskjema"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Navn:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "Epostadresse:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "Epostadresse:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Tema:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Melding:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Vedlegg:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Send meg en kopi"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Send"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Navnet ditt er påkrevet."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "En korrekt epostadresse er påkrevet."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "En korrekt epostadresse er påkrevet."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "Navnet ditt er påkrevet."
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "Tekst i temafeltet er påkrevet."
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "Tekst i meldingsfeltet er påkrevet"
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "Vedlegget fungerer ikke."
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "Vennligst fyll ut CAPTCHA"
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr ""
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Denne brukeren finnes ikke. Innstillingene er ikke lagret."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "Innstillinger lagret."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "Innstilllinger"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "Dersom du ønsket å legge til et kontaktskjema på wedsiden din, kopier og put denne koden i kommentaren din eller på siden din: "
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "Dersom feltene under er tomme, vil meldingen bli sendt til en adresse som var spesifisert ved registrering."
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "Benytt eposten til wordpressbruker:"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "Velg brukernavn"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "Sett et brukernavn for mottaker av meldinger fra kontaktskjemaet"
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "Benytt denne epostadressen:"
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "Sett en epostadresse som skal benyttes for å motta meldinger."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "Flere valg"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr ""
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr ""
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "Mail"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr ""
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "Endring fra feltene i kontaktskjemaet"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Vis vedlegg"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "Epostadresse:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr ""
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Vis vedlegg"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Brukere kan legge ved filer av følgende typer"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Vis vedlegg"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Vis send meg en kopi"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Aktiverte innstikk"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "Last ned"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Navn"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "Epostadresse:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Tema"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Melding"
578
 
579
+ #: contact_form.php:857
580
  msgid "Display additional info in the email"
581
  msgstr ""
582
 
583
+ #: contact_form.php:862
584
+ #: contact_form.php:1658
585
  msgid "Sent from (ip address)"
586
  msgstr "Sendt fra (IP-adresse)"
587
 
588
+ #: contact_form.php:863
589
+ #: contact_form.php:1663
590
  msgid "Date/Time"
591
  msgstr "Dato/tid"
592
 
593
+ #: contact_form.php:864
594
+ #: contact_form.php:1668
595
  msgid "Sent from (referer)"
596
  msgstr "Sendt fra (referent)"
597
 
598
+ #: contact_form.php:865
599
+ #: contact_form.php:1673
600
  msgid "Using (user agent)"
601
  msgstr "med (user agent)"
602
 
603
+ #: contact_form.php:869
604
  msgid "Language settings for the field names in the form"
605
  msgstr ""
606
 
607
+ #: contact_form.php:878
608
  msgid "Add a language"
609
  msgstr ""
610
 
611
+ #: contact_form.php:882
612
  #, fuzzy
613
  msgid "Change the names of the contact form fields and error messages"
614
  msgstr "Forandre etikett for felter i kontaktskjemaet"
615
 
616
+ #: contact_form.php:887
617
+ #: contact_form.php:958
618
  msgid "English"
619
  msgstr ""
620
 
621
+ #: contact_form.php:906
622
+ #: contact_form.php:935
623
  msgid "Error message for the Name field"
624
  msgstr ""
625
 
626
+ #: contact_form.php:907
627
+ #: contact_form.php:936
628
  msgid "Error message for the Address field"
629
  msgstr ""
630
 
631
+ #: contact_form.php:908
632
+ #: contact_form.php:937
633
  msgid "Error message for the Email field"
634
  msgstr ""
635
 
636
+ #: contact_form.php:909
637
+ #: contact_form.php:938
638
  msgid "Error message for the Phone field"
639
  msgstr ""
640
 
641
+ #: contact_form.php:910
642
+ #: contact_form.php:939
643
  msgid "Error message for the Subject field"
644
  msgstr ""
645
 
646
+ #: contact_form.php:911
647
+ #: contact_form.php:940
648
  msgid "Error message for the Message field"
649
  msgstr ""
650
 
651
+ #: contact_form.php:912
652
+ #: contact_form.php:941
653
  msgid "Error message about the file type for the Attachment field"
654
  msgstr ""
655
 
656
+ #: contact_form.php:913
657
+ #: contact_form.php:942
658
  msgid "Error message while uploading a file for the Attachment field to the server"
659
  msgstr ""
660
 
661
+ #: contact_form.php:914
662
+ #: contact_form.php:943
663
  msgid "Error message while moving the file for the Attachment field"
664
  msgstr ""
665
 
666
+ #: contact_form.php:915
667
+ #: contact_form.php:944
668
  msgid "Error message when file size limit for the Attachment field is exceeded"
669
  msgstr ""
670
 
671
+ #: contact_form.php:916
672
+ #: contact_form.php:945
673
  msgid "Error message for the Captcha field"
674
  msgstr ""
675
 
676
+ #: contact_form.php:917
677
+ #: contact_form.php:946
678
  msgid "Error message for the whole form"
679
  msgstr ""
680
 
681
+ #: contact_form.php:919
682
+ #: contact_form.php:948
683
+ #: contact_form.php:967
684
+ #: contact_form.php:973
685
  msgid "Use shortcode"
686
  msgstr ""
687
 
688
+ #: contact_form.php:919
689
+ #: contact_form.php:948
690
+ #: contact_form.php:967
691
+ #: contact_form.php:973
692
  msgid "for this language"
693
  msgstr ""
694
 
695
+ #: contact_form.php:955
696
  msgid "Action after email is sent"
697
  msgstr ""
698
 
699
+ #: contact_form.php:957
700
  #, fuzzy
701
  msgid "Display text"
702
  msgstr "Vis vedlegg"
703
 
704
+ #: contact_form.php:966
705
+ #: contact_form.php:972
706
  msgid "Text"
707
  msgstr ""
708
 
709
+ #: contact_form.php:979
710
  msgid "Redirect to the page"
711
  msgstr ""
712
 
713
+ #: contact_form.php:980
714
  msgid "Url"
715
  msgstr ""
716
 
717
+ #: contact_form.php:985
718
+ #: contact_form.php:1160
719
  msgid "Save Changes"
720
  msgstr "Lagre endringer"
721
 
722
+ #: contact_form.php:1000
723
  #, fuzzy
724
  msgid "Contact Form Pro | Extra Settings"
725
  msgstr "Innstillinger for kontaktskjema"
726
 
727
+ #: contact_form.php:1007
728
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
729
  msgstr ""
730
 
731
+ #: contact_form.php:1014
732
  msgid "Errors output"
733
  msgstr ""
734
 
735
+ #: contact_form.php:1017
736
  msgid "Display error messages"
737
  msgstr ""
738
 
739
+ #: contact_form.php:1018
740
  msgid "Color of the input field errors."
741
  msgstr ""
742
 
743
+ #: contact_form.php:1019
744
  msgid "Display error messages & color of the input field errors"
745
  msgstr ""
746
 
747
+ #: contact_form.php:1024
748
  msgid "Add placeholder to the input blocks"
749
  msgstr ""
750
 
751
+ #: contact_form.php:1030
752
  #, fuzzy
753
  msgid "Add tooltips"
754
  msgstr "Flere valg"
755
 
756
+ #: contact_form.php:1044
757
  #, fuzzy
758
  msgid "Email address"
759
  msgstr "Epostadresse:"
760
 
761
+ #: contact_form.php:1049
762
  msgid "Phone Number"
763
  msgstr ""
764
 
765
+ #: contact_form.php:1063
766
  #, fuzzy
767
  msgid "Attachment"
768
  msgstr "Vedlegg:"
769
 
770
+ #: contact_form.php:1073
771
  #, fuzzy
772
  msgid "Style options"
773
  msgstr "Flere valg"
774
 
775
+ #: contact_form.php:1076
776
  msgid "Text color"
777
  msgstr ""
778
 
779
+ #: contact_form.php:1079
780
+ #: contact_form.php:1084
781
+ #: contact_form.php:1094
782
+ #: contact_form.php:1099
783
+ #: contact_form.php:1104
784
+ #: contact_form.php:1109
785
+ #: contact_form.php:1119
786
+ #: contact_form.php:1124
787
+ #: contact_form.php:1130
788
+ #: contact_form.php:1141
789
+ #: contact_form.php:1146
790
+ #: contact_form.php:1151
791
  msgid "Default"
792
  msgstr ""
793
 
794
+ #: contact_form.php:1081
795
  msgid "Label text color"
796
  msgstr ""
797
 
798
+ #: contact_form.php:1086
799
  msgid "Placeholder color"
800
  msgstr ""
801
 
802
+ #: contact_form.php:1091
803
  msgid "Errors color"
804
  msgstr ""
805
 
806
+ #: contact_form.php:1096
807
  msgid "Error text color"
808
  msgstr ""
809
 
810
+ #: contact_form.php:1101
811
  msgid "Background color of the input field errors"
812
  msgstr ""
813
 
814
+ #: contact_form.php:1106
815
  msgid "Border color of the input field errors"
816
  msgstr ""
817
 
818
+ #: contact_form.php:1111
819
  msgid "Placeholder color of the input field errors"
820
  msgstr ""
821
 
822
+ #: contact_form.php:1116
823
  #, fuzzy
824
  msgid "Input fields"
825
  msgstr "Vis vedlegg"
826
 
827
+ #: contact_form.php:1121
828
  msgid "Input fields background color"
829
  msgstr ""
830
 
831
+ #: contact_form.php:1126
832
  msgid "Text fields color"
833
  msgstr ""
834
 
835
+ #: contact_form.php:1128
836
  msgid "Border width in px, numbers only"
837
  msgstr ""
838
 
839
+ #: contact_form.php:1132
840
+ #: contact_form.php:1153
841
  msgid "Border color"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1137
845
  #, fuzzy
846
  msgid "Submit button"
847
  msgstr "Send"
848
 
849
+ #: contact_form.php:1139
850
  msgid "Width in px, numbers only"
851
  msgstr ""
852
 
853
+ #: contact_form.php:1143
854
  msgid "Button color"
855
  msgstr ""
856
 
857
+ #: contact_form.php:1148
858
  msgid "Button text color"
859
  msgstr ""
860
 
861
+ #: contact_form.php:1164
862
  #, fuzzy
863
  msgid "Contact Form Pro | Preview"
864
  msgstr "Kontaktskjema"
865
 
866
+ #: contact_form.php:1167
867
  msgid "Show with errors"
868
  msgstr ""
869
 
870
+ #: contact_form.php:1175
871
+ #: contact_form.php:1177
872
  msgid "Please enter your full name..."
873
  msgstr ""
874
 
875
+ #: contact_form.php:1188
876
+ #: contact_form.php:1190
877
  msgid "Please enter your address..."
878
  msgstr ""
879
 
880
+ #: contact_form.php:1199
881
+ #: contact_form.php:1201
882
  #, fuzzy
883
  msgid "Please enter your email address..."
884
  msgstr "Benytt denne epostadressen:"
885
 
886
+ #: contact_form.php:1210
887
+ #: contact_form.php:1212
888
  msgid "Please enter your phone number..."
889
  msgstr ""
890
 
891
+ #: contact_form.php:1221
892
+ #: contact_form.php:1223
893
  msgid "Please enter subject..."
894
  msgstr ""
895
 
896
+ #: contact_form.php:1231
897
+ #: contact_form.php:1233
898
  msgid "Please enter your message..."
899
  msgstr ""
900
 
901
+ #: contact_form.php:1244
902
  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"
903
  msgstr ""
904
 
905
+ #: contact_form.php:1397
 
 
 
 
906
  msgid "You can attach the following file formats"
907
  msgstr "Du kan legge til filer av følgende typer"
908
 
909
+ #: contact_form.php:1681
910
  msgid "Contact from"
911
  msgstr "Kontakt fra"
912
 
913
+ #: contact_form.php:1694
914
  msgid "Email"
915
  msgstr "Epost"
916
 
917
+ #: contact_form.php:1708
918
  msgid "Site"
919
  msgstr "Site"
920
 
921
+ #: contact_form.php:1758
922
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
923
  msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
924
 
925
+ #: contact_form.php:1809
926
  msgid "FAQ"
927
  msgstr "Vanlige spørsmål"
928
 
929
+ #: contact_form.php:1810
930
  msgid "Support"
931
  msgstr "Support"
932
 
933
+ #: contact_form.php:1858
934
  msgid "Are you sure that you want to delete this language data?"
935
  msgstr ""
936
 
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: 2013-07-16 16:05+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:05+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung, Dorine Kat-Stronck <thartung@adipositas-mm.de, info@katchy.nl>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,761 +16,926 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Geactiveerde plugins"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Lees verder"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Instellingen"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Geïnstalleerde Plugins"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Aanbevolen Plugins"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Aanbevolen Plugins"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Download"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Installeer %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Installeer nu via wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Mocht u nog vragen hebben, stuur dan een email naar plugin@bestwebsoft.com of vul het contactformulier op onze website in."
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Contact Form Opties"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Contact Form"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Contact Form Opties"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Contact Form"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Naam:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "Email adres:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "Email adres:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr "Telefoonnummer:"
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Onderwerp:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Bericht:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Bijlage:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Kopie aan mij sturen"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Versturen"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Uw naam is verplicht."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Een correct email adres is vereist."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "Een correct email adres is vereist."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  msgid "Phone number is required."
179
  msgstr "Telefoonnummer verplicht"
180
 
181
- #: contact_form.php:214
182
- #: contact_form.php:257
183
- #: contact_form.php:260
184
  msgid "Subject is required."
185
  msgstr "Onderwerp tekst is verplicht."
186
 
187
- #: contact_form.php:215
188
- #: contact_form.php:256
189
- #: contact_form.php:259
190
  msgid "Message text is required."
191
  msgstr "Bericht tekst is verplicht."
192
 
193
- #: contact_form.php:216
194
  msgid "File format is not valid."
195
  msgstr "Bijlage is beschadigd."
196
 
197
- #: contact_form.php:217
198
  msgid "File upload error."
199
  msgstr ""
200
 
201
- #: contact_form.php:218
202
  msgid "The file could not be uploaded."
203
  msgstr ""
204
 
205
- #: contact_form.php:219
206
  msgid "This file is too large."
207
  msgstr ""
208
 
209
- #: contact_form.php:220
210
  msgid "Please fill out the CAPTCHA."
211
  msgstr "Vul de CAPTCHA in."
212
 
213
- #: contact_form.php:221
214
  msgid "Please make corrections below and try again."
215
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
216
 
217
- #: contact_form.php:223
218
- msgid "Thank you for contacting us."
219
- msgstr "Bedankt voor uw bericht."
220
-
221
- #: contact_form.php:494
222
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
223
  msgstr "Als de optie 'Doorsturen naar pagina' is geselecteerd, dient u het url veld in te vullen in de volgende format"
224
 
225
- #: contact_form.php:503
226
  msgid "Such user does not exist. Settings are not saved."
227
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
228
 
229
- #: contact_form.php:508
230
- #: contact_form.php:514
231
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
232
  msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
233
 
234
- #: contact_form.php:519
235
  #, fuzzy
236
  msgid "Settings saved."
237
  msgstr "Instellingen opgeslagen."
238
 
239
- #: contact_form.php:544
240
- #: contact_form.php:792
241
  #, fuzzy
242
  msgid "Extra settings"
243
  msgstr "Instellingen"
244
 
245
- #: contact_form.php:549
246
- #: contact_form.php:1048
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 "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht, op je pagina of widget:"
249
 
250
- #: contact_form.php:550
251
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
252
  msgstr "Als onderstaande velden leeg blijven, zal het bericht gestuurd worden aan het adres dat is gespecificeerd tijdens de registratie."
253
 
254
- #: contact_form.php:554
255
  msgid "The user's email address:"
256
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
257
 
258
- #: contact_form.php:558
259
  msgid "Create a username"
260
  msgstr "Kies gebruikersnaam"
261
 
262
- #: contact_form.php:563
263
  msgid "Enter a username of the person who should get the messages from the contact form."
264
  msgstr "Voer de naam in van de gebruiker die berichten van dit contact formulier moet ontvangen."
265
 
266
- #: contact_form.php:567
267
  msgid "Use this email address:"
268
  msgstr "Gebruik dit email adres:"
269
 
270
- #: contact_form.php:570
271
  msgid "Enter the email address you want the messages forwarded to."
272
  msgstr "Geef een email adres op waar de berichten naar verstuurd moeten worden."
273
 
274
- #: contact_form.php:574
275
  msgid "Additional options"
276
  msgstr "Extra opties"
277
 
278
- #: contact_form.php:577
279
  msgid "What to use?"
280
  msgstr "Voor welk gebruik?"
281
 
282
- #: contact_form.php:580
283
  msgid "Wp-mail"
284
  msgstr "Wp-mail"
285
 
286
- #: contact_form.php:581
287
  msgid "You can use the wp_mail function for mailing"
288
  msgstr "Om emails te verzenden kunt u the wordpress wp-mail functie gebruiken"
289
 
290
- #: contact_form.php:587
291
  msgid "Mail"
292
  msgstr "Mail"
293
 
294
- #: contact_form.php:588
295
  msgid "To send mail you can use the php mail function"
296
  msgstr "Om emails te verzenden kunt e de php mail functie gebruiken"
297
 
298
- #: contact_form.php:592
299
  msgid "Change text of the 'FROM' field"
300
  msgstr "Verander de tekst voor 'VAN' veld van het email adres"
301
 
302
- #: contact_form.php:598
303
  msgid "Enter the email address in the 'From' field"
304
  msgstr "Kies het email adres voor 'Van' veld voor het versturen van de mail"
305
 
306
- #: contact_form.php:600
307
  msgid "User email"
308
  msgstr ""
309
 
310
- #: contact_form.php:600
311
  #, fuzzy
312
  msgid "The email address of the user who fills the form will be used in the field 'From'."
313
  msgstr "In het veld 'Van' in de email zal het email adres van degene die het formulier invult gebruikt worden."
314
 
315
- #: contact_form.php:602
316
  msgid "This email address will be used in the 'From' field."
317
  msgstr "In het veld 'Van' dit email adres zal worden gebruikt."
318
 
319
- #: contact_form.php:606
320
  #, fuzzy
321
  msgid "Display fields"
322
  msgstr "Toon tekst"
323
 
324
- #: contact_form.php:608
325
- #: contact_form.php:638
326
- #: contact_form.php:828
327
- #: contact_form.php:1480
328
  #, fuzzy
329
  msgid "Address"
330
  msgstr "Email adres:"
331
 
332
- #: contact_form.php:609
333
- #: contact_form.php:640
334
- #: contact_form.php:1488
335
  msgid "Phone"
336
  msgstr "Telefoonnummer"
337
 
338
- #: contact_form.php:610
339
  #, fuzzy
340
  msgid "Attachment block"
341
  msgstr "Toon de bijlage knop"
342
 
343
- #: contact_form.php:610
344
  msgid "Users can attach the following file formats"
345
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
346
 
347
- #: contact_form.php:611
348
  #, fuzzy
349
  msgid "Tips below the Attachment block"
350
  msgstr "Toon uitleg na Bijlage knop"
351
 
352
- #: contact_form.php:612
353
  #, fuzzy
354
  msgid "Send me a copy block"
355
  msgstr "Geef 'Kopie aan mij sturen' weer"
356
 
357
- #: contact_form.php:624
358
- #: contact_form.php:627
359
- #: contact_form.php:630
360
- #: contact_form.php:857
361
  msgid "Captcha"
362
  msgstr ""
363
 
364
- #: contact_form.php:624
365
- #: contact_form.php:627
366
- #: contact_form.php:630
367
- #: contact_form.php:857
368
  msgid "(powered by bestwebsoft.com)"
369
  msgstr ""
370
 
371
- #: contact_form.php:627
372
  #, fuzzy
373
  msgid "Activate captcha"
374
  msgstr "Geactiveerde plugins"
375
 
376
- #: contact_form.php:630
377
  #, fuzzy
378
  msgid "Download captcha"
379
  msgstr "Download"
380
 
381
- #: contact_form.php:635
382
  msgid "Required fields"
383
  msgstr "Verplicht veld"
384
 
385
- #: contact_form.php:637
386
- #: contact_form.php:823
387
- #: contact_form.php:1475
388
  msgid "Name"
389
  msgstr "Naam"
390
 
391
- #: contact_form.php:639
392
  #, fuzzy
393
  msgid "Email Address"
394
  msgstr "Email adres:"
395
 
396
- #: contact_form.php:641
397
- #: contact_form.php:843
398
- #: contact_form.php:1491
399
  msgid "Subject"
400
  msgstr "Onderwerp"
401
 
402
- #: contact_form.php:642
403
- #: contact_form.php:847
404
- #: contact_form.php:1494
405
  msgid "Message"
406
  msgstr "Bericht"
407
 
408
- #: contact_form.php:646
409
  #, fuzzy
410
  msgid "Display additional info in the email"
411
  msgstr "Toon aanvullende informatie in de email"
412
 
413
- #: contact_form.php:651
414
- #: contact_form.php:1447
415
  msgid "Sent from (ip address)"
416
  msgstr "Verstuurd van (IP-adres)"
417
 
418
- #: contact_form.php:652
419
- #: contact_form.php:1452
420
  msgid "Date/Time"
421
  msgstr "Datum/Tijd"
422
 
423
- #: contact_form.php:653
424
- #: contact_form.php:1457
425
  msgid "Sent from (referer)"
426
  msgstr "Verstuurd vanaf (referer)"
427
 
428
- #: contact_form.php:654
429
- #: contact_form.php:1462
430
  msgid "Using (user agent)"
431
  msgstr "Met (user agent)"
432
 
433
- #: contact_form.php:658
434
  msgid "Language settings for the field names in the form"
435
  msgstr "Taal instellingen voor velden met een label"
436
 
437
- #: contact_form.php:667
438
  #, fuzzy
439
  msgid "Add a language"
440
  msgstr "Voeg een taal toe"
441
 
442
- #: contact_form.php:671
443
  msgid "Change the names of the contact form fields and error messages"
444
  msgstr "Verander de namen van de labels en de foutmeldingen"
445
 
446
- #: contact_form.php:676
447
- #: contact_form.php:747
448
  msgid "English"
449
  msgstr "Engels"
450
 
451
- #: contact_form.php:695
452
- #: contact_form.php:724
453
  msgid "Error message for the Name field"
454
  msgstr "Foutmelding voor naam veld"
455
 
456
- #: contact_form.php:696
457
- #: contact_form.php:725
458
  #, fuzzy
459
  msgid "Error message for the Address field"
460
  msgstr "Foutmelding voor bericht veld"
461
 
462
- #: contact_form.php:697
463
- #: contact_form.php:726
464
  msgid "Error message for the Email field"
465
  msgstr "Foutmelding voor email veld"
466
 
467
- #: contact_form.php:698
468
- #: contact_form.php:727
469
  msgid "Error message for the Phone field"
470
  msgstr "Foutmelding voor telefoonnummer veld"
471
 
472
- #: contact_form.php:699
473
- #: contact_form.php:728
474
  msgid "Error message for the Subject field"
475
  msgstr "Foutmelding voor onderwerp veld"
476
 
477
- #: contact_form.php:700
478
- #: contact_form.php:729
479
  msgid "Error message for the Message field"
480
  msgstr "Foutmelding voor bericht veld"
481
 
482
- #: contact_form.php:701
483
- #: contact_form.php:730
484
  #, fuzzy
485
  msgid "Error message about the file type for the Attachment field"
486
  msgstr "Foutmelding voor bijlage veld"
487
 
488
- #: contact_form.php:702
489
- #: contact_form.php:731
490
  #, fuzzy
491
  msgid "Error message while uploading a file for the Attachment field to the server"
492
  msgstr "Foutmelding voor bijlage veld"
493
 
494
- #: contact_form.php:703
495
- #: contact_form.php:732
496
  #, fuzzy
497
  msgid "Error message while moving the file for the Attachment field"
498
  msgstr "Foutmelding voor bijlage veld"
499
 
500
- #: contact_form.php:704
501
- #: contact_form.php:733
502
  #, fuzzy
503
  msgid "Error message when file size limit for the Attachment field is exceeded"
504
  msgstr "Foutmelding voor bijlage veld"
505
 
506
- #: contact_form.php:705
507
- #: contact_form.php:734
508
  msgid "Error message for the Captcha field"
509
  msgstr "Foutmelding voor captcha"
510
 
511
- #: contact_form.php:706
512
- #: contact_form.php:735
513
  msgid "Error message for the whole form"
514
  msgstr "Foutmelding voor het gehele formulier"
515
 
516
- #: contact_form.php:708
517
- #: contact_form.php:737
518
- #: contact_form.php:756
519
- #: contact_form.php:762
520
  msgid "Use shortcode"
521
  msgstr "Gebruik shortcode"
522
 
523
- #: contact_form.php:708
524
- #: contact_form.php:737
525
- #: contact_form.php:756
526
- #: contact_form.php:762
527
  msgid "for this language"
528
  msgstr "voor deze taal"
529
 
530
- #: contact_form.php:744
531
  msgid "Action after email is sent"
532
  msgstr "Actie na het verzenden van de email"
533
 
534
- #: contact_form.php:746
535
  msgid "Display text"
536
  msgstr "Toon tekst"
537
 
538
- #: contact_form.php:755
539
- #: contact_form.php:761
540
  msgid "Text"
541
  msgstr "Tekst"
542
 
543
- #: contact_form.php:768
544
  msgid "Redirect to the page"
545
  msgstr "Dooorsturen naar pagina"
546
 
547
- #: contact_form.php:769
548
  msgid "Url"
549
  msgstr "Url"
550
 
551
- #: contact_form.php:774
552
- #: contact_form.php:949
553
  msgid "Save Changes"
554
  msgstr "Bewaar veranderingen"
555
 
556
- #: contact_form.php:789
557
  #, fuzzy
558
  msgid "Contact Form Pro | Extra Settings"
559
  msgstr "Contact Form Opties"
560
 
561
- #: contact_form.php:796
562
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
563
  msgstr ""
564
 
565
- #: contact_form.php:803
566
  msgid "Errors output"
567
  msgstr ""
568
 
569
- #: contact_form.php:806
570
  msgid "Display error messages"
571
  msgstr ""
572
 
573
- #: contact_form.php:807
574
  msgid "Color of the input field errors."
575
  msgstr ""
576
 
577
- #: contact_form.php:808
578
  #, fuzzy
579
  msgid "Display error messages & color of the input field errors"
580
  msgstr "Foutmelding voor onderwerp veld"
581
 
582
- #: contact_form.php:813
583
  msgid "Add placeholder to the input blocks"
584
  msgstr ""
585
 
586
- #: contact_form.php:819
587
  #, fuzzy
588
  msgid "Add tooltips"
589
  msgstr "Extra opties"
590
 
591
- #: contact_form.php:833
592
  #, fuzzy
593
  msgid "Email address"
594
  msgstr "Email adres:"
595
 
596
- #: contact_form.php:838
597
  #, fuzzy
598
  msgid "Phone Number"
599
  msgstr "Telefoonnummer:"
600
 
601
- #: contact_form.php:852
602
  #, fuzzy
603
  msgid "Attachment"
604
  msgstr "Bijlage:"
605
 
606
- #: contact_form.php:862
607
  #, fuzzy
608
  msgid "Style options"
609
  msgstr "Extra opties"
610
 
611
- #: contact_form.php:865
612
  msgid "Text color"
613
  msgstr ""
614
 
615
- #: contact_form.php:868
616
- #: contact_form.php:873
617
- #: contact_form.php:883
618
- #: contact_form.php:888
619
- #: contact_form.php:893
620
- #: contact_form.php:898
621
- #: contact_form.php:908
622
- #: contact_form.php:913
623
- #: contact_form.php:919
624
- #: contact_form.php:930
625
- #: contact_form.php:935
626
- #: contact_form.php:940
627
  msgid "Default"
628
  msgstr ""
629
 
630
- #: contact_form.php:870
631
  msgid "Label text color"
632
  msgstr ""
633
 
634
- #: contact_form.php:875
635
  msgid "Placeholder color"
636
  msgstr ""
637
 
638
- #: contact_form.php:880
639
  msgid "Errors color"
640
  msgstr ""
641
 
642
- #: contact_form.php:885
643
  msgid "Error text color"
644
  msgstr ""
645
 
646
- #: contact_form.php:890
647
  msgid "Background color of the input field errors"
648
  msgstr ""
649
 
650
- #: contact_form.php:895
651
  msgid "Border color of the input field errors"
652
  msgstr ""
653
 
654
- #: contact_form.php:900
655
  msgid "Placeholder color of the input field errors"
656
  msgstr ""
657
 
658
- #: contact_form.php:905
659
  #, fuzzy
660
  msgid "Input fields"
661
  msgstr "Toon tekst"
662
 
663
- #: contact_form.php:910
664
  msgid "Input fields background color"
665
  msgstr ""
666
 
667
- #: contact_form.php:915
668
  msgid "Text fields color"
669
  msgstr ""
670
 
671
- #: contact_form.php:917
672
  msgid "Border width in px, numbers only"
673
  msgstr ""
674
 
675
- #: contact_form.php:921
676
- #: contact_form.php:942
677
  msgid "Border color"
678
  msgstr ""
679
 
680
- #: contact_form.php:926
681
  #, fuzzy
682
  msgid "Submit button"
683
  msgstr "Versturen"
684
 
685
- #: contact_form.php:928
686
  msgid "Width in px, numbers only"
687
  msgstr ""
688
 
689
- #: contact_form.php:932
690
  msgid "Button color"
691
  msgstr ""
692
 
693
- #: contact_form.php:937
694
  msgid "Button text color"
695
  msgstr ""
696
 
697
- #: contact_form.php:953
698
  #, fuzzy
699
  msgid "Contact Form Pro | Preview"
700
  msgstr "Contact Form"
701
 
702
- #: contact_form.php:956
703
  msgid "Show with errors"
704
  msgstr ""
705
 
706
- #: contact_form.php:964
707
- #: contact_form.php:966
708
  msgid "Please enter your full name..."
709
  msgstr ""
710
 
711
- #: contact_form.php:977
712
- #: contact_form.php:979
713
  msgid "Please enter your address..."
714
  msgstr ""
715
 
716
- #: contact_form.php:988
717
- #: contact_form.php:990
718
  #, fuzzy
719
  msgid "Please enter your email address..."
720
  msgstr "Gebruik dit email adres:"
721
 
722
- #: contact_form.php:999
723
- #: contact_form.php:1001
724
  msgid "Please enter your phone number..."
725
  msgstr ""
726
 
727
- #: contact_form.php:1010
728
- #: contact_form.php:1012
729
  msgid "Please enter subject..."
730
  msgstr ""
731
 
732
- #: contact_form.php:1020
733
- #: contact_form.php:1022
734
  msgid "Please enter your message..."
735
  msgstr ""
736
 
737
- #: contact_form.php:1033
738
  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"
739
  msgstr ""
740
 
741
- #: contact_form.php:1102
742
- msgid "Sorry, email message could not be delivered."
743
- msgstr "Sorry, uw bericht kon niet worden verstuurd."
744
-
745
- #: contact_form.php:1186
746
  msgid "You can attach the following file formats"
747
  msgstr "Bestanden van de volgende formaten kunnen worden bijgevoegd"
748
 
749
- #: contact_form.php:1470
750
  msgid "Contact from"
751
  msgstr "Contact van"
752
 
753
- #: contact_form.php:1483
754
  msgid "Email"
755
  msgstr "Email"
756
 
757
- #: contact_form.php:1497
758
  msgid "Site"
759
  msgstr "Website"
760
 
761
- #: contact_form.php:1547
762
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
763
  msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
764
 
765
- #: contact_form.php:1598
766
  msgid "FAQ"
767
  msgstr "Veel gestelde vragen (FAQ)"
768
 
769
- #: contact_form.php:1599
770
  msgid "Support"
771
  msgstr "Ondersteuning"
772
 
773
- #: contact_form.php:1647
774
  msgid "Are you sure that you want to delete this language data?"
775
  msgstr "Weet u zeker dat u deze taal wilt verwijderen?"
776
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:57+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:57+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung, Dorine Kat-Stronck <thartung@adipositas-mm.de, info@katchy.nl>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Bericht"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Website"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Gebruik dit email adres:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Bedankt voor uw bericht."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Sorry, uw bericht kon niet worden verstuurd."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Geactiveerde plugins"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Lees verder"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Instellingen"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Geïnstalleerde Plugins"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Aanbevolen Plugins"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Aanbevolen Plugins"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Download"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Installeer %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Installeer nu via wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Mocht u nog vragen hebben, stuur dan een email naar plugin@bestwebsoft.com of vul het contactformulier op onze website in."
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Geactiveerde plugins"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Geactiveerde plugins"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Ondersteuning"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Contact Form Opties"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Contact Form"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Contact Form Opties"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Contact Form"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Naam:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "Email adres:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "Email adres:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr "Telefoonnummer:"
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Onderwerp:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Bericht:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Bijlage:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Kopie aan mij sturen"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Versturen"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Uw naam is verplicht."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Een correct email adres is vereist."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "Een correct email adres is vereist."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  msgid "Phone number is required."
352
  msgstr "Telefoonnummer verplicht"
353
 
354
+ #: contact_form.php:425
355
+ #: contact_form.php:468
356
+ #: contact_form.php:471
357
  msgid "Subject is required."
358
  msgstr "Onderwerp tekst is verplicht."
359
 
360
+ #: contact_form.php:426
361
+ #: contact_form.php:467
362
+ #: contact_form.php:470
363
  msgid "Message text is required."
364
  msgstr "Bericht tekst is verplicht."
365
 
366
+ #: contact_form.php:427
367
  msgid "File format is not valid."
368
  msgstr "Bijlage is beschadigd."
369
 
370
+ #: contact_form.php:428
371
  msgid "File upload error."
372
  msgstr ""
373
 
374
+ #: contact_form.php:429
375
  msgid "The file could not be uploaded."
376
  msgstr ""
377
 
378
+ #: contact_form.php:430
379
  msgid "This file is too large."
380
  msgstr ""
381
 
382
+ #: contact_form.php:431
383
  msgid "Please fill out the CAPTCHA."
384
  msgstr "Vul de CAPTCHA in."
385
 
386
+ #: contact_form.php:432
387
  msgid "Please make corrections below and try again."
388
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
389
 
390
+ #: contact_form.php:705
 
 
 
 
391
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
392
  msgstr "Als de optie 'Doorsturen naar pagina' is geselecteerd, dient u het url veld in te vullen in de volgende format"
393
 
394
+ #: contact_form.php:714
395
  msgid "Such user does not exist. Settings are not saved."
396
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
397
 
398
+ #: contact_form.php:719
399
+ #: contact_form.php:725
400
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
401
  msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
402
 
403
+ #: contact_form.php:730
404
  #, fuzzy
405
  msgid "Settings saved."
406
  msgstr "Instellingen opgeslagen."
407
 
408
+ #: contact_form.php:755
409
+ #: contact_form.php:1003
410
  #, fuzzy
411
  msgid "Extra settings"
412
  msgstr "Instellingen"
413
 
414
+ #: contact_form.php:760
415
+ #: contact_form.php:1259
416
  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:"
417
  msgstr "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht, op je pagina of widget:"
418
 
419
+ #: contact_form.php:761
420
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
421
  msgstr "Als onderstaande velden leeg blijven, zal het bericht gestuurd worden aan het adres dat is gespecificeerd tijdens de registratie."
422
 
423
+ #: contact_form.php:765
424
  msgid "The user's email address:"
425
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
426
 
427
+ #: contact_form.php:769
428
  msgid "Create a username"
429
  msgstr "Kies gebruikersnaam"
430
 
431
+ #: contact_form.php:774
432
  msgid "Enter a username of the person who should get the messages from the contact form."
433
  msgstr "Voer de naam in van de gebruiker die berichten van dit contact formulier moet ontvangen."
434
 
435
+ #: contact_form.php:778
436
  msgid "Use this email address:"
437
  msgstr "Gebruik dit email adres:"
438
 
439
+ #: contact_form.php:781
440
  msgid "Enter the email address you want the messages forwarded to."
441
  msgstr "Geef een email adres op waar de berichten naar verstuurd moeten worden."
442
 
443
+ #: contact_form.php:785
444
  msgid "Additional options"
445
  msgstr "Extra opties"
446
 
447
+ #: contact_form.php:788
448
  msgid "What to use?"
449
  msgstr "Voor welk gebruik?"
450
 
451
+ #: contact_form.php:791
452
  msgid "Wp-mail"
453
  msgstr "Wp-mail"
454
 
455
+ #: contact_form.php:792
456
  msgid "You can use the wp_mail function for mailing"
457
  msgstr "Om emails te verzenden kunt u the wordpress wp-mail functie gebruiken"
458
 
459
+ #: contact_form.php:798
460
  msgid "Mail"
461
  msgstr "Mail"
462
 
463
+ #: contact_form.php:799
464
  msgid "To send mail you can use the php mail function"
465
  msgstr "Om emails te verzenden kunt e de php mail functie gebruiken"
466
 
467
+ #: contact_form.php:803
468
  msgid "Change text of the 'FROM' field"
469
  msgstr "Verander de tekst voor 'VAN' veld van het email adres"
470
 
471
+ #: contact_form.php:809
472
  msgid "Enter the email address in the 'From' field"
473
  msgstr "Kies het email adres voor 'Van' veld voor het versturen van de mail"
474
 
475
+ #: contact_form.php:811
476
  msgid "User email"
477
  msgstr ""
478
 
479
+ #: contact_form.php:811
480
  #, fuzzy
481
  msgid "The email address of the user who fills the form will be used in the field 'From'."
482
  msgstr "In het veld 'Van' in de email zal het email adres van degene die het formulier invult gebruikt worden."
483
 
484
+ #: contact_form.php:813
485
  msgid "This email address will be used in the 'From' field."
486
  msgstr "In het veld 'Van' dit email adres zal worden gebruikt."
487
 
488
+ #: contact_form.php:817
489
  #, fuzzy
490
  msgid "Display fields"
491
  msgstr "Toon tekst"
492
 
493
+ #: contact_form.php:819
494
+ #: contact_form.php:849
495
+ #: contact_form.php:1039
496
+ #: contact_form.php:1691
497
  #, fuzzy
498
  msgid "Address"
499
  msgstr "Email adres:"
500
 
501
+ #: contact_form.php:820
502
+ #: contact_form.php:851
503
+ #: contact_form.php:1699
504
  msgid "Phone"
505
  msgstr "Telefoonnummer"
506
 
507
+ #: contact_form.php:821
508
  #, fuzzy
509
  msgid "Attachment block"
510
  msgstr "Toon de bijlage knop"
511
 
512
+ #: contact_form.php:821
513
  msgid "Users can attach the following file formats"
514
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
515
 
516
+ #: contact_form.php:822
517
  #, fuzzy
518
  msgid "Tips below the Attachment block"
519
  msgstr "Toon uitleg na Bijlage knop"
520
 
521
+ #: contact_form.php:823
522
  #, fuzzy
523
  msgid "Send me a copy block"
524
  msgstr "Geef 'Kopie aan mij sturen' weer"
525
 
526
+ #: contact_form.php:835
527
+ #: contact_form.php:838
528
+ #: contact_form.php:841
529
+ #: contact_form.php:1068
530
  msgid "Captcha"
531
  msgstr ""
532
 
533
+ #: contact_form.php:835
534
+ #: contact_form.php:838
535
+ #: contact_form.php:841
536
+ #: contact_form.php:1068
537
  msgid "(powered by bestwebsoft.com)"
538
  msgstr ""
539
 
540
+ #: contact_form.php:838
541
  #, fuzzy
542
  msgid "Activate captcha"
543
  msgstr "Geactiveerde plugins"
544
 
545
+ #: contact_form.php:841
546
  #, fuzzy
547
  msgid "Download captcha"
548
  msgstr "Download"
549
 
550
+ #: contact_form.php:846
551
  msgid "Required fields"
552
  msgstr "Verplicht veld"
553
 
554
+ #: contact_form.php:848
555
+ #: contact_form.php:1034
556
+ #: contact_form.php:1686
557
  msgid "Name"
558
  msgstr "Naam"
559
 
560
+ #: contact_form.php:850
561
  #, fuzzy
562
  msgid "Email Address"
563
  msgstr "Email adres:"
564
 
565
+ #: contact_form.php:852
566
+ #: contact_form.php:1054
567
+ #: contact_form.php:1702
568
  msgid "Subject"
569
  msgstr "Onderwerp"
570
 
571
+ #: contact_form.php:853
572
+ #: contact_form.php:1058
573
+ #: contact_form.php:1705
574
  msgid "Message"
575
  msgstr "Bericht"
576
 
577
+ #: contact_form.php:857
578
  #, fuzzy
579
  msgid "Display additional info in the email"
580
  msgstr "Toon aanvullende informatie in de email"
581
 
582
+ #: contact_form.php:862
583
+ #: contact_form.php:1658
584
  msgid "Sent from (ip address)"
585
  msgstr "Verstuurd van (IP-adres)"
586
 
587
+ #: contact_form.php:863
588
+ #: contact_form.php:1663
589
  msgid "Date/Time"
590
  msgstr "Datum/Tijd"
591
 
592
+ #: contact_form.php:864
593
+ #: contact_form.php:1668
594
  msgid "Sent from (referer)"
595
  msgstr "Verstuurd vanaf (referer)"
596
 
597
+ #: contact_form.php:865
598
+ #: contact_form.php:1673
599
  msgid "Using (user agent)"
600
  msgstr "Met (user agent)"
601
 
602
+ #: contact_form.php:869
603
  msgid "Language settings for the field names in the form"
604
  msgstr "Taal instellingen voor velden met een label"
605
 
606
+ #: contact_form.php:878
607
  #, fuzzy
608
  msgid "Add a language"
609
  msgstr "Voeg een taal toe"
610
 
611
+ #: contact_form.php:882
612
  msgid "Change the names of the contact form fields and error messages"
613
  msgstr "Verander de namen van de labels en de foutmeldingen"
614
 
615
+ #: contact_form.php:887
616
+ #: contact_form.php:958
617
  msgid "English"
618
  msgstr "Engels"
619
 
620
+ #: contact_form.php:906
621
+ #: contact_form.php:935
622
  msgid "Error message for the Name field"
623
  msgstr "Foutmelding voor naam veld"
624
 
625
+ #: contact_form.php:907
626
+ #: contact_form.php:936
627
  #, fuzzy
628
  msgid "Error message for the Address field"
629
  msgstr "Foutmelding voor bericht veld"
630
 
631
+ #: contact_form.php:908
632
+ #: contact_form.php:937
633
  msgid "Error message for the Email field"
634
  msgstr "Foutmelding voor email veld"
635
 
636
+ #: contact_form.php:909
637
+ #: contact_form.php:938
638
  msgid "Error message for the Phone field"
639
  msgstr "Foutmelding voor telefoonnummer veld"
640
 
641
+ #: contact_form.php:910
642
+ #: contact_form.php:939
643
  msgid "Error message for the Subject field"
644
  msgstr "Foutmelding voor onderwerp veld"
645
 
646
+ #: contact_form.php:911
647
+ #: contact_form.php:940
648
  msgid "Error message for the Message field"
649
  msgstr "Foutmelding voor bericht veld"
650
 
651
+ #: contact_form.php:912
652
+ #: contact_form.php:941
653
  #, fuzzy
654
  msgid "Error message about the file type for the Attachment field"
655
  msgstr "Foutmelding voor bijlage veld"
656
 
657
+ #: contact_form.php:913
658
+ #: contact_form.php:942
659
  #, fuzzy
660
  msgid "Error message while uploading a file for the Attachment field to the server"
661
  msgstr "Foutmelding voor bijlage veld"
662
 
663
+ #: contact_form.php:914
664
+ #: contact_form.php:943
665
  #, fuzzy
666
  msgid "Error message while moving the file for the Attachment field"
667
  msgstr "Foutmelding voor bijlage veld"
668
 
669
+ #: contact_form.php:915
670
+ #: contact_form.php:944
671
  #, fuzzy
672
  msgid "Error message when file size limit for the Attachment field is exceeded"
673
  msgstr "Foutmelding voor bijlage veld"
674
 
675
+ #: contact_form.php:916
676
+ #: contact_form.php:945
677
  msgid "Error message for the Captcha field"
678
  msgstr "Foutmelding voor captcha"
679
 
680
+ #: contact_form.php:917
681
+ #: contact_form.php:946
682
  msgid "Error message for the whole form"
683
  msgstr "Foutmelding voor het gehele formulier"
684
 
685
+ #: contact_form.php:919
686
+ #: contact_form.php:948
687
+ #: contact_form.php:967
688
+ #: contact_form.php:973
689
  msgid "Use shortcode"
690
  msgstr "Gebruik shortcode"
691
 
692
+ #: contact_form.php:919
693
+ #: contact_form.php:948
694
+ #: contact_form.php:967
695
+ #: contact_form.php:973
696
  msgid "for this language"
697
  msgstr "voor deze taal"
698
 
699
+ #: contact_form.php:955
700
  msgid "Action after email is sent"
701
  msgstr "Actie na het verzenden van de email"
702
 
703
+ #: contact_form.php:957
704
  msgid "Display text"
705
  msgstr "Toon tekst"
706
 
707
+ #: contact_form.php:966
708
+ #: contact_form.php:972
709
  msgid "Text"
710
  msgstr "Tekst"
711
 
712
+ #: contact_form.php:979
713
  msgid "Redirect to the page"
714
  msgstr "Dooorsturen naar pagina"
715
 
716
+ #: contact_form.php:980
717
  msgid "Url"
718
  msgstr "Url"
719
 
720
+ #: contact_form.php:985
721
+ #: contact_form.php:1160
722
  msgid "Save Changes"
723
  msgstr "Bewaar veranderingen"
724
 
725
+ #: contact_form.php:1000
726
  #, fuzzy
727
  msgid "Contact Form Pro | Extra Settings"
728
  msgstr "Contact Form Opties"
729
 
730
+ #: contact_form.php:1007
731
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
732
  msgstr ""
733
 
734
+ #: contact_form.php:1014
735
  msgid "Errors output"
736
  msgstr ""
737
 
738
+ #: contact_form.php:1017
739
  msgid "Display error messages"
740
  msgstr ""
741
 
742
+ #: contact_form.php:1018
743
  msgid "Color of the input field errors."
744
  msgstr ""
745
 
746
+ #: contact_form.php:1019
747
  #, fuzzy
748
  msgid "Display error messages & color of the input field errors"
749
  msgstr "Foutmelding voor onderwerp veld"
750
 
751
+ #: contact_form.php:1024
752
  msgid "Add placeholder to the input blocks"
753
  msgstr ""
754
 
755
+ #: contact_form.php:1030
756
  #, fuzzy
757
  msgid "Add tooltips"
758
  msgstr "Extra opties"
759
 
760
+ #: contact_form.php:1044
761
  #, fuzzy
762
  msgid "Email address"
763
  msgstr "Email adres:"
764
 
765
+ #: contact_form.php:1049
766
  #, fuzzy
767
  msgid "Phone Number"
768
  msgstr "Telefoonnummer:"
769
 
770
+ #: contact_form.php:1063
771
  #, fuzzy
772
  msgid "Attachment"
773
  msgstr "Bijlage:"
774
 
775
+ #: contact_form.php:1073
776
  #, fuzzy
777
  msgid "Style options"
778
  msgstr "Extra opties"
779
 
780
+ #: contact_form.php:1076
781
  msgid "Text color"
782
  msgstr ""
783
 
784
+ #: contact_form.php:1079
785
+ #: contact_form.php:1084
786
+ #: contact_form.php:1094
787
+ #: contact_form.php:1099
788
+ #: contact_form.php:1104
789
+ #: contact_form.php:1109
790
+ #: contact_form.php:1119
791
+ #: contact_form.php:1124
792
+ #: contact_form.php:1130
793
+ #: contact_form.php:1141
794
+ #: contact_form.php:1146
795
+ #: contact_form.php:1151
796
  msgid "Default"
797
  msgstr ""
798
 
799
+ #: contact_form.php:1081
800
  msgid "Label text color"
801
  msgstr ""
802
 
803
+ #: contact_form.php:1086
804
  msgid "Placeholder color"
805
  msgstr ""
806
 
807
+ #: contact_form.php:1091
808
  msgid "Errors color"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1096
812
  msgid "Error text color"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1101
816
  msgid "Background color of the input field errors"
817
  msgstr ""
818
 
819
+ #: contact_form.php:1106
820
  msgid "Border color of the input field errors"
821
  msgstr ""
822
 
823
+ #: contact_form.php:1111
824
  msgid "Placeholder color of the input field errors"
825
  msgstr ""
826
 
827
+ #: contact_form.php:1116
828
  #, fuzzy
829
  msgid "Input fields"
830
  msgstr "Toon tekst"
831
 
832
+ #: contact_form.php:1121
833
  msgid "Input fields background color"
834
  msgstr ""
835
 
836
+ #: contact_form.php:1126
837
  msgid "Text fields color"
838
  msgstr ""
839
 
840
+ #: contact_form.php:1128
841
  msgid "Border width in px, numbers only"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1132
845
+ #: contact_form.php:1153
846
  msgid "Border color"
847
  msgstr ""
848
 
849
+ #: contact_form.php:1137
850
  #, fuzzy
851
  msgid "Submit button"
852
  msgstr "Versturen"
853
 
854
+ #: contact_form.php:1139
855
  msgid "Width in px, numbers only"
856
  msgstr ""
857
 
858
+ #: contact_form.php:1143
859
  msgid "Button color"
860
  msgstr ""
861
 
862
+ #: contact_form.php:1148
863
  msgid "Button text color"
864
  msgstr ""
865
 
866
+ #: contact_form.php:1164
867
  #, fuzzy
868
  msgid "Contact Form Pro | Preview"
869
  msgstr "Contact Form"
870
 
871
+ #: contact_form.php:1167
872
  msgid "Show with errors"
873
  msgstr ""
874
 
875
+ #: contact_form.php:1175
876
+ #: contact_form.php:1177
877
  msgid "Please enter your full name..."
878
  msgstr ""
879
 
880
+ #: contact_form.php:1188
881
+ #: contact_form.php:1190
882
  msgid "Please enter your address..."
883
  msgstr ""
884
 
885
+ #: contact_form.php:1199
886
+ #: contact_form.php:1201
887
  #, fuzzy
888
  msgid "Please enter your email address..."
889
  msgstr "Gebruik dit email adres:"
890
 
891
+ #: contact_form.php:1210
892
+ #: contact_form.php:1212
893
  msgid "Please enter your phone number..."
894
  msgstr ""
895
 
896
+ #: contact_form.php:1221
897
+ #: contact_form.php:1223
898
  msgid "Please enter subject..."
899
  msgstr ""
900
 
901
+ #: contact_form.php:1231
902
+ #: contact_form.php:1233
903
  msgid "Please enter your message..."
904
  msgstr ""
905
 
906
+ #: contact_form.php:1244
907
  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"
908
  msgstr ""
909
 
910
+ #: contact_form.php:1397
 
 
 
 
911
  msgid "You can attach the following file formats"
912
  msgstr "Bestanden van de volgende formaten kunnen worden bijgevoegd"
913
 
914
+ #: contact_form.php:1681
915
  msgid "Contact from"
916
  msgstr "Contact van"
917
 
918
+ #: contact_form.php:1694
919
  msgid "Email"
920
  msgstr "Email"
921
 
922
+ #: contact_form.php:1708
923
  msgid "Site"
924
  msgstr "Website"
925
 
926
+ #: contact_form.php:1758
927
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
928
  msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
929
 
930
+ #: contact_form.php:1809
931
  msgid "FAQ"
932
  msgstr "Veel gestelde vragen (FAQ)"
933
 
934
+ #: contact_form.php:1810
935
  msgid "Support"
936
  msgstr "Ondersteuning"
937
 
938
+ #: contact_form.php:1858
939
  msgid "Are you sure that you want to delete this language data?"
940
  msgstr "Weet u zeker dat u deze taal wilt verwijderen?"
941
 
languages/contact_form-pl_PL.mo CHANGED
Binary file
languages/contact_form-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.05\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-16 16:05+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:05+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -18,839 +18,1010 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  # @ contact_form
22
- #: contact_form.php:100
23
  #, fuzzy
24
  msgid "Pro plugins"
25
  msgstr "Polecane wtyczki"
26
 
27
  # @ contact_form
28
- #: contact_form.php:103
29
- #: contact_form.php:129
30
  msgid "Activated plugins"
31
  msgstr "Aktywne wtyczki"
32
 
33
  # @ contact_form
34
- #: contact_form.php:105
35
- #: contact_form.php:113
36
- #: contact_form.php:121
37
- #: contact_form.php:131
38
- #: contact_form.php:139
39
- #: contact_form.php:147
40
  msgid "Read more"
41
  msgstr "Czytaj więcej"
42
 
43
  # @ contact_form
44
- #: contact_form.php:105
45
- #: contact_form.php:131
46
- #: contact_form.php:543
47
- #: contact_form.php:791
48
- #: contact_form.php:1588
49
- #: contact_form.php:1597
50
  msgid "Settings"
51
  msgstr "Ustawienia"
52
 
53
  # @ contact_form
54
- #: contact_form.php:111
55
- #: contact_form.php:137
56
  msgid "Installed plugins"
57
  msgstr "Zainstalowane wtyczki"
58
 
59
  # @ contact_form
60
- #: contact_form.php:119
61
- #: contact_form.php:145
62
  msgid "Recommended plugins"
63
  msgstr "Polecane wtyczki"
64
 
65
- #: contact_form.php:121
66
  msgid "Purchase"
67
  msgstr ""
68
 
69
  # @ contact_form
70
- #: contact_form.php:126
71
  #, fuzzy
72
  msgid "Free plugins"
73
  msgstr "Polecane wtyczki"
74
 
75
  # @ contact_form
76
- #: contact_form.php:147
77
  msgid "Download"
78
  msgstr "Pobierz"
79
 
80
  # @ default
81
- #: contact_form.php:147
82
  #, php-format
83
  msgid "Install %s"
84
  msgstr "Instaluj %s"
85
 
86
  # @ contact_form
87
- #: contact_form.php:147
88
  msgid "Install now from wordpress.org"
89
  msgstr "Zainstaluj z wordpress.org"
90
 
91
  # @ contact_form
92
- #: contact_form.php:152
93
  #, fuzzy
94
  msgid "If you have any questions, please contact us via"
95
  msgstr "Jeśli masz pytania, napisz na adres plugin@bestwebsoft.com lub skorzystaj z formularza na naszej stronie"
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  # @ contact_form
98
- #: contact_form.php:161
99
- #: contact_form.php:539
100
  #, fuzzy
101
  msgid "Contact Form Settings"
102
  msgstr "Opcje Contact Form"
103
 
104
  # @ contact_form
105
- #: contact_form.php:161
106
  msgid "Contact Form"
107
  msgstr "Contact Form"
108
 
109
  # @ contact_form
110
- #: contact_form.php:162
111
  #, fuzzy
112
  msgid "Contact Form Pro Extra Settings"
113
  msgstr "Opcje Contact Form"
114
 
115
  # @ contact_form
116
- #: contact_form.php:162
117
- #: contact_form.php:797
118
  #, fuzzy
119
  msgid "Contact Form Pro"
120
  msgstr "Contact Form"
121
 
122
  # @ contact_form
123
- #: contact_form.php:201
124
- #: contact_form.php:686
125
- #: contact_form.php:715
126
  msgid "Name:"
127
  msgstr "Imię:"
128
 
129
  # @ contact_form
130
- #: contact_form.php:202
131
- #: contact_form.php:687
132
- #: contact_form.php:716
133
  #, fuzzy
134
  msgid "Address:"
135
  msgstr "Adres e-mail"
136
 
137
  # @ contact_form
138
- #: contact_form.php:203
139
- #: contact_form.php:688
140
- #: contact_form.php:717
141
  msgid "Email Address:"
142
  msgstr "Adres e-mail"
143
 
144
- #: contact_form.php:204
145
- #: contact_form.php:689
146
- #: contact_form.php:718
147
  msgid "Phone number:"
148
  msgstr ""
149
 
150
  # @ contact_form
151
- #: contact_form.php:205
152
- #: contact_form.php:690
153
- #: contact_form.php:719
154
  msgid "Subject:"
155
  msgstr "Temat:"
156
 
157
  # @ contact_form
158
- #: contact_form.php:206
159
- #: contact_form.php:691
160
- #: contact_form.php:720
161
  msgid "Message:"
162
  msgstr "Treść wiadomości:"
163
 
164
  # @ contact_form
165
- #: contact_form.php:207
166
- #: contact_form.php:692
167
- #: contact_form.php:721
168
  msgid "Attachment:"
169
  msgstr "Załączniki:"
170
 
171
  # @ contact_form
172
- #: contact_form.php:208
173
- #: contact_form.php:263
174
- #: contact_form.php:693
175
- #: contact_form.php:722
176
  msgid "Send me a copy"
177
  msgstr "Wyślij mi kopię"
178
 
179
  # @ contact_form
180
- #: contact_form.php:209
181
- #: contact_form.php:694
182
- #: contact_form.php:723
183
  msgid "Submit"
184
  msgstr "Wyślij"
185
 
186
  # @ contact_form
187
- #: contact_form.php:210
188
  msgid "Your name is required."
189
  msgstr "Podanie imienia jest wymagane."
190
 
191
  # @ contact_form
192
- #: contact_form.php:211
193
  #, fuzzy
194
  msgid "Address is required."
195
  msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
196
 
197
  # @ contact_form
198
- #: contact_form.php:212
199
  #, fuzzy
200
  msgid "A valid email address is required."
201
  msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
202
 
203
  # @ contact_form
204
- #: contact_form.php:213
205
- #: contact_form.php:258
206
- #: contact_form.php:261
207
  #, fuzzy
208
  msgid "Phone number is required."
209
  msgstr "Podanie imienia jest wymagane."
210
 
211
  # @ contact_form
212
- #: contact_form.php:214
213
- #: contact_form.php:257
214
- #: contact_form.php:260
215
  msgid "Subject is required."
216
  msgstr "Podanie tematu jest wymagane."
217
 
218
  # @ contact_form
219
- #: contact_form.php:215
220
- #: contact_form.php:256
221
- #: contact_form.php:259
222
  msgid "Message text is required."
223
  msgstr "Wiadomość musi mieć jakąś treść."
224
 
225
  # @ contact_form
226
- #: contact_form.php:216
227
  msgid "File format is not valid."
228
  msgstr "Załącznik jest uszkodzony."
229
 
230
- #: contact_form.php:217
231
  msgid "File upload error."
232
  msgstr ""
233
 
234
- #: contact_form.php:218
235
  msgid "The file could not be uploaded."
236
  msgstr ""
237
 
238
- #: contact_form.php:219
239
  msgid "This file is too large."
240
  msgstr ""
241
 
242
  # @ contact_form
243
- #: contact_form.php:220
244
  msgid "Please fill out the CAPTCHA."
245
  msgstr "Proszę dokładnie przepisać kod."
246
 
247
  # @ contact_form
248
- #: contact_form.php:221
249
  msgid "Please make corrections below and try again."
250
  msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
251
 
252
- # @ contact_form
253
- #: contact_form.php:223
254
- msgid "Thank you for contacting us."
255
- msgstr "Dziękujemy za wiadomość."
256
-
257
- #: contact_form.php:494
258
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
259
  msgstr ""
260
 
261
  # @ contact_form
262
- #: contact_form.php:503
263
  msgid "Such user does not exist. Settings are not saved."
264
  msgstr "Nie ma takiego użytkownika. Ustawienia nie zostały zapisane."
265
 
266
  # @ contact_form
267
- #: contact_form.php:508
268
- #: contact_form.php:514
269
  #, fuzzy
270
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
271
  msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
272
 
273
  # @ contact_form
274
- #: contact_form.php:519
275
  #, fuzzy
276
  msgid "Settings saved."
277
  msgstr "Opcje zapisano"
278
 
279
  # @ contact_form
280
- #: contact_form.php:544
281
- #: contact_form.php:792
282
  #, fuzzy
283
  msgid "Extra settings"
284
  msgstr "Ustawienia"
285
 
286
  # @ contact_form
287
- #: contact_form.php:549
288
- #: contact_form.php:1048
289
  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:"
290
  msgstr "Jeśli chcesz dodać formularz do swojej strony, po prostu skopiuj ten kod i wklej go do wpisu lub treści strony lub Widget:"
291
 
292
  # @ contact_form
293
- #: contact_form.php:550
294
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
295
  msgstr "Jeśli poniższe pola zostaną puste, wiadomość zostanie wysłana na adres podany podczas rejestracji."
296
 
297
  # @ contact_form
298
- #: contact_form.php:554
299
  msgid "The user's email address:"
300
  msgstr "Użyj adresu e-mail użytkownika:"
301
 
302
  # @ contact_form
303
- #: contact_form.php:558
304
  msgid "Create a username"
305
  msgstr "Wybierz użytkownika"
306
 
307
  # @ contact_form
308
- #: contact_form.php:563
309
  msgid "Enter a username of the person who should get the messages from the contact form."
310
  msgstr "Wybierz użytkownika, który będzie dostawał wiadomości z formularza."
311
 
312
  # @ contact_form
313
- #: contact_form.php:567
314
  msgid "Use this email address:"
315
  msgstr "Wybierz ten e-mail:"
316
 
317
  # @ contact_form
318
- #: contact_form.php:570
319
  msgid "Enter the email address you want the messages forwarded to."
320
  msgstr "Ustaw adres e-mail, który będzie używany do odbierania wiadomości."
321
 
322
  # @ contact_form
323
- #: contact_form.php:574
324
  msgid "Additional options"
325
  msgstr "Dodatkowe opcje"
326
 
327
- #: contact_form.php:577
328
  msgid "What to use?"
329
  msgstr ""
330
 
331
  # @ contact_form
332
- #: contact_form.php:580
333
  msgid "Wp-mail"
334
  msgstr "Wp-mail"
335
 
336
- #: contact_form.php:581
337
  msgid "You can use the wp_mail function for mailing"
338
  msgstr ""
339
 
340
  # @ contact_form
341
- #: contact_form.php:587
342
  msgid "Mail"
343
  msgstr "Mail"
344
 
345
- #: contact_form.php:588
346
  msgid "To send mail you can use the php mail function"
347
  msgstr ""
348
 
349
  # @ contact_form
350
- #: contact_form.php:592
351
  #, fuzzy
352
  msgid "Change text of the 'FROM' field"
353
  msgstr "Zmień od pola formularza"
354
 
355
- #: contact_form.php:598
356
  msgid "Enter the email address in the 'From' field"
357
  msgstr ""
358
 
359
- #: contact_form.php:600
360
  msgid "User email"
361
  msgstr ""
362
 
363
- #: contact_form.php:600
364
  msgid "The email address of the user who fills the form will be used in the field 'From'."
365
  msgstr ""
366
 
367
- #: contact_form.php:602
368
  msgid "This email address will be used in the 'From' field."
369
  msgstr ""
370
 
371
  # @ contact_form
372
- #: contact_form.php:606
373
  #, fuzzy
374
  msgid "Display fields"
375
  msgstr "Wyświetlaj blok załączników"
376
 
377
  # @ contact_form
378
- #: contact_form.php:608
379
- #: contact_form.php:638
380
- #: contact_form.php:828
381
- #: contact_form.php:1480
382
  #, fuzzy
383
  msgid "Address"
384
  msgstr "Adres e-mail"
385
 
386
- #: contact_form.php:609
387
- #: contact_form.php:640
388
- #: contact_form.php:1488
389
  msgid "Phone"
390
  msgstr ""
391
 
392
  # @ contact_form
393
- #: contact_form.php:610
394
  #, fuzzy
395
  msgid "Attachment block"
396
  msgstr "Wyświetlaj blok załączników"
397
 
398
  # @ contact_form
399
- #: contact_form.php:610
400
  msgid "Users can attach the following file formats"
401
  msgstr "Można załączać pliki następujących typów"
402
 
403
  # @ contact_form
404
- #: contact_form.php:611
405
  #, fuzzy
406
  msgid "Tips below the Attachment block"
407
  msgstr "Wyświetlaj blok załączników"
408
 
409
  # @ contact_form
410
- #: contact_form.php:612
411
  #, fuzzy
412
  msgid "Send me a copy block"
413
  msgstr "Wyświetlaj blok wysyłania kopii do nadawcy"
414
 
415
- #: contact_form.php:624
416
- #: contact_form.php:627
417
- #: contact_form.php:630
418
- #: contact_form.php:857
419
  msgid "Captcha"
420
  msgstr ""
421
 
422
- #: contact_form.php:624
423
- #: contact_form.php:627
424
- #: contact_form.php:630
425
- #: contact_form.php:857
426
  msgid "(powered by bestwebsoft.com)"
427
  msgstr ""
428
 
429
  # @ contact_form
430
- #: contact_form.php:627
431
  #, fuzzy
432
  msgid "Activate captcha"
433
  msgstr "Aktywne wtyczki"
434
 
435
  # @ contact_form
436
- #: contact_form.php:630
437
  #, fuzzy
438
  msgid "Download captcha"
439
  msgstr "Pobierz"
440
 
441
- #: contact_form.php:635
442
  msgid "Required fields"
443
  msgstr ""
444
 
445
  # @ contact_form
446
- #: contact_form.php:637
447
- #: contact_form.php:823
448
- #: contact_form.php:1475
449
  msgid "Name"
450
  msgstr "Imię"
451
 
452
  # @ contact_form
453
- #: contact_form.php:639
454
  #, fuzzy
455
  msgid "Email Address"
456
  msgstr "Adres e-mail"
457
 
458
  # @ contact_form
459
- #: contact_form.php:641
460
- #: contact_form.php:843
461
- #: contact_form.php:1491
462
  msgid "Subject"
463
  msgstr "Temat"
464
 
465
  # @ contact_form
466
- #: contact_form.php:642
467
- #: contact_form.php:847
468
- #: contact_form.php:1494
469
  msgid "Message"
470
  msgstr "Wiadomość"
471
 
472
- #: contact_form.php:646
473
  msgid "Display additional info in the email"
474
  msgstr ""
475
 
476
  # @ contact_form
477
- #: contact_form.php:651
478
- #: contact_form.php:1447
479
  msgid "Sent from (ip address)"
480
  msgstr "Przysłane z (adres IP)"
481
 
482
  # @ contact_form
483
- #: contact_form.php:652
484
- #: contact_form.php:1452
485
  msgid "Date/Time"
486
  msgstr "Data/czas"
487
 
488
  # @ contact_form
489
- #: contact_form.php:653
490
- #: contact_form.php:1457
491
  msgid "Sent from (referer)"
492
  msgstr "Przekierowane z (referrer)"
493
 
494
  # @ contact_form
495
- #: contact_form.php:654
496
- #: contact_form.php:1462
497
  msgid "Using (user agent)"
498
  msgstr "Klient (program użytkownika)"
499
 
500
- #: contact_form.php:658
501
  msgid "Language settings for the field names in the form"
502
  msgstr ""
503
 
504
- #: contact_form.php:667
505
  msgid "Add a language"
506
  msgstr ""
507
 
508
  # @ contact_form
509
- #: contact_form.php:671
510
  #, fuzzy
511
  msgid "Change the names of the contact form fields and error messages"
512
  msgstr "Zmień etykiety pól formularza"
513
 
514
- #: contact_form.php:676
515
- #: contact_form.php:747
516
  msgid "English"
517
  msgstr ""
518
 
519
- #: contact_form.php:695
520
- #: contact_form.php:724
521
  msgid "Error message for the Name field"
522
  msgstr ""
523
 
524
- #: contact_form.php:696
525
- #: contact_form.php:725
526
  msgid "Error message for the Address field"
527
  msgstr ""
528
 
529
- #: contact_form.php:697
530
- #: contact_form.php:726
531
  msgid "Error message for the Email field"
532
  msgstr ""
533
 
534
- #: contact_form.php:698
535
- #: contact_form.php:727
536
  msgid "Error message for the Phone field"
537
  msgstr ""
538
 
539
- #: contact_form.php:699
540
- #: contact_form.php:728
541
  msgid "Error message for the Subject field"
542
  msgstr ""
543
 
544
- #: contact_form.php:700
545
- #: contact_form.php:729
546
  msgid "Error message for the Message field"
547
  msgstr ""
548
 
549
- #: contact_form.php:701
550
- #: contact_form.php:730
551
  msgid "Error message about the file type for the Attachment field"
552
  msgstr ""
553
 
554
- #: contact_form.php:702
555
- #: contact_form.php:731
556
  msgid "Error message while uploading a file for the Attachment field to the server"
557
  msgstr ""
558
 
559
- #: contact_form.php:703
560
- #: contact_form.php:732
561
  msgid "Error message while moving the file for the Attachment field"
562
  msgstr ""
563
 
564
- #: contact_form.php:704
565
- #: contact_form.php:733
566
  msgid "Error message when file size limit for the Attachment field is exceeded"
567
  msgstr ""
568
 
569
- #: contact_form.php:705
570
- #: contact_form.php:734
571
  msgid "Error message for the Captcha field"
572
  msgstr ""
573
 
574
- #: contact_form.php:706
575
- #: contact_form.php:735
576
  msgid "Error message for the whole form"
577
  msgstr ""
578
 
579
- #: contact_form.php:708
580
- #: contact_form.php:737
581
- #: contact_form.php:756
582
- #: contact_form.php:762
583
  msgid "Use shortcode"
584
  msgstr ""
585
 
586
- #: contact_form.php:708
587
- #: contact_form.php:737
588
- #: contact_form.php:756
589
- #: contact_form.php:762
590
  msgid "for this language"
591
  msgstr ""
592
 
593
- #: contact_form.php:744
594
  msgid "Action after email is sent"
595
  msgstr ""
596
 
597
  # @ contact_form
598
- #: contact_form.php:746
599
  #, fuzzy
600
  msgid "Display text"
601
  msgstr "Wyświetlaj blok załączników"
602
 
603
- #: contact_form.php:755
604
- #: contact_form.php:761
605
  msgid "Text"
606
  msgstr ""
607
 
608
- #: contact_form.php:768
609
  msgid "Redirect to the page"
610
  msgstr ""
611
 
612
- #: contact_form.php:769
613
  msgid "Url"
614
  msgstr ""
615
 
616
  # @ default
617
- #: contact_form.php:774
618
- #: contact_form.php:949
619
  msgid "Save Changes"
620
  msgstr "Zapisz zmiany"
621
 
622
  # @ contact_form
623
- #: contact_form.php:789
624
  #, fuzzy
625
  msgid "Contact Form Pro | Extra Settings"
626
  msgstr "Opcje Contact Form"
627
 
628
- #: contact_form.php:796
629
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
630
  msgstr ""
631
 
632
- #: contact_form.php:803
633
  msgid "Errors output"
634
  msgstr ""
635
 
636
- #: contact_form.php:806
637
  msgid "Display error messages"
638
  msgstr ""
639
 
640
- #: contact_form.php:807
641
  msgid "Color of the input field errors."
642
  msgstr ""
643
 
644
- #: contact_form.php:808
645
  msgid "Display error messages & color of the input field errors"
646
  msgstr ""
647
 
648
- #: contact_form.php:813
649
  msgid "Add placeholder to the input blocks"
650
  msgstr ""
651
 
652
  # @ contact_form
653
- #: contact_form.php:819
654
  #, fuzzy
655
  msgid "Add tooltips"
656
  msgstr "Dodatkowe opcje"
657
 
658
  # @ contact_form
659
- #: contact_form.php:833
660
  #, fuzzy
661
  msgid "Email address"
662
  msgstr "Adres e-mail"
663
 
664
- #: contact_form.php:838
665
  msgid "Phone Number"
666
  msgstr ""
667
 
668
  # @ contact_form
669
- #: contact_form.php:852
670
  #, fuzzy
671
  msgid "Attachment"
672
  msgstr "Załączniki:"
673
 
674
  # @ contact_form
675
- #: contact_form.php:862
676
  #, fuzzy
677
  msgid "Style options"
678
  msgstr "Dodatkowe opcje"
679
 
680
- #: contact_form.php:865
681
  msgid "Text color"
682
  msgstr ""
683
 
684
- #: contact_form.php:868
685
- #: contact_form.php:873
686
- #: contact_form.php:883
687
- #: contact_form.php:888
688
- #: contact_form.php:893
689
- #: contact_form.php:898
690
- #: contact_form.php:908
691
- #: contact_form.php:913
692
- #: contact_form.php:919
693
- #: contact_form.php:930
694
- #: contact_form.php:935
695
- #: contact_form.php:940
696
  msgid "Default"
697
  msgstr ""
698
 
699
- #: contact_form.php:870
700
  msgid "Label text color"
701
  msgstr ""
702
 
703
- #: contact_form.php:875
704
  msgid "Placeholder color"
705
  msgstr ""
706
 
707
- #: contact_form.php:880
708
  msgid "Errors color"
709
  msgstr ""
710
 
711
- #: contact_form.php:885
712
  msgid "Error text color"
713
  msgstr ""
714
 
715
- #: contact_form.php:890
716
  msgid "Background color of the input field errors"
717
  msgstr ""
718
 
719
- #: contact_form.php:895
720
  msgid "Border color of the input field errors"
721
  msgstr ""
722
 
723
- #: contact_form.php:900
724
  msgid "Placeholder color of the input field errors"
725
  msgstr ""
726
 
727
  # @ contact_form
728
- #: contact_form.php:905
729
  #, fuzzy
730
  msgid "Input fields"
731
  msgstr "Wyświetlaj blok załączników"
732
 
733
- #: contact_form.php:910
734
  msgid "Input fields background color"
735
  msgstr ""
736
 
737
- #: contact_form.php:915
738
  msgid "Text fields color"
739
  msgstr ""
740
 
741
- #: contact_form.php:917
742
  msgid "Border width in px, numbers only"
743
  msgstr ""
744
 
745
- #: contact_form.php:921
746
- #: contact_form.php:942
747
  msgid "Border color"
748
  msgstr ""
749
 
750
  # @ contact_form
751
- #: contact_form.php:926
752
  #, fuzzy
753
  msgid "Submit button"
754
  msgstr "Wyślij"
755
 
756
- #: contact_form.php:928
757
  msgid "Width in px, numbers only"
758
  msgstr ""
759
 
760
- #: contact_form.php:932
761
  msgid "Button color"
762
  msgstr ""
763
 
764
- #: contact_form.php:937
765
  msgid "Button text color"
766
  msgstr ""
767
 
768
  # @ contact_form
769
- #: contact_form.php:953
770
  #, fuzzy
771
  msgid "Contact Form Pro | Preview"
772
  msgstr "Contact Form"
773
 
774
- #: contact_form.php:956
775
  msgid "Show with errors"
776
  msgstr ""
777
 
778
- #: contact_form.php:964
779
- #: contact_form.php:966
780
  msgid "Please enter your full name..."
781
  msgstr ""
782
 
783
- #: contact_form.php:977
784
- #: contact_form.php:979
785
  msgid "Please enter your address..."
786
  msgstr ""
787
 
788
  # @ contact_form
789
- #: contact_form.php:988
790
- #: contact_form.php:990
791
  #, fuzzy
792
  msgid "Please enter your email address..."
793
  msgstr "Wybierz ten e-mail:"
794
 
795
- #: contact_form.php:999
796
- #: contact_form.php:1001
797
  msgid "Please enter your phone number..."
798
  msgstr ""
799
 
800
- #: contact_form.php:1010
801
- #: contact_form.php:1012
802
  msgid "Please enter subject..."
803
  msgstr ""
804
 
805
- #: contact_form.php:1020
806
- #: contact_form.php:1022
807
  msgid "Please enter your message..."
808
  msgstr ""
809
 
810
- #: contact_form.php:1033
811
  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"
812
  msgstr ""
813
 
814
  # @ contact_form
815
- #: contact_form.php:1102
816
- msgid "Sorry, email message could not be delivered."
817
- msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
818
-
819
- # @ contact_form
820
- #: contact_form.php:1186
821
  msgid "You can attach the following file formats"
822
  msgstr "Możesz załączać pliki następujących typów"
823
 
824
  # @ contact_form
825
- #: contact_form.php:1470
826
  msgid "Contact from"
827
  msgstr "Kontakt z"
828
 
829
  # @ contact_form
830
- #: contact_form.php:1483
831
  msgid "Email"
832
  msgstr "E-mail"
833
 
834
  # @ contact_form
835
- #: contact_form.php:1497
836
  msgid "Site"
837
  msgstr "Strona www"
838
 
839
- #: contact_form.php:1547
840
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
841
  msgstr ""
842
 
843
  # @ contact_form
844
- #: contact_form.php:1598
845
  msgid "FAQ"
846
  msgstr "FAQ"
847
 
848
  # @ contact_form
849
- #: contact_form.php:1599
850
  msgid "Support"
851
  msgstr "Wsparcie"
852
 
853
- #: contact_form.php:1647
854
  msgid "Are you sure that you want to delete this language data?"
855
  msgstr ""
856
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.05\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:57+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:57+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: contact_form.php:106
22
+ msgid "Not set"
23
+ msgstr ""
24
+
25
+ #: contact_form.php:108
26
+ #: contact_form.php:112
27
+ msgid "On"
28
+ msgstr ""
29
+
30
+ #: contact_form.php:110
31
+ #: contact_form.php:114
32
+ msgid "Off"
33
+ msgstr ""
34
+
35
+ #: contact_form.php:118
36
+ #: contact_form.php:122
37
+ #: contact_form.php:126
38
+ #: contact_form.php:130
39
+ #: contact_form.php:134
40
+ #: contact_form.php:160
41
+ msgid "N/A"
42
+ msgstr ""
43
+
44
+ #: contact_form.php:132
45
+ msgid " Mb"
46
+ msgstr ""
47
+
48
+ #: contact_form.php:136
49
+ #: contact_form.php:140
50
+ #: contact_form.php:144
51
+ #: contact_form.php:155
52
+ msgid "Yes"
53
+ msgstr ""
54
+
55
+ #: contact_form.php:138
56
+ #: contact_form.php:142
57
+ #: contact_form.php:146
58
+ #: contact_form.php:157
59
+ msgid "No"
60
+ msgstr ""
61
+
62
+ #: contact_form.php:171
63
+ msgid "Operating System"
64
+ msgstr ""
65
+
66
+ #: contact_form.php:172
67
+ msgid "Server"
68
+ msgstr ""
69
+
70
+ # @ contact_form
71
+ #: contact_form.php:173
72
+ #, fuzzy
73
+ msgid "Memory usage"
74
+ msgstr "Wiadomość"
75
+
76
+ #: contact_form.php:174
77
+ msgid "MYSQL Version"
78
+ msgstr ""
79
+
80
+ #: contact_form.php:175
81
+ msgid "SQL Mode"
82
+ msgstr ""
83
+
84
+ #: contact_form.php:176
85
+ msgid "PHP Version"
86
+ msgstr ""
87
+
88
+ #: contact_form.php:177
89
+ msgid "PHP Safe Mode"
90
+ msgstr ""
91
+
92
+ #: contact_form.php:178
93
+ msgid "PHP Allow URL fopen"
94
+ msgstr ""
95
+
96
+ #: contact_form.php:179
97
+ msgid "PHP Memory Limit"
98
+ msgstr ""
99
+
100
+ #: contact_form.php:180
101
+ msgid "PHP Max Upload Size"
102
+ msgstr ""
103
+
104
+ #: contact_form.php:181
105
+ msgid "PHP Max Post Size"
106
+ msgstr ""
107
+
108
+ #: contact_form.php:182
109
+ msgid "PHP Max Script Execute Time"
110
+ msgstr ""
111
+
112
+ #: contact_form.php:183
113
+ msgid "PHP Exif support"
114
+ msgstr ""
115
+
116
+ #: contact_form.php:184
117
+ msgid "PHP IPTC support"
118
+ msgstr ""
119
+
120
+ #: contact_form.php:185
121
+ msgid "PHP XML support"
122
+ msgstr ""
123
+
124
+ # @ contact_form
125
+ #: contact_form.php:186
126
+ #, fuzzy
127
+ msgid "Site URL"
128
+ msgstr "Strona www"
129
+
130
+ #: contact_form.php:187
131
+ msgid "Home URL"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:188
135
+ msgid "WordPress Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:189
139
+ msgid "WordPress DB Version"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:190
143
+ msgid "Multisite"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:191
147
+ msgid "Active Theme"
148
+ msgstr ""
149
+
150
+ # @ contact_form
151
+ #: contact_form.php:206
152
+ #, fuzzy
153
+ msgid "Please enter a valid email address."
154
+ msgstr "Wybierz ten e-mail:"
155
+
156
+ #: contact_form.php:210
157
+ msgid "Email with system info is sent to "
158
+ msgstr ""
159
+
160
+ # @ contact_form
161
+ #: contact_form.php:214
162
+ #: contact_form.php:434
163
+ msgid "Thank you for contacting us."
164
+ msgstr "Dziękujemy za wiadomość."
165
+
166
+ # @ contact_form
167
+ #: contact_form.php:242
168
+ #: contact_form.php:1313
169
+ msgid "Sorry, email message could not be delivered."
170
+ msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
171
+
172
  # @ contact_form
173
+ #: contact_form.php:250
174
  #, fuzzy
175
  msgid "Pro plugins"
176
  msgstr "Polecane wtyczki"
177
 
178
  # @ contact_form
179
+ #: contact_form.php:253
180
+ #: contact_form.php:279
181
  msgid "Activated plugins"
182
  msgstr "Aktywne wtyczki"
183
 
184
  # @ contact_form
185
+ #: contact_form.php:255
186
+ #: contact_form.php:263
187
+ #: contact_form.php:271
188
+ #: contact_form.php:281
189
+ #: contact_form.php:289
190
+ #: contact_form.php:297
191
  msgid "Read more"
192
  msgstr "Czytaj więcej"
193
 
194
  # @ contact_form
195
+ #: contact_form.php:255
196
+ #: contact_form.php:281
197
+ #: contact_form.php:754
198
+ #: contact_form.php:1002
199
+ #: contact_form.php:1799
200
+ #: contact_form.php:1808
201
  msgid "Settings"
202
  msgstr "Ustawienia"
203
 
204
  # @ contact_form
205
+ #: contact_form.php:261
206
+ #: contact_form.php:287
207
  msgid "Installed plugins"
208
  msgstr "Zainstalowane wtyczki"
209
 
210
  # @ contact_form
211
+ #: contact_form.php:269
212
+ #: contact_form.php:295
213
  msgid "Recommended plugins"
214
  msgstr "Polecane wtyczki"
215
 
216
+ #: contact_form.php:271
217
  msgid "Purchase"
218
  msgstr ""
219
 
220
  # @ contact_form
221
+ #: contact_form.php:276
222
  #, fuzzy
223
  msgid "Free plugins"
224
  msgstr "Polecane wtyczki"
225
 
226
  # @ contact_form
227
+ #: contact_form.php:297
228
  msgid "Download"
229
  msgstr "Pobierz"
230
 
231
  # @ default
232
+ #: contact_form.php:297
233
  #, php-format
234
  msgid "Install %s"
235
  msgstr "Instaluj %s"
236
 
237
  # @ contact_form
238
+ #: contact_form.php:297
239
  msgid "Install now from wordpress.org"
240
  msgstr "Zainstaluj z wordpress.org"
241
 
242
  # @ contact_form
243
+ #: contact_form.php:302
244
  #, fuzzy
245
  msgid "If you have any questions, please contact us via"
246
  msgstr "Jeśli masz pytania, napisz na adres plugin@bestwebsoft.com lub skorzystaj z formularza na naszej stronie"
247
 
248
+ #: contact_form.php:309
249
+ msgid "System status"
250
+ msgstr ""
251
+
252
+ #: contact_form.php:313
253
+ msgid "Environment"
254
+ msgstr ""
255
+
256
+ # @ contact_form
257
+ #: contact_form.php:324
258
+ #, fuzzy
259
+ msgid "Active Plugins"
260
+ msgstr "Aktywne wtyczki"
261
+
262
+ # @ contact_form
263
+ #: contact_form.php:335
264
+ #, fuzzy
265
+ msgid "Inactive Plugins"
266
+ msgstr "Aktywne wtyczki"
267
+
268
+ # @ contact_form
269
+ #: contact_form.php:349
270
+ #, fuzzy
271
+ msgid "Send to support"
272
+ msgstr "Wsparcie"
273
+
274
+ #: contact_form.php:356
275
+ msgid "Send to custom email &#187;"
276
+ msgstr ""
277
+
278
  # @ contact_form
279
+ #: contact_form.php:372
280
+ #: contact_form.php:750
281
  #, fuzzy
282
  msgid "Contact Form Settings"
283
  msgstr "Opcje Contact Form"
284
 
285
  # @ contact_form
286
+ #: contact_form.php:372
287
  msgid "Contact Form"
288
  msgstr "Contact Form"
289
 
290
  # @ contact_form
291
+ #: contact_form.php:373
292
  #, fuzzy
293
  msgid "Contact Form Pro Extra Settings"
294
  msgstr "Opcje Contact Form"
295
 
296
  # @ contact_form
297
+ #: contact_form.php:373
298
+ #: contact_form.php:1008
299
  #, fuzzy
300
  msgid "Contact Form Pro"
301
  msgstr "Contact Form"
302
 
303
  # @ contact_form
304
+ #: contact_form.php:412
305
+ #: contact_form.php:897
306
+ #: contact_form.php:926
307
  msgid "Name:"
308
  msgstr "Imię:"
309
 
310
  # @ contact_form
311
+ #: contact_form.php:413
312
+ #: contact_form.php:898
313
+ #: contact_form.php:927
314
  #, fuzzy
315
  msgid "Address:"
316
  msgstr "Adres e-mail"
317
 
318
  # @ contact_form
319
+ #: contact_form.php:414
320
+ #: contact_form.php:899
321
+ #: contact_form.php:928
322
  msgid "Email Address:"
323
  msgstr "Adres e-mail"
324
 
325
+ #: contact_form.php:415
326
+ #: contact_form.php:900
327
+ #: contact_form.php:929
328
  msgid "Phone number:"
329
  msgstr ""
330
 
331
  # @ contact_form
332
+ #: contact_form.php:416
333
+ #: contact_form.php:901
334
+ #: contact_form.php:930
335
  msgid "Subject:"
336
  msgstr "Temat:"
337
 
338
  # @ contact_form
339
+ #: contact_form.php:417
340
+ #: contact_form.php:902
341
+ #: contact_form.php:931
342
  msgid "Message:"
343
  msgstr "Treść wiadomości:"
344
 
345
  # @ contact_form
346
+ #: contact_form.php:418
347
+ #: contact_form.php:903
348
+ #: contact_form.php:932
349
  msgid "Attachment:"
350
  msgstr "Załączniki:"
351
 
352
  # @ contact_form
353
+ #: contact_form.php:419
354
+ #: contact_form.php:474
355
+ #: contact_form.php:904
356
+ #: contact_form.php:933
357
  msgid "Send me a copy"
358
  msgstr "Wyślij mi kopię"
359
 
360
  # @ contact_form
361
+ #: contact_form.php:420
362
+ #: contact_form.php:905
363
+ #: contact_form.php:934
364
  msgid "Submit"
365
  msgstr "Wyślij"
366
 
367
  # @ contact_form
368
+ #: contact_form.php:421
369
  msgid "Your name is required."
370
  msgstr "Podanie imienia jest wymagane."
371
 
372
  # @ contact_form
373
+ #: contact_form.php:422
374
  #, fuzzy
375
  msgid "Address is required."
376
  msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
377
 
378
  # @ contact_form
379
+ #: contact_form.php:423
380
  #, fuzzy
381
  msgid "A valid email address is required."
382
  msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
383
 
384
  # @ contact_form
385
+ #: contact_form.php:424
386
+ #: contact_form.php:469
387
+ #: contact_form.php:472
388
  #, fuzzy
389
  msgid "Phone number is required."
390
  msgstr "Podanie imienia jest wymagane."
391
 
392
  # @ contact_form
393
+ #: contact_form.php:425
394
+ #: contact_form.php:468
395
+ #: contact_form.php:471
396
  msgid "Subject is required."
397
  msgstr "Podanie tematu jest wymagane."
398
 
399
  # @ contact_form
400
+ #: contact_form.php:426
401
+ #: contact_form.php:467
402
+ #: contact_form.php:470
403
  msgid "Message text is required."
404
  msgstr "Wiadomość musi mieć jakąś treść."
405
 
406
  # @ contact_form
407
+ #: contact_form.php:427
408
  msgid "File format is not valid."
409
  msgstr "Załącznik jest uszkodzony."
410
 
411
+ #: contact_form.php:428
412
  msgid "File upload error."
413
  msgstr ""
414
 
415
+ #: contact_form.php:429
416
  msgid "The file could not be uploaded."
417
  msgstr ""
418
 
419
+ #: contact_form.php:430
420
  msgid "This file is too large."
421
  msgstr ""
422
 
423
  # @ contact_form
424
+ #: contact_form.php:431
425
  msgid "Please fill out the CAPTCHA."
426
  msgstr "Proszę dokładnie przepisać kod."
427
 
428
  # @ contact_form
429
+ #: contact_form.php:432
430
  msgid "Please make corrections below and try again."
431
  msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
432
 
433
+ #: contact_form.php:705
 
 
 
 
 
434
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
435
  msgstr ""
436
 
437
  # @ contact_form
438
+ #: contact_form.php:714
439
  msgid "Such user does not exist. Settings are not saved."
440
  msgstr "Nie ma takiego użytkownika. Ustawienia nie zostały zapisane."
441
 
442
  # @ contact_form
443
+ #: contact_form.php:719
444
+ #: contact_form.php:725
445
  #, fuzzy
446
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
447
  msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
448
 
449
  # @ contact_form
450
+ #: contact_form.php:730
451
  #, fuzzy
452
  msgid "Settings saved."
453
  msgstr "Opcje zapisano"
454
 
455
  # @ contact_form
456
+ #: contact_form.php:755
457
+ #: contact_form.php:1003
458
  #, fuzzy
459
  msgid "Extra settings"
460
  msgstr "Ustawienia"
461
 
462
  # @ contact_form
463
+ #: contact_form.php:760
464
+ #: contact_form.php:1259
465
  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:"
466
  msgstr "Jeśli chcesz dodać formularz do swojej strony, po prostu skopiuj ten kod i wklej go do wpisu lub treści strony lub Widget:"
467
 
468
  # @ contact_form
469
+ #: contact_form.php:761
470
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
471
  msgstr "Jeśli poniższe pola zostaną puste, wiadomość zostanie wysłana na adres podany podczas rejestracji."
472
 
473
  # @ contact_form
474
+ #: contact_form.php:765
475
  msgid "The user's email address:"
476
  msgstr "Użyj adresu e-mail użytkownika:"
477
 
478
  # @ contact_form
479
+ #: contact_form.php:769
480
  msgid "Create a username"
481
  msgstr "Wybierz użytkownika"
482
 
483
  # @ contact_form
484
+ #: contact_form.php:774
485
  msgid "Enter a username of the person who should get the messages from the contact form."
486
  msgstr "Wybierz użytkownika, który będzie dostawał wiadomości z formularza."
487
 
488
  # @ contact_form
489
+ #: contact_form.php:778
490
  msgid "Use this email address:"
491
  msgstr "Wybierz ten e-mail:"
492
 
493
  # @ contact_form
494
+ #: contact_form.php:781
495
  msgid "Enter the email address you want the messages forwarded to."
496
  msgstr "Ustaw adres e-mail, który będzie używany do odbierania wiadomości."
497
 
498
  # @ contact_form
499
+ #: contact_form.php:785
500
  msgid "Additional options"
501
  msgstr "Dodatkowe opcje"
502
 
503
+ #: contact_form.php:788
504
  msgid "What to use?"
505
  msgstr ""
506
 
507
  # @ contact_form
508
+ #: contact_form.php:791
509
  msgid "Wp-mail"
510
  msgstr "Wp-mail"
511
 
512
+ #: contact_form.php:792
513
  msgid "You can use the wp_mail function for mailing"
514
  msgstr ""
515
 
516
  # @ contact_form
517
+ #: contact_form.php:798
518
  msgid "Mail"
519
  msgstr "Mail"
520
 
521
+ #: contact_form.php:799
522
  msgid "To send mail you can use the php mail function"
523
  msgstr ""
524
 
525
  # @ contact_form
526
+ #: contact_form.php:803
527
  #, fuzzy
528
  msgid "Change text of the 'FROM' field"
529
  msgstr "Zmień od pola formularza"
530
 
531
+ #: contact_form.php:809
532
  msgid "Enter the email address in the 'From' field"
533
  msgstr ""
534
 
535
+ #: contact_form.php:811
536
  msgid "User email"
537
  msgstr ""
538
 
539
+ #: contact_form.php:811
540
  msgid "The email address of the user who fills the form will be used in the field 'From'."
541
  msgstr ""
542
 
543
+ #: contact_form.php:813
544
  msgid "This email address will be used in the 'From' field."
545
  msgstr ""
546
 
547
  # @ contact_form
548
+ #: contact_form.php:817
549
  #, fuzzy
550
  msgid "Display fields"
551
  msgstr "Wyświetlaj blok załączników"
552
 
553
  # @ contact_form
554
+ #: contact_form.php:819
555
+ #: contact_form.php:849
556
+ #: contact_form.php:1039
557
+ #: contact_form.php:1691
558
  #, fuzzy
559
  msgid "Address"
560
  msgstr "Adres e-mail"
561
 
562
+ #: contact_form.php:820
563
+ #: contact_form.php:851
564
+ #: contact_form.php:1699
565
  msgid "Phone"
566
  msgstr ""
567
 
568
  # @ contact_form
569
+ #: contact_form.php:821
570
  #, fuzzy
571
  msgid "Attachment block"
572
  msgstr "Wyświetlaj blok załączników"
573
 
574
  # @ contact_form
575
+ #: contact_form.php:821
576
  msgid "Users can attach the following file formats"
577
  msgstr "Można załączać pliki następujących typów"
578
 
579
  # @ contact_form
580
+ #: contact_form.php:822
581
  #, fuzzy
582
  msgid "Tips below the Attachment block"
583
  msgstr "Wyświetlaj blok załączników"
584
 
585
  # @ contact_form
586
+ #: contact_form.php:823
587
  #, fuzzy
588
  msgid "Send me a copy block"
589
  msgstr "Wyświetlaj blok wysyłania kopii do nadawcy"
590
 
591
+ #: contact_form.php:835
592
+ #: contact_form.php:838
593
+ #: contact_form.php:841
594
+ #: contact_form.php:1068
595
  msgid "Captcha"
596
  msgstr ""
597
 
598
+ #: contact_form.php:835
599
+ #: contact_form.php:838
600
+ #: contact_form.php:841
601
+ #: contact_form.php:1068
602
  msgid "(powered by bestwebsoft.com)"
603
  msgstr ""
604
 
605
  # @ contact_form
606
+ #: contact_form.php:838
607
  #, fuzzy
608
  msgid "Activate captcha"
609
  msgstr "Aktywne wtyczki"
610
 
611
  # @ contact_form
612
+ #: contact_form.php:841
613
  #, fuzzy
614
  msgid "Download captcha"
615
  msgstr "Pobierz"
616
 
617
+ #: contact_form.php:846
618
  msgid "Required fields"
619
  msgstr ""
620
 
621
  # @ contact_form
622
+ #: contact_form.php:848
623
+ #: contact_form.php:1034
624
+ #: contact_form.php:1686
625
  msgid "Name"
626
  msgstr "Imię"
627
 
628
  # @ contact_form
629
+ #: contact_form.php:850
630
  #, fuzzy
631
  msgid "Email Address"
632
  msgstr "Adres e-mail"
633
 
634
  # @ contact_form
635
+ #: contact_form.php:852
636
+ #: contact_form.php:1054
637
+ #: contact_form.php:1702
638
  msgid "Subject"
639
  msgstr "Temat"
640
 
641
  # @ contact_form
642
+ #: contact_form.php:853
643
+ #: contact_form.php:1058
644
+ #: contact_form.php:1705
645
  msgid "Message"
646
  msgstr "Wiadomość"
647
 
648
+ #: contact_form.php:857
649
  msgid "Display additional info in the email"
650
  msgstr ""
651
 
652
  # @ contact_form
653
+ #: contact_form.php:862
654
+ #: contact_form.php:1658
655
  msgid "Sent from (ip address)"
656
  msgstr "Przysłane z (adres IP)"
657
 
658
  # @ contact_form
659
+ #: contact_form.php:863
660
+ #: contact_form.php:1663
661
  msgid "Date/Time"
662
  msgstr "Data/czas"
663
 
664
  # @ contact_form
665
+ #: contact_form.php:864
666
+ #: contact_form.php:1668
667
  msgid "Sent from (referer)"
668
  msgstr "Przekierowane z (referrer)"
669
 
670
  # @ contact_form
671
+ #: contact_form.php:865
672
+ #: contact_form.php:1673
673
  msgid "Using (user agent)"
674
  msgstr "Klient (program użytkownika)"
675
 
676
+ #: contact_form.php:869
677
  msgid "Language settings for the field names in the form"
678
  msgstr ""
679
 
680
+ #: contact_form.php:878
681
  msgid "Add a language"
682
  msgstr ""
683
 
684
  # @ contact_form
685
+ #: contact_form.php:882
686
  #, fuzzy
687
  msgid "Change the names of the contact form fields and error messages"
688
  msgstr "Zmień etykiety pól formularza"
689
 
690
+ #: contact_form.php:887
691
+ #: contact_form.php:958
692
  msgid "English"
693
  msgstr ""
694
 
695
+ #: contact_form.php:906
696
+ #: contact_form.php:935
697
  msgid "Error message for the Name field"
698
  msgstr ""
699
 
700
+ #: contact_form.php:907
701
+ #: contact_form.php:936
702
  msgid "Error message for the Address field"
703
  msgstr ""
704
 
705
+ #: contact_form.php:908
706
+ #: contact_form.php:937
707
  msgid "Error message for the Email field"
708
  msgstr ""
709
 
710
+ #: contact_form.php:909
711
+ #: contact_form.php:938
712
  msgid "Error message for the Phone field"
713
  msgstr ""
714
 
715
+ #: contact_form.php:910
716
+ #: contact_form.php:939
717
  msgid "Error message for the Subject field"
718
  msgstr ""
719
 
720
+ #: contact_form.php:911
721
+ #: contact_form.php:940
722
  msgid "Error message for the Message field"
723
  msgstr ""
724
 
725
+ #: contact_form.php:912
726
+ #: contact_form.php:941
727
  msgid "Error message about the file type for the Attachment field"
728
  msgstr ""
729
 
730
+ #: contact_form.php:913
731
+ #: contact_form.php:942
732
  msgid "Error message while uploading a file for the Attachment field to the server"
733
  msgstr ""
734
 
735
+ #: contact_form.php:914
736
+ #: contact_form.php:943
737
  msgid "Error message while moving the file for the Attachment field"
738
  msgstr ""
739
 
740
+ #: contact_form.php:915
741
+ #: contact_form.php:944
742
  msgid "Error message when file size limit for the Attachment field is exceeded"
743
  msgstr ""
744
 
745
+ #: contact_form.php:916
746
+ #: contact_form.php:945
747
  msgid "Error message for the Captcha field"
748
  msgstr ""
749
 
750
+ #: contact_form.php:917
751
+ #: contact_form.php:946
752
  msgid "Error message for the whole form"
753
  msgstr ""
754
 
755
+ #: contact_form.php:919
756
+ #: contact_form.php:948
757
+ #: contact_form.php:967
758
+ #: contact_form.php:973
759
  msgid "Use shortcode"
760
  msgstr ""
761
 
762
+ #: contact_form.php:919
763
+ #: contact_form.php:948
764
+ #: contact_form.php:967
765
+ #: contact_form.php:973
766
  msgid "for this language"
767
  msgstr ""
768
 
769
+ #: contact_form.php:955
770
  msgid "Action after email is sent"
771
  msgstr ""
772
 
773
  # @ contact_form
774
+ #: contact_form.php:957
775
  #, fuzzy
776
  msgid "Display text"
777
  msgstr "Wyświetlaj blok załączników"
778
 
779
+ #: contact_form.php:966
780
+ #: contact_form.php:972
781
  msgid "Text"
782
  msgstr ""
783
 
784
+ #: contact_form.php:979
785
  msgid "Redirect to the page"
786
  msgstr ""
787
 
788
+ #: contact_form.php:980
789
  msgid "Url"
790
  msgstr ""
791
 
792
  # @ default
793
+ #: contact_form.php:985
794
+ #: contact_form.php:1160
795
  msgid "Save Changes"
796
  msgstr "Zapisz zmiany"
797
 
798
  # @ contact_form
799
+ #: contact_form.php:1000
800
  #, fuzzy
801
  msgid "Contact Form Pro | Extra Settings"
802
  msgstr "Opcje Contact Form"
803
 
804
+ #: contact_form.php:1007
805
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
806
  msgstr ""
807
 
808
+ #: contact_form.php:1014
809
  msgid "Errors output"
810
  msgstr ""
811
 
812
+ #: contact_form.php:1017
813
  msgid "Display error messages"
814
  msgstr ""
815
 
816
+ #: contact_form.php:1018
817
  msgid "Color of the input field errors."
818
  msgstr ""
819
 
820
+ #: contact_form.php:1019
821
  msgid "Display error messages & color of the input field errors"
822
  msgstr ""
823
 
824
+ #: contact_form.php:1024
825
  msgid "Add placeholder to the input blocks"
826
  msgstr ""
827
 
828
  # @ contact_form
829
+ #: contact_form.php:1030
830
  #, fuzzy
831
  msgid "Add tooltips"
832
  msgstr "Dodatkowe opcje"
833
 
834
  # @ contact_form
835
+ #: contact_form.php:1044
836
  #, fuzzy
837
  msgid "Email address"
838
  msgstr "Adres e-mail"
839
 
840
+ #: contact_form.php:1049
841
  msgid "Phone Number"
842
  msgstr ""
843
 
844
  # @ contact_form
845
+ #: contact_form.php:1063
846
  #, fuzzy
847
  msgid "Attachment"
848
  msgstr "Załączniki:"
849
 
850
  # @ contact_form
851
+ #: contact_form.php:1073
852
  #, fuzzy
853
  msgid "Style options"
854
  msgstr "Dodatkowe opcje"
855
 
856
+ #: contact_form.php:1076
857
  msgid "Text color"
858
  msgstr ""
859
 
860
+ #: contact_form.php:1079
861
+ #: contact_form.php:1084
862
+ #: contact_form.php:1094
863
+ #: contact_form.php:1099
864
+ #: contact_form.php:1104
865
+ #: contact_form.php:1109
866
+ #: contact_form.php:1119
867
+ #: contact_form.php:1124
868
+ #: contact_form.php:1130
869
+ #: contact_form.php:1141
870
+ #: contact_form.php:1146
871
+ #: contact_form.php:1151
872
  msgid "Default"
873
  msgstr ""
874
 
875
+ #: contact_form.php:1081
876
  msgid "Label text color"
877
  msgstr ""
878
 
879
+ #: contact_form.php:1086
880
  msgid "Placeholder color"
881
  msgstr ""
882
 
883
+ #: contact_form.php:1091
884
  msgid "Errors color"
885
  msgstr ""
886
 
887
+ #: contact_form.php:1096
888
  msgid "Error text color"
889
  msgstr ""
890
 
891
+ #: contact_form.php:1101
892
  msgid "Background color of the input field errors"
893
  msgstr ""
894
 
895
+ #: contact_form.php:1106
896
  msgid "Border color of the input field errors"
897
  msgstr ""
898
 
899
+ #: contact_form.php:1111
900
  msgid "Placeholder color of the input field errors"
901
  msgstr ""
902
 
903
  # @ contact_form
904
+ #: contact_form.php:1116
905
  #, fuzzy
906
  msgid "Input fields"
907
  msgstr "Wyświetlaj blok załączników"
908
 
909
+ #: contact_form.php:1121
910
  msgid "Input fields background color"
911
  msgstr ""
912
 
913
+ #: contact_form.php:1126
914
  msgid "Text fields color"
915
  msgstr ""
916
 
917
+ #: contact_form.php:1128
918
  msgid "Border width in px, numbers only"
919
  msgstr ""
920
 
921
+ #: contact_form.php:1132
922
+ #: contact_form.php:1153
923
  msgid "Border color"
924
  msgstr ""
925
 
926
  # @ contact_form
927
+ #: contact_form.php:1137
928
  #, fuzzy
929
  msgid "Submit button"
930
  msgstr "Wyślij"
931
 
932
+ #: contact_form.php:1139
933
  msgid "Width in px, numbers only"
934
  msgstr ""
935
 
936
+ #: contact_form.php:1143
937
  msgid "Button color"
938
  msgstr ""
939
 
940
+ #: contact_form.php:1148
941
  msgid "Button text color"
942
  msgstr ""
943
 
944
  # @ contact_form
945
+ #: contact_form.php:1164
946
  #, fuzzy
947
  msgid "Contact Form Pro | Preview"
948
  msgstr "Contact Form"
949
 
950
+ #: contact_form.php:1167
951
  msgid "Show with errors"
952
  msgstr ""
953
 
954
+ #: contact_form.php:1175
955
+ #: contact_form.php:1177
956
  msgid "Please enter your full name..."
957
  msgstr ""
958
 
959
+ #: contact_form.php:1188
960
+ #: contact_form.php:1190
961
  msgid "Please enter your address..."
962
  msgstr ""
963
 
964
  # @ contact_form
965
+ #: contact_form.php:1199
966
+ #: contact_form.php:1201
967
  #, fuzzy
968
  msgid "Please enter your email address..."
969
  msgstr "Wybierz ten e-mail:"
970
 
971
+ #: contact_form.php:1210
972
+ #: contact_form.php:1212
973
  msgid "Please enter your phone number..."
974
  msgstr ""
975
 
976
+ #: contact_form.php:1221
977
+ #: contact_form.php:1223
978
  msgid "Please enter subject..."
979
  msgstr ""
980
 
981
+ #: contact_form.php:1231
982
+ #: contact_form.php:1233
983
  msgid "Please enter your message..."
984
  msgstr ""
985
 
986
+ #: contact_form.php:1244
987
  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"
988
  msgstr ""
989
 
990
  # @ contact_form
991
+ #: contact_form.php:1397
 
 
 
 
 
992
  msgid "You can attach the following file formats"
993
  msgstr "Możesz załączać pliki następujących typów"
994
 
995
  # @ contact_form
996
+ #: contact_form.php:1681
997
  msgid "Contact from"
998
  msgstr "Kontakt z"
999
 
1000
  # @ contact_form
1001
+ #: contact_form.php:1694
1002
  msgid "Email"
1003
  msgstr "E-mail"
1004
 
1005
  # @ contact_form
1006
+ #: contact_form.php:1708
1007
  msgid "Site"
1008
  msgstr "Strona www"
1009
 
1010
+ #: contact_form.php:1758
1011
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
1012
  msgstr ""
1013
 
1014
  # @ contact_form
1015
+ #: contact_form.php:1809
1016
  msgid "FAQ"
1017
  msgstr "FAQ"
1018
 
1019
  # @ contact_form
1020
+ #: contact_form.php:1810
1021
  msgid "Support"
1022
  msgstr "Wsparcie"
1023
 
1024
+ #: contact_form.php:1858
1025
  msgid "Are you sure that you want to delete this language data?"
1026
  msgstr ""
1027
 
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: 2013-07-16 16:05+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:05+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,763 +16,928 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Plugins ativados"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Leia Mais"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Configurações"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Plugins instalados"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Plugins recomendados"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Plugins recomendados"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Baixar"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Instalar %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Instale agora do site wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  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. "
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Opções do formulário de contato"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Formulário de contato"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Opções do formulário de contato"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Formulário de contato"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Nome:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "Endereço de E-mail:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "Endereço de E-mail:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr "Número de Telefone:"
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Assunto:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Mensagem:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Anexo:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Envie-me uma cópia"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Enviar"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Seu nome é obrigatório"
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Um e-mail correto é obrigatório."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "Um e-mail correto é obrigatório."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "Seu nome é obrigatório"
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "O Assunto da mensagem é obrigatório."
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "O texto da Mensagem é obrigatório."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "Impossível anexar arquivo. "
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "Por favor, complete a resposta da charada ."
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Obrigado por nos contatar"
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr "Se a opção 'Redirecionar para a pagina' estiver selecionada, então o campo URL deve ser no seguinte formato"
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Tal usuário não existe. Configurações não foram salvas."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "Opções salvas."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "Configurações"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  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."
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "Use o email de um usuário do wordpress:"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "Selecione o nome do usuário"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "Use este email:"
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "Opções adicionais"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr "O que usar?"
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr "Você pode usar a função wp_mail para enviar emails"
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "Mail"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr "Para enviar emails você pode usar a função mail() do php"
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "Mudar de campos do formulário de contato"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr "Entre com o endereço de e-mail no campo 'De'"
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr "O endereço de email do usuário que preencher o formulário será usado no campo 'De'"
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr "Este endereço de email será usado no campo 'De'"
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Mostrar opção para anexar arquivos"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "Endereço de E-mail:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr "Telefone"
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Mostrar opção para anexar arquivos"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Mostrar dicas abaixo do bloco de Anexos"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Mostrar a opção Envie-me um cópia"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Plugins ativados"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "Baixar"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr "Campos obrigatórios"
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Nome"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "Endereço de E-mail:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Assunto"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Mensagem"
409
 
410
- #: contact_form.php:646
411
  msgid "Display additional info in the email"
412
  msgstr "Mostre informações adicionais no email"
413
 
414
- #: contact_form.php:651
415
- #: contact_form.php:1447
416
  msgid "Sent from (ip address)"
417
  msgstr "Enviado de (Endereço IP)"
418
 
419
- #: contact_form.php:652
420
- #: contact_form.php:1452
421
  msgid "Date/Time"
422
  msgstr "Data / Hora"
423
 
424
- #: contact_form.php:653
425
- #: contact_form.php:1457
426
  msgid "Sent from (referer)"
427
  msgstr "Vindo de (origem)"
428
 
429
- #: contact_form.php:654
430
- #: contact_form.php:1462
431
  msgid "Using (user agent)"
432
  msgstr "Usando (cliente de email)"
433
 
434
- #: contact_form.php:658
435
  msgid "Language settings for the field names in the form"
436
  msgstr "Configurações de idioma para os nomes dos campos no formulário"
437
 
438
- #: contact_form.php:667
439
  msgid "Add a language"
440
  msgstr "Adicione um idioma"
441
 
442
- #: contact_form.php:671
443
  #, fuzzy
444
  msgid "Change the names of the contact form fields and error messages"
445
  msgstr "Mudar rótulo para os campos no formulário de contato"
446
 
447
- #: contact_form.php:676
448
- #: contact_form.php:747
449
  msgid "English"
450
  msgstr "Inglês"
451
 
452
- #: contact_form.php:695
453
- #: contact_form.php:724
454
  msgid "Error message for the Name field"
455
  msgstr "Mensagem de erro para o campo Nome"
456
 
457
- #: contact_form.php:696
458
- #: contact_form.php:725
459
  #, fuzzy
460
  msgid "Error message for the Address field"
461
  msgstr "Mensagem de erro para o campo Mensagem"
462
 
463
- #: contact_form.php:697
464
- #: contact_form.php:726
465
  msgid "Error message for the Email field"
466
  msgstr "Mensagem de erro para o campo Email"
467
 
468
- #: contact_form.php:698
469
- #: contact_form.php:727
470
  msgid "Error message for the Phone field"
471
  msgstr "Mensagem de erro para o campo Telefone"
472
 
473
- #: contact_form.php:699
474
- #: contact_form.php:728
475
  msgid "Error message for the Subject field"
476
  msgstr "Mensagem de erro para o campo Assunto"
477
 
478
- #: contact_form.php:700
479
- #: contact_form.php:729
480
  msgid "Error message for the Message field"
481
  msgstr "Mensagem de erro para o campo Mensagem"
482
 
483
- #: contact_form.php:701
484
- #: contact_form.php:730
485
  #, fuzzy
486
  msgid "Error message about the file type for the Attachment field"
487
  msgstr "Mensagem de erro para o campo Anexo"
488
 
489
- #: contact_form.php:702
490
- #: contact_form.php:731
491
  #, fuzzy
492
  msgid "Error message while uploading a file for the Attachment field to the server"
493
  msgstr "Mensagem de erro para o campo Anexo"
494
 
495
- #: contact_form.php:703
496
- #: contact_form.php:732
497
  #, fuzzy
498
  msgid "Error message while moving the file for the Attachment field"
499
  msgstr "Mensagem de erro para o campo Anexo"
500
 
501
- #: contact_form.php:704
502
- #: contact_form.php:733
503
  #, fuzzy
504
  msgid "Error message when file size limit for the Attachment field is exceeded"
505
  msgstr "Mensagem de erro para o campo Anexo"
506
 
507
- #: contact_form.php:705
508
- #: contact_form.php:734
509
  msgid "Error message for the Captcha field"
510
  msgstr "Mensagem de erro para o campo Captcha"
511
 
512
- #: contact_form.php:706
513
- #: contact_form.php:735
514
  msgid "Error message for the whole form"
515
  msgstr "Mensagem de erro para o formulário inteiro"
516
 
517
- #: contact_form.php:708
518
- #: contact_form.php:737
519
- #: contact_form.php:756
520
- #: contact_form.php:762
521
  msgid "Use shortcode"
522
  msgstr "Use shortcode (abreviações)"
523
 
524
- #: contact_form.php:708
525
- #: contact_form.php:737
526
- #: contact_form.php:756
527
- #: contact_form.php:762
528
  msgid "for this language"
529
  msgstr "para este idioma"
530
 
531
- #: contact_form.php:744
532
  msgid "Action after email is sent"
533
  msgstr "Ação após o email ser enviado"
534
 
535
- #: contact_form.php:746
536
  #, fuzzy
537
  msgid "Display text"
538
  msgstr "Mostrar opção para anexar arquivos"
539
 
540
- #: contact_form.php:755
541
- #: contact_form.php:761
542
  msgid "Text"
543
  msgstr "Texto"
544
 
545
- #: contact_form.php:768
546
  msgid "Redirect to the page"
547
  msgstr "Redirecione para a página"
548
 
549
- #: contact_form.php:769
550
  msgid "Url"
551
  msgstr "URL"
552
 
553
- #: contact_form.php:774
554
- #: contact_form.php:949
555
  msgid "Save Changes"
556
  msgstr "Salvar mudanças"
557
 
558
- #: contact_form.php:789
559
  #, fuzzy
560
  msgid "Contact Form Pro | Extra Settings"
561
  msgstr "Opções do formulário de contato"
562
 
563
- #: contact_form.php:796
564
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
565
  msgstr ""
566
 
567
- #: contact_form.php:803
568
  msgid "Errors output"
569
  msgstr ""
570
 
571
- #: contact_form.php:806
572
  msgid "Display error messages"
573
  msgstr ""
574
 
575
- #: contact_form.php:807
576
  msgid "Color of the input field errors."
577
  msgstr ""
578
 
579
- #: contact_form.php:808
580
  #, fuzzy
581
  msgid "Display error messages & color of the input field errors"
582
  msgstr "Mensagem de erro para o campo Assunto"
583
 
584
- #: contact_form.php:813
585
  msgid "Add placeholder to the input blocks"
586
  msgstr ""
587
 
588
- #: contact_form.php:819
589
  #, fuzzy
590
  msgid "Add tooltips"
591
  msgstr "Opções adicionais"
592
 
593
- #: contact_form.php:833
594
  #, fuzzy
595
  msgid "Email address"
596
  msgstr "Endereço de E-mail:"
597
 
598
- #: contact_form.php:838
599
  #, fuzzy
600
  msgid "Phone Number"
601
  msgstr "Número de Telefone:"
602
 
603
- #: contact_form.php:852
604
  #, fuzzy
605
  msgid "Attachment"
606
  msgstr "Anexo:"
607
 
608
- #: contact_form.php:862
609
  #, fuzzy
610
  msgid "Style options"
611
  msgstr "Opções adicionais"
612
 
613
- #: contact_form.php:865
614
  msgid "Text color"
615
  msgstr ""
616
 
617
- #: contact_form.php:868
618
- #: contact_form.php:873
619
- #: contact_form.php:883
620
- #: contact_form.php:888
621
- #: contact_form.php:893
622
- #: contact_form.php:898
623
- #: contact_form.php:908
624
- #: contact_form.php:913
625
- #: contact_form.php:919
626
- #: contact_form.php:930
627
- #: contact_form.php:935
628
- #: contact_form.php:940
629
  msgid "Default"
630
  msgstr ""
631
 
632
- #: contact_form.php:870
633
  msgid "Label text color"
634
  msgstr ""
635
 
636
- #: contact_form.php:875
637
  msgid "Placeholder color"
638
  msgstr ""
639
 
640
- #: contact_form.php:880
641
  msgid "Errors color"
642
  msgstr ""
643
 
644
- #: contact_form.php:885
645
  msgid "Error text color"
646
  msgstr ""
647
 
648
- #: contact_form.php:890
649
  msgid "Background color of the input field errors"
650
  msgstr ""
651
 
652
- #: contact_form.php:895
653
  msgid "Border color of the input field errors"
654
  msgstr ""
655
 
656
- #: contact_form.php:900
657
  msgid "Placeholder color of the input field errors"
658
  msgstr ""
659
 
660
- #: contact_form.php:905
661
  #, fuzzy
662
  msgid "Input fields"
663
  msgstr "Mostrar opção para anexar arquivos"
664
 
665
- #: contact_form.php:910
666
  msgid "Input fields background color"
667
  msgstr ""
668
 
669
- #: contact_form.php:915
670
  msgid "Text fields color"
671
  msgstr ""
672
 
673
- #: contact_form.php:917
674
  msgid "Border width in px, numbers only"
675
  msgstr ""
676
 
677
- #: contact_form.php:921
678
- #: contact_form.php:942
679
  msgid "Border color"
680
  msgstr ""
681
 
682
- #: contact_form.php:926
683
  #, fuzzy
684
  msgid "Submit button"
685
  msgstr "Enviar"
686
 
687
- #: contact_form.php:928
688
  msgid "Width in px, numbers only"
689
  msgstr ""
690
 
691
- #: contact_form.php:932
692
  msgid "Button color"
693
  msgstr ""
694
 
695
- #: contact_form.php:937
696
  msgid "Button text color"
697
  msgstr ""
698
 
699
- #: contact_form.php:953
700
  #, fuzzy
701
  msgid "Contact Form Pro | Preview"
702
  msgstr "Formulário de contato"
703
 
704
- #: contact_form.php:956
705
  msgid "Show with errors"
706
  msgstr ""
707
 
708
- #: contact_form.php:964
709
- #: contact_form.php:966
710
  msgid "Please enter your full name..."
711
  msgstr ""
712
 
713
- #: contact_form.php:977
714
- #: contact_form.php:979
715
  msgid "Please enter your address..."
716
  msgstr ""
717
 
718
- #: contact_form.php:988
719
- #: contact_form.php:990
720
  #, fuzzy
721
  msgid "Please enter your email address..."
722
  msgstr "Use este email:"
723
 
724
- #: contact_form.php:999
725
- #: contact_form.php:1001
726
  msgid "Please enter your phone number..."
727
  msgstr ""
728
 
729
- #: contact_form.php:1010
730
- #: contact_form.php:1012
731
  msgid "Please enter subject..."
732
  msgstr ""
733
 
734
- #: contact_form.php:1020
735
- #: contact_form.php:1022
736
  msgid "Please enter your message..."
737
  msgstr ""
738
 
739
- #: contact_form.php:1033
740
  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"
741
  msgstr ""
742
 
743
- #: contact_form.php:1102
744
- msgid "Sorry, email message could not be delivered."
745
- msgstr "Desculpe, seu e-mail não pode ser entregue."
746
-
747
- #: contact_form.php:1186
748
  msgid "You can attach the following file formats"
749
  msgstr "Você pode anexar arquivos do seguinte tipo"
750
 
751
- #: contact_form.php:1470
752
  msgid "Contact from"
753
  msgstr "Formulário de Contato"
754
 
755
- #: contact_form.php:1483
756
  msgid "Email"
757
  msgstr "E-Mail"
758
 
759
- #: contact_form.php:1497
760
  msgid "Site"
761
  msgstr "Site"
762
 
763
- #: contact_form.php:1547
764
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
765
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
766
 
767
- #: contact_form.php:1598
768
  msgid "FAQ"
769
  msgstr "Perguntas Frequentes"
770
 
771
- #: contact_form.php:1599
772
  msgid "Support"
773
  msgstr "Suporte"
774
 
775
- #: contact_form.php:1647
776
  msgid "Are you sure that you want to delete this language data?"
777
  msgstr "Tem certeza que você quer apagar estes dados de idioma?"
778
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:57+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:57+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Mensagem"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Site"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Use este email:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Obrigado por nos contatar"
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Desculpe, seu e-mail não pode ser entregue."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Plugins ativados"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Leia Mais"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Configurações"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Plugins instalados"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Plugins recomendados"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Plugins recomendados"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Baixar"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Instalar %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Instale agora do site wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  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. "
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Plugins ativados"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Plugins ativados"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Suporte"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Opções do formulário de contato"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Formulário de contato"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Opções do formulário de contato"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Formulário de contato"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Nome:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "Endereço de E-mail:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "Endereço de E-mail:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr "Número de Telefone:"
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Assunto:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Mensagem:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Anexo:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Envie-me uma cópia"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Enviar"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Seu nome é obrigatório"
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Um e-mail correto é obrigatório."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "Um e-mail correto é obrigatório."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "Seu nome é obrigatório"
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "O Assunto da mensagem é obrigatório."
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "O texto da Mensagem é obrigatório."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "Impossível anexar arquivo. "
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "Por favor, complete a resposta da charada ."
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr "Se a opção 'Redirecionar para a pagina' estiver selecionada, então o campo URL deve ser no seguinte formato"
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Tal usuário não existe. Configurações não foram salvas."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "Opções salvas."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "Configurações"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  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:"
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  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."
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "Use o email de um usuário do wordpress:"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "Selecione o nome do usuário"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "Use este email:"
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "Opções adicionais"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr "O que usar?"
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr "Você pode usar a função wp_mail para enviar emails"
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "Mail"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr "Para enviar emails você pode usar a função mail() do php"
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "Mudar de campos do formulário de contato"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr "Entre com o endereço de e-mail no campo 'De'"
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr "O endereço de email do usuário que preencher o formulário será usado no campo 'De'"
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr "Este endereço de email será usado no campo 'De'"
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Mostrar opção para anexar arquivos"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "Endereço de E-mail:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr "Telefone"
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Mostrar opção para anexar arquivos"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Mostrar dicas abaixo do bloco de Anexos"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Mostrar a opção Envie-me um cópia"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Plugins ativados"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "Baixar"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr "Campos obrigatórios"
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Nome"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "Endereço de E-mail:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Assunto"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Mensagem"
578
 
579
+ #: contact_form.php:857
580
  msgid "Display additional info in the email"
581
  msgstr "Mostre informações adicionais no email"
582
 
583
+ #: contact_form.php:862
584
+ #: contact_form.php:1658
585
  msgid "Sent from (ip address)"
586
  msgstr "Enviado de (Endereço IP)"
587
 
588
+ #: contact_form.php:863
589
+ #: contact_form.php:1663
590
  msgid "Date/Time"
591
  msgstr "Data / Hora"
592
 
593
+ #: contact_form.php:864
594
+ #: contact_form.php:1668
595
  msgid "Sent from (referer)"
596
  msgstr "Vindo de (origem)"
597
 
598
+ #: contact_form.php:865
599
+ #: contact_form.php:1673
600
  msgid "Using (user agent)"
601
  msgstr "Usando (cliente de email)"
602
 
603
+ #: contact_form.php:869
604
  msgid "Language settings for the field names in the form"
605
  msgstr "Configurações de idioma para os nomes dos campos no formulário"
606
 
607
+ #: contact_form.php:878
608
  msgid "Add a language"
609
  msgstr "Adicione um idioma"
610
 
611
+ #: contact_form.php:882
612
  #, fuzzy
613
  msgid "Change the names of the contact form fields and error messages"
614
  msgstr "Mudar rótulo para os campos no formulário de contato"
615
 
616
+ #: contact_form.php:887
617
+ #: contact_form.php:958
618
  msgid "English"
619
  msgstr "Inglês"
620
 
621
+ #: contact_form.php:906
622
+ #: contact_form.php:935
623
  msgid "Error message for the Name field"
624
  msgstr "Mensagem de erro para o campo Nome"
625
 
626
+ #: contact_form.php:907
627
+ #: contact_form.php:936
628
  #, fuzzy
629
  msgid "Error message for the Address field"
630
  msgstr "Mensagem de erro para o campo Mensagem"
631
 
632
+ #: contact_form.php:908
633
+ #: contact_form.php:937
634
  msgid "Error message for the Email field"
635
  msgstr "Mensagem de erro para o campo Email"
636
 
637
+ #: contact_form.php:909
638
+ #: contact_form.php:938
639
  msgid "Error message for the Phone field"
640
  msgstr "Mensagem de erro para o campo Telefone"
641
 
642
+ #: contact_form.php:910
643
+ #: contact_form.php:939
644
  msgid "Error message for the Subject field"
645
  msgstr "Mensagem de erro para o campo Assunto"
646
 
647
+ #: contact_form.php:911
648
+ #: contact_form.php:940
649
  msgid "Error message for the Message field"
650
  msgstr "Mensagem de erro para o campo Mensagem"
651
 
652
+ #: contact_form.php:912
653
+ #: contact_form.php:941
654
  #, fuzzy
655
  msgid "Error message about the file type for the Attachment field"
656
  msgstr "Mensagem de erro para o campo Anexo"
657
 
658
+ #: contact_form.php:913
659
+ #: contact_form.php:942
660
  #, fuzzy
661
  msgid "Error message while uploading a file for the Attachment field to the server"
662
  msgstr "Mensagem de erro para o campo Anexo"
663
 
664
+ #: contact_form.php:914
665
+ #: contact_form.php:943
666
  #, fuzzy
667
  msgid "Error message while moving the file for the Attachment field"
668
  msgstr "Mensagem de erro para o campo Anexo"
669
 
670
+ #: contact_form.php:915
671
+ #: contact_form.php:944
672
  #, fuzzy
673
  msgid "Error message when file size limit for the Attachment field is exceeded"
674
  msgstr "Mensagem de erro para o campo Anexo"
675
 
676
+ #: contact_form.php:916
677
+ #: contact_form.php:945
678
  msgid "Error message for the Captcha field"
679
  msgstr "Mensagem de erro para o campo Captcha"
680
 
681
+ #: contact_form.php:917
682
+ #: contact_form.php:946
683
  msgid "Error message for the whole form"
684
  msgstr "Mensagem de erro para o formulário inteiro"
685
 
686
+ #: contact_form.php:919
687
+ #: contact_form.php:948
688
+ #: contact_form.php:967
689
+ #: contact_form.php:973
690
  msgid "Use shortcode"
691
  msgstr "Use shortcode (abreviações)"
692
 
693
+ #: contact_form.php:919
694
+ #: contact_form.php:948
695
+ #: contact_form.php:967
696
+ #: contact_form.php:973
697
  msgid "for this language"
698
  msgstr "para este idioma"
699
 
700
+ #: contact_form.php:955
701
  msgid "Action after email is sent"
702
  msgstr "Ação após o email ser enviado"
703
 
704
+ #: contact_form.php:957
705
  #, fuzzy
706
  msgid "Display text"
707
  msgstr "Mostrar opção para anexar arquivos"
708
 
709
+ #: contact_form.php:966
710
+ #: contact_form.php:972
711
  msgid "Text"
712
  msgstr "Texto"
713
 
714
+ #: contact_form.php:979
715
  msgid "Redirect to the page"
716
  msgstr "Redirecione para a página"
717
 
718
+ #: contact_form.php:980
719
  msgid "Url"
720
  msgstr "URL"
721
 
722
+ #: contact_form.php:985
723
+ #: contact_form.php:1160
724
  msgid "Save Changes"
725
  msgstr "Salvar mudanças"
726
 
727
+ #: contact_form.php:1000
728
  #, fuzzy
729
  msgid "Contact Form Pro | Extra Settings"
730
  msgstr "Opções do formulário de contato"
731
 
732
+ #: contact_form.php:1007
733
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
734
  msgstr ""
735
 
736
+ #: contact_form.php:1014
737
  msgid "Errors output"
738
  msgstr ""
739
 
740
+ #: contact_form.php:1017
741
  msgid "Display error messages"
742
  msgstr ""
743
 
744
+ #: contact_form.php:1018
745
  msgid "Color of the input field errors."
746
  msgstr ""
747
 
748
+ #: contact_form.php:1019
749
  #, fuzzy
750
  msgid "Display error messages & color of the input field errors"
751
  msgstr "Mensagem de erro para o campo Assunto"
752
 
753
+ #: contact_form.php:1024
754
  msgid "Add placeholder to the input blocks"
755
  msgstr ""
756
 
757
+ #: contact_form.php:1030
758
  #, fuzzy
759
  msgid "Add tooltips"
760
  msgstr "Opções adicionais"
761
 
762
+ #: contact_form.php:1044
763
  #, fuzzy
764
  msgid "Email address"
765
  msgstr "Endereço de E-mail:"
766
 
767
+ #: contact_form.php:1049
768
  #, fuzzy
769
  msgid "Phone Number"
770
  msgstr "Número de Telefone:"
771
 
772
+ #: contact_form.php:1063
773
  #, fuzzy
774
  msgid "Attachment"
775
  msgstr "Anexo:"
776
 
777
+ #: contact_form.php:1073
778
  #, fuzzy
779
  msgid "Style options"
780
  msgstr "Opções adicionais"
781
 
782
+ #: contact_form.php:1076
783
  msgid "Text color"
784
  msgstr ""
785
 
786
+ #: contact_form.php:1079
787
+ #: contact_form.php:1084
788
+ #: contact_form.php:1094
789
+ #: contact_form.php:1099
790
+ #: contact_form.php:1104
791
+ #: contact_form.php:1109
792
+ #: contact_form.php:1119
793
+ #: contact_form.php:1124
794
+ #: contact_form.php:1130
795
+ #: contact_form.php:1141
796
+ #: contact_form.php:1146
797
+ #: contact_form.php:1151
798
  msgid "Default"
799
  msgstr ""
800
 
801
+ #: contact_form.php:1081
802
  msgid "Label text color"
803
  msgstr ""
804
 
805
+ #: contact_form.php:1086
806
  msgid "Placeholder color"
807
  msgstr ""
808
 
809
+ #: contact_form.php:1091
810
  msgid "Errors color"
811
  msgstr ""
812
 
813
+ #: contact_form.php:1096
814
  msgid "Error text color"
815
  msgstr ""
816
 
817
+ #: contact_form.php:1101
818
  msgid "Background color of the input field errors"
819
  msgstr ""
820
 
821
+ #: contact_form.php:1106
822
  msgid "Border color of the input field errors"
823
  msgstr ""
824
 
825
+ #: contact_form.php:1111
826
  msgid "Placeholder color of the input field errors"
827
  msgstr ""
828
 
829
+ #: contact_form.php:1116
830
  #, fuzzy
831
  msgid "Input fields"
832
  msgstr "Mostrar opção para anexar arquivos"
833
 
834
+ #: contact_form.php:1121
835
  msgid "Input fields background color"
836
  msgstr ""
837
 
838
+ #: contact_form.php:1126
839
  msgid "Text fields color"
840
  msgstr ""
841
 
842
+ #: contact_form.php:1128
843
  msgid "Border width in px, numbers only"
844
  msgstr ""
845
 
846
+ #: contact_form.php:1132
847
+ #: contact_form.php:1153
848
  msgid "Border color"
849
  msgstr ""
850
 
851
+ #: contact_form.php:1137
852
  #, fuzzy
853
  msgid "Submit button"
854
  msgstr "Enviar"
855
 
856
+ #: contact_form.php:1139
857
  msgid "Width in px, numbers only"
858
  msgstr ""
859
 
860
+ #: contact_form.php:1143
861
  msgid "Button color"
862
  msgstr ""
863
 
864
+ #: contact_form.php:1148
865
  msgid "Button text color"
866
  msgstr ""
867
 
868
+ #: contact_form.php:1164
869
  #, fuzzy
870
  msgid "Contact Form Pro | Preview"
871
  msgstr "Formulário de contato"
872
 
873
+ #: contact_form.php:1167
874
  msgid "Show with errors"
875
  msgstr ""
876
 
877
+ #: contact_form.php:1175
878
+ #: contact_form.php:1177
879
  msgid "Please enter your full name..."
880
  msgstr ""
881
 
882
+ #: contact_form.php:1188
883
+ #: contact_form.php:1190
884
  msgid "Please enter your address..."
885
  msgstr ""
886
 
887
+ #: contact_form.php:1199
888
+ #: contact_form.php:1201
889
  #, fuzzy
890
  msgid "Please enter your email address..."
891
  msgstr "Use este email:"
892
 
893
+ #: contact_form.php:1210
894
+ #: contact_form.php:1212
895
  msgid "Please enter your phone number..."
896
  msgstr ""
897
 
898
+ #: contact_form.php:1221
899
+ #: contact_form.php:1223
900
  msgid "Please enter subject..."
901
  msgstr ""
902
 
903
+ #: contact_form.php:1231
904
+ #: contact_form.php:1233
905
  msgid "Please enter your message..."
906
  msgstr ""
907
 
908
+ #: contact_form.php:1244
909
  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"
910
  msgstr ""
911
 
912
+ #: contact_form.php:1397
 
 
 
 
913
  msgid "You can attach the following file formats"
914
  msgstr "Você pode anexar arquivos do seguinte tipo"
915
 
916
+ #: contact_form.php:1681
917
  msgid "Contact from"
918
  msgstr "Formulário de Contato"
919
 
920
+ #: contact_form.php:1694
921
  msgid "Email"
922
  msgstr "E-Mail"
923
 
924
+ #: contact_form.php:1708
925
  msgid "Site"
926
  msgstr "Site"
927
 
928
+ #: contact_form.php:1758
929
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
930
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
931
 
932
+ #: contact_form.php:1809
933
  msgid "FAQ"
934
  msgstr "Perguntas Frequentes"
935
 
936
+ #: contact_form.php:1810
937
  msgid "Support"
938
  msgstr "Suporte"
939
 
940
+ #: contact_form.php:1858
941
  msgid "Are you sure that you want to delete this language data?"
942
  msgstr "Tem certeza que você quer apagar estes dados de idioma?"
943
 
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: 2013-07-16 16:06+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:06+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung, César Silva <thartung@adipositas-mm.de, cesarbsilva@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,765 +16,930 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Plugins ativados"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Leia Mais"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Configurações"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Plugins instalados"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Plugins recomendados"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Plugins recomendados"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Baixar"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Instalar %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Instale agora do site wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  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. "
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Opções do formulário de contato"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Formulário de contato"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Opções do formulário de contato"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Formulário de contato"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Nome:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "Endereço de E-mail:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "Endereço de E-mail:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr "Número de Telefone :"
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Assunto:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Mensagem:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Anexo:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Envie-me uma cópia"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Enviar"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Nome é obrigatório"
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Um e-mail correto é obrigatório."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "Um e-mail correto é obrigatório."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  msgid "Phone number is required."
179
  msgstr "Número de Telefone é obrigatório"
180
 
181
- #: contact_form.php:214
182
- #: contact_form.php:257
183
- #: contact_form.php:260
184
  msgid "Subject is required."
185
  msgstr "O Assunto da mensagem é obrigatório."
186
 
187
- #: contact_form.php:215
188
- #: contact_form.php:256
189
- #: contact_form.php:259
190
  msgid "Message text is required."
191
  msgstr "O texto da Mensagem é obrigatório."
192
 
193
- #: contact_form.php:216
194
  msgid "File format is not valid."
195
  msgstr "Impossível anexar arquivo. "
196
 
197
- #: contact_form.php:217
198
  msgid "File upload error."
199
  msgstr ""
200
 
201
- #: contact_form.php:218
202
  msgid "The file could not be uploaded."
203
  msgstr ""
204
 
205
- #: contact_form.php:219
206
  msgid "This file is too large."
207
  msgstr ""
208
 
209
- #: contact_form.php:220
210
  msgid "Please fill out the CAPTCHA."
211
  msgstr "Por favor, complete a resposta do CAPTCHA ."
212
 
213
- #: contact_form.php:221
214
  msgid "Please make corrections below and try again."
215
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
216
 
217
- #: contact_form.php:223
218
- msgid "Thank you for contacting us."
219
- msgstr "Obrigado por nos contactar"
220
-
221
- #: contact_form.php:494
222
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
223
  msgstr "Se o 'Redirecionamento para a página' estiver selecionado, o campo URL deve estar no seguinte formato"
224
 
225
- #: contact_form.php:503
226
  msgid "Such user does not exist. Settings are not saved."
227
  msgstr "O Utilizador não existe. Configurações não foram guardadas."
228
 
229
- #: contact_form.php:508
230
- #: contact_form.php:514
231
  #, fuzzy
232
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
233
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
234
 
235
- #: contact_form.php:519
236
  #, fuzzy
237
  msgid "Settings saved."
238
  msgstr "Opções guardadas."
239
 
240
- #: contact_form.php:544
241
- #: contact_form.php:792
242
  #, fuzzy
243
  msgid "Extra settings"
244
  msgstr "Configurações"
245
 
246
- #: contact_form.php:549
247
- #: contact_form.php:1048
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 "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:"
250
 
251
- #: contact_form.php:550
252
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
253
  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."
254
 
255
- #: contact_form.php:554
256
  msgid "The user's email address:"
257
  msgstr "Use o email de um utilizador do wordpress:"
258
 
259
- #: contact_form.php:558
260
  msgid "Create a username"
261
  msgstr "Selecione o nome do utilizador"
262
 
263
- #: contact_form.php:563
264
  msgid "Enter a username of the person who should get the messages from the contact form."
265
  msgstr "Determine um nome de utilizador que receberá as mensagens enviadas pelo Formulário de Contato."
266
 
267
- #: contact_form.php:567
268
  msgid "Use this email address:"
269
  msgstr "Use este email:"
270
 
271
- #: contact_form.php:570
272
  msgid "Enter the email address you want the messages forwarded to."
273
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
274
 
275
- #: contact_form.php:574
276
  msgid "Additional options"
277
  msgstr "Opções adicionais"
278
 
279
- #: contact_form.php:577
280
  msgid "What to use?"
281
  msgstr "O que usar?"
282
 
283
- #: contact_form.php:580
284
  msgid "Wp-mail"
285
  msgstr "Wp-mail"
286
 
287
- #: contact_form.php:581
288
  msgid "You can use the wp_mail function for mailing"
289
  msgstr "Pode usar a função wp_mail para emailing"
290
 
291
- #: contact_form.php:587
292
  msgid "Mail"
293
  msgstr "Mail"
294
 
295
- #: contact_form.php:588
296
  msgid "To send mail you can use the php mail function"
297
  msgstr "Para o envio de email pode usar a função de email existente no core do php"
298
 
299
- #: contact_form.php:592
300
  #, fuzzy
301
  msgid "Change text of the 'FROM' field"
302
  msgstr "Mudar rótulo para os campos no formulário de contato"
303
 
304
- #: contact_form.php:598
305
  msgid "Enter the email address in the 'From' field"
306
  msgstr "Insira o email no campo 'Form'"
307
 
308
- #: contact_form.php:600
309
  msgid "User email"
310
  msgstr ""
311
 
312
- #: contact_form.php:600
313
  #, fuzzy
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr "O endereço de e-mail do utilizador que preenche o formulário vai ser usado no campo 'De'."
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr "Este endereço de e-mail será usado no campo 'De'."
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Mostrar opção para anexar arquivos"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "Endereço de E-mail:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr "Telefone"
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Mostrar opção para anexar arquivos"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Utilizadores podem anexar arquivos do seguinte tipo:"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Mostrar dicas para anexar arquivos"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Mostrar a opção Envie-me um cópia"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Plugins ativados"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "Baixar"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr "Campos obrigatórios"
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Nome"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "Endereço de E-mail:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Assunto"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Mensagem"
409
 
410
- #: contact_form.php:646
411
  #, fuzzy
412
  msgid "Display additional info in the email"
413
  msgstr "Mostrar informações adicionais no e-mail"
414
 
415
- #: contact_form.php:651
416
- #: contact_form.php:1447
417
  msgid "Sent from (ip address)"
418
  msgstr "Enviado de (Endereço IP)"
419
 
420
- #: contact_form.php:652
421
- #: contact_form.php:1452
422
  msgid "Date/Time"
423
  msgstr "Data / Hora"
424
 
425
- #: contact_form.php:653
426
- #: contact_form.php:1457
427
  msgid "Sent from (referer)"
428
  msgstr "Vindo de (origem)"
429
 
430
- #: contact_form.php:654
431
- #: contact_form.php:1462
432
  msgid "Using (user agent)"
433
  msgstr "Usando (cliente de email)"
434
 
435
- #: contact_form.php:658
436
  msgid "Language settings for the field names in the form"
437
  msgstr "Configurações de idioma para os nomes dos campos do formulário"
438
 
439
- #: contact_form.php:667
440
  #, fuzzy
441
  msgid "Add a language"
442
  msgstr "Adicionar idioma"
443
 
444
- #: contact_form.php:671
445
  #, fuzzy
446
  msgid "Change the names of the contact form fields and error messages"
447
  msgstr "Mudar rótulo para os campos no formulário de contato"
448
 
449
- #: contact_form.php:676
450
- #: contact_form.php:747
451
  msgid "English"
452
  msgstr "Inglês"
453
 
454
- #: contact_form.php:695
455
- #: contact_form.php:724
456
  msgid "Error message for the Name field"
457
  msgstr "Mensagem de erro para o campo Nome"
458
 
459
- #: contact_form.php:696
460
- #: contact_form.php:725
461
  #, fuzzy
462
  msgid "Error message for the Address field"
463
  msgstr "Mensagem de erro para o campo Mensagem"
464
 
465
- #: contact_form.php:697
466
- #: contact_form.php:726
467
  msgid "Error message for the Email field"
468
  msgstr "Mensagem de erro para o campo de E-mail"
469
 
470
- #: contact_form.php:698
471
- #: contact_form.php:727
472
  msgid "Error message for the Phone field"
473
  msgstr "Mensagem de erro para o campo de Telefone"
474
 
475
- #: contact_form.php:699
476
- #: contact_form.php:728
477
  msgid "Error message for the Subject field"
478
  msgstr "Mensagem de erro para o campo Assunto"
479
 
480
- #: contact_form.php:700
481
- #: contact_form.php:729
482
  msgid "Error message for the Message field"
483
  msgstr "Mensagem de erro para o campo Mensagem"
484
 
485
- #: contact_form.php:701
486
- #: contact_form.php:730
487
  #, fuzzy
488
  msgid "Error message about the file type for the Attachment field"
489
  msgstr "Mensagem de erro para o campo Anexos"
490
 
491
- #: contact_form.php:702
492
- #: contact_form.php:731
493
  #, fuzzy
494
  msgid "Error message while uploading a file for the Attachment field to the server"
495
  msgstr "Mensagem de erro para o campo Anexos"
496
 
497
- #: contact_form.php:703
498
- #: contact_form.php:732
499
  #, fuzzy
500
  msgid "Error message while moving the file for the Attachment field"
501
  msgstr "Mensagem de erro para o campo Anexos"
502
 
503
- #: contact_form.php:704
504
- #: contact_form.php:733
505
  #, fuzzy
506
  msgid "Error message when file size limit for the Attachment field is exceeded"
507
  msgstr "Mensagem de erro para o campo Anexos"
508
 
509
- #: contact_form.php:705
510
- #: contact_form.php:734
511
  msgid "Error message for the Captcha field"
512
  msgstr "Mensagem de erro para o controlo Captcha"
513
 
514
- #: contact_form.php:706
515
- #: contact_form.php:735
516
  msgid "Error message for the whole form"
517
  msgstr "Mensagem de erro para todo o formulário"
518
 
519
- #: contact_form.php:708
520
- #: contact_form.php:737
521
- #: contact_form.php:756
522
- #: contact_form.php:762
523
  msgid "Use shortcode"
524
  msgstr "usar código abreviado"
525
 
526
- #: contact_form.php:708
527
- #: contact_form.php:737
528
- #: contact_form.php:756
529
- #: contact_form.php:762
530
  msgid "for this language"
531
  msgstr "para este idioma"
532
 
533
- #: contact_form.php:744
534
  msgid "Action after email is sent"
535
  msgstr "Ação após envio de email"
536
 
537
- #: contact_form.php:746
538
  #, fuzzy
539
  msgid "Display text"
540
  msgstr "Mostrar opção para anexar arquivos"
541
 
542
- #: contact_form.php:755
543
- #: contact_form.php:761
544
  msgid "Text"
545
  msgstr "Texto"
546
 
547
- #: contact_form.php:768
548
  msgid "Redirect to the page"
549
  msgstr "Redirecionamento para a página"
550
 
551
- #: contact_form.php:769
552
  msgid "Url"
553
  msgstr "Url"
554
 
555
- #: contact_form.php:774
556
- #: contact_form.php:949
557
  msgid "Save Changes"
558
  msgstr "Salvar mudanças"
559
 
560
- #: contact_form.php:789
561
  #, fuzzy
562
  msgid "Contact Form Pro | Extra Settings"
563
  msgstr "Opções do formulário de contato"
564
 
565
- #: contact_form.php:796
566
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
567
  msgstr ""
568
 
569
- #: contact_form.php:803
570
  msgid "Errors output"
571
  msgstr ""
572
 
573
- #: contact_form.php:806
574
  msgid "Display error messages"
575
  msgstr ""
576
 
577
- #: contact_form.php:807
578
  msgid "Color of the input field errors."
579
  msgstr ""
580
 
581
- #: contact_form.php:808
582
  #, fuzzy
583
  msgid "Display error messages & color of the input field errors"
584
  msgstr "Mensagem de erro para o campo Assunto"
585
 
586
- #: contact_form.php:813
587
  msgid "Add placeholder to the input blocks"
588
  msgstr ""
589
 
590
- #: contact_form.php:819
591
  #, fuzzy
592
  msgid "Add tooltips"
593
  msgstr "Opções adicionais"
594
 
595
- #: contact_form.php:833
596
  #, fuzzy
597
  msgid "Email address"
598
  msgstr "Endereço de E-mail:"
599
 
600
- #: contact_form.php:838
601
  #, fuzzy
602
  msgid "Phone Number"
603
  msgstr "Número de Telefone :"
604
 
605
- #: contact_form.php:852
606
  #, fuzzy
607
  msgid "Attachment"
608
  msgstr "Anexo:"
609
 
610
- #: contact_form.php:862
611
  #, fuzzy
612
  msgid "Style options"
613
  msgstr "Opções adicionais"
614
 
615
- #: contact_form.php:865
616
  msgid "Text color"
617
  msgstr ""
618
 
619
- #: contact_form.php:868
620
- #: contact_form.php:873
621
- #: contact_form.php:883
622
- #: contact_form.php:888
623
- #: contact_form.php:893
624
- #: contact_form.php:898
625
- #: contact_form.php:908
626
- #: contact_form.php:913
627
- #: contact_form.php:919
628
- #: contact_form.php:930
629
- #: contact_form.php:935
630
- #: contact_form.php:940
631
  msgid "Default"
632
  msgstr ""
633
 
634
- #: contact_form.php:870
635
  msgid "Label text color"
636
  msgstr ""
637
 
638
- #: contact_form.php:875
639
  msgid "Placeholder color"
640
  msgstr ""
641
 
642
- #: contact_form.php:880
643
  msgid "Errors color"
644
  msgstr ""
645
 
646
- #: contact_form.php:885
647
  msgid "Error text color"
648
  msgstr ""
649
 
650
- #: contact_form.php:890
651
  msgid "Background color of the input field errors"
652
  msgstr ""
653
 
654
- #: contact_form.php:895
655
  msgid "Border color of the input field errors"
656
  msgstr ""
657
 
658
- #: contact_form.php:900
659
  msgid "Placeholder color of the input field errors"
660
  msgstr ""
661
 
662
- #: contact_form.php:905
663
  #, fuzzy
664
  msgid "Input fields"
665
  msgstr "Mostrar opção para anexar arquivos"
666
 
667
- #: contact_form.php:910
668
  msgid "Input fields background color"
669
  msgstr ""
670
 
671
- #: contact_form.php:915
672
  msgid "Text fields color"
673
  msgstr ""
674
 
675
- #: contact_form.php:917
676
  msgid "Border width in px, numbers only"
677
  msgstr ""
678
 
679
- #: contact_form.php:921
680
- #: contact_form.php:942
681
  msgid "Border color"
682
  msgstr ""
683
 
684
- #: contact_form.php:926
685
  #, fuzzy
686
  msgid "Submit button"
687
  msgstr "Enviar"
688
 
689
- #: contact_form.php:928
690
  msgid "Width in px, numbers only"
691
  msgstr ""
692
 
693
- #: contact_form.php:932
694
  msgid "Button color"
695
  msgstr ""
696
 
697
- #: contact_form.php:937
698
  msgid "Button text color"
699
  msgstr ""
700
 
701
- #: contact_form.php:953
702
  #, fuzzy
703
  msgid "Contact Form Pro | Preview"
704
  msgstr "Formulário de contato"
705
 
706
- #: contact_form.php:956
707
  msgid "Show with errors"
708
  msgstr ""
709
 
710
- #: contact_form.php:964
711
- #: contact_form.php:966
712
  msgid "Please enter your full name..."
713
  msgstr ""
714
 
715
- #: contact_form.php:977
716
- #: contact_form.php:979
717
  msgid "Please enter your address..."
718
  msgstr ""
719
 
720
- #: contact_form.php:988
721
- #: contact_form.php:990
722
  #, fuzzy
723
  msgid "Please enter your email address..."
724
  msgstr "Use este email:"
725
 
726
- #: contact_form.php:999
727
- #: contact_form.php:1001
728
  msgid "Please enter your phone number..."
729
  msgstr ""
730
 
731
- #: contact_form.php:1010
732
- #: contact_form.php:1012
733
  msgid "Please enter subject..."
734
  msgstr ""
735
 
736
- #: contact_form.php:1020
737
- #: contact_form.php:1022
738
  msgid "Please enter your message..."
739
  msgstr ""
740
 
741
- #: contact_form.php:1033
742
  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"
743
  msgstr ""
744
 
745
- #: contact_form.php:1102
746
- msgid "Sorry, email message could not be delivered."
747
- msgstr "Desculpe, seu e-mail não pode ser entregue."
748
-
749
- #: contact_form.php:1186
750
  msgid "You can attach the following file formats"
751
  msgstr "Você pode anexar arquivos do seguinte tipo"
752
 
753
- #: contact_form.php:1470
754
  msgid "Contact from"
755
  msgstr "Formulário de Contato"
756
 
757
- #: contact_form.php:1483
758
  msgid "Email"
759
  msgstr "E-Mail"
760
 
761
- #: contact_form.php:1497
762
  msgid "Site"
763
  msgstr "Site"
764
 
765
- #: contact_form.php:1547
766
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
767
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
768
 
769
- #: contact_form.php:1598
770
  msgid "FAQ"
771
  msgstr "Perguntas Frequentes"
772
 
773
- #: contact_form.php:1599
774
  msgid "Support"
775
  msgstr "Suporte"
776
 
777
- #: contact_form.php:1647
778
  msgid "Are you sure that you want to delete this language data?"
779
  msgstr "Tem certeza que você deseja excluir os dados deste idioma?"
780
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:57+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:57+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Thomas Hartung, César Silva <thartung@adipositas-mm.de, cesarbsilva@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Mensagem"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Site"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Use este email:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Obrigado por nos contactar"
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Desculpe, seu e-mail não pode ser entregue."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Plugins ativados"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Leia Mais"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Configurações"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Plugins instalados"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Plugins recomendados"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Plugins recomendados"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Baixar"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Instalar %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Instale agora do site wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  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. "
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Plugins ativados"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Plugins ativados"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Suporte"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Opções do formulário de contato"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Formulário de contato"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Opções do formulário de contato"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Formulário de contato"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Nome:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "Endereço de E-mail:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "Endereço de E-mail:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr "Número de Telefone :"
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Assunto:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Mensagem:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Anexo:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Envie-me uma cópia"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Enviar"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Nome é obrigatório"
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Um e-mail correto é obrigatório."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "Um e-mail correto é obrigatório."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  msgid "Phone number is required."
352
  msgstr "Número de Telefone é obrigatório"
353
 
354
+ #: contact_form.php:425
355
+ #: contact_form.php:468
356
+ #: contact_form.php:471
357
  msgid "Subject is required."
358
  msgstr "O Assunto da mensagem é obrigatório."
359
 
360
+ #: contact_form.php:426
361
+ #: contact_form.php:467
362
+ #: contact_form.php:470
363
  msgid "Message text is required."
364
  msgstr "O texto da Mensagem é obrigatório."
365
 
366
+ #: contact_form.php:427
367
  msgid "File format is not valid."
368
  msgstr "Impossível anexar arquivo. "
369
 
370
+ #: contact_form.php:428
371
  msgid "File upload error."
372
  msgstr ""
373
 
374
+ #: contact_form.php:429
375
  msgid "The file could not be uploaded."
376
  msgstr ""
377
 
378
+ #: contact_form.php:430
379
  msgid "This file is too large."
380
  msgstr ""
381
 
382
+ #: contact_form.php:431
383
  msgid "Please fill out the CAPTCHA."
384
  msgstr "Por favor, complete a resposta do CAPTCHA ."
385
 
386
+ #: contact_form.php:432
387
  msgid "Please make corrections below and try again."
388
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
389
 
390
+ #: contact_form.php:705
 
 
 
 
391
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
392
  msgstr "Se o 'Redirecionamento para a página' estiver selecionado, o campo URL deve estar no seguinte formato"
393
 
394
+ #: contact_form.php:714
395
  msgid "Such user does not exist. Settings are not saved."
396
  msgstr "O Utilizador não existe. Configurações não foram guardadas."
397
 
398
+ #: contact_form.php:719
399
+ #: contact_form.php:725
400
  #, fuzzy
401
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
402
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
403
 
404
+ #: contact_form.php:730
405
  #, fuzzy
406
  msgid "Settings saved."
407
  msgstr "Opções guardadas."
408
 
409
+ #: contact_form.php:755
410
+ #: contact_form.php:1003
411
  #, fuzzy
412
  msgid "Extra settings"
413
  msgstr "Configurações"
414
 
415
+ #: contact_form.php:760
416
+ #: contact_form.php:1259
417
  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:"
418
  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:"
419
 
420
+ #: contact_form.php:761
421
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
422
  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."
423
 
424
+ #: contact_form.php:765
425
  msgid "The user's email address:"
426
  msgstr "Use o email de um utilizador do wordpress:"
427
 
428
+ #: contact_form.php:769
429
  msgid "Create a username"
430
  msgstr "Selecione o nome do utilizador"
431
 
432
+ #: contact_form.php:774
433
  msgid "Enter a username of the person who should get the messages from the contact form."
434
  msgstr "Determine um nome de utilizador que receberá as mensagens enviadas pelo Formulário de Contato."
435
 
436
+ #: contact_form.php:778
437
  msgid "Use this email address:"
438
  msgstr "Use este email:"
439
 
440
+ #: contact_form.php:781
441
  msgid "Enter the email address you want the messages forwarded to."
442
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
443
 
444
+ #: contact_form.php:785
445
  msgid "Additional options"
446
  msgstr "Opções adicionais"
447
 
448
+ #: contact_form.php:788
449
  msgid "What to use?"
450
  msgstr "O que usar?"
451
 
452
+ #: contact_form.php:791
453
  msgid "Wp-mail"
454
  msgstr "Wp-mail"
455
 
456
+ #: contact_form.php:792
457
  msgid "You can use the wp_mail function for mailing"
458
  msgstr "Pode usar a função wp_mail para emailing"
459
 
460
+ #: contact_form.php:798
461
  msgid "Mail"
462
  msgstr "Mail"
463
 
464
+ #: contact_form.php:799
465
  msgid "To send mail you can use the php mail function"
466
  msgstr "Para o envio de email pode usar a função de email existente no core do php"
467
 
468
+ #: contact_form.php:803
469
  #, fuzzy
470
  msgid "Change text of the 'FROM' field"
471
  msgstr "Mudar rótulo para os campos no formulário de contato"
472
 
473
+ #: contact_form.php:809
474
  msgid "Enter the email address in the 'From' field"
475
  msgstr "Insira o email no campo 'Form'"
476
 
477
+ #: contact_form.php:811
478
  msgid "User email"
479
  msgstr ""
480
 
481
+ #: contact_form.php:811
482
  #, fuzzy
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr "O endereço de e-mail do utilizador que preenche o formulário vai ser usado no campo 'De'."
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr "Este endereço de e-mail será usado no campo 'De'."
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Mostrar opção para anexar arquivos"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "Endereço de E-mail:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr "Telefone"
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Mostrar opção para anexar arquivos"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Utilizadores podem anexar arquivos do seguinte tipo:"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Mostrar dicas para anexar arquivos"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Mostrar a opção Envie-me um cópia"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Plugins ativados"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "Baixar"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr "Campos obrigatórios"
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Nome"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "Endereço de E-mail:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Assunto"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Mensagem"
578
 
579
+ #: contact_form.php:857
580
  #, fuzzy
581
  msgid "Display additional info in the email"
582
  msgstr "Mostrar informações adicionais no e-mail"
583
 
584
+ #: contact_form.php:862
585
+ #: contact_form.php:1658
586
  msgid "Sent from (ip address)"
587
  msgstr "Enviado de (Endereço IP)"
588
 
589
+ #: contact_form.php:863
590
+ #: contact_form.php:1663
591
  msgid "Date/Time"
592
  msgstr "Data / Hora"
593
 
594
+ #: contact_form.php:864
595
+ #: contact_form.php:1668
596
  msgid "Sent from (referer)"
597
  msgstr "Vindo de (origem)"
598
 
599
+ #: contact_form.php:865
600
+ #: contact_form.php:1673
601
  msgid "Using (user agent)"
602
  msgstr "Usando (cliente de email)"
603
 
604
+ #: contact_form.php:869
605
  msgid "Language settings for the field names in the form"
606
  msgstr "Configurações de idioma para os nomes dos campos do formulário"
607
 
608
+ #: contact_form.php:878
609
  #, fuzzy
610
  msgid "Add a language"
611
  msgstr "Adicionar idioma"
612
 
613
+ #: contact_form.php:882
614
  #, fuzzy
615
  msgid "Change the names of the contact form fields and error messages"
616
  msgstr "Mudar rótulo para os campos no formulário de contato"
617
 
618
+ #: contact_form.php:887
619
+ #: contact_form.php:958
620
  msgid "English"
621
  msgstr "Inglês"
622
 
623
+ #: contact_form.php:906
624
+ #: contact_form.php:935
625
  msgid "Error message for the Name field"
626
  msgstr "Mensagem de erro para o campo Nome"
627
 
628
+ #: contact_form.php:907
629
+ #: contact_form.php:936
630
  #, fuzzy
631
  msgid "Error message for the Address field"
632
  msgstr "Mensagem de erro para o campo Mensagem"
633
 
634
+ #: contact_form.php:908
635
+ #: contact_form.php:937
636
  msgid "Error message for the Email field"
637
  msgstr "Mensagem de erro para o campo de E-mail"
638
 
639
+ #: contact_form.php:909
640
+ #: contact_form.php:938
641
  msgid "Error message for the Phone field"
642
  msgstr "Mensagem de erro para o campo de Telefone"
643
 
644
+ #: contact_form.php:910
645
+ #: contact_form.php:939
646
  msgid "Error message for the Subject field"
647
  msgstr "Mensagem de erro para o campo Assunto"
648
 
649
+ #: contact_form.php:911
650
+ #: contact_form.php:940
651
  msgid "Error message for the Message field"
652
  msgstr "Mensagem de erro para o campo Mensagem"
653
 
654
+ #: contact_form.php:912
655
+ #: contact_form.php:941
656
  #, fuzzy
657
  msgid "Error message about the file type for the Attachment field"
658
  msgstr "Mensagem de erro para o campo Anexos"
659
 
660
+ #: contact_form.php:913
661
+ #: contact_form.php:942
662
  #, fuzzy
663
  msgid "Error message while uploading a file for the Attachment field to the server"
664
  msgstr "Mensagem de erro para o campo Anexos"
665
 
666
+ #: contact_form.php:914
667
+ #: contact_form.php:943
668
  #, fuzzy
669
  msgid "Error message while moving the file for the Attachment field"
670
  msgstr "Mensagem de erro para o campo Anexos"
671
 
672
+ #: contact_form.php:915
673
+ #: contact_form.php:944
674
  #, fuzzy
675
  msgid "Error message when file size limit for the Attachment field is exceeded"
676
  msgstr "Mensagem de erro para o campo Anexos"
677
 
678
+ #: contact_form.php:916
679
+ #: contact_form.php:945
680
  msgid "Error message for the Captcha field"
681
  msgstr "Mensagem de erro para o controlo Captcha"
682
 
683
+ #: contact_form.php:917
684
+ #: contact_form.php:946
685
  msgid "Error message for the whole form"
686
  msgstr "Mensagem de erro para todo o formulário"
687
 
688
+ #: contact_form.php:919
689
+ #: contact_form.php:948
690
+ #: contact_form.php:967
691
+ #: contact_form.php:973
692
  msgid "Use shortcode"
693
  msgstr "usar código abreviado"
694
 
695
+ #: contact_form.php:919
696
+ #: contact_form.php:948
697
+ #: contact_form.php:967
698
+ #: contact_form.php:973
699
  msgid "for this language"
700
  msgstr "para este idioma"
701
 
702
+ #: contact_form.php:955
703
  msgid "Action after email is sent"
704
  msgstr "Ação após envio de email"
705
 
706
+ #: contact_form.php:957
707
  #, fuzzy
708
  msgid "Display text"
709
  msgstr "Mostrar opção para anexar arquivos"
710
 
711
+ #: contact_form.php:966
712
+ #: contact_form.php:972
713
  msgid "Text"
714
  msgstr "Texto"
715
 
716
+ #: contact_form.php:979
717
  msgid "Redirect to the page"
718
  msgstr "Redirecionamento para a página"
719
 
720
+ #: contact_form.php:980
721
  msgid "Url"
722
  msgstr "Url"
723
 
724
+ #: contact_form.php:985
725
+ #: contact_form.php:1160
726
  msgid "Save Changes"
727
  msgstr "Salvar mudanças"
728
 
729
+ #: contact_form.php:1000
730
  #, fuzzy
731
  msgid "Contact Form Pro | Extra Settings"
732
  msgstr "Opções do formulário de contato"
733
 
734
+ #: contact_form.php:1007
735
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
736
  msgstr ""
737
 
738
+ #: contact_form.php:1014
739
  msgid "Errors output"
740
  msgstr ""
741
 
742
+ #: contact_form.php:1017
743
  msgid "Display error messages"
744
  msgstr ""
745
 
746
+ #: contact_form.php:1018
747
  msgid "Color of the input field errors."
748
  msgstr ""
749
 
750
+ #: contact_form.php:1019
751
  #, fuzzy
752
  msgid "Display error messages & color of the input field errors"
753
  msgstr "Mensagem de erro para o campo Assunto"
754
 
755
+ #: contact_form.php:1024
756
  msgid "Add placeholder to the input blocks"
757
  msgstr ""
758
 
759
+ #: contact_form.php:1030
760
  #, fuzzy
761
  msgid "Add tooltips"
762
  msgstr "Opções adicionais"
763
 
764
+ #: contact_form.php:1044
765
  #, fuzzy
766
  msgid "Email address"
767
  msgstr "Endereço de E-mail:"
768
 
769
+ #: contact_form.php:1049
770
  #, fuzzy
771
  msgid "Phone Number"
772
  msgstr "Número de Telefone :"
773
 
774
+ #: contact_form.php:1063
775
  #, fuzzy
776
  msgid "Attachment"
777
  msgstr "Anexo:"
778
 
779
+ #: contact_form.php:1073
780
  #, fuzzy
781
  msgid "Style options"
782
  msgstr "Opções adicionais"
783
 
784
+ #: contact_form.php:1076
785
  msgid "Text color"
786
  msgstr ""
787
 
788
+ #: contact_form.php:1079
789
+ #: contact_form.php:1084
790
+ #: contact_form.php:1094
791
+ #: contact_form.php:1099
792
+ #: contact_form.php:1104
793
+ #: contact_form.php:1109
794
+ #: contact_form.php:1119
795
+ #: contact_form.php:1124
796
+ #: contact_form.php:1130
797
+ #: contact_form.php:1141
798
+ #: contact_form.php:1146
799
+ #: contact_form.php:1151
800
  msgid "Default"
801
  msgstr ""
802
 
803
+ #: contact_form.php:1081
804
  msgid "Label text color"
805
  msgstr ""
806
 
807
+ #: contact_form.php:1086
808
  msgid "Placeholder color"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1091
812
  msgid "Errors color"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1096
816
  msgid "Error text color"
817
  msgstr ""
818
 
819
+ #: contact_form.php:1101
820
  msgid "Background color of the input field errors"
821
  msgstr ""
822
 
823
+ #: contact_form.php:1106
824
  msgid "Border color of the input field errors"
825
  msgstr ""
826
 
827
+ #: contact_form.php:1111
828
  msgid "Placeholder color of the input field errors"
829
  msgstr ""
830
 
831
+ #: contact_form.php:1116
832
  #, fuzzy
833
  msgid "Input fields"
834
  msgstr "Mostrar opção para anexar arquivos"
835
 
836
+ #: contact_form.php:1121
837
  msgid "Input fields background color"
838
  msgstr ""
839
 
840
+ #: contact_form.php:1126
841
  msgid "Text fields color"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1128
845
  msgid "Border width in px, numbers only"
846
  msgstr ""
847
 
848
+ #: contact_form.php:1132
849
+ #: contact_form.php:1153
850
  msgid "Border color"
851
  msgstr ""
852
 
853
+ #: contact_form.php:1137
854
  #, fuzzy
855
  msgid "Submit button"
856
  msgstr "Enviar"
857
 
858
+ #: contact_form.php:1139
859
  msgid "Width in px, numbers only"
860
  msgstr ""
861
 
862
+ #: contact_form.php:1143
863
  msgid "Button color"
864
  msgstr ""
865
 
866
+ #: contact_form.php:1148
867
  msgid "Button text color"
868
  msgstr ""
869
 
870
+ #: contact_form.php:1164
871
  #, fuzzy
872
  msgid "Contact Form Pro | Preview"
873
  msgstr "Formulário de contato"
874
 
875
+ #: contact_form.php:1167
876
  msgid "Show with errors"
877
  msgstr ""
878
 
879
+ #: contact_form.php:1175
880
+ #: contact_form.php:1177
881
  msgid "Please enter your full name..."
882
  msgstr ""
883
 
884
+ #: contact_form.php:1188
885
+ #: contact_form.php:1190
886
  msgid "Please enter your address..."
887
  msgstr ""
888
 
889
+ #: contact_form.php:1199
890
+ #: contact_form.php:1201
891
  #, fuzzy
892
  msgid "Please enter your email address..."
893
  msgstr "Use este email:"
894
 
895
+ #: contact_form.php:1210
896
+ #: contact_form.php:1212
897
  msgid "Please enter your phone number..."
898
  msgstr ""
899
 
900
+ #: contact_form.php:1221
901
+ #: contact_form.php:1223
902
  msgid "Please enter subject..."
903
  msgstr ""
904
 
905
+ #: contact_form.php:1231
906
+ #: contact_form.php:1233
907
  msgid "Please enter your message..."
908
  msgstr ""
909
 
910
+ #: contact_form.php:1244
911
  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"
912
  msgstr ""
913
 
914
+ #: contact_form.php:1397
 
 
 
 
915
  msgid "You can attach the following file formats"
916
  msgstr "Você pode anexar arquivos do seguinte tipo"
917
 
918
+ #: contact_form.php:1681
919
  msgid "Contact from"
920
  msgstr "Formulário de Contato"
921
 
922
+ #: contact_form.php:1694
923
  msgid "Email"
924
  msgstr "E-Mail"
925
 
926
+ #: contact_form.php:1708
927
  msgid "Site"
928
  msgstr "Site"
929
 
930
+ #: contact_form.php:1758
931
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
932
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
933
 
934
+ #: contact_form.php:1809
935
  msgid "FAQ"
936
  msgstr "Perguntas Frequentes"
937
 
938
+ #: contact_form.php:1810
939
  msgid "Support"
940
  msgstr "Suporte"
941
 
942
+ #: contact_form.php:1858
943
  msgid "Are you sure that you want to delete this language data?"
944
  msgstr "Tem certeza que você deseja excluir os dados deste idioma?"
945
 
languages/contact_form-ro_RO.mo CHANGED
Binary file
languages/contact_form-ro_RO.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: 2013-07-16 16:06+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:06+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,755 +16,920 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Plugin-uri activate"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Citeste mai multe"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Setari"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Pluginuri instalate"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Pluginuri recomandate"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Pluginuri recomandate"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Descarca"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Instaleaza %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Instaleaza acum de pe wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Daca aveti intrebari, va rugam sa ne contactati folosind plugin@bestwebsoft.com sau completati formularul de contact de la noi de pe site"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Optiuni formular de contact"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Formular de contact"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Optiuni formular de contact"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Formular de contact"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Nume:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "Adresa email:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "Adresa email:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Subiect:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Mesaj:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Atasament:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Trimite-mi o copie"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Trimite"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Numele dumneavoastra este necesar."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "O adresa email valida este necesara."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "O adresa email valida este necesara."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "Numele dumneavoastra este necesar."
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "Subiectul mesajului este necesar"
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "Textul mesajului este necesar."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "Atasamentul este stricat."
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "Va rugam completati CAPTCHA-ul"
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Va rugam sa realizati corecturile de mai jos si sa incercati din nou."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Va multumim ca ati luat legatura cu noi."
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr "Daca optiunea 'Redirectioneaza la pagina' este selectata, atunci campul url ar trebui completat in urmatorul format"
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Acest utilizator nu exista. Setarile nu au fost salvate."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "Va rugam introduceti un email corect. Setarile nu au fost salvate."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "Optiuni salvate."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "Setari"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "Daca ati dori sa adaugati un Formular de Contact pe situl dumneavoastra, copiati si lipiti acest cod intr-o pagina sau widget:"
251
 
252
- #: contact_form.php:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "Daca informatia din campurile urmatoare este nula, atunci mesajul va fi trimis la adresa specificata in timpul procesului de inregistrare."
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "Foloseste email-ul utilizatorului Wordpress:"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "Alege numele utilizatorului"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "Alege numele utilizatorului care va primi mesaje de la formularul de contact."
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "Foloseste acest email:"
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "Alege o adresa email care sa fie folosita pentru primirea mesajelor."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "Optiuni aditionale"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr "Ce sa folosesc?"
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr "Pentru a trimite mailuri puteti folosi functia Wordpress wp_mail"
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "Mail"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr "Pentru a trimite mailuri puteti folosi functia PHP mail"
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "Modifica linia DE LA din formularul de contact"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Afisaza text"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "Adresa email:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr ""
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Afisaza blocul de Atasamente"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Utilizatorii pot atasa fisiere de urmatoarele tipuri"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Afisaza explicatiile dupa blocul Atasament"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Afisaza blocul Trimite-mi o copie"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Plugin-uri activate"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "Descarca"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Nume"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "Adresa email:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Subiect"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Mesaj"
409
 
410
- #: contact_form.php:646
411
  #, fuzzy
412
  msgid "Display additional info in the email"
413
  msgstr "Afisaza informatii aditionale in email"
414
 
415
- #: contact_form.php:651
416
- #: contact_form.php:1447
417
  msgid "Sent from (ip address)"
418
  msgstr "Trimis de la (adresa IP)"
419
 
420
- #: contact_form.php:652
421
- #: contact_form.php:1452
422
  msgid "Date/Time"
423
  msgstr "Data/Ora"
424
 
425
- #: contact_form.php:653
426
- #: contact_form.php:1457
427
  msgid "Sent from (referer)"
428
  msgstr "Venind de la (referinta)"
429
 
430
- #: contact_form.php:654
431
- #: contact_form.php:1462
432
  msgid "Using (user agent)"
433
  msgstr "Folosind (Agent)"
434
 
435
- #: contact_form.php:658
436
  msgid "Language settings for the field names in the form"
437
  msgstr ""
438
 
439
- #: contact_form.php:667
440
  msgid "Add a language"
441
  msgstr ""
442
 
443
- #: contact_form.php:671
444
  msgid "Change the names of the contact form fields and error messages"
445
  msgstr "Schimba etichetele pentru campurile formularului de contact"
446
 
447
- #: contact_form.php:676
448
- #: contact_form.php:747
449
  msgid "English"
450
  msgstr ""
451
 
452
- #: contact_form.php:695
453
- #: contact_form.php:724
454
  msgid "Error message for the Name field"
455
  msgstr ""
456
 
457
- #: contact_form.php:696
458
- #: contact_form.php:725
459
  msgid "Error message for the Address field"
460
  msgstr ""
461
 
462
- #: contact_form.php:697
463
- #: contact_form.php:726
464
  msgid "Error message for the Email field"
465
  msgstr ""
466
 
467
- #: contact_form.php:698
468
- #: contact_form.php:727
469
  msgid "Error message for the Phone field"
470
  msgstr ""
471
 
472
- #: contact_form.php:699
473
- #: contact_form.php:728
474
  msgid "Error message for the Subject field"
475
  msgstr ""
476
 
477
- #: contact_form.php:700
478
- #: contact_form.php:729
479
  msgid "Error message for the Message field"
480
  msgstr ""
481
 
482
- #: contact_form.php:701
483
- #: contact_form.php:730
484
  msgid "Error message about the file type for the Attachment field"
485
  msgstr ""
486
 
487
- #: contact_form.php:702
488
- #: contact_form.php:731
489
  msgid "Error message while uploading a file for the Attachment field to the server"
490
  msgstr ""
491
 
492
- #: contact_form.php:703
493
- #: contact_form.php:732
494
  msgid "Error message while moving the file for the Attachment field"
495
  msgstr ""
496
 
497
- #: contact_form.php:704
498
- #: contact_form.php:733
499
  msgid "Error message when file size limit for the Attachment field is exceeded"
500
  msgstr ""
501
 
502
- #: contact_form.php:705
503
- #: contact_form.php:734
504
  msgid "Error message for the Captcha field"
505
  msgstr ""
506
 
507
- #: contact_form.php:706
508
- #: contact_form.php:735
509
  msgid "Error message for the whole form"
510
  msgstr ""
511
 
512
- #: contact_form.php:708
513
- #: contact_form.php:737
514
- #: contact_form.php:756
515
- #: contact_form.php:762
516
  msgid "Use shortcode"
517
  msgstr ""
518
 
519
- #: contact_form.php:708
520
- #: contact_form.php:737
521
- #: contact_form.php:756
522
- #: contact_form.php:762
523
  msgid "for this language"
524
  msgstr ""
525
 
526
- #: contact_form.php:744
527
  msgid "Action after email is sent"
528
  msgstr "Actiune dupa trimiterea mailului"
529
 
530
- #: contact_form.php:746
531
  msgid "Display text"
532
  msgstr "Afisaza text"
533
 
534
- #: contact_form.php:755
535
- #: contact_form.php:761
536
  msgid "Text"
537
  msgstr "Text"
538
 
539
- #: contact_form.php:768
540
  msgid "Redirect to the page"
541
  msgstr "Redirectioneaza la pagina"
542
 
543
- #: contact_form.php:769
544
  msgid "Url"
545
  msgstr "Url"
546
 
547
- #: contact_form.php:774
548
- #: contact_form.php:949
549
  msgid "Save Changes"
550
  msgstr "Salveaza schimbarile"
551
 
552
- #: contact_form.php:789
553
  #, fuzzy
554
  msgid "Contact Form Pro | Extra Settings"
555
  msgstr "Optiuni formular de contact"
556
 
557
- #: contact_form.php:796
558
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
559
  msgstr ""
560
 
561
- #: contact_form.php:803
562
  msgid "Errors output"
563
  msgstr ""
564
 
565
- #: contact_form.php:806
566
  msgid "Display error messages"
567
  msgstr ""
568
 
569
- #: contact_form.php:807
570
  msgid "Color of the input field errors."
571
  msgstr ""
572
 
573
- #: contact_form.php:808
574
  msgid "Display error messages & color of the input field errors"
575
  msgstr ""
576
 
577
- #: contact_form.php:813
578
  msgid "Add placeholder to the input blocks"
579
  msgstr ""
580
 
581
- #: contact_form.php:819
582
  #, fuzzy
583
  msgid "Add tooltips"
584
  msgstr "Optiuni aditionale"
585
 
586
- #: contact_form.php:833
587
  #, fuzzy
588
  msgid "Email address"
589
  msgstr "Adresa email:"
590
 
591
- #: contact_form.php:838
592
  msgid "Phone Number"
593
  msgstr ""
594
 
595
- #: contact_form.php:852
596
  #, fuzzy
597
  msgid "Attachment"
598
  msgstr "Atasament:"
599
 
600
- #: contact_form.php:862
601
  #, fuzzy
602
  msgid "Style options"
603
  msgstr "Optiuni aditionale"
604
 
605
- #: contact_form.php:865
606
  msgid "Text color"
607
  msgstr ""
608
 
609
- #: contact_form.php:868
610
- #: contact_form.php:873
611
- #: contact_form.php:883
612
- #: contact_form.php:888
613
- #: contact_form.php:893
614
- #: contact_form.php:898
615
- #: contact_form.php:908
616
- #: contact_form.php:913
617
- #: contact_form.php:919
618
- #: contact_form.php:930
619
- #: contact_form.php:935
620
- #: contact_form.php:940
621
  msgid "Default"
622
  msgstr ""
623
 
624
- #: contact_form.php:870
625
  msgid "Label text color"
626
  msgstr ""
627
 
628
- #: contact_form.php:875
629
  msgid "Placeholder color"
630
  msgstr ""
631
 
632
- #: contact_form.php:880
633
  msgid "Errors color"
634
  msgstr ""
635
 
636
- #: contact_form.php:885
637
  msgid "Error text color"
638
  msgstr ""
639
 
640
- #: contact_form.php:890
641
  msgid "Background color of the input field errors"
642
  msgstr ""
643
 
644
- #: contact_form.php:895
645
  msgid "Border color of the input field errors"
646
  msgstr ""
647
 
648
- #: contact_form.php:900
649
  msgid "Placeholder color of the input field errors"
650
  msgstr ""
651
 
652
- #: contact_form.php:905
653
  #, fuzzy
654
  msgid "Input fields"
655
  msgstr "Afisaza text"
656
 
657
- #: contact_form.php:910
658
  msgid "Input fields background color"
659
  msgstr ""
660
 
661
- #: contact_form.php:915
662
  msgid "Text fields color"
663
  msgstr ""
664
 
665
- #: contact_form.php:917
666
  msgid "Border width in px, numbers only"
667
  msgstr ""
668
 
669
- #: contact_form.php:921
670
- #: contact_form.php:942
671
  msgid "Border color"
672
  msgstr ""
673
 
674
- #: contact_form.php:926
675
  #, fuzzy
676
  msgid "Submit button"
677
  msgstr "Trimite"
678
 
679
- #: contact_form.php:928
680
  msgid "Width in px, numbers only"
681
  msgstr ""
682
 
683
- #: contact_form.php:932
684
  msgid "Button color"
685
  msgstr ""
686
 
687
- #: contact_form.php:937
688
  msgid "Button text color"
689
  msgstr ""
690
 
691
- #: contact_form.php:953
692
  #, fuzzy
693
  msgid "Contact Form Pro | Preview"
694
  msgstr "Formular de contact"
695
 
696
- #: contact_form.php:956
697
  msgid "Show with errors"
698
  msgstr ""
699
 
700
- #: contact_form.php:964
701
- #: contact_form.php:966
702
  msgid "Please enter your full name..."
703
  msgstr ""
704
 
705
- #: contact_form.php:977
706
- #: contact_form.php:979
707
  msgid "Please enter your address..."
708
  msgstr ""
709
 
710
- #: contact_form.php:988
711
- #: contact_form.php:990
712
  #, fuzzy
713
  msgid "Please enter your email address..."
714
  msgstr "Foloseste acest email:"
715
 
716
- #: contact_form.php:999
717
- #: contact_form.php:1001
718
  msgid "Please enter your phone number..."
719
  msgstr ""
720
 
721
- #: contact_form.php:1010
722
- #: contact_form.php:1012
723
  msgid "Please enter subject..."
724
  msgstr ""
725
 
726
- #: contact_form.php:1020
727
- #: contact_form.php:1022
728
  msgid "Please enter your message..."
729
  msgstr ""
730
 
731
- #: contact_form.php:1033
732
  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"
733
  msgstr ""
734
 
735
- #: contact_form.php:1102
736
- msgid "Sorry, email message could not be delivered."
737
- msgstr "Ne pare rau, mailul dumneavoastra nu a putut fi livrat."
738
-
739
- #: contact_form.php:1186
740
  msgid "You can attach the following file formats"
741
  msgstr "Puteti atasa fisiere de urmatoarele tipuri"
742
 
743
- #: contact_form.php:1470
744
  msgid "Contact from"
745
  msgstr "Formular de contact"
746
 
747
- #: contact_form.php:1483
748
  msgid "Email"
749
  msgstr "Email"
750
 
751
- #: contact_form.php:1497
752
  msgid "Site"
753
  msgstr "Site"
754
 
755
- #: contact_form.php:1547
756
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
757
  msgstr "Daca vedeti acest MIME atunci clientul dumneavoastra nu accepta tipuri MIME!"
758
 
759
- #: contact_form.php:1598
760
  msgid "FAQ"
761
  msgstr "FAQ"
762
 
763
- #: contact_form.php:1599
764
  msgid "Support"
765
  msgstr "Suport tehnic"
766
 
767
- #: contact_form.php:1647
768
  msgid "Are you sure that you want to delete this language data?"
769
  msgstr ""
770
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:57+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:57+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Mesaj"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Site"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Foloseste acest email:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Va multumim ca ati luat legatura cu noi."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Ne pare rau, mailul dumneavoastra nu a putut fi livrat."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Plugin-uri activate"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Citeste mai multe"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Setari"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Pluginuri instalate"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Pluginuri recomandate"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Pluginuri recomandate"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Descarca"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Instaleaza %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Instaleaza acum de pe wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Daca aveti intrebari, va rugam sa ne contactati folosind plugin@bestwebsoft.com sau completati formularul de contact de la noi de pe site"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Plugin-uri activate"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Plugin-uri activate"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Suport tehnic"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Optiuni formular de contact"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Formular de contact"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Optiuni formular de contact"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Formular de contact"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Nume:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "Adresa email:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "Adresa email:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Subiect:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Mesaj:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Atasament:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Trimite-mi o copie"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Trimite"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Numele dumneavoastra este necesar."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "O adresa email valida este necesara."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "O adresa email valida este necesara."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "Numele dumneavoastra este necesar."
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "Subiectul mesajului este necesar"
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "Textul mesajului este necesar."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "Atasamentul este stricat."
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "Va rugam completati CAPTCHA-ul"
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Va rugam sa realizati corecturile de mai jos si sa incercati din nou."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr "Daca optiunea 'Redirectioneaza la pagina' este selectata, atunci campul url ar trebui completat in urmatorul format"
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Acest utilizator nu exista. Setarile nu au fost salvate."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "Va rugam introduceti un email corect. Setarile nu au fost salvate."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "Optiuni salvate."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "Setari"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "Daca ati dori sa adaugati un Formular de Contact pe situl dumneavoastra, copiati si lipiti acest cod intr-o pagina sau widget:"
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "Daca informatia din campurile urmatoare este nula, atunci mesajul va fi trimis la adresa specificata in timpul procesului de inregistrare."
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "Foloseste email-ul utilizatorului Wordpress:"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "Alege numele utilizatorului"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "Alege numele utilizatorului care va primi mesaje de la formularul de contact."
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "Foloseste acest email:"
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "Alege o adresa email care sa fie folosita pentru primirea mesajelor."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "Optiuni aditionale"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr "Ce sa folosesc?"
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr "Pentru a trimite mailuri puteti folosi functia Wordpress wp_mail"
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "Mail"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr "Pentru a trimite mailuri puteti folosi functia PHP mail"
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "Modifica linia DE LA din formularul de contact"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Afisaza text"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "Adresa email:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr ""
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Afisaza blocul de Atasamente"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Utilizatorii pot atasa fisiere de urmatoarele tipuri"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Afisaza explicatiile dupa blocul Atasament"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Afisaza blocul Trimite-mi o copie"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Plugin-uri activate"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "Descarca"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Nume"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "Adresa email:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Subiect"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Mesaj"
578
 
579
+ #: contact_form.php:857
580
  #, fuzzy
581
  msgid "Display additional info in the email"
582
  msgstr "Afisaza informatii aditionale in email"
583
 
584
+ #: contact_form.php:862
585
+ #: contact_form.php:1658
586
  msgid "Sent from (ip address)"
587
  msgstr "Trimis de la (adresa IP)"
588
 
589
+ #: contact_form.php:863
590
+ #: contact_form.php:1663
591
  msgid "Date/Time"
592
  msgstr "Data/Ora"
593
 
594
+ #: contact_form.php:864
595
+ #: contact_form.php:1668
596
  msgid "Sent from (referer)"
597
  msgstr "Venind de la (referinta)"
598
 
599
+ #: contact_form.php:865
600
+ #: contact_form.php:1673
601
  msgid "Using (user agent)"
602
  msgstr "Folosind (Agent)"
603
 
604
+ #: contact_form.php:869
605
  msgid "Language settings for the field names in the form"
606
  msgstr ""
607
 
608
+ #: contact_form.php:878
609
  msgid "Add a language"
610
  msgstr ""
611
 
612
+ #: contact_form.php:882
613
  msgid "Change the names of the contact form fields and error messages"
614
  msgstr "Schimba etichetele pentru campurile formularului de contact"
615
 
616
+ #: contact_form.php:887
617
+ #: contact_form.php:958
618
  msgid "English"
619
  msgstr ""
620
 
621
+ #: contact_form.php:906
622
+ #: contact_form.php:935
623
  msgid "Error message for the Name field"
624
  msgstr ""
625
 
626
+ #: contact_form.php:907
627
+ #: contact_form.php:936
628
  msgid "Error message for the Address field"
629
  msgstr ""
630
 
631
+ #: contact_form.php:908
632
+ #: contact_form.php:937
633
  msgid "Error message for the Email field"
634
  msgstr ""
635
 
636
+ #: contact_form.php:909
637
+ #: contact_form.php:938
638
  msgid "Error message for the Phone field"
639
  msgstr ""
640
 
641
+ #: contact_form.php:910
642
+ #: contact_form.php:939
643
  msgid "Error message for the Subject field"
644
  msgstr ""
645
 
646
+ #: contact_form.php:911
647
+ #: contact_form.php:940
648
  msgid "Error message for the Message field"
649
  msgstr ""
650
 
651
+ #: contact_form.php:912
652
+ #: contact_form.php:941
653
  msgid "Error message about the file type for the Attachment field"
654
  msgstr ""
655
 
656
+ #: contact_form.php:913
657
+ #: contact_form.php:942
658
  msgid "Error message while uploading a file for the Attachment field to the server"
659
  msgstr ""
660
 
661
+ #: contact_form.php:914
662
+ #: contact_form.php:943
663
  msgid "Error message while moving the file for the Attachment field"
664
  msgstr ""
665
 
666
+ #: contact_form.php:915
667
+ #: contact_form.php:944
668
  msgid "Error message when file size limit for the Attachment field is exceeded"
669
  msgstr ""
670
 
671
+ #: contact_form.php:916
672
+ #: contact_form.php:945
673
  msgid "Error message for the Captcha field"
674
  msgstr ""
675
 
676
+ #: contact_form.php:917
677
+ #: contact_form.php:946
678
  msgid "Error message for the whole form"
679
  msgstr ""
680
 
681
+ #: contact_form.php:919
682
+ #: contact_form.php:948
683
+ #: contact_form.php:967
684
+ #: contact_form.php:973
685
  msgid "Use shortcode"
686
  msgstr ""
687
 
688
+ #: contact_form.php:919
689
+ #: contact_form.php:948
690
+ #: contact_form.php:967
691
+ #: contact_form.php:973
692
  msgid "for this language"
693
  msgstr ""
694
 
695
+ #: contact_form.php:955
696
  msgid "Action after email is sent"
697
  msgstr "Actiune dupa trimiterea mailului"
698
 
699
+ #: contact_form.php:957
700
  msgid "Display text"
701
  msgstr "Afisaza text"
702
 
703
+ #: contact_form.php:966
704
+ #: contact_form.php:972
705
  msgid "Text"
706
  msgstr "Text"
707
 
708
+ #: contact_form.php:979
709
  msgid "Redirect to the page"
710
  msgstr "Redirectioneaza la pagina"
711
 
712
+ #: contact_form.php:980
713
  msgid "Url"
714
  msgstr "Url"
715
 
716
+ #: contact_form.php:985
717
+ #: contact_form.php:1160
718
  msgid "Save Changes"
719
  msgstr "Salveaza schimbarile"
720
 
721
+ #: contact_form.php:1000
722
  #, fuzzy
723
  msgid "Contact Form Pro | Extra Settings"
724
  msgstr "Optiuni formular de contact"
725
 
726
+ #: contact_form.php:1007
727
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
728
  msgstr ""
729
 
730
+ #: contact_form.php:1014
731
  msgid "Errors output"
732
  msgstr ""
733
 
734
+ #: contact_form.php:1017
735
  msgid "Display error messages"
736
  msgstr ""
737
 
738
+ #: contact_form.php:1018
739
  msgid "Color of the input field errors."
740
  msgstr ""
741
 
742
+ #: contact_form.php:1019
743
  msgid "Display error messages & color of the input field errors"
744
  msgstr ""
745
 
746
+ #: contact_form.php:1024
747
  msgid "Add placeholder to the input blocks"
748
  msgstr ""
749
 
750
+ #: contact_form.php:1030
751
  #, fuzzy
752
  msgid "Add tooltips"
753
  msgstr "Optiuni aditionale"
754
 
755
+ #: contact_form.php:1044
756
  #, fuzzy
757
  msgid "Email address"
758
  msgstr "Adresa email:"
759
 
760
+ #: contact_form.php:1049
761
  msgid "Phone Number"
762
  msgstr ""
763
 
764
+ #: contact_form.php:1063
765
  #, fuzzy
766
  msgid "Attachment"
767
  msgstr "Atasament:"
768
 
769
+ #: contact_form.php:1073
770
  #, fuzzy
771
  msgid "Style options"
772
  msgstr "Optiuni aditionale"
773
 
774
+ #: contact_form.php:1076
775
  msgid "Text color"
776
  msgstr ""
777
 
778
+ #: contact_form.php:1079
779
+ #: contact_form.php:1084
780
+ #: contact_form.php:1094
781
+ #: contact_form.php:1099
782
+ #: contact_form.php:1104
783
+ #: contact_form.php:1109
784
+ #: contact_form.php:1119
785
+ #: contact_form.php:1124
786
+ #: contact_form.php:1130
787
+ #: contact_form.php:1141
788
+ #: contact_form.php:1146
789
+ #: contact_form.php:1151
790
  msgid "Default"
791
  msgstr ""
792
 
793
+ #: contact_form.php:1081
794
  msgid "Label text color"
795
  msgstr ""
796
 
797
+ #: contact_form.php:1086
798
  msgid "Placeholder color"
799
  msgstr ""
800
 
801
+ #: contact_form.php:1091
802
  msgid "Errors color"
803
  msgstr ""
804
 
805
+ #: contact_form.php:1096
806
  msgid "Error text color"
807
  msgstr ""
808
 
809
+ #: contact_form.php:1101
810
  msgid "Background color of the input field errors"
811
  msgstr ""
812
 
813
+ #: contact_form.php:1106
814
  msgid "Border color of the input field errors"
815
  msgstr ""
816
 
817
+ #: contact_form.php:1111
818
  msgid "Placeholder color of the input field errors"
819
  msgstr ""
820
 
821
+ #: contact_form.php:1116
822
  #, fuzzy
823
  msgid "Input fields"
824
  msgstr "Afisaza text"
825
 
826
+ #: contact_form.php:1121
827
  msgid "Input fields background color"
828
  msgstr ""
829
 
830
+ #: contact_form.php:1126
831
  msgid "Text fields color"
832
  msgstr ""
833
 
834
+ #: contact_form.php:1128
835
  msgid "Border width in px, numbers only"
836
  msgstr ""
837
 
838
+ #: contact_form.php:1132
839
+ #: contact_form.php:1153
840
  msgid "Border color"
841
  msgstr ""
842
 
843
+ #: contact_form.php:1137
844
  #, fuzzy
845
  msgid "Submit button"
846
  msgstr "Trimite"
847
 
848
+ #: contact_form.php:1139
849
  msgid "Width in px, numbers only"
850
  msgstr ""
851
 
852
+ #: contact_form.php:1143
853
  msgid "Button color"
854
  msgstr ""
855
 
856
+ #: contact_form.php:1148
857
  msgid "Button text color"
858
  msgstr ""
859
 
860
+ #: contact_form.php:1164
861
  #, fuzzy
862
  msgid "Contact Form Pro | Preview"
863
  msgstr "Formular de contact"
864
 
865
+ #: contact_form.php:1167
866
  msgid "Show with errors"
867
  msgstr ""
868
 
869
+ #: contact_form.php:1175
870
+ #: contact_form.php:1177
871
  msgid "Please enter your full name..."
872
  msgstr ""
873
 
874
+ #: contact_form.php:1188
875
+ #: contact_form.php:1190
876
  msgid "Please enter your address..."
877
  msgstr ""
878
 
879
+ #: contact_form.php:1199
880
+ #: contact_form.php:1201
881
  #, fuzzy
882
  msgid "Please enter your email address..."
883
  msgstr "Foloseste acest email:"
884
 
885
+ #: contact_form.php:1210
886
+ #: contact_form.php:1212
887
  msgid "Please enter your phone number..."
888
  msgstr ""
889
 
890
+ #: contact_form.php:1221
891
+ #: contact_form.php:1223
892
  msgid "Please enter subject..."
893
  msgstr ""
894
 
895
+ #: contact_form.php:1231
896
+ #: contact_form.php:1233
897
  msgid "Please enter your message..."
898
  msgstr ""
899
 
900
+ #: contact_form.php:1244
901
  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"
902
  msgstr ""
903
 
904
+ #: contact_form.php:1397
 
 
 
 
905
  msgid "You can attach the following file formats"
906
  msgstr "Puteti atasa fisiere de urmatoarele tipuri"
907
 
908
+ #: contact_form.php:1681
909
  msgid "Contact from"
910
  msgstr "Formular de contact"
911
 
912
+ #: contact_form.php:1694
913
  msgid "Email"
914
  msgstr "Email"
915
 
916
+ #: contact_form.php:1708
917
  msgid "Site"
918
  msgstr "Site"
919
 
920
+ #: contact_form.php:1758
921
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
922
  msgstr "Daca vedeti acest MIME atunci clientul dumneavoastra nu accepta tipuri MIME!"
923
 
924
+ #: contact_form.php:1809
925
  msgid "FAQ"
926
  msgstr "FAQ"
927
 
928
+ #: contact_form.php:1810
929
  msgid "Support"
930
  msgstr "Suport tehnic"
931
 
932
+ #: contact_form.php:1858
933
  msgid "Are you sure that you want to delete this language data?"
934
  msgstr ""
935
 
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: 2013-07-16 16:06+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:06+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,723 +16,882 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid "Pro plugins"
21
  msgstr "Pro плагины"
22
 
23
- #: contact_form.php:103
24
- #: contact_form.php:129
25
  msgid "Activated plugins"
26
  msgstr "Активированные плагины"
27
 
28
- #: contact_form.php:105
29
- #: contact_form.php:113
30
- #: contact_form.php:121
31
- #: contact_form.php:131
32
- #: contact_form.php:139
33
- #: contact_form.php:147
34
  msgid "Read more"
35
  msgstr "Читать далее"
36
 
37
- #: contact_form.php:105
38
- #: contact_form.php:131
39
- #: contact_form.php:543
40
- #: contact_form.php:791
41
- #: contact_form.php:1588
42
- #: contact_form.php:1597
43
  msgid "Settings"
44
  msgstr "Настройки"
45
 
46
- #: contact_form.php:111
47
- #: contact_form.php:137
48
  msgid "Installed plugins"
49
  msgstr "Установленные плагины"
50
 
51
- #: contact_form.php:119
52
- #: contact_form.php:145
53
  msgid "Recommended plugins"
54
  msgstr "Рекомендованные к установке плагины"
55
 
56
- #: contact_form.php:121
57
  msgid "Purchase"
58
  msgstr "Купить"
59
 
60
- #: contact_form.php:126
61
  msgid "Free plugins"
62
  msgstr "Бесплатные плагины"
63
 
64
- #: contact_form.php:147
65
  msgid "Download"
66
  msgstr "Скачать"
67
 
68
- #: contact_form.php:147
69
  #, php-format
70
  msgid "Install %s"
71
  msgstr "Установлено %s"
72
 
73
- #: contact_form.php:147
74
  msgid "Install now from wordpress.org"
75
  msgstr "Установить с wordpress.org"
76
 
77
- #: contact_form.php:152
78
  msgid "If you have any questions, please contact us via"
79
  msgstr "Если у вас есть какие-то вопросы, обращайтесь на"
80
 
81
- #: contact_form.php:161
82
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  msgid "Contact Form Settings"
84
  msgstr "Настройки Контактной Формы"
85
 
86
- #: contact_form.php:161
87
  msgid "Contact Form"
88
  msgstr "Контактная Форма"
89
 
90
- #: contact_form.php:162
91
  msgid "Contact Form Pro Extra Settings"
92
  msgstr "Extra Настройки Контактной Формы"
93
 
94
- #: contact_form.php:162
95
- #: contact_form.php:797
96
  msgid "Contact Form Pro"
97
  msgstr "Контактная Форма PRO"
98
 
99
- #: contact_form.php:201
100
- #: contact_form.php:686
101
- #: contact_form.php:715
102
  msgid "Name:"
103
  msgstr "Имя:"
104
 
105
- #: contact_form.php:202
106
- #: contact_form.php:687
107
- #: contact_form.php:716
108
  msgid "Address:"
109
  msgstr "Адрес:"
110
 
111
- #: contact_form.php:203
112
- #: contact_form.php:688
113
- #: contact_form.php:717
114
  msgid "Email Address:"
115
  msgstr "E-mail адрес:"
116
 
117
- #: contact_form.php:204
118
- #: contact_form.php:689
119
- #: contact_form.php:718
120
  msgid "Phone number:"
121
  msgstr "Телефон:"
122
 
123
- #: contact_form.php:205
124
- #: contact_form.php:690
125
- #: contact_form.php:719
126
  msgid "Subject:"
127
  msgstr "Тема:"
128
 
129
- #: contact_form.php:206
130
- #: contact_form.php:691
131
- #: contact_form.php:720
132
  msgid "Message:"
133
  msgstr "Сообщение:"
134
 
135
- #: contact_form.php:207
136
- #: contact_form.php:692
137
- #: contact_form.php:721
138
  msgid "Attachment:"
139
  msgstr "Прикрепить файл:"
140
 
141
- #: contact_form.php:208
142
- #: contact_form.php:263
143
- #: contact_form.php:693
144
- #: contact_form.php:722
145
  msgid "Send me a copy"
146
  msgstr "Отправить мне копию"
147
 
148
- #: contact_form.php:209
149
- #: contact_form.php:694
150
- #: contact_form.php:723
151
  msgid "Submit"
152
  msgstr "Отправить"
153
 
154
- #: contact_form.php:210
155
  msgid "Your name is required."
156
  msgstr "Ваше имя - это обязательное поле."
157
 
158
- #: contact_form.php:211
159
  msgid "Address is required."
160
  msgstr "Поле адреса - обязательное для заполнения."
161
 
162
- #: contact_form.php:212
163
  msgid "A valid email address is required."
164
  msgstr "Поле email адреса - обязательное для заполнения."
165
 
166
- #: contact_form.php:213
167
- #: contact_form.php:258
168
- #: contact_form.php:261
169
  msgid "Phone number is required."
170
  msgstr "Телефон - это обязательное поле."
171
 
172
- #: contact_form.php:214
173
- #: contact_form.php:257
174
- #: contact_form.php:260
175
  msgid "Subject is required."
176
  msgstr "Поле Тема - обязательное поле."
177
 
178
- #: contact_form.php:215
179
- #: contact_form.php:256
180
- #: contact_form.php:259
181
  msgid "Message text is required."
182
  msgstr "Поле Сообщение - обязательное поле."
183
 
184
- #: contact_form.php:216
185
  msgid "File format is not valid."
186
  msgstr "Прикрепленный тип файла не поддерживается"
187
 
188
- #: contact_form.php:217
189
  msgid "File upload error."
190
  msgstr "Ошибка загрузки файла."
191
 
192
- #: contact_form.php:218
193
  msgid "The file could not be uploaded."
194
  msgstr "Невозможно загрузить файл."
195
 
196
- #: contact_form.php:219
197
  msgid "This file is too large."
198
  msgstr "Размер файла слишком большой."
199
 
200
- #: contact_form.php:220
201
  msgid "Please fill out the CAPTCHA."
202
  msgstr "Пожалуйста, заполните КАПЧУ."
203
 
204
- #: contact_form.php:221
205
  msgid "Please make corrections below and try again."
206
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
207
 
208
- #: contact_form.php:223
209
- msgid "Thank you for contacting us."
210
- msgstr "Спасибо за контакт с нами."
211
-
212
- #: contact_form.php:494
213
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
214
  msgstr "Если опция 'Перейти на страницу \"выбран, то Урл поле должно быть заполнено в следующем формате"
215
 
216
- #: contact_form.php:503
217
  msgid "Such user does not exist. Settings are not saved."
218
  msgstr "Данный пользователь не найден. Настройки не сохранены"
219
 
220
- #: contact_form.php:508
221
- #: contact_form.php:514
222
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
223
  msgstr "Пожалуйста, введите корректный email для поля 'FROM'. Настройки не сохранены."
224
 
225
- #: contact_form.php:519
226
  msgid "Settings saved."
227
  msgstr "Опции сохранены."
228
 
229
- #: contact_form.php:544
230
- #: contact_form.php:792
231
  msgid "Extra settings"
232
  msgstr "Extra Настройки"
233
 
234
- #: contact_form.php:549
235
- #: contact_form.php:1048
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 "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста или виджета:"
238
 
239
- #: contact_form.php:550
240
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
241
  msgstr "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
242
 
243
- #: contact_form.php:554
244
  msgid "The user's email address:"
245
  msgstr "Email пользователя сайта:"
246
 
247
- #: contact_form.php:558
248
  msgid "Create a username"
249
  msgstr "Выберите имя пользователя"
250
 
251
- #: contact_form.php:563
252
  msgid "Enter a username of the person who should get the messages from the contact form."
253
  msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
254
 
255
- #: contact_form.php:567
256
  msgid "Use this email address:"
257
  msgstr "Использовать этот email:"
258
 
259
- #: contact_form.php:570
260
  msgid "Enter the email address you want the messages forwarded to."
261
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
262
 
263
- #: contact_form.php:574
264
  msgid "Additional options"
265
  msgstr "Дополнительные настройки"
266
 
267
- #: contact_form.php:577
268
  msgid "What to use?"
269
  msgstr "Что использовать?"
270
 
271
- #: contact_form.php:580
272
  msgid "Wp-mail"
273
  msgstr "Wp-mail"
274
 
275
- #: contact_form.php:581
276
  msgid "You can use the wp_mail function for mailing"
277
  msgstr "Для отправки почты вы можете использовать функцию WordPress wp_mail"
278
 
279
- #: contact_form.php:587
280
  msgid "Mail"
281
  msgstr "Mail"
282
 
283
- #: contact_form.php:588
284
  msgid "To send mail you can use the php mail function"
285
  msgstr "Для отправки почты вы можете использовать функцию php mail"
286
 
287
- #: contact_form.php:592
288
  msgid "Change text of the 'FROM' field"
289
  msgstr "Изменить текст для поля ОТ в письме"
290
 
291
- #: contact_form.php:598
292
  msgid "Enter the email address in the 'From' field"
293
  msgstr "Выберите email для поля 'FROM' письма"
294
 
295
- #: contact_form.php:600
296
  msgid "User email"
297
  msgstr "Емейл"
298
 
299
- #: contact_form.php:600
300
  msgid "The email address of the user who fills the form will be used in the field 'From'."
301
  msgstr "В поле \"From\" в письме будет использоваться электронная почта того пользователя, который заполняет форму."
302
 
303
- #: contact_form.php:602
304
  msgid "This email address will be used in the 'From' field."
305
  msgstr "В поле \"From\" в письме будет использоваться данная электронная почта."
306
 
307
- #: contact_form.php:606
308
  msgid "Display fields"
309
  msgstr "Отобразить поля"
310
 
311
- #: contact_form.php:608
312
- #: contact_form.php:638
313
- #: contact_form.php:828
314
- #: contact_form.php:1480
315
  msgid "Address"
316
  msgstr "Адрес"
317
 
318
- #: contact_form.php:609
319
- #: contact_form.php:640
320
- #: contact_form.php:1488
321
  msgid "Phone"
322
  msgstr "Телефон"
323
 
324
- #: contact_form.php:610
325
  msgid "Attachment block"
326
  msgstr "Блок Прикрепить файл"
327
 
328
- #: contact_form.php:610
329
  msgid "Users can attach the following file formats"
330
  msgstr "Пользователи могут прикрепить файлы таких типов"
331
 
332
- #: contact_form.php:611
333
  msgid "Tips below the Attachment block"
334
  msgstr "Пояснения после блока Прикрепить файл"
335
 
336
- #: contact_form.php:612
337
  msgid "Send me a copy block"
338
  msgstr "Блок Отправить мне копию"
339
 
340
- #: contact_form.php:624
341
- #: contact_form.php:627
342
- #: contact_form.php:630
343
- #: contact_form.php:857
344
  msgid "Captcha"
345
  msgstr "КАПЧА"
346
 
347
- #: contact_form.php:624
348
- #: contact_form.php:627
349
- #: contact_form.php:630
350
- #: contact_form.php:857
351
  msgid "(powered by bestwebsoft.com)"
352
  msgstr "(powered by bestwebsoft.com)"
353
 
354
- #: contact_form.php:627
355
  msgid "Activate captcha"
356
  msgstr "Активировать Капчу"
357
 
358
- #: contact_form.php:630
359
  msgid "Download captcha"
360
  msgstr "Скачать Капчу"
361
 
362
- #: contact_form.php:635
363
  msgid "Required fields"
364
  msgstr "Обязательные поля"
365
 
366
- #: contact_form.php:637
367
- #: contact_form.php:823
368
- #: contact_form.php:1475
369
  msgid "Name"
370
  msgstr "Имя"
371
 
372
- #: contact_form.php:639
373
  msgid "Email Address"
374
  msgstr "Email адрес"
375
 
376
- #: contact_form.php:641
377
- #: contact_form.php:843
378
- #: contact_form.php:1491
379
  msgid "Subject"
380
  msgstr "Тема"
381
 
382
- #: contact_form.php:642
383
- #: contact_form.php:847
384
- #: contact_form.php:1494
385
  msgid "Message"
386
  msgstr "Сообщение"
387
 
388
- #: contact_form.php:646
389
  msgid "Display additional info in the email"
390
  msgstr "Отображение дополнительной информации в письме"
391
 
392
- #: contact_form.php:651
393
- #: contact_form.php:1447
394
  msgid "Sent from (ip address)"
395
  msgstr "Отправлено от (ip адрес)"
396
 
397
- #: contact_form.php:652
398
- #: contact_form.php:1452
399
  msgid "Date/Time"
400
  msgstr "Дата/Время"
401
 
402
- #: contact_form.php:653
403
- #: contact_form.php:1457
404
  msgid "Sent from (referer)"
405
  msgstr "Пришло из (реферер)"
406
 
407
- #: contact_form.php:654
408
- #: contact_form.php:1462
409
  msgid "Using (user agent)"
410
  msgstr "Используя (user agent)"
411
 
412
- #: contact_form.php:658
413
  msgid "Language settings for the field names in the form"
414
  msgstr "Языковые настройки для названия полей в форме"
415
 
416
- #: contact_form.php:667
417
  msgid "Add a language"
418
  msgstr "Добавить язык"
419
 
420
- #: contact_form.php:671
421
  msgid "Change the names of the contact form fields and error messages"
422
  msgstr "Изменить названия полей контактной формы и сообщений об ошибках"
423
 
424
- #: contact_form.php:676
425
- #: contact_form.php:747
426
  msgid "English"
427
  msgstr "Английский"
428
 
429
- #: contact_form.php:695
430
- #: contact_form.php:724
431
  msgid "Error message for the Name field"
432
  msgstr "Сообщение об ошибке для поля Name"
433
 
434
- #: contact_form.php:696
435
- #: contact_form.php:725
436
  msgid "Error message for the Address field"
437
  msgstr "Сообщение об ошибке для поля Address"
438
 
439
- #: contact_form.php:697
440
- #: contact_form.php:726
441
  msgid "Error message for the Email field"
442
  msgstr "Сообщение об ошибке для поля Email"
443
 
444
- #: contact_form.php:698
445
- #: contact_form.php:727
446
  msgid "Error message for the Phone field"
447
  msgstr "Сообщение об ошибке для поля Phone"
448
 
449
- #: contact_form.php:699
450
- #: contact_form.php:728
451
  msgid "Error message for the Subject field"
452
  msgstr "Сообщение об ошибке для поля Subject"
453
 
454
- #: contact_form.php:700
455
- #: contact_form.php:729
456
  msgid "Error message for the Message field"
457
  msgstr "Сообщение об ошибке для поля Message"
458
 
459
- #: contact_form.php:701
460
- #: contact_form.php:730
461
  msgid "Error message about the file type for the Attachment field"
462
  msgstr "Сообщение об ошибке о типе файла для поля Attachment"
463
 
464
- #: contact_form.php:702
465
- #: contact_form.php:731
466
  msgid "Error message while uploading a file for the Attachment field to the server"
467
  msgstr "Сообщение об ошибке при загрузке файла на сервер для поля Attachment"
468
 
469
- #: contact_form.php:703
470
- #: contact_form.php:732
471
  msgid "Error message while moving the file for the Attachment field"
472
  msgstr "Сообщение об ошибке при перемещении файла для поля Attachment"
473
 
474
- #: contact_form.php:704
475
- #: contact_form.php:733
476
  msgid "Error message when file size limit for the Attachment field is exceeded"
477
  msgstr "Сообщение об ошибке когда размер файла превышает размер разрешенного сервером для поля Attachment"
478
 
479
- #: contact_form.php:705
480
- #: contact_form.php:734
481
  msgid "Error message for the Captcha field"
482
  msgstr "Сообщение об ошибке для поля Captcha"
483
 
484
- #: contact_form.php:706
485
- #: contact_form.php:735
486
  msgid "Error message for the whole form"
487
  msgstr "Сообщение об ошибке для всей формы"
488
 
489
- #: contact_form.php:708
490
- #: contact_form.php:737
491
- #: contact_form.php:756
492
- #: contact_form.php:762
493
  msgid "Use shortcode"
494
  msgstr "Использовать шорткод"
495
 
496
- #: contact_form.php:708
497
- #: contact_form.php:737
498
- #: contact_form.php:756
499
- #: contact_form.php:762
500
  msgid "for this language"
501
  msgstr "для данного языка"
502
 
503
- #: contact_form.php:744
504
  msgid "Action after email is sent"
505
  msgstr "Действие после отправки письма"
506
 
507
- #: contact_form.php:746
508
  msgid "Display text"
509
  msgstr "Отобразить текст"
510
 
511
- #: contact_form.php:755
512
- #: contact_form.php:761
513
  msgid "Text"
514
  msgstr "Текст"
515
 
516
- #: contact_form.php:768
517
  msgid "Redirect to the page"
518
  msgstr "Перенаправление на страницу"
519
 
520
- #: contact_form.php:769
521
  msgid "Url"
522
  msgstr "Урл"
523
 
524
- #: contact_form.php:774
525
- #: contact_form.php:949
526
  msgid "Save Changes"
527
  msgstr "Save Changes"
528
 
529
- #: contact_form.php:789
530
  msgid "Contact Form Pro | Extra Settings"
531
  msgstr "Contact Form Pro | Extra Настройки"
532
 
533
- #: contact_form.php:796
534
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
535
  msgstr "Данный функционал доступен в Pro версии плагина. Для детальной информации перейдите по ссылке"
536
 
537
- #: contact_form.php:803
538
  msgid "Errors output"
539
  msgstr "Отображение ошибок"
540
 
541
- #: contact_form.php:806
542
  msgid "Display error messages"
543
  msgstr "Отображать сообщения об ошибках"
544
 
545
- #: contact_form.php:807
546
  msgid "Color of the input field errors."
547
  msgstr "Отображать ошибки цветом для полей ввода"
548
 
549
- #: contact_form.php:808
550
  msgid "Display error messages & color of the input field errors"
551
  msgstr "Отображать сообщения об ошибках & цвет полей ввода с ошибками"
552
 
553
- #: contact_form.php:813
554
  msgid "Add placeholder to the input blocks"
555
  msgstr "Добавить вспомогательный текст в поля ввода"
556
 
557
- #: contact_form.php:819
558
  msgid "Add tooltips"
559
  msgstr "Добавить подсказки"
560
 
561
- #: contact_form.php:833
562
  msgid "Email address"
563
  msgstr "Email адрес"
564
 
565
- #: contact_form.php:838
566
  msgid "Phone Number"
567
  msgstr "Телефон"
568
 
569
- #: contact_form.php:852
570
  msgid "Attachment"
571
  msgstr "Прикрепить файл"
572
 
573
- #: contact_form.php:862
574
  msgid "Style options"
575
  msgstr "Настройки стиля"
576
 
577
- #: contact_form.php:865
578
  msgid "Text color"
579
  msgstr "Цвет текста"
580
 
581
- #: contact_form.php:868
582
- #: contact_form.php:873
583
- #: contact_form.php:883
584
- #: contact_form.php:888
585
- #: contact_form.php:893
586
- #: contact_form.php:898
587
- #: contact_form.php:908
588
- #: contact_form.php:913
589
- #: contact_form.php:919
590
- #: contact_form.php:930
591
- #: contact_form.php:935
592
- #: contact_form.php:940
593
  msgid "Default"
594
  msgstr "По-умолчанию"
595
 
596
- #: contact_form.php:870
597
  msgid "Label text color"
598
  msgstr "Цвет текста"
599
 
600
- #: contact_form.php:875
601
  msgid "Placeholder color"
602
  msgstr "Цвет замещающегося текста"
603
 
604
- #: contact_form.php:880
605
  msgid "Errors color"
606
  msgstr "Цвет ошибок"
607
 
608
- #: contact_form.php:885
609
  msgid "Error text color"
610
  msgstr "Цвет текста для ошибок"
611
 
612
- #: contact_form.php:890
613
  msgid "Background color of the input field errors"
614
  msgstr "Цвет фона для полей ввода с ошибками"
615
 
616
- #: contact_form.php:895
617
  msgid "Border color of the input field errors"
618
  msgstr "Цвет рамки для полей ввода с ошибками"
619
 
620
- #: contact_form.php:900
621
  msgid "Placeholder color of the input field errors"
622
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
623
 
624
- #: contact_form.php:905
625
  msgid "Input fields"
626
  msgstr "Поля ввода"
627
 
628
- #: contact_form.php:910
629
  msgid "Input fields background color"
630
  msgstr "Цвет фона для полей ввода"
631
 
632
- #: contact_form.php:915
633
  msgid "Text fields color"
634
  msgstr "Цвет текста для полей ввода"
635
 
636
- #: contact_form.php:917
637
  msgid "Border width in px, numbers only"
638
  msgstr "Ширина рамки в пикселях, только цифры"
639
 
640
- #: contact_form.php:921
641
- #: contact_form.php:942
642
  msgid "Border color"
643
  msgstr "Цвет рамки"
644
 
645
- #: contact_form.php:926
646
  msgid "Submit button"
647
  msgstr "Кнопка Отправить"
648
 
649
- #: contact_form.php:928
650
  msgid "Width in px, numbers only"
651
  msgstr "Ширина в пикселях, только цифры"
652
 
653
- #: contact_form.php:932
654
  msgid "Button color"
655
  msgstr "Цвет кнопки"
656
 
657
- #: contact_form.php:937
658
  msgid "Button text color"
659
  msgstr "Цвет текста для кнопки"
660
 
661
- #: contact_form.php:953
662
  msgid "Contact Form Pro | Preview"
663
  msgstr "Contact Form Pro | Предпросмотр"
664
 
665
- #: contact_form.php:956
666
  msgid "Show with errors"
667
  msgstr "Отображать с ошибками"
668
 
669
- #: contact_form.php:964
670
- #: contact_form.php:966
671
  msgid "Please enter your full name..."
672
  msgstr "Пожалуйста введите ваше имя..."
673
 
674
- #: contact_form.php:977
675
- #: contact_form.php:979
676
  msgid "Please enter your address..."
677
  msgstr "Пожалуйста введите ваш адресс..."
678
 
679
- #: contact_form.php:988
680
- #: contact_form.php:990
681
  msgid "Please enter your email address..."
682
  msgstr "Пожалуйста введите ваш email..."
683
 
684
- #: contact_form.php:999
685
- #: contact_form.php:1001
686
  msgid "Please enter your phone number..."
687
  msgstr "Пожалуйста введите ваш телефон..."
688
 
689
- #: contact_form.php:1010
690
- #: contact_form.php:1012
691
  msgid "Please enter subject..."
692
  msgstr "Пожалуйста введите тему..."
693
 
694
- #: contact_form.php:1020
695
- #: contact_form.php:1022
696
  msgid "Please enter your message..."
697
  msgstr "Пожалуйста введите ваше сообщение..."
698
 
699
- #: contact_form.php:1033
700
  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"
701
  msgstr "Поддерживаемые типы файлов: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Максимальный размер файла: 2 МБ"
702
 
703
- #: contact_form.php:1102
704
- msgid "Sorry, email message could not be delivered."
705
- msgstr "Извините, ваш email не может быть отправлен."
706
-
707
- #: contact_form.php:1186
708
  msgid "You can attach the following file formats"
709
  msgstr "Пользователи могут прикрепить файлы таких типов"
710
 
711
- #: contact_form.php:1470
712
  msgid "Contact from"
713
  msgstr "Контактная Форма"
714
 
715
- #: contact_form.php:1483
716
  msgid "Email"
717
  msgstr "Email"
718
 
719
- #: contact_form.php:1497
720
  msgid "Site"
721
  msgstr "Сайт"
722
 
723
- #: contact_form.php:1547
724
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
725
  msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
726
 
727
- #: contact_form.php:1598
728
  msgid "FAQ"
729
  msgstr "FAQ"
730
 
731
- #: contact_form.php:1599
732
  msgid "Support"
733
  msgstr "Поддержка"
734
 
735
- #: contact_form.php:1647
736
  msgid "Are you sure that you want to delete this language data?"
737
  msgstr "Вы действительно хотите удалить данные для этого языка?"
738
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:58+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 17:01+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr "Не задан"
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr "Вкл"
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr "Вкл"
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr "Неизвестно"
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr " Mb"
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr "Да"
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr "Нет"
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr "Операционная система"
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr "Тип сервера"
67
+
68
+ #: contact_form.php:173
69
+ msgid "Memory usage"
70
+ msgstr "Памяти использовано"
71
+
72
+ #: contact_form.php:174
73
+ msgid "MYSQL Version"
74
+ msgstr "Версия MYSQL"
75
+
76
+ #: contact_form.php:175
77
+ msgid "SQL Mode"
78
+ msgstr "Режим SQL"
79
+
80
+ #: contact_form.php:176
81
+ msgid "PHP Version"
82
+ msgstr "Версия PHP"
83
+
84
+ #: contact_form.php:177
85
+ msgid "PHP Safe Mode"
86
+ msgstr "PHP Safe Mode"
87
+
88
+ #: contact_form.php:178
89
+ msgid "PHP Allow URL fopen"
90
+ msgstr "PHP Allow URL fopen"
91
+
92
+ #: contact_form.php:179
93
+ msgid "PHP Memory Limit"
94
+ msgstr "Лимит памяти"
95
+
96
+ #: contact_form.php:180
97
+ msgid "PHP Max Upload Size"
98
+ msgstr "Макс. размер загружаемого файла"
99
+
100
+ #: contact_form.php:181
101
+ msgid "PHP Max Post Size"
102
+ msgstr "Макс. размер записи"
103
+
104
+ #: contact_form.php:182
105
+ msgid "PHP Max Script Execute Time"
106
+ msgstr "Макс. время выполнения сценария"
107
+
108
+ #: contact_form.php:183
109
+ msgid "PHP Exif support"
110
+ msgstr "Поддержка PHP Exif"
111
+
112
+ #: contact_form.php:184
113
+ msgid "PHP IPTC support"
114
+ msgstr "Поддержка PHP IPTC"
115
+
116
+ #: contact_form.php:185
117
+ msgid "PHP XML support"
118
+ msgstr "Поддержка PHP XML"
119
+
120
+ #: contact_form.php:186
121
+ msgid "Site URL"
122
+ msgstr "Адрес сайта"
123
+
124
+ #: contact_form.php:187
125
+ msgid "Home URL"
126
+ msgstr "Основной адрес сайта"
127
+
128
+ #: contact_form.php:188
129
+ msgid "WordPress Version"
130
+ msgstr "Версия WordPress"
131
+
132
+ #: contact_form.php:189
133
+ msgid "WordPress DB Version"
134
+ msgstr "Версия базы данных WordPress"
135
+
136
+ #: contact_form.php:190
137
+ msgid "Multisite"
138
+ msgstr "Мультиблог"
139
+
140
+ #: contact_form.php:191
141
+ msgid "Active Theme"
142
+ msgstr "Текущая тема"
143
+
144
+ #: contact_form.php:206
145
+ msgid "Please enter a valid email address."
146
+ msgstr "Пожалуйста, введите валидный email."
147
+
148
+ #: contact_form.php:210
149
+ msgid "Email with system info is sent to "
150
+ msgstr "E-mail с системной информацией отправлен на"
151
+
152
+ #: contact_form.php:214
153
+ #: contact_form.php:434
154
+ msgid "Thank you for contacting us."
155
+ msgstr "Спасибо за контакт с нами."
156
+
157
+ #: contact_form.php:242
158
+ #: contact_form.php:1313
159
+ msgid "Sorry, email message could not be delivered."
160
+ msgstr "Извините, ваш email не может быть отправлен."
161
+
162
+ #: contact_form.php:250
163
  msgid "Pro plugins"
164
  msgstr "Pro плагины"
165
 
166
+ #: contact_form.php:253
167
+ #: contact_form.php:279
168
  msgid "Activated plugins"
169
  msgstr "Активированные плагины"
170
 
171
+ #: contact_form.php:255
172
+ #: contact_form.php:263
173
+ #: contact_form.php:271
174
+ #: contact_form.php:281
175
+ #: contact_form.php:289
176
+ #: contact_form.php:297
177
  msgid "Read more"
178
  msgstr "Читать далее"
179
 
180
+ #: contact_form.php:255
181
+ #: contact_form.php:281
182
+ #: contact_form.php:754
183
+ #: contact_form.php:1002
184
+ #: contact_form.php:1799
185
+ #: contact_form.php:1808
186
  msgid "Settings"
187
  msgstr "Настройки"
188
 
189
+ #: contact_form.php:261
190
+ #: contact_form.php:287
191
  msgid "Installed plugins"
192
  msgstr "Установленные плагины"
193
 
194
+ #: contact_form.php:269
195
+ #: contact_form.php:295
196
  msgid "Recommended plugins"
197
  msgstr "Рекомендованные к установке плагины"
198
 
199
+ #: contact_form.php:271
200
  msgid "Purchase"
201
  msgstr "Купить"
202
 
203
+ #: contact_form.php:276
204
  msgid "Free plugins"
205
  msgstr "Бесплатные плагины"
206
 
207
+ #: contact_form.php:297
208
  msgid "Download"
209
  msgstr "Скачать"
210
 
211
+ #: contact_form.php:297
212
  #, php-format
213
  msgid "Install %s"
214
  msgstr "Установлено %s"
215
 
216
+ #: contact_form.php:297
217
  msgid "Install now from wordpress.org"
218
  msgstr "Установить с wordpress.org"
219
 
220
+ #: contact_form.php:302
221
  msgid "If you have any questions, please contact us via"
222
  msgstr "Если у вас есть какие-то вопросы, обращайтесь на"
223
 
224
+ #: contact_form.php:309
225
+ msgid "System status"
226
+ msgstr "Системная информация"
227
+
228
+ #: contact_form.php:313
229
+ msgid "Environment"
230
+ msgstr "Системная среда"
231
+
232
+ #: contact_form.php:324
233
+ msgid "Active Plugins"
234
+ msgstr "Активированные плагины"
235
+
236
+ #: contact_form.php:335
237
+ msgid "Inactive Plugins"
238
+ msgstr "Неактивированные плагины"
239
+
240
+ #: contact_form.php:349
241
+ msgid "Send to support"
242
+ msgstr "Отправить в тех.поддержку"
243
+
244
+ #: contact_form.php:356
245
+ msgid "Send to custom email &#187;"
246
+ msgstr "Отправить на емейл &#187;"
247
+
248
+ #: contact_form.php:372
249
+ #: contact_form.php:750
250
  msgid "Contact Form Settings"
251
  msgstr "Настройки Контактной Формы"
252
 
253
+ #: contact_form.php:372
254
  msgid "Contact Form"
255
  msgstr "Контактная Форма"
256
 
257
+ #: contact_form.php:373
258
  msgid "Contact Form Pro Extra Settings"
259
  msgstr "Extra Настройки Контактной Формы"
260
 
261
+ #: contact_form.php:373
262
+ #: contact_form.php:1008
263
  msgid "Contact Form Pro"
264
  msgstr "Контактная Форма PRO"
265
 
266
+ #: contact_form.php:412
267
+ #: contact_form.php:897
268
+ #: contact_form.php:926
269
  msgid "Name:"
270
  msgstr "Имя:"
271
 
272
+ #: contact_form.php:413
273
+ #: contact_form.php:898
274
+ #: contact_form.php:927
275
  msgid "Address:"
276
  msgstr "Адрес:"
277
 
278
+ #: contact_form.php:414
279
+ #: contact_form.php:899
280
+ #: contact_form.php:928
281
  msgid "Email Address:"
282
  msgstr "E-mail адрес:"
283
 
284
+ #: contact_form.php:415
285
+ #: contact_form.php:900
286
+ #: contact_form.php:929
287
  msgid "Phone number:"
288
  msgstr "Телефон:"
289
 
290
+ #: contact_form.php:416
291
+ #: contact_form.php:901
292
+ #: contact_form.php:930
293
  msgid "Subject:"
294
  msgstr "Тема:"
295
 
296
+ #: contact_form.php:417
297
+ #: contact_form.php:902
298
+ #: contact_form.php:931
299
  msgid "Message:"
300
  msgstr "Сообщение:"
301
 
302
+ #: contact_form.php:418
303
+ #: contact_form.php:903
304
+ #: contact_form.php:932
305
  msgid "Attachment:"
306
  msgstr "Прикрепить файл:"
307
 
308
+ #: contact_form.php:419
309
+ #: contact_form.php:474
310
+ #: contact_form.php:904
311
+ #: contact_form.php:933
312
  msgid "Send me a copy"
313
  msgstr "Отправить мне копию"
314
 
315
+ #: contact_form.php:420
316
+ #: contact_form.php:905
317
+ #: contact_form.php:934
318
  msgid "Submit"
319
  msgstr "Отправить"
320
 
321
+ #: contact_form.php:421
322
  msgid "Your name is required."
323
  msgstr "Ваше имя - это обязательное поле."
324
 
325
+ #: contact_form.php:422
326
  msgid "Address is required."
327
  msgstr "Поле адреса - обязательное для заполнения."
328
 
329
+ #: contact_form.php:423
330
  msgid "A valid email address is required."
331
  msgstr "Поле email адреса - обязательное для заполнения."
332
 
333
+ #: contact_form.php:424
334
+ #: contact_form.php:469
335
+ #: contact_form.php:472
336
  msgid "Phone number is required."
337
  msgstr "Телефон - это обязательное поле."
338
 
339
+ #: contact_form.php:425
340
+ #: contact_form.php:468
341
+ #: contact_form.php:471
342
  msgid "Subject is required."
343
  msgstr "Поле Тема - обязательное поле."
344
 
345
+ #: contact_form.php:426
346
+ #: contact_form.php:467
347
+ #: contact_form.php:470
348
  msgid "Message text is required."
349
  msgstr "Поле Сообщение - обязательное поле."
350
 
351
+ #: contact_form.php:427
352
  msgid "File format is not valid."
353
  msgstr "Прикрепленный тип файла не поддерживается"
354
 
355
+ #: contact_form.php:428
356
  msgid "File upload error."
357
  msgstr "Ошибка загрузки файла."
358
 
359
+ #: contact_form.php:429
360
  msgid "The file could not be uploaded."
361
  msgstr "Невозможно загрузить файл."
362
 
363
+ #: contact_form.php:430
364
  msgid "This file is too large."
365
  msgstr "Размер файла слишком большой."
366
 
367
+ #: contact_form.php:431
368
  msgid "Please fill out the CAPTCHA."
369
  msgstr "Пожалуйста, заполните КАПЧУ."
370
 
371
+ #: contact_form.php:432
372
  msgid "Please make corrections below and try again."
373
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
374
 
375
+ #: contact_form.php:705
 
 
 
 
376
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
377
  msgstr "Если опция 'Перейти на страницу \"выбран, то Урл поле должно быть заполнено в следующем формате"
378
 
379
+ #: contact_form.php:714
380
  msgid "Such user does not exist. Settings are not saved."
381
  msgstr "Данный пользователь не найден. Настройки не сохранены"
382
 
383
+ #: contact_form.php:719
384
+ #: contact_form.php:725
385
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
386
  msgstr "Пожалуйста, введите корректный email для поля 'FROM'. Настройки не сохранены."
387
 
388
+ #: contact_form.php:730
389
  msgid "Settings saved."
390
  msgstr "Опции сохранены."
391
 
392
+ #: contact_form.php:755
393
+ #: contact_form.php:1003
394
  msgid "Extra settings"
395
  msgstr "Extra Настройки"
396
 
397
+ #: contact_form.php:760
398
+ #: contact_form.php:1259
399
  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:"
400
  msgstr "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста или виджета:"
401
 
402
+ #: contact_form.php:761
403
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
404
  msgstr "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
405
 
406
+ #: contact_form.php:765
407
  msgid "The user's email address:"
408
  msgstr "Email пользователя сайта:"
409
 
410
+ #: contact_form.php:769
411
  msgid "Create a username"
412
  msgstr "Выберите имя пользователя"
413
 
414
+ #: contact_form.php:774
415
  msgid "Enter a username of the person who should get the messages from the contact form."
416
  msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
417
 
418
+ #: contact_form.php:778
419
  msgid "Use this email address:"
420
  msgstr "Использовать этот email:"
421
 
422
+ #: contact_form.php:781
423
  msgid "Enter the email address you want the messages forwarded to."
424
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
425
 
426
+ #: contact_form.php:785
427
  msgid "Additional options"
428
  msgstr "Дополнительные настройки"
429
 
430
+ #: contact_form.php:788
431
  msgid "What to use?"
432
  msgstr "Что использовать?"
433
 
434
+ #: contact_form.php:791
435
  msgid "Wp-mail"
436
  msgstr "Wp-mail"
437
 
438
+ #: contact_form.php:792
439
  msgid "You can use the wp_mail function for mailing"
440
  msgstr "Для отправки почты вы можете использовать функцию WordPress wp_mail"
441
 
442
+ #: contact_form.php:798
443
  msgid "Mail"
444
  msgstr "Mail"
445
 
446
+ #: contact_form.php:799
447
  msgid "To send mail you can use the php mail function"
448
  msgstr "Для отправки почты вы можете использовать функцию php mail"
449
 
450
+ #: contact_form.php:803
451
  msgid "Change text of the 'FROM' field"
452
  msgstr "Изменить текст для поля ОТ в письме"
453
 
454
+ #: contact_form.php:809
455
  msgid "Enter the email address in the 'From' field"
456
  msgstr "Выберите email для поля 'FROM' письма"
457
 
458
+ #: contact_form.php:811
459
  msgid "User email"
460
  msgstr "Емейл"
461
 
462
+ #: contact_form.php:811
463
  msgid "The email address of the user who fills the form will be used in the field 'From'."
464
  msgstr "В поле \"From\" в письме будет использоваться электронная почта того пользователя, который заполняет форму."
465
 
466
+ #: contact_form.php:813
467
  msgid "This email address will be used in the 'From' field."
468
  msgstr "В поле \"From\" в письме будет использоваться данная электронная почта."
469
 
470
+ #: contact_form.php:817
471
  msgid "Display fields"
472
  msgstr "Отобразить поля"
473
 
474
+ #: contact_form.php:819
475
+ #: contact_form.php:849
476
+ #: contact_form.php:1039
477
+ #: contact_form.php:1691
478
  msgid "Address"
479
  msgstr "Адрес"
480
 
481
+ #: contact_form.php:820
482
+ #: contact_form.php:851
483
+ #: contact_form.php:1699
484
  msgid "Phone"
485
  msgstr "Телефон"
486
 
487
+ #: contact_form.php:821
488
  msgid "Attachment block"
489
  msgstr "Блок Прикрепить файл"
490
 
491
+ #: contact_form.php:821
492
  msgid "Users can attach the following file formats"
493
  msgstr "Пользователи могут прикрепить файлы таких типов"
494
 
495
+ #: contact_form.php:822
496
  msgid "Tips below the Attachment block"
497
  msgstr "Пояснения после блока Прикрепить файл"
498
 
499
+ #: contact_form.php:823
500
  msgid "Send me a copy block"
501
  msgstr "Блок Отправить мне копию"
502
 
503
+ #: contact_form.php:835
504
+ #: contact_form.php:838
505
+ #: contact_form.php:841
506
+ #: contact_form.php:1068
507
  msgid "Captcha"
508
  msgstr "КАПЧА"
509
 
510
+ #: contact_form.php:835
511
+ #: contact_form.php:838
512
+ #: contact_form.php:841
513
+ #: contact_form.php:1068
514
  msgid "(powered by bestwebsoft.com)"
515
  msgstr "(powered by bestwebsoft.com)"
516
 
517
+ #: contact_form.php:838
518
  msgid "Activate captcha"
519
  msgstr "Активировать Капчу"
520
 
521
+ #: contact_form.php:841
522
  msgid "Download captcha"
523
  msgstr "Скачать Капчу"
524
 
525
+ #: contact_form.php:846
526
  msgid "Required fields"
527
  msgstr "Обязательные поля"
528
 
529
+ #: contact_form.php:848
530
+ #: contact_form.php:1034
531
+ #: contact_form.php:1686
532
  msgid "Name"
533
  msgstr "Имя"
534
 
535
+ #: contact_form.php:850
536
  msgid "Email Address"
537
  msgstr "Email адрес"
538
 
539
+ #: contact_form.php:852
540
+ #: contact_form.php:1054
541
+ #: contact_form.php:1702
542
  msgid "Subject"
543
  msgstr "Тема"
544
 
545
+ #: contact_form.php:853
546
+ #: contact_form.php:1058
547
+ #: contact_form.php:1705
548
  msgid "Message"
549
  msgstr "Сообщение"
550
 
551
+ #: contact_form.php:857
552
  msgid "Display additional info in the email"
553
  msgstr "Отображение дополнительной информации в письме"
554
 
555
+ #: contact_form.php:862
556
+ #: contact_form.php:1658
557
  msgid "Sent from (ip address)"
558
  msgstr "Отправлено от (ip адрес)"
559
 
560
+ #: contact_form.php:863
561
+ #: contact_form.php:1663
562
  msgid "Date/Time"
563
  msgstr "Дата/Время"
564
 
565
+ #: contact_form.php:864
566
+ #: contact_form.php:1668
567
  msgid "Sent from (referer)"
568
  msgstr "Пришло из (реферер)"
569
 
570
+ #: contact_form.php:865
571
+ #: contact_form.php:1673
572
  msgid "Using (user agent)"
573
  msgstr "Используя (user agent)"
574
 
575
+ #: contact_form.php:869
576
  msgid "Language settings for the field names in the form"
577
  msgstr "Языковые настройки для названия полей в форме"
578
 
579
+ #: contact_form.php:878
580
  msgid "Add a language"
581
  msgstr "Добавить язык"
582
 
583
+ #: contact_form.php:882
584
  msgid "Change the names of the contact form fields and error messages"
585
  msgstr "Изменить названия полей контактной формы и сообщений об ошибках"
586
 
587
+ #: contact_form.php:887
588
+ #: contact_form.php:958
589
  msgid "English"
590
  msgstr "Английский"
591
 
592
+ #: contact_form.php:906
593
+ #: contact_form.php:935
594
  msgid "Error message for the Name field"
595
  msgstr "Сообщение об ошибке для поля Name"
596
 
597
+ #: contact_form.php:907
598
+ #: contact_form.php:936
599
  msgid "Error message for the Address field"
600
  msgstr "Сообщение об ошибке для поля Address"
601
 
602
+ #: contact_form.php:908
603
+ #: contact_form.php:937
604
  msgid "Error message for the Email field"
605
  msgstr "Сообщение об ошибке для поля Email"
606
 
607
+ #: contact_form.php:909
608
+ #: contact_form.php:938
609
  msgid "Error message for the Phone field"
610
  msgstr "Сообщение об ошибке для поля Phone"
611
 
612
+ #: contact_form.php:910
613
+ #: contact_form.php:939
614
  msgid "Error message for the Subject field"
615
  msgstr "Сообщение об ошибке для поля Subject"
616
 
617
+ #: contact_form.php:911
618
+ #: contact_form.php:940
619
  msgid "Error message for the Message field"
620
  msgstr "Сообщение об ошибке для поля Message"
621
 
622
+ #: contact_form.php:912
623
+ #: contact_form.php:941
624
  msgid "Error message about the file type for the Attachment field"
625
  msgstr "Сообщение об ошибке о типе файла для поля Attachment"
626
 
627
+ #: contact_form.php:913
628
+ #: contact_form.php:942
629
  msgid "Error message while uploading a file for the Attachment field to the server"
630
  msgstr "Сообщение об ошибке при загрузке файла на сервер для поля Attachment"
631
 
632
+ #: contact_form.php:914
633
+ #: contact_form.php:943
634
  msgid "Error message while moving the file for the Attachment field"
635
  msgstr "Сообщение об ошибке при перемещении файла для поля Attachment"
636
 
637
+ #: contact_form.php:915
638
+ #: contact_form.php:944
639
  msgid "Error message when file size limit for the Attachment field is exceeded"
640
  msgstr "Сообщение об ошибке когда размер файла превышает размер разрешенного сервером для поля Attachment"
641
 
642
+ #: contact_form.php:916
643
+ #: contact_form.php:945
644
  msgid "Error message for the Captcha field"
645
  msgstr "Сообщение об ошибке для поля Captcha"
646
 
647
+ #: contact_form.php:917
648
+ #: contact_form.php:946
649
  msgid "Error message for the whole form"
650
  msgstr "Сообщение об ошибке для всей формы"
651
 
652
+ #: contact_form.php:919
653
+ #: contact_form.php:948
654
+ #: contact_form.php:967
655
+ #: contact_form.php:973
656
  msgid "Use shortcode"
657
  msgstr "Использовать шорткод"
658
 
659
+ #: contact_form.php:919
660
+ #: contact_form.php:948
661
+ #: contact_form.php:967
662
+ #: contact_form.php:973
663
  msgid "for this language"
664
  msgstr "для данного языка"
665
 
666
+ #: contact_form.php:955
667
  msgid "Action after email is sent"
668
  msgstr "Действие после отправки письма"
669
 
670
+ #: contact_form.php:957
671
  msgid "Display text"
672
  msgstr "Отобразить текст"
673
 
674
+ #: contact_form.php:966
675
+ #: contact_form.php:972
676
  msgid "Text"
677
  msgstr "Текст"
678
 
679
+ #: contact_form.php:979
680
  msgid "Redirect to the page"
681
  msgstr "Перенаправление на страницу"
682
 
683
+ #: contact_form.php:980
684
  msgid "Url"
685
  msgstr "Урл"
686
 
687
+ #: contact_form.php:985
688
+ #: contact_form.php:1160
689
  msgid "Save Changes"
690
  msgstr "Save Changes"
691
 
692
+ #: contact_form.php:1000
693
  msgid "Contact Form Pro | Extra Settings"
694
  msgstr "Contact Form Pro | Extra Настройки"
695
 
696
+ #: contact_form.php:1007
697
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
698
  msgstr "Данный функционал доступен в Pro версии плагина. Для детальной информации перейдите по ссылке"
699
 
700
+ #: contact_form.php:1014
701
  msgid "Errors output"
702
  msgstr "Отображение ошибок"
703
 
704
+ #: contact_form.php:1017
705
  msgid "Display error messages"
706
  msgstr "Отображать сообщения об ошибках"
707
 
708
+ #: contact_form.php:1018
709
  msgid "Color of the input field errors."
710
  msgstr "Отображать ошибки цветом для полей ввода"
711
 
712
+ #: contact_form.php:1019
713
  msgid "Display error messages & color of the input field errors"
714
  msgstr "Отображать сообщения об ошибках & цвет полей ввода с ошибками"
715
 
716
+ #: contact_form.php:1024
717
  msgid "Add placeholder to the input blocks"
718
  msgstr "Добавить вспомогательный текст в поля ввода"
719
 
720
+ #: contact_form.php:1030
721
  msgid "Add tooltips"
722
  msgstr "Добавить подсказки"
723
 
724
+ #: contact_form.php:1044
725
  msgid "Email address"
726
  msgstr "Email адрес"
727
 
728
+ #: contact_form.php:1049
729
  msgid "Phone Number"
730
  msgstr "Телефон"
731
 
732
+ #: contact_form.php:1063
733
  msgid "Attachment"
734
  msgstr "Прикрепить файл"
735
 
736
+ #: contact_form.php:1073
737
  msgid "Style options"
738
  msgstr "Настройки стиля"
739
 
740
+ #: contact_form.php:1076
741
  msgid "Text color"
742
  msgstr "Цвет текста"
743
 
744
+ #: contact_form.php:1079
745
+ #: contact_form.php:1084
746
+ #: contact_form.php:1094
747
+ #: contact_form.php:1099
748
+ #: contact_form.php:1104
749
+ #: contact_form.php:1109
750
+ #: contact_form.php:1119
751
+ #: contact_form.php:1124
752
+ #: contact_form.php:1130
753
+ #: contact_form.php:1141
754
+ #: contact_form.php:1146
755
+ #: contact_form.php:1151
756
  msgid "Default"
757
  msgstr "По-умолчанию"
758
 
759
+ #: contact_form.php:1081
760
  msgid "Label text color"
761
  msgstr "Цвет текста"
762
 
763
+ #: contact_form.php:1086
764
  msgid "Placeholder color"
765
  msgstr "Цвет замещающегося текста"
766
 
767
+ #: contact_form.php:1091
768
  msgid "Errors color"
769
  msgstr "Цвет ошибок"
770
 
771
+ #: contact_form.php:1096
772
  msgid "Error text color"
773
  msgstr "Цвет текста для ошибок"
774
 
775
+ #: contact_form.php:1101
776
  msgid "Background color of the input field errors"
777
  msgstr "Цвет фона для полей ввода с ошибками"
778
 
779
+ #: contact_form.php:1106
780
  msgid "Border color of the input field errors"
781
  msgstr "Цвет рамки для полей ввода с ошибками"
782
 
783
+ #: contact_form.php:1111
784
  msgid "Placeholder color of the input field errors"
785
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
786
 
787
+ #: contact_form.php:1116
788
  msgid "Input fields"
789
  msgstr "Поля ввода"
790
 
791
+ #: contact_form.php:1121
792
  msgid "Input fields background color"
793
  msgstr "Цвет фона для полей ввода"
794
 
795
+ #: contact_form.php:1126
796
  msgid "Text fields color"
797
  msgstr "Цвет текста для полей ввода"
798
 
799
+ #: contact_form.php:1128
800
  msgid "Border width in px, numbers only"
801
  msgstr "Ширина рамки в пикселях, только цифры"
802
 
803
+ #: contact_form.php:1132
804
+ #: contact_form.php:1153
805
  msgid "Border color"
806
  msgstr "Цвет рамки"
807
 
808
+ #: contact_form.php:1137
809
  msgid "Submit button"
810
  msgstr "Кнопка Отправить"
811
 
812
+ #: contact_form.php:1139
813
  msgid "Width in px, numbers only"
814
  msgstr "Ширина в пикселях, только цифры"
815
 
816
+ #: contact_form.php:1143
817
  msgid "Button color"
818
  msgstr "Цвет кнопки"
819
 
820
+ #: contact_form.php:1148
821
  msgid "Button text color"
822
  msgstr "Цвет текста для кнопки"
823
 
824
+ #: contact_form.php:1164
825
  msgid "Contact Form Pro | Preview"
826
  msgstr "Contact Form Pro | Предпросмотр"
827
 
828
+ #: contact_form.php:1167
829
  msgid "Show with errors"
830
  msgstr "Отображать с ошибками"
831
 
832
+ #: contact_form.php:1175
833
+ #: contact_form.php:1177
834
  msgid "Please enter your full name..."
835
  msgstr "Пожалуйста введите ваше имя..."
836
 
837
+ #: contact_form.php:1188
838
+ #: contact_form.php:1190
839
  msgid "Please enter your address..."
840
  msgstr "Пожалуйста введите ваш адресс..."
841
 
842
+ #: contact_form.php:1199
843
+ #: contact_form.php:1201
844
  msgid "Please enter your email address..."
845
  msgstr "Пожалуйста введите ваш email..."
846
 
847
+ #: contact_form.php:1210
848
+ #: contact_form.php:1212
849
  msgid "Please enter your phone number..."
850
  msgstr "Пожалуйста введите ваш телефон..."
851
 
852
+ #: contact_form.php:1221
853
+ #: contact_form.php:1223
854
  msgid "Please enter subject..."
855
  msgstr "Пожалуйста введите тему..."
856
 
857
+ #: contact_form.php:1231
858
+ #: contact_form.php:1233
859
  msgid "Please enter your message..."
860
  msgstr "Пожалуйста введите ваше сообщение..."
861
 
862
+ #: contact_form.php:1244
863
  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"
864
  msgstr "Поддерживаемые типы файлов: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Максимальный размер файла: 2 МБ"
865
 
866
+ #: contact_form.php:1397
 
 
 
 
867
  msgid "You can attach the following file formats"
868
  msgstr "Пользователи могут прикрепить файлы таких типов"
869
 
870
+ #: contact_form.php:1681
871
  msgid "Contact from"
872
  msgstr "Контактная Форма"
873
 
874
+ #: contact_form.php:1694
875
  msgid "Email"
876
  msgstr "Email"
877
 
878
+ #: contact_form.php:1708
879
  msgid "Site"
880
  msgstr "Сайт"
881
 
882
+ #: contact_form.php:1758
883
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
884
  msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
885
 
886
+ #: contact_form.php:1809
887
  msgid "FAQ"
888
  msgstr "FAQ"
889
 
890
+ #: contact_form.php:1810
891
  msgid "Support"
892
  msgstr "Поддержка"
893
 
894
+ #: contact_form.php:1858
895
  msgid "Are you sure that you want to delete this language data?"
896
  msgstr "Вы действительно хотите удалить данные для этого языка?"
897
 
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: 2013-07-16 16:06+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:06+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Georgijevic Team <http://www.georgijevic.info>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,762 +16,927 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Dodaci"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Aktivni dodaci"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Čitaj više"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Podešavanja"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Instalirani dodaci"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Preporučeni dodaci"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Preporučeni dodaci"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Preuzmi"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Instaliraj %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Instaliraj sa wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Ako imate bilo kakva pitanja, kontaktirajte na mejl plugin@bestwebsoft.com ili popunite kontakt formu na našem sajtu"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Opcije Kontakt Forme"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Kontakt Forma"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Opcije Kontakt Forme"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Kontakt Forma"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Ime:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "E-mail Adresa:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "E-mail Adresa:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr "Broj telefona"
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Tema:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Poruka:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Priveži fajl:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Pošalji mi kopiju"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Podnesi"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Vaše ime je potrebno."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Ispravna e-mail adresa potrebna."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "Ispravna e-mail adresa potrebna."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  msgid "Phone number is required."
179
  msgstr "Broj telefona je potreban."
180
 
181
- #: contact_form.php:214
182
- #: contact_form.php:257
183
- #: contact_form.php:260
184
  msgid "Subject is required."
185
  msgstr "Tekst Teme je potreban."
186
 
187
- #: contact_form.php:215
188
- #: contact_form.php:256
189
- #: contact_form.php:259
190
  msgid "Message text is required."
191
  msgstr "Tekst poruke je potreban."
192
 
193
- #: contact_form.php:216
194
  msgid "File format is not valid."
195
  msgstr "Privezak ne radi"
196
 
197
- #: contact_form.php:217
198
  msgid "File upload error."
199
  msgstr ""
200
 
201
- #: contact_form.php:218
202
  msgid "The file could not be uploaded."
203
  msgstr ""
204
 
205
- #: contact_form.php:219
206
  msgid "This file is too large."
207
  msgstr ""
208
 
209
- #: contact_form.php:220
210
  msgid "Please fill out the CAPTCHA."
211
  msgstr "Molimo vas popunite CAPTCHA."
212
 
213
- #: contact_form.php:221
214
  msgid "Please make corrections below and try again."
215
  msgstr "Molimo vas da izvršite izmene ispod i pokušate ponovo."
216
 
217
- #: contact_form.php:223
218
- msgid "Thank you for contacting us."
219
- msgstr "Hvala što ste nas kontaktirali."
220
-
221
- #: contact_form.php:494
222
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
223
  msgstr "Ako opcija 'Prosledi na stranu' je izabrana onda polje za URL možete popuniti u sledećem formatu"
224
 
225
- #: contact_form.php:503
226
  msgid "Such user does not exist. Settings are not saved."
227
  msgstr "Takav korisnik ne postoji. Podešavanja nisu sačuvana"
228
 
229
- #: contact_form.php:508
230
- #: contact_form.php:514
231
  #, fuzzy
232
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
233
  msgstr "Molim Vas unesite ispravan mejl u polje 'OD'. Podešavanja nisu sačuvana."
234
 
235
- #: contact_form.php:519
236
  #, fuzzy
237
  msgid "Settings saved."
238
  msgstr "Opcije sačuvane"
239
 
240
- #: contact_form.php:544
241
- #: contact_form.php:792
242
  #, fuzzy
243
  msgid "Extra settings"
244
  msgstr "Podešavanja"
245
 
246
- #: contact_form.php:549
247
- #: contact_form.php:1048
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 "Ako želite da dodate Kontakt Formu na vaš veb sajt, jednostavno iskopirajte ovaj kratak kod na vašu stranu, članak ili vidžet:"
250
 
251
- #: contact_form.php:550
252
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
253
  msgstr "Ako je polje za podatke ispod prazno tada će poruka biti poslata na adresu koja je navedena prilikom registracije."
254
 
255
- #: contact_form.php:554
256
  msgid "The user's email address:"
257
  msgstr "Koristi mejl wordpress korisnika:"
258
 
259
- #: contact_form.php:558
260
  msgid "Create a username"
261
  msgstr "Odaberi korisničko ime"
262
 
263
- #: contact_form.php:563
264
  msgid "Enter a username of the person who should get the messages from the contact form."
265
  msgstr "Podesi ime korisnika koji će primiti poruku sa ove kontakt forme."
266
 
267
- #: contact_form.php:567
268
  msgid "Use this email address:"
269
  msgstr "Koristi ovaj mejl:"
270
 
271
- #: contact_form.php:570
272
  msgid "Enter the email address you want the messages forwarded to."
273
  msgstr "Podesi mejl adresu koja će biti korišćena za prijem poruka."
274
 
275
- #: contact_form.php:574
276
  msgid "Additional options"
277
  msgstr "Dodatne opcije"
278
 
279
- #: contact_form.php:577
280
  msgid "What to use?"
281
  msgstr "Šta koristite?"
282
 
283
- #: contact_form.php:580
284
  msgid "Wp-mail"
285
  msgstr "Wp-mail"
286
 
287
- #: contact_form.php:581
288
  msgid "You can use the wp_mail function for mailing"
289
  msgstr "Da biste poslali mejl možete koristiti wordpress-ovu wp_mail funkciju"
290
 
291
- #: contact_form.php:587
292
  msgid "Mail"
293
  msgstr "Mail"
294
 
295
- #: contact_form.php:588
296
  msgid "To send mail you can use the php mail function"
297
  msgstr "Da biste poslali mejl možete koristiti php mail funkciju"
298
 
299
- #: contact_form.php:592
300
  #, fuzzy
301
  msgid "Change text of the 'FROM' field"
302
  msgstr "Promeni tekst 'OD' polja u kontakt formi"
303
 
304
- #: contact_form.php:598
305
  msgid "Enter the email address in the 'From' field"
306
  msgstr "Unesi mejl adresu u polje 'OD'"
307
 
308
- #: contact_form.php:600
309
  msgid "User email"
310
  msgstr ""
311
 
312
- #: contact_form.php:600
313
  #, fuzzy
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr "Mejl adresa korisnika koji je popunio polja će se koristiti u polju 'OD'"
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr "Ova mejl adresa će biti korišćena u polju 'OD'"
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Prikaži tekst"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "E-mail Adresa:"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr "Broj telefona"
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Prikaži blok privezaka"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Korisnici mogu privezivati fajlove sledećih tipova"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Prikaži objašnjenja posle bloka Privezaka"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Prikaži Pošalji mi kopiju blok"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Aktivni dodaci"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "Preuzmi"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr "Zahtevana polja"
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Ime"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "E-mail Adresa:"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Tema"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Poruka"
409
 
410
- #: contact_form.php:646
411
  #, fuzzy
412
  msgid "Display additional info in the email"
413
  msgstr "Prikaži dodatne informacije u mejlu"
414
 
415
- #: contact_form.php:651
416
- #: contact_form.php:1447
417
  msgid "Sent from (ip address)"
418
  msgstr "Poslato sa (ip adresa)"
419
 
420
- #: contact_form.php:652
421
- #: contact_form.php:1452
422
  msgid "Date/Time"
423
  msgstr "Datum/Vreme"
424
 
425
- #: contact_form.php:653
426
- #: contact_form.php:1457
427
  msgid "Sent from (referer)"
428
  msgstr "Poslato od (prosleđivač)"
429
 
430
- #: contact_form.php:654
431
- #: contact_form.php:1462
432
  msgid "Using (user agent)"
433
  msgstr "Koristi (user agent)"
434
 
435
- #: contact_form.php:658
436
  msgid "Language settings for the field names in the form"
437
  msgstr "Podešavanja jezika za polje imena u obrascu"
438
 
439
- #: contact_form.php:667
440
  #, fuzzy
441
  msgid "Add a language"
442
  msgstr "Dodaj jezik"
443
 
444
- #: contact_form.php:671
445
  msgid "Change the names of the contact form fields and error messages"
446
  msgstr "Promeni oznaku za polja u kontakt formi i poruku greške"
447
 
448
- #: contact_form.php:676
449
- #: contact_form.php:747
450
  msgid "English"
451
  msgstr "Engleski"
452
 
453
- #: contact_form.php:695
454
- #: contact_form.php:724
455
  msgid "Error message for the Name field"
456
  msgstr "Poruka greške za polje Ime"
457
 
458
- #: contact_form.php:696
459
- #: contact_form.php:725
460
  #, fuzzy
461
  msgid "Error message for the Address field"
462
  msgstr "Poruka greške za polje Poruka"
463
 
464
- #: contact_form.php:697
465
- #: contact_form.php:726
466
  msgid "Error message for the Email field"
467
  msgstr "Poruka greške za polje imejl"
468
 
469
- #: contact_form.php:698
470
- #: contact_form.php:727
471
  msgid "Error message for the Phone field"
472
  msgstr "Poruka greške za polje Broj telefona"
473
 
474
- #: contact_form.php:699
475
- #: contact_form.php:728
476
  msgid "Error message for the Subject field"
477
  msgstr "Poruka greške za polje Tema"
478
 
479
- #: contact_form.php:700
480
- #: contact_form.php:729
481
  msgid "Error message for the Message field"
482
  msgstr "Poruka greške za polje Poruka"
483
 
484
- #: contact_form.php:701
485
- #: contact_form.php:730
486
  #, fuzzy
487
  msgid "Error message about the file type for the Attachment field"
488
  msgstr "Poruka greške za polje Privezaka"
489
 
490
- #: contact_form.php:702
491
- #: contact_form.php:731
492
  #, fuzzy
493
  msgid "Error message while uploading a file for the Attachment field to the server"
494
  msgstr "Poruka greške za polje Privezaka"
495
 
496
- #: contact_form.php:703
497
- #: contact_form.php:732
498
  #, fuzzy
499
  msgid "Error message while moving the file for the Attachment field"
500
  msgstr "Poruka greške za polje Privezaka"
501
 
502
- #: contact_form.php:704
503
- #: contact_form.php:733
504
  #, fuzzy
505
  msgid "Error message when file size limit for the Attachment field is exceeded"
506
  msgstr "Poruka greške za polje Privezaka"
507
 
508
- #: contact_form.php:705
509
- #: contact_form.php:734
510
  msgid "Error message for the Captcha field"
511
  msgstr "Poruka greške za polje Kapča"
512
 
513
- #: contact_form.php:706
514
- #: contact_form.php:735
515
  msgid "Error message for the whole form"
516
  msgstr "Poruka greške za ceo obrazac"
517
 
518
- #: contact_form.php:708
519
- #: contact_form.php:737
520
- #: contact_form.php:756
521
- #: contact_form.php:762
522
  msgid "Use shortcode"
523
  msgstr "Koristi prečicu"
524
 
525
- #: contact_form.php:708
526
- #: contact_form.php:737
527
- #: contact_form.php:756
528
- #: contact_form.php:762
529
  msgid "for this language"
530
  msgstr "za ovaj jezik"
531
 
532
- #: contact_form.php:744
533
  msgid "Action after email is sent"
534
  msgstr "Akcija posle poslatog mejla"
535
 
536
- #: contact_form.php:746
537
  msgid "Display text"
538
  msgstr "Prikaži tekst"
539
 
540
- #: contact_form.php:755
541
- #: contact_form.php:761
542
  msgid "Text"
543
  msgstr "Tekst"
544
 
545
- #: contact_form.php:768
546
  msgid "Redirect to the page"
547
  msgstr "Preusmeri na stranu"
548
 
549
- #: contact_form.php:769
550
  msgid "Url"
551
  msgstr "Url"
552
 
553
- #: contact_form.php:774
554
- #: contact_form.php:949
555
  msgid "Save Changes"
556
  msgstr "Sačuvaj izmene"
557
 
558
- #: contact_form.php:789
559
  #, fuzzy
560
  msgid "Contact Form Pro | Extra Settings"
561
  msgstr "Opcije Kontakt Forme"
562
 
563
- #: contact_form.php:796
564
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
565
  msgstr ""
566
 
567
- #: contact_form.php:803
568
  msgid "Errors output"
569
  msgstr ""
570
 
571
- #: contact_form.php:806
572
  msgid "Display error messages"
573
  msgstr ""
574
 
575
- #: contact_form.php:807
576
  msgid "Color of the input field errors."
577
  msgstr ""
578
 
579
- #: contact_form.php:808
580
  #, fuzzy
581
  msgid "Display error messages & color of the input field errors"
582
  msgstr "Poruka greške za polje Tema"
583
 
584
- #: contact_form.php:813
585
  msgid "Add placeholder to the input blocks"
586
  msgstr ""
587
 
588
- #: contact_form.php:819
589
  #, fuzzy
590
  msgid "Add tooltips"
591
  msgstr "Dodatne opcije"
592
 
593
- #: contact_form.php:833
594
  #, fuzzy
595
  msgid "Email address"
596
  msgstr "E-mail Adresa:"
597
 
598
- #: contact_form.php:838
599
  #, fuzzy
600
  msgid "Phone Number"
601
  msgstr "Broj telefona"
602
 
603
- #: contact_form.php:852
604
  #, fuzzy
605
  msgid "Attachment"
606
  msgstr "Priveži fajl:"
607
 
608
- #: contact_form.php:862
609
  #, fuzzy
610
  msgid "Style options"
611
  msgstr "Dodatne opcije"
612
 
613
- #: contact_form.php:865
614
  msgid "Text color"
615
  msgstr ""
616
 
617
- #: contact_form.php:868
618
- #: contact_form.php:873
619
- #: contact_form.php:883
620
- #: contact_form.php:888
621
- #: contact_form.php:893
622
- #: contact_form.php:898
623
- #: contact_form.php:908
624
- #: contact_form.php:913
625
- #: contact_form.php:919
626
- #: contact_form.php:930
627
- #: contact_form.php:935
628
- #: contact_form.php:940
629
  msgid "Default"
630
  msgstr ""
631
 
632
- #: contact_form.php:870
633
  msgid "Label text color"
634
  msgstr ""
635
 
636
- #: contact_form.php:875
637
  msgid "Placeholder color"
638
  msgstr ""
639
 
640
- #: contact_form.php:880
641
  msgid "Errors color"
642
  msgstr ""
643
 
644
- #: contact_form.php:885
645
  msgid "Error text color"
646
  msgstr ""
647
 
648
- #: contact_form.php:890
649
  msgid "Background color of the input field errors"
650
  msgstr ""
651
 
652
- #: contact_form.php:895
653
  msgid "Border color of the input field errors"
654
  msgstr ""
655
 
656
- #: contact_form.php:900
657
  msgid "Placeholder color of the input field errors"
658
  msgstr ""
659
 
660
- #: contact_form.php:905
661
  msgid "Input fields"
662
  msgstr ""
663
 
664
- #: contact_form.php:910
665
  msgid "Input fields background color"
666
  msgstr ""
667
 
668
- #: contact_form.php:915
669
  msgid "Text fields color"
670
  msgstr ""
671
 
672
- #: contact_form.php:917
673
  msgid "Border width in px, numbers only"
674
  msgstr ""
675
 
676
- #: contact_form.php:921
677
- #: contact_form.php:942
678
  msgid "Border color"
679
  msgstr ""
680
 
681
- #: contact_form.php:926
682
  #, fuzzy
683
  msgid "Submit button"
684
  msgstr "Podnesi"
685
 
686
- #: contact_form.php:928
687
  msgid "Width in px, numbers only"
688
  msgstr ""
689
 
690
- #: contact_form.php:932
691
  msgid "Button color"
692
  msgstr ""
693
 
694
- #: contact_form.php:937
695
  msgid "Button text color"
696
  msgstr ""
697
 
698
- #: contact_form.php:953
699
  #, fuzzy
700
  msgid "Contact Form Pro | Preview"
701
  msgstr "Kontakt Forma"
702
 
703
- #: contact_form.php:956
704
  msgid "Show with errors"
705
  msgstr ""
706
 
707
- #: contact_form.php:964
708
- #: contact_form.php:966
709
  msgid "Please enter your full name..."
710
  msgstr ""
711
 
712
- #: contact_form.php:977
713
- #: contact_form.php:979
714
  msgid "Please enter your address..."
715
  msgstr ""
716
 
717
- #: contact_form.php:988
718
- #: contact_form.php:990
719
  #, fuzzy
720
  msgid "Please enter your email address..."
721
  msgstr "Koristi ovaj mejl:"
722
 
723
- #: contact_form.php:999
724
- #: contact_form.php:1001
725
  msgid "Please enter your phone number..."
726
  msgstr ""
727
 
728
- #: contact_form.php:1010
729
- #: contact_form.php:1012
730
  msgid "Please enter subject..."
731
  msgstr ""
732
 
733
- #: contact_form.php:1020
734
- #: contact_form.php:1022
735
  msgid "Please enter your message..."
736
  msgstr ""
737
 
738
- #: contact_form.php:1033
739
  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"
740
  msgstr ""
741
 
742
- #: contact_form.php:1102
743
- msgid "Sorry, email message could not be delivered."
744
- msgstr "Izvinite, vaš mejl nije mogao biti dostavljen."
745
-
746
- #: contact_form.php:1186
747
  msgid "You can attach the following file formats"
748
  msgstr "Možete privezati fajlove sledećih tipova"
749
 
750
- #: contact_form.php:1470
751
  msgid "Contact from"
752
  msgstr "Kontakt forma"
753
 
754
- #: contact_form.php:1483
755
  msgid "Email"
756
  msgstr "Email"
757
 
758
- #: contact_form.php:1497
759
  msgid "Site"
760
  msgstr "Sajt"
761
 
762
- #: contact_form.php:1547
763
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
764
  msgstr "Ako možete da vidite ovaj MIME to znači da vaš klijent ne prihvata MIME tipove!"
765
 
766
- #: contact_form.php:1598
767
  msgid "FAQ"
768
  msgstr "FAQ"
769
 
770
- #: contact_form.php:1599
771
  msgid "Support"
772
  msgstr "Podrška"
773
 
774
- #: contact_form.php:1647
775
  msgid "Are you sure that you want to delete this language data?"
776
  msgstr "Da li ste sigurni da želite da obrišete podatke jezika?"
777
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:57+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:58+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Georgijevic Team <http://www.georgijevic.info>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Poruka"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Sajt"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Koristi ovaj mejl:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Hvala što ste nas kontaktirali."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Izvinite, vaš mejl nije mogao biti dostavljen."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Dodaci"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Aktivni dodaci"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Čitaj više"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Podešavanja"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Instalirani dodaci"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Preporučeni dodaci"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Preporučeni dodaci"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Preuzmi"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Instaliraj %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Instaliraj sa wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Ako imate bilo kakva pitanja, kontaktirajte na mejl plugin@bestwebsoft.com ili popunite kontakt formu na našem sajtu"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Aktivni dodaci"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Aktivni dodaci"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Podrška"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Opcije Kontakt Forme"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Kontakt Forma"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Opcije Kontakt Forme"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Kontakt Forma"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Ime:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "E-mail Adresa:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "E-mail Adresa:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr "Broj telefona"
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Tema:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Poruka:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Priveži fajl:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Pošalji mi kopiju"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Podnesi"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Vaše ime je potrebno."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Ispravna e-mail adresa potrebna."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "Ispravna e-mail adresa potrebna."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  msgid "Phone number is required."
352
  msgstr "Broj telefona je potreban."
353
 
354
+ #: contact_form.php:425
355
+ #: contact_form.php:468
356
+ #: contact_form.php:471
357
  msgid "Subject is required."
358
  msgstr "Tekst Teme je potreban."
359
 
360
+ #: contact_form.php:426
361
+ #: contact_form.php:467
362
+ #: contact_form.php:470
363
  msgid "Message text is required."
364
  msgstr "Tekst poruke je potreban."
365
 
366
+ #: contact_form.php:427
367
  msgid "File format is not valid."
368
  msgstr "Privezak ne radi"
369
 
370
+ #: contact_form.php:428
371
  msgid "File upload error."
372
  msgstr ""
373
 
374
+ #: contact_form.php:429
375
  msgid "The file could not be uploaded."
376
  msgstr ""
377
 
378
+ #: contact_form.php:430
379
  msgid "This file is too large."
380
  msgstr ""
381
 
382
+ #: contact_form.php:431
383
  msgid "Please fill out the CAPTCHA."
384
  msgstr "Molimo vas popunite CAPTCHA."
385
 
386
+ #: contact_form.php:432
387
  msgid "Please make corrections below and try again."
388
  msgstr "Molimo vas da izvršite izmene ispod i pokušate ponovo."
389
 
390
+ #: contact_form.php:705
 
 
 
 
391
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
392
  msgstr "Ako opcija 'Prosledi na stranu' je izabrana onda polje za URL možete popuniti u sledećem formatu"
393
 
394
+ #: contact_form.php:714
395
  msgid "Such user does not exist. Settings are not saved."
396
  msgstr "Takav korisnik ne postoji. Podešavanja nisu sačuvana"
397
 
398
+ #: contact_form.php:719
399
+ #: contact_form.php:725
400
  #, fuzzy
401
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
402
  msgstr "Molim Vas unesite ispravan mejl u polje 'OD'. Podešavanja nisu sačuvana."
403
 
404
+ #: contact_form.php:730
405
  #, fuzzy
406
  msgid "Settings saved."
407
  msgstr "Opcije sačuvane"
408
 
409
+ #: contact_form.php:755
410
+ #: contact_form.php:1003
411
  #, fuzzy
412
  msgid "Extra settings"
413
  msgstr "Podešavanja"
414
 
415
+ #: contact_form.php:760
416
+ #: contact_form.php:1259
417
  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:"
418
  msgstr "Ako želite da dodate Kontakt Formu na vaš veb sajt, jednostavno iskopirajte ovaj kratak kod na vašu stranu, članak ili vidžet:"
419
 
420
+ #: contact_form.php:761
421
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
422
  msgstr "Ako je polje za podatke ispod prazno tada će poruka biti poslata na adresu koja je navedena prilikom registracije."
423
 
424
+ #: contact_form.php:765
425
  msgid "The user's email address:"
426
  msgstr "Koristi mejl wordpress korisnika:"
427
 
428
+ #: contact_form.php:769
429
  msgid "Create a username"
430
  msgstr "Odaberi korisničko ime"
431
 
432
+ #: contact_form.php:774
433
  msgid "Enter a username of the person who should get the messages from the contact form."
434
  msgstr "Podesi ime korisnika koji će primiti poruku sa ove kontakt forme."
435
 
436
+ #: contact_form.php:778
437
  msgid "Use this email address:"
438
  msgstr "Koristi ovaj mejl:"
439
 
440
+ #: contact_form.php:781
441
  msgid "Enter the email address you want the messages forwarded to."
442
  msgstr "Podesi mejl adresu koja će biti korišćena za prijem poruka."
443
 
444
+ #: contact_form.php:785
445
  msgid "Additional options"
446
  msgstr "Dodatne opcije"
447
 
448
+ #: contact_form.php:788
449
  msgid "What to use?"
450
  msgstr "Šta koristite?"
451
 
452
+ #: contact_form.php:791
453
  msgid "Wp-mail"
454
  msgstr "Wp-mail"
455
 
456
+ #: contact_form.php:792
457
  msgid "You can use the wp_mail function for mailing"
458
  msgstr "Da biste poslali mejl možete koristiti wordpress-ovu wp_mail funkciju"
459
 
460
+ #: contact_form.php:798
461
  msgid "Mail"
462
  msgstr "Mail"
463
 
464
+ #: contact_form.php:799
465
  msgid "To send mail you can use the php mail function"
466
  msgstr "Da biste poslali mejl možete koristiti php mail funkciju"
467
 
468
+ #: contact_form.php:803
469
  #, fuzzy
470
  msgid "Change text of the 'FROM' field"
471
  msgstr "Promeni tekst 'OD' polja u kontakt formi"
472
 
473
+ #: contact_form.php:809
474
  msgid "Enter the email address in the 'From' field"
475
  msgstr "Unesi mejl adresu u polje 'OD'"
476
 
477
+ #: contact_form.php:811
478
  msgid "User email"
479
  msgstr ""
480
 
481
+ #: contact_form.php:811
482
  #, fuzzy
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr "Mejl adresa korisnika koji je popunio polja će se koristiti u polju 'OD'"
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr "Ova mejl adresa će biti korišćena u polju 'OD'"
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Prikaži tekst"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "E-mail Adresa:"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr "Broj telefona"
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Prikaži blok privezaka"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Korisnici mogu privezivati fajlove sledećih tipova"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Prikaži objašnjenja posle bloka Privezaka"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Prikaži Pošalji mi kopiju blok"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Aktivni dodaci"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "Preuzmi"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr "Zahtevana polja"
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Ime"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "E-mail Adresa:"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Tema"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Poruka"
578
 
579
+ #: contact_form.php:857
580
  #, fuzzy
581
  msgid "Display additional info in the email"
582
  msgstr "Prikaži dodatne informacije u mejlu"
583
 
584
+ #: contact_form.php:862
585
+ #: contact_form.php:1658
586
  msgid "Sent from (ip address)"
587
  msgstr "Poslato sa (ip adresa)"
588
 
589
+ #: contact_form.php:863
590
+ #: contact_form.php:1663
591
  msgid "Date/Time"
592
  msgstr "Datum/Vreme"
593
 
594
+ #: contact_form.php:864
595
+ #: contact_form.php:1668
596
  msgid "Sent from (referer)"
597
  msgstr "Poslato od (prosleđivač)"
598
 
599
+ #: contact_form.php:865
600
+ #: contact_form.php:1673
601
  msgid "Using (user agent)"
602
  msgstr "Koristi (user agent)"
603
 
604
+ #: contact_form.php:869
605
  msgid "Language settings for the field names in the form"
606
  msgstr "Podešavanja jezika za polje imena u obrascu"
607
 
608
+ #: contact_form.php:878
609
  #, fuzzy
610
  msgid "Add a language"
611
  msgstr "Dodaj jezik"
612
 
613
+ #: contact_form.php:882
614
  msgid "Change the names of the contact form fields and error messages"
615
  msgstr "Promeni oznaku za polja u kontakt formi i poruku greške"
616
 
617
+ #: contact_form.php:887
618
+ #: contact_form.php:958
619
  msgid "English"
620
  msgstr "Engleski"
621
 
622
+ #: contact_form.php:906
623
+ #: contact_form.php:935
624
  msgid "Error message for the Name field"
625
  msgstr "Poruka greške za polje Ime"
626
 
627
+ #: contact_form.php:907
628
+ #: contact_form.php:936
629
  #, fuzzy
630
  msgid "Error message for the Address field"
631
  msgstr "Poruka greške za polje Poruka"
632
 
633
+ #: contact_form.php:908
634
+ #: contact_form.php:937
635
  msgid "Error message for the Email field"
636
  msgstr "Poruka greške za polje imejl"
637
 
638
+ #: contact_form.php:909
639
+ #: contact_form.php:938
640
  msgid "Error message for the Phone field"
641
  msgstr "Poruka greške za polje Broj telefona"
642
 
643
+ #: contact_form.php:910
644
+ #: contact_form.php:939
645
  msgid "Error message for the Subject field"
646
  msgstr "Poruka greške za polje Tema"
647
 
648
+ #: contact_form.php:911
649
+ #: contact_form.php:940
650
  msgid "Error message for the Message field"
651
  msgstr "Poruka greške za polje Poruka"
652
 
653
+ #: contact_form.php:912
654
+ #: contact_form.php:941
655
  #, fuzzy
656
  msgid "Error message about the file type for the Attachment field"
657
  msgstr "Poruka greške za polje Privezaka"
658
 
659
+ #: contact_form.php:913
660
+ #: contact_form.php:942
661
  #, fuzzy
662
  msgid "Error message while uploading a file for the Attachment field to the server"
663
  msgstr "Poruka greške za polje Privezaka"
664
 
665
+ #: contact_form.php:914
666
+ #: contact_form.php:943
667
  #, fuzzy
668
  msgid "Error message while moving the file for the Attachment field"
669
  msgstr "Poruka greške za polje Privezaka"
670
 
671
+ #: contact_form.php:915
672
+ #: contact_form.php:944
673
  #, fuzzy
674
  msgid "Error message when file size limit for the Attachment field is exceeded"
675
  msgstr "Poruka greške za polje Privezaka"
676
 
677
+ #: contact_form.php:916
678
+ #: contact_form.php:945
679
  msgid "Error message for the Captcha field"
680
  msgstr "Poruka greške za polje Kapča"
681
 
682
+ #: contact_form.php:917
683
+ #: contact_form.php:946
684
  msgid "Error message for the whole form"
685
  msgstr "Poruka greške za ceo obrazac"
686
 
687
+ #: contact_form.php:919
688
+ #: contact_form.php:948
689
+ #: contact_form.php:967
690
+ #: contact_form.php:973
691
  msgid "Use shortcode"
692
  msgstr "Koristi prečicu"
693
 
694
+ #: contact_form.php:919
695
+ #: contact_form.php:948
696
+ #: contact_form.php:967
697
+ #: contact_form.php:973
698
  msgid "for this language"
699
  msgstr "za ovaj jezik"
700
 
701
+ #: contact_form.php:955
702
  msgid "Action after email is sent"
703
  msgstr "Akcija posle poslatog mejla"
704
 
705
+ #: contact_form.php:957
706
  msgid "Display text"
707
  msgstr "Prikaži tekst"
708
 
709
+ #: contact_form.php:966
710
+ #: contact_form.php:972
711
  msgid "Text"
712
  msgstr "Tekst"
713
 
714
+ #: contact_form.php:979
715
  msgid "Redirect to the page"
716
  msgstr "Preusmeri na stranu"
717
 
718
+ #: contact_form.php:980
719
  msgid "Url"
720
  msgstr "Url"
721
 
722
+ #: contact_form.php:985
723
+ #: contact_form.php:1160
724
  msgid "Save Changes"
725
  msgstr "Sačuvaj izmene"
726
 
727
+ #: contact_form.php:1000
728
  #, fuzzy
729
  msgid "Contact Form Pro | Extra Settings"
730
  msgstr "Opcije Kontakt Forme"
731
 
732
+ #: contact_form.php:1007
733
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
734
  msgstr ""
735
 
736
+ #: contact_form.php:1014
737
  msgid "Errors output"
738
  msgstr ""
739
 
740
+ #: contact_form.php:1017
741
  msgid "Display error messages"
742
  msgstr ""
743
 
744
+ #: contact_form.php:1018
745
  msgid "Color of the input field errors."
746
  msgstr ""
747
 
748
+ #: contact_form.php:1019
749
  #, fuzzy
750
  msgid "Display error messages & color of the input field errors"
751
  msgstr "Poruka greške za polje Tema"
752
 
753
+ #: contact_form.php:1024
754
  msgid "Add placeholder to the input blocks"
755
  msgstr ""
756
 
757
+ #: contact_form.php:1030
758
  #, fuzzy
759
  msgid "Add tooltips"
760
  msgstr "Dodatne opcije"
761
 
762
+ #: contact_form.php:1044
763
  #, fuzzy
764
  msgid "Email address"
765
  msgstr "E-mail Adresa:"
766
 
767
+ #: contact_form.php:1049
768
  #, fuzzy
769
  msgid "Phone Number"
770
  msgstr "Broj telefona"
771
 
772
+ #: contact_form.php:1063
773
  #, fuzzy
774
  msgid "Attachment"
775
  msgstr "Priveži fajl:"
776
 
777
+ #: contact_form.php:1073
778
  #, fuzzy
779
  msgid "Style options"
780
  msgstr "Dodatne opcije"
781
 
782
+ #: contact_form.php:1076
783
  msgid "Text color"
784
  msgstr ""
785
 
786
+ #: contact_form.php:1079
787
+ #: contact_form.php:1084
788
+ #: contact_form.php:1094
789
+ #: contact_form.php:1099
790
+ #: contact_form.php:1104
791
+ #: contact_form.php:1109
792
+ #: contact_form.php:1119
793
+ #: contact_form.php:1124
794
+ #: contact_form.php:1130
795
+ #: contact_form.php:1141
796
+ #: contact_form.php:1146
797
+ #: contact_form.php:1151
798
  msgid "Default"
799
  msgstr ""
800
 
801
+ #: contact_form.php:1081
802
  msgid "Label text color"
803
  msgstr ""
804
 
805
+ #: contact_form.php:1086
806
  msgid "Placeholder color"
807
  msgstr ""
808
 
809
+ #: contact_form.php:1091
810
  msgid "Errors color"
811
  msgstr ""
812
 
813
+ #: contact_form.php:1096
814
  msgid "Error text color"
815
  msgstr ""
816
 
817
+ #: contact_form.php:1101
818
  msgid "Background color of the input field errors"
819
  msgstr ""
820
 
821
+ #: contact_form.php:1106
822
  msgid "Border color of the input field errors"
823
  msgstr ""
824
 
825
+ #: contact_form.php:1111
826
  msgid "Placeholder color of the input field errors"
827
  msgstr ""
828
 
829
+ #: contact_form.php:1116
830
  msgid "Input fields"
831
  msgstr ""
832
 
833
+ #: contact_form.php:1121
834
  msgid "Input fields background color"
835
  msgstr ""
836
 
837
+ #: contact_form.php:1126
838
  msgid "Text fields color"
839
  msgstr ""
840
 
841
+ #: contact_form.php:1128
842
  msgid "Border width in px, numbers only"
843
  msgstr ""
844
 
845
+ #: contact_form.php:1132
846
+ #: contact_form.php:1153
847
  msgid "Border color"
848
  msgstr ""
849
 
850
+ #: contact_form.php:1137
851
  #, fuzzy
852
  msgid "Submit button"
853
  msgstr "Podnesi"
854
 
855
+ #: contact_form.php:1139
856
  msgid "Width in px, numbers only"
857
  msgstr ""
858
 
859
+ #: contact_form.php:1143
860
  msgid "Button color"
861
  msgstr ""
862
 
863
+ #: contact_form.php:1148
864
  msgid "Button text color"
865
  msgstr ""
866
 
867
+ #: contact_form.php:1164
868
  #, fuzzy
869
  msgid "Contact Form Pro | Preview"
870
  msgstr "Kontakt Forma"
871
 
872
+ #: contact_form.php:1167
873
  msgid "Show with errors"
874
  msgstr ""
875
 
876
+ #: contact_form.php:1175
877
+ #: contact_form.php:1177
878
  msgid "Please enter your full name..."
879
  msgstr ""
880
 
881
+ #: contact_form.php:1188
882
+ #: contact_form.php:1190
883
  msgid "Please enter your address..."
884
  msgstr ""
885
 
886
+ #: contact_form.php:1199
887
+ #: contact_form.php:1201
888
  #, fuzzy
889
  msgid "Please enter your email address..."
890
  msgstr "Koristi ovaj mejl:"
891
 
892
+ #: contact_form.php:1210
893
+ #: contact_form.php:1212
894
  msgid "Please enter your phone number..."
895
  msgstr ""
896
 
897
+ #: contact_form.php:1221
898
+ #: contact_form.php:1223
899
  msgid "Please enter subject..."
900
  msgstr ""
901
 
902
+ #: contact_form.php:1231
903
+ #: contact_form.php:1233
904
  msgid "Please enter your message..."
905
  msgstr ""
906
 
907
+ #: contact_form.php:1244
908
  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"
909
  msgstr ""
910
 
911
+ #: contact_form.php:1397
 
 
 
 
912
  msgid "You can attach the following file formats"
913
  msgstr "Možete privezati fajlove sledećih tipova"
914
 
915
+ #: contact_form.php:1681
916
  msgid "Contact from"
917
  msgstr "Kontakt forma"
918
 
919
+ #: contact_form.php:1694
920
  msgid "Email"
921
  msgstr "Email"
922
 
923
+ #: contact_form.php:1708
924
  msgid "Site"
925
  msgstr "Sajt"
926
 
927
+ #: contact_form.php:1758
928
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
929
  msgstr "Ako možete da vidite ovaj MIME to znači da vaš klijent ne prihvata MIME tipove!"
930
 
931
+ #: contact_form.php:1809
932
  msgid "FAQ"
933
  msgstr "FAQ"
934
 
935
+ #: contact_form.php:1810
936
  msgid "Support"
937
  msgstr "Podrška"
938
 
939
+ #: contact_form.php:1858
940
  msgid "Are you sure that you want to delete this language data?"
941
  msgstr "Da li ste sigurni da želite da obrišete podatke jezika?"
942
 
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: 2013-07-16 16:06+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:06+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest <joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,760 +16,925 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "Плагины BWS"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "aktiverade plugins"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Les mer"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Inställningar"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Installerade plugins"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Rekommenderade plugins"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Rekommenderade plugins"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Hämta"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Installera %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Installera nu från wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Om du har några frågor, vänligen kontakta oss via plugin@bestwebsoft.com eller fyll i vårt kontaktformulär på vår webbplats."
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Konktaktformulär Alternativ "
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Kontaktformulär"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Konktaktformulär Alternativ "
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Kontaktformulär"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Namn:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "E-post adress"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "E-post adress"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr "Telefon:"
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Ämne:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Meddelande:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Bilaga:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Skicka mig en kopia"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Skicka"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Ditt namn krävs."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "En giltig e-postadress krävs."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "En giltig e-postadress krävs."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  msgid "Phone number is required."
179
  msgstr "Fält 'telefon' krävs."
180
 
181
- #: contact_form.php:214
182
- #: contact_form.php:257
183
- #: contact_form.php:260
184
  msgid "Subject is required."
185
  msgstr "Ämnesfält krävs."
186
 
187
- #: contact_form.php:215
188
- #: contact_form.php:256
189
- #: contact_form.php:259
190
  msgid "Message text is required."
191
  msgstr "Meddelandesfält krävs."
192
 
193
- #: contact_form.php:216
194
  msgid "File format is not valid."
195
  msgstr "Bilagan bryts."
196
 
197
- #: contact_form.php:217
198
  msgid "File upload error."
199
  msgstr ""
200
 
201
- #: contact_form.php:218
202
  msgid "The file could not be uploaded."
203
  msgstr ""
204
 
205
- #: contact_form.php:219
206
  msgid "This file is too large."
207
  msgstr ""
208
 
209
- #: contact_form.php:220
210
  msgid "Please fill out the CAPTCHA."
211
  msgstr "Vänligen fyll i CAPTCHA."
212
 
213
- #: contact_form.php:221
214
  msgid "Please make corrections below and try again."
215
  msgstr "Vänligen göra korrigeringar nedan och försök igen."
216
 
217
- #: contact_form.php:223
218
- msgid "Thank you for contacting us."
219
- msgstr "Tack så mycket för att kontakta oss."
220
-
221
- #: contact_form.php:494
222
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
223
  msgstr "Om alternativet \"Omdirigera till sidan\" väljs, URL ska fyllas i följande format"
224
 
225
- #: contact_form.php:503
226
  msgid "Such user does not exist. Settings are not saved."
227
  msgstr "Sådan användaren finns inte. Inställningar sparas inte."
228
 
229
- #: contact_form.php:508
230
- #: contact_form.php:514
231
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
232
  msgstr "Vänligen ange korrekt \"från\" e-postadress. Inställningar sparas inte."
233
 
234
- #: contact_form.php:519
235
  #, fuzzy
236
  msgid "Settings saved."
237
  msgstr "Inställningar sparas."
238
 
239
- #: contact_form.php:544
240
- #: contact_form.php:792
241
  #, fuzzy
242
  msgid "Extra settings"
243
  msgstr "Inställningar"
244
 
245
- #: contact_form.php:549
246
- #: contact_form.php:1048
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 "Om du vill lägga till ett kontaktformulär på din webbplats, bara kopiera och sätta detta kortkod i din post eller sida eller widget:"
249
 
250
- #: contact_form.php:550
251
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
252
  msgstr "Om informationen i nedanstående fält är tomma då meddelandet kommer att skickas till en adress som angetts vid registreringen."
253
 
254
- #: contact_form.php:554
255
  msgid "The user's email address:"
256
  msgstr "Använda e-postadress användare:"
257
 
258
- #: contact_form.php:558
259
  msgid "Create a username"
260
  msgstr "Välj användarnamn"
261
 
262
- #: contact_form.php:563
263
  msgid "Enter a username of the person who should get the messages from the contact form."
264
  msgstr "Ange ett namn på den användare som kommer att få meddelanden från ett kontaktformulär."
265
 
266
- #: contact_form.php:567
267
  msgid "Use this email address:"
268
  msgstr "Använda det här e-postadress:"
269
 
270
- #: contact_form.php:570
271
  msgid "Enter the email address you want the messages forwarded to."
272
  msgstr "Ange en e-postadress som ska användas för att få meddelanden."
273
 
274
- #: contact_form.php:574
275
  msgid "Additional options"
276
  msgstr "Ytterligare alternativ"
277
 
278
- #: contact_form.php:577
279
  msgid "What to use?"
280
  msgstr "Vad ska man använda?"
281
 
282
- #: contact_form.php:580
283
  msgid "Wp-mail"
284
  msgstr "Wp-e-post"
285
 
286
- #: contact_form.php:581
287
  msgid "You can use the wp_mail function for mailing"
288
  msgstr "För att skicka e-post kan du använda wordpress wp_mail funktionen."
289
 
290
- #: contact_form.php:587
291
  msgid "Mail"
292
  msgstr "E-post"
293
 
294
- #: contact_form.php:588
295
  msgid "To send mail you can use the php mail function"
296
  msgstr "För att skicka e-post kan du använda php funktionen."
297
 
298
- #: contact_form.php:592
299
  msgid "Change text of the 'FROM' field"
300
  msgstr "Ändra tekst för 'FRÅN' fältet på e-postmeddelandet."
301
 
302
- #: contact_form.php:598
303
  msgid "Enter the email address in the 'From' field"
304
  msgstr "Välj e-postadress för 'FRÅN' fältet för e-postmeddelandet."
305
 
306
- #: contact_form.php:600
307
  msgid "User email"
308
  msgstr ""
309
 
310
- #: contact_form.php:600
311
  #, fuzzy
312
  msgid "The email address of the user who fills the form will be used in the field 'From'."
313
  msgstr "В поле \"From\" в письме будет использоваться электронная почта того пользователя, который заполняет форму."
314
 
315
- #: contact_form.php:602
316
  msgid "This email address will be used in the 'From' field."
317
  msgstr "В поле \"From\" в письме будет использоваться данная электронная почта"
318
 
319
- #: contact_form.php:606
320
  #, fuzzy
321
  msgid "Display fields"
322
  msgstr "Visa tekst"
323
 
324
- #: contact_form.php:608
325
- #: contact_form.php:638
326
- #: contact_form.php:828
327
- #: contact_form.php:1480
328
  #, fuzzy
329
  msgid "Address"
330
  msgstr "E-post adress"
331
 
332
- #: contact_form.php:609
333
- #: contact_form.php:640
334
- #: contact_form.php:1488
335
  msgid "Phone"
336
  msgstr "Telefon"
337
 
338
- #: contact_form.php:610
339
  #, fuzzy
340
  msgid "Attachment block"
341
  msgstr "Visa bilagablock"
342
 
343
- #: contact_form.php:610
344
  msgid "Users can attach the following file formats"
345
  msgstr "Användare kan bifoga filer av följande typer"
346
 
347
- #: contact_form.php:611
348
  #, fuzzy
349
  msgid "Tips below the Attachment block"
350
  msgstr "Visa förklaringar efter bilagablocket."
351
 
352
- #: contact_form.php:612
353
  #, fuzzy
354
  msgid "Send me a copy block"
355
  msgstr "Visa 'Skicka mig en kopia' block."
356
 
357
- #: contact_form.php:624
358
- #: contact_form.php:627
359
- #: contact_form.php:630
360
- #: contact_form.php:857
361
  msgid "Captcha"
362
  msgstr ""
363
 
364
- #: contact_form.php:624
365
- #: contact_form.php:627
366
- #: contact_form.php:630
367
- #: contact_form.php:857
368
  msgid "(powered by bestwebsoft.com)"
369
  msgstr ""
370
 
371
- #: contact_form.php:627
372
  #, fuzzy
373
  msgid "Activate captcha"
374
  msgstr "aktiverade plugins"
375
 
376
- #: contact_form.php:630
377
  #, fuzzy
378
  msgid "Download captcha"
379
  msgstr "Hämta"
380
 
381
- #: contact_form.php:635
382
  msgid "Required fields"
383
  msgstr "Fält krävs."
384
 
385
- #: contact_form.php:637
386
- #: contact_form.php:823
387
- #: contact_form.php:1475
388
  msgid "Name"
389
  msgstr "Namn"
390
 
391
- #: contact_form.php:639
392
  #, fuzzy
393
  msgid "Email Address"
394
  msgstr "E-post adress"
395
 
396
- #: contact_form.php:641
397
- #: contact_form.php:843
398
- #: contact_form.php:1491
399
  msgid "Subject"
400
  msgstr "Ämne"
401
 
402
- #: contact_form.php:642
403
- #: contact_form.php:847
404
- #: contact_form.php:1494
405
  msgid "Message"
406
  msgstr "Meddelande"
407
 
408
- #: contact_form.php:646
409
  #, fuzzy
410
  msgid "Display additional info in the email"
411
  msgstr "Visa ytterligare information i e-meddelande."
412
 
413
- #: contact_form.php:651
414
- #: contact_form.php:1447
415
  msgid "Sent from (ip address)"
416
  msgstr "Skickas från (ip adress)"
417
 
418
- #: contact_form.php:652
419
- #: contact_form.php:1452
420
  msgid "Date/Time"
421
  msgstr "Datum/Tid"
422
 
423
- #: contact_form.php:653
424
- #: contact_form.php:1457
425
  msgid "Sent from (referer)"
426
  msgstr "Kommande frå (referrer)"
427
 
428
- #: contact_form.php:654
429
- #: contact_form.php:1462
430
  msgid "Using (user agent)"
431
  msgstr "använda (användare/ombud)"
432
 
433
- #: contact_form.php:658
434
  msgid "Language settings for the field names in the form"
435
  msgstr "Språkinställningar för etikettfält"
436
 
437
- #: contact_form.php:667
438
  #, fuzzy
439
  msgid "Add a language"
440
  msgstr "Lägg till språk"
441
 
442
- #: contact_form.php:671
443
  msgid "Change the names of the contact form fields and error messages"
444
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
445
 
446
- #: contact_form.php:676
447
- #: contact_form.php:747
448
  msgid "English"
449
  msgstr "Engelska"
450
 
451
- #: contact_form.php:695
452
- #: contact_form.php:724
453
  msgid "Error message for the Name field"
454
  msgstr "Felmeddelande för namnfält"
455
 
456
- #: contact_form.php:696
457
- #: contact_form.php:725
458
  #, fuzzy
459
  msgid "Error message for the Address field"
460
  msgstr "Felmeddelande för meddelandesfält"
461
 
462
- #: contact_form.php:697
463
- #: contact_form.php:726
464
  msgid "Error message for the Email field"
465
  msgstr "Felmeddelande för e-postadressfält"
466
 
467
- #: contact_form.php:698
468
- #: contact_form.php:727
469
  msgid "Error message for the Phone field"
470
  msgstr "Felmeddelande för telefonfält"
471
 
472
- #: contact_form.php:699
473
- #: contact_form.php:728
474
  msgid "Error message for the Subject field"
475
  msgstr "Felmeddelande for ämnesfält"
476
 
477
- #: contact_form.php:700
478
- #: contact_form.php:729
479
  msgid "Error message for the Message field"
480
  msgstr "Felmeddelande för meddelandesfält"
481
 
482
- #: contact_form.php:701
483
- #: contact_form.php:730
484
  #, fuzzy
485
  msgid "Error message about the file type for the Attachment field"
486
  msgstr "Felmeddelande för "
487
 
488
- #: contact_form.php:702
489
- #: contact_form.php:731
490
  #, fuzzy
491
  msgid "Error message while uploading a file for the Attachment field to the server"
492
  msgstr "Felmeddelande för "
493
 
494
- #: contact_form.php:703
495
- #: contact_form.php:732
496
  #, fuzzy
497
  msgid "Error message while moving the file for the Attachment field"
498
  msgstr "Felmeddelande för "
499
 
500
- #: contact_form.php:704
501
- #: contact_form.php:733
502
  #, fuzzy
503
  msgid "Error message when file size limit for the Attachment field is exceeded"
504
  msgstr "Felmeddelande för "
505
 
506
- #: contact_form.php:705
507
- #: contact_form.php:734
508
  msgid "Error message for the Captcha field"
509
  msgstr "Felmeddelande för CAPTCHA"
510
 
511
- #: contact_form.php:706
512
- #: contact_form.php:735
513
  msgid "Error message for the whole form"
514
  msgstr "Felmeddelande för hela formen"
515
 
516
- #: contact_form.php:708
517
- #: contact_form.php:737
518
- #: contact_form.php:756
519
- #: contact_form.php:762
520
  msgid "Use shortcode"
521
  msgstr "Använda kortkod"
522
 
523
- #: contact_form.php:708
524
- #: contact_form.php:737
525
- #: contact_form.php:756
526
- #: contact_form.php:762
527
  msgid "for this language"
528
  msgstr "för detta språk"
529
 
530
- #: contact_form.php:744
531
  msgid "Action after email is sent"
532
  msgstr "Åtgärd efter meddelande skickas"
533
 
534
- #: contact_form.php:746
535
  msgid "Display text"
536
  msgstr "Visa tekst"
537
 
538
- #: contact_form.php:755
539
- #: contact_form.php:761
540
  msgid "Text"
541
  msgstr "Tekst"
542
 
543
- #: contact_form.php:768
544
  msgid "Redirect to the page"
545
  msgstr "omdirigering till sidan"
546
 
547
- #: contact_form.php:769
548
  msgid "Url"
549
  msgstr "Url"
550
 
551
- #: contact_form.php:774
552
- #: contact_form.php:949
553
  msgid "Save Changes"
554
  msgstr "Spara ändringar"
555
 
556
- #: contact_form.php:789
557
  #, fuzzy
558
  msgid "Contact Form Pro | Extra Settings"
559
  msgstr "Konktaktformulär Alternativ "
560
 
561
- #: contact_form.php:796
562
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
563
  msgstr ""
564
 
565
- #: contact_form.php:803
566
  msgid "Errors output"
567
  msgstr ""
568
 
569
- #: contact_form.php:806
570
  msgid "Display error messages"
571
  msgstr ""
572
 
573
- #: contact_form.php:807
574
  msgid "Color of the input field errors."
575
  msgstr ""
576
 
577
- #: contact_form.php:808
578
  #, fuzzy
579
  msgid "Display error messages & color of the input field errors"
580
  msgstr "Felmeddelande for ämnesfält"
581
 
582
- #: contact_form.php:813
583
  msgid "Add placeholder to the input blocks"
584
  msgstr ""
585
 
586
- #: contact_form.php:819
587
  #, fuzzy
588
  msgid "Add tooltips"
589
  msgstr "Ytterligare alternativ"
590
 
591
- #: contact_form.php:833
592
  #, fuzzy
593
  msgid "Email address"
594
  msgstr "E-post adress"
595
 
596
- #: contact_form.php:838
597
  #, fuzzy
598
  msgid "Phone Number"
599
  msgstr "Telefon:"
600
 
601
- #: contact_form.php:852
602
  #, fuzzy
603
  msgid "Attachment"
604
  msgstr "Bilaga:"
605
 
606
- #: contact_form.php:862
607
  #, fuzzy
608
  msgid "Style options"
609
  msgstr "Ytterligare alternativ"
610
 
611
- #: contact_form.php:865
612
  msgid "Text color"
613
  msgstr ""
614
 
615
- #: contact_form.php:868
616
- #: contact_form.php:873
617
- #: contact_form.php:883
618
- #: contact_form.php:888
619
- #: contact_form.php:893
620
- #: contact_form.php:898
621
- #: contact_form.php:908
622
- #: contact_form.php:913
623
- #: contact_form.php:919
624
- #: contact_form.php:930
625
- #: contact_form.php:935
626
- #: contact_form.php:940
627
  msgid "Default"
628
  msgstr ""
629
 
630
- #: contact_form.php:870
631
  msgid "Label text color"
632
  msgstr ""
633
 
634
- #: contact_form.php:875
635
  msgid "Placeholder color"
636
  msgstr ""
637
 
638
- #: contact_form.php:880
639
  msgid "Errors color"
640
  msgstr ""
641
 
642
- #: contact_form.php:885
643
  msgid "Error text color"
644
  msgstr ""
645
 
646
- #: contact_form.php:890
647
  msgid "Background color of the input field errors"
648
  msgstr ""
649
 
650
- #: contact_form.php:895
651
  msgid "Border color of the input field errors"
652
  msgstr ""
653
 
654
- #: contact_form.php:900
655
  msgid "Placeholder color of the input field errors"
656
  msgstr ""
657
 
658
- #: contact_form.php:905
659
  msgid "Input fields"
660
  msgstr ""
661
 
662
- #: contact_form.php:910
663
  msgid "Input fields background color"
664
  msgstr ""
665
 
666
- #: contact_form.php:915
667
  msgid "Text fields color"
668
  msgstr ""
669
 
670
- #: contact_form.php:917
671
  msgid "Border width in px, numbers only"
672
  msgstr ""
673
 
674
- #: contact_form.php:921
675
- #: contact_form.php:942
676
  msgid "Border color"
677
  msgstr ""
678
 
679
- #: contact_form.php:926
680
  #, fuzzy
681
  msgid "Submit button"
682
  msgstr "Skicka"
683
 
684
- #: contact_form.php:928
685
  msgid "Width in px, numbers only"
686
  msgstr ""
687
 
688
- #: contact_form.php:932
689
  msgid "Button color"
690
  msgstr ""
691
 
692
- #: contact_form.php:937
693
  msgid "Button text color"
694
  msgstr ""
695
 
696
- #: contact_form.php:953
697
  #, fuzzy
698
  msgid "Contact Form Pro | Preview"
699
  msgstr "Kontaktformulär"
700
 
701
- #: contact_form.php:956
702
  msgid "Show with errors"
703
  msgstr ""
704
 
705
- #: contact_form.php:964
706
- #: contact_form.php:966
707
  msgid "Please enter your full name..."
708
  msgstr ""
709
 
710
- #: contact_form.php:977
711
- #: contact_form.php:979
712
  msgid "Please enter your address..."
713
  msgstr ""
714
 
715
- #: contact_form.php:988
716
- #: contact_form.php:990
717
  #, fuzzy
718
  msgid "Please enter your email address..."
719
  msgstr "Använda det här e-postadress:"
720
 
721
- #: contact_form.php:999
722
- #: contact_form.php:1001
723
  msgid "Please enter your phone number..."
724
  msgstr ""
725
 
726
- #: contact_form.php:1010
727
- #: contact_form.php:1012
728
  msgid "Please enter subject..."
729
  msgstr ""
730
 
731
- #: contact_form.php:1020
732
- #: contact_form.php:1022
733
  msgid "Please enter your message..."
734
  msgstr ""
735
 
736
- #: contact_form.php:1033
737
  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"
738
  msgstr ""
739
 
740
- #: contact_form.php:1102
741
- msgid "Sorry, email message could not be delivered."
742
- msgstr "Tyvärr kan din e-post inte levereras."
743
-
744
- #: contact_form.php:1186
745
  msgid "You can attach the following file formats"
746
  msgstr "Du kan bifoga filer av följande typer"
747
 
748
- #: contact_form.php:1470
749
  msgid "Contact from"
750
  msgstr "Kontaktformulär"
751
 
752
- #: contact_form.php:1483
753
  msgid "Email"
754
  msgstr "E-post"
755
 
756
- #: contact_form.php:1497
757
  msgid "Site"
758
  msgstr "Sida"
759
 
760
- #: contact_form.php:1547
761
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
762
  msgstr "Om du kan se den här MIME, så din klient inte accepterar MIME-typer!"
763
 
764
- #: contact_form.php:1598
765
  msgid "FAQ"
766
  msgstr "FAQ"
767
 
768
- #: contact_form.php:1599
769
  msgid "Support"
770
  msgstr "Stöd"
771
 
772
- #: contact_form.php:1647
773
  msgid "Are you sure that you want to delete this language data?"
774
  msgstr "Är du säker på att du vill ta bort detta språk?"
775
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:58+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:58+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest <joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Meddelande"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Sida"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Använda det här e-postadress:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Tack så mycket för att kontakta oss."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Tyvärr kan din e-post inte levereras."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "Плагины BWS"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "aktiverade plugins"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Les mer"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Inställningar"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Installerade plugins"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Rekommenderade plugins"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Rekommenderade plugins"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Hämta"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Installera %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Installera nu från wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Om du har några frågor, vänligen kontakta oss via plugin@bestwebsoft.com eller fyll i vårt kontaktformulär på vår webbplats."
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "aktiverade plugins"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "aktiverade plugins"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Stöd"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Konktaktformulär Alternativ "
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Kontaktformulär"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Konktaktformulär Alternativ "
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Kontaktformulär"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Namn:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "E-post adress"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "E-post adress"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr "Telefon:"
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Ämne:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Meddelande:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Bilaga:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Skicka mig en kopia"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Skicka"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Ditt namn krävs."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "En giltig e-postadress krävs."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "En giltig e-postadress krävs."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  msgid "Phone number is required."
352
  msgstr "Fält 'telefon' krävs."
353
 
354
+ #: contact_form.php:425
355
+ #: contact_form.php:468
356
+ #: contact_form.php:471
357
  msgid "Subject is required."
358
  msgstr "Ämnesfält krävs."
359
 
360
+ #: contact_form.php:426
361
+ #: contact_form.php:467
362
+ #: contact_form.php:470
363
  msgid "Message text is required."
364
  msgstr "Meddelandesfält krävs."
365
 
366
+ #: contact_form.php:427
367
  msgid "File format is not valid."
368
  msgstr "Bilagan bryts."
369
 
370
+ #: contact_form.php:428
371
  msgid "File upload error."
372
  msgstr ""
373
 
374
+ #: contact_form.php:429
375
  msgid "The file could not be uploaded."
376
  msgstr ""
377
 
378
+ #: contact_form.php:430
379
  msgid "This file is too large."
380
  msgstr ""
381
 
382
+ #: contact_form.php:431
383
  msgid "Please fill out the CAPTCHA."
384
  msgstr "Vänligen fyll i CAPTCHA."
385
 
386
+ #: contact_form.php:432
387
  msgid "Please make corrections below and try again."
388
  msgstr "Vänligen göra korrigeringar nedan och försök igen."
389
 
390
+ #: contact_form.php:705
 
 
 
 
391
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
392
  msgstr "Om alternativet \"Omdirigera till sidan\" väljs, URL ska fyllas i följande format"
393
 
394
+ #: contact_form.php:714
395
  msgid "Such user does not exist. Settings are not saved."
396
  msgstr "Sådan användaren finns inte. Inställningar sparas inte."
397
 
398
+ #: contact_form.php:719
399
+ #: contact_form.php:725
400
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
401
  msgstr "Vänligen ange korrekt \"från\" e-postadress. Inställningar sparas inte."
402
 
403
+ #: contact_form.php:730
404
  #, fuzzy
405
  msgid "Settings saved."
406
  msgstr "Inställningar sparas."
407
 
408
+ #: contact_form.php:755
409
+ #: contact_form.php:1003
410
  #, fuzzy
411
  msgid "Extra settings"
412
  msgstr "Inställningar"
413
 
414
+ #: contact_form.php:760
415
+ #: contact_form.php:1259
416
  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:"
417
  msgstr "Om du vill lägga till ett kontaktformulär på din webbplats, bara kopiera och sätta detta kortkod i din post eller sida eller widget:"
418
 
419
+ #: contact_form.php:761
420
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
421
  msgstr "Om informationen i nedanstående fält är tomma då meddelandet kommer att skickas till en adress som angetts vid registreringen."
422
 
423
+ #: contact_form.php:765
424
  msgid "The user's email address:"
425
  msgstr "Använda e-postadress användare:"
426
 
427
+ #: contact_form.php:769
428
  msgid "Create a username"
429
  msgstr "Välj användarnamn"
430
 
431
+ #: contact_form.php:774
432
  msgid "Enter a username of the person who should get the messages from the contact form."
433
  msgstr "Ange ett namn på den användare som kommer att få meddelanden från ett kontaktformulär."
434
 
435
+ #: contact_form.php:778
436
  msgid "Use this email address:"
437
  msgstr "Använda det här e-postadress:"
438
 
439
+ #: contact_form.php:781
440
  msgid "Enter the email address you want the messages forwarded to."
441
  msgstr "Ange en e-postadress som ska användas för att få meddelanden."
442
 
443
+ #: contact_form.php:785
444
  msgid "Additional options"
445
  msgstr "Ytterligare alternativ"
446
 
447
+ #: contact_form.php:788
448
  msgid "What to use?"
449
  msgstr "Vad ska man använda?"
450
 
451
+ #: contact_form.php:791
452
  msgid "Wp-mail"
453
  msgstr "Wp-e-post"
454
 
455
+ #: contact_form.php:792
456
  msgid "You can use the wp_mail function for mailing"
457
  msgstr "För att skicka e-post kan du använda wordpress wp_mail funktionen."
458
 
459
+ #: contact_form.php:798
460
  msgid "Mail"
461
  msgstr "E-post"
462
 
463
+ #: contact_form.php:799
464
  msgid "To send mail you can use the php mail function"
465
  msgstr "För att skicka e-post kan du använda php funktionen."
466
 
467
+ #: contact_form.php:803
468
  msgid "Change text of the 'FROM' field"
469
  msgstr "Ändra tekst för 'FRÅN' fältet på e-postmeddelandet."
470
 
471
+ #: contact_form.php:809
472
  msgid "Enter the email address in the 'From' field"
473
  msgstr "Välj e-postadress för 'FRÅN' fältet för e-postmeddelandet."
474
 
475
+ #: contact_form.php:811
476
  msgid "User email"
477
  msgstr ""
478
 
479
+ #: contact_form.php:811
480
  #, fuzzy
481
  msgid "The email address of the user who fills the form will be used in the field 'From'."
482
  msgstr "В поле \"From\" в письме будет использоваться электронная почта того пользователя, который заполняет форму."
483
 
484
+ #: contact_form.php:813
485
  msgid "This email address will be used in the 'From' field."
486
  msgstr "В поле \"From\" в письме будет использоваться данная электронная почта"
487
 
488
+ #: contact_form.php:817
489
  #, fuzzy
490
  msgid "Display fields"
491
  msgstr "Visa tekst"
492
 
493
+ #: contact_form.php:819
494
+ #: contact_form.php:849
495
+ #: contact_form.php:1039
496
+ #: contact_form.php:1691
497
  #, fuzzy
498
  msgid "Address"
499
  msgstr "E-post adress"
500
 
501
+ #: contact_form.php:820
502
+ #: contact_form.php:851
503
+ #: contact_form.php:1699
504
  msgid "Phone"
505
  msgstr "Telefon"
506
 
507
+ #: contact_form.php:821
508
  #, fuzzy
509
  msgid "Attachment block"
510
  msgstr "Visa bilagablock"
511
 
512
+ #: contact_form.php:821
513
  msgid "Users can attach the following file formats"
514
  msgstr "Användare kan bifoga filer av följande typer"
515
 
516
+ #: contact_form.php:822
517
  #, fuzzy
518
  msgid "Tips below the Attachment block"
519
  msgstr "Visa förklaringar efter bilagablocket."
520
 
521
+ #: contact_form.php:823
522
  #, fuzzy
523
  msgid "Send me a copy block"
524
  msgstr "Visa 'Skicka mig en kopia' block."
525
 
526
+ #: contact_form.php:835
527
+ #: contact_form.php:838
528
+ #: contact_form.php:841
529
+ #: contact_form.php:1068
530
  msgid "Captcha"
531
  msgstr ""
532
 
533
+ #: contact_form.php:835
534
+ #: contact_form.php:838
535
+ #: contact_form.php:841
536
+ #: contact_form.php:1068
537
  msgid "(powered by bestwebsoft.com)"
538
  msgstr ""
539
 
540
+ #: contact_form.php:838
541
  #, fuzzy
542
  msgid "Activate captcha"
543
  msgstr "aktiverade plugins"
544
 
545
+ #: contact_form.php:841
546
  #, fuzzy
547
  msgid "Download captcha"
548
  msgstr "Hämta"
549
 
550
+ #: contact_form.php:846
551
  msgid "Required fields"
552
  msgstr "Fält krävs."
553
 
554
+ #: contact_form.php:848
555
+ #: contact_form.php:1034
556
+ #: contact_form.php:1686
557
  msgid "Name"
558
  msgstr "Namn"
559
 
560
+ #: contact_form.php:850
561
  #, fuzzy
562
  msgid "Email Address"
563
  msgstr "E-post adress"
564
 
565
+ #: contact_form.php:852
566
+ #: contact_form.php:1054
567
+ #: contact_form.php:1702
568
  msgid "Subject"
569
  msgstr "Ämne"
570
 
571
+ #: contact_form.php:853
572
+ #: contact_form.php:1058
573
+ #: contact_form.php:1705
574
  msgid "Message"
575
  msgstr "Meddelande"
576
 
577
+ #: contact_form.php:857
578
  #, fuzzy
579
  msgid "Display additional info in the email"
580
  msgstr "Visa ytterligare information i e-meddelande."
581
 
582
+ #: contact_form.php:862
583
+ #: contact_form.php:1658
584
  msgid "Sent from (ip address)"
585
  msgstr "Skickas från (ip adress)"
586
 
587
+ #: contact_form.php:863
588
+ #: contact_form.php:1663
589
  msgid "Date/Time"
590
  msgstr "Datum/Tid"
591
 
592
+ #: contact_form.php:864
593
+ #: contact_form.php:1668
594
  msgid "Sent from (referer)"
595
  msgstr "Kommande frå (referrer)"
596
 
597
+ #: contact_form.php:865
598
+ #: contact_form.php:1673
599
  msgid "Using (user agent)"
600
  msgstr "använda (användare/ombud)"
601
 
602
+ #: contact_form.php:869
603
  msgid "Language settings for the field names in the form"
604
  msgstr "Språkinställningar för etikettfält"
605
 
606
+ #: contact_form.php:878
607
  #, fuzzy
608
  msgid "Add a language"
609
  msgstr "Lägg till språk"
610
 
611
+ #: contact_form.php:882
612
  msgid "Change the names of the contact form fields and error messages"
613
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
614
 
615
+ #: contact_form.php:887
616
+ #: contact_form.php:958
617
  msgid "English"
618
  msgstr "Engelska"
619
 
620
+ #: contact_form.php:906
621
+ #: contact_form.php:935
622
  msgid "Error message for the Name field"
623
  msgstr "Felmeddelande för namnfält"
624
 
625
+ #: contact_form.php:907
626
+ #: contact_form.php:936
627
  #, fuzzy
628
  msgid "Error message for the Address field"
629
  msgstr "Felmeddelande för meddelandesfält"
630
 
631
+ #: contact_form.php:908
632
+ #: contact_form.php:937
633
  msgid "Error message for the Email field"
634
  msgstr "Felmeddelande för e-postadressfält"
635
 
636
+ #: contact_form.php:909
637
+ #: contact_form.php:938
638
  msgid "Error message for the Phone field"
639
  msgstr "Felmeddelande för telefonfält"
640
 
641
+ #: contact_form.php:910
642
+ #: contact_form.php:939
643
  msgid "Error message for the Subject field"
644
  msgstr "Felmeddelande for ämnesfält"
645
 
646
+ #: contact_form.php:911
647
+ #: contact_form.php:940
648
  msgid "Error message for the Message field"
649
  msgstr "Felmeddelande för meddelandesfält"
650
 
651
+ #: contact_form.php:912
652
+ #: contact_form.php:941
653
  #, fuzzy
654
  msgid "Error message about the file type for the Attachment field"
655
  msgstr "Felmeddelande för "
656
 
657
+ #: contact_form.php:913
658
+ #: contact_form.php:942
659
  #, fuzzy
660
  msgid "Error message while uploading a file for the Attachment field to the server"
661
  msgstr "Felmeddelande för "
662
 
663
+ #: contact_form.php:914
664
+ #: contact_form.php:943
665
  #, fuzzy
666
  msgid "Error message while moving the file for the Attachment field"
667
  msgstr "Felmeddelande för "
668
 
669
+ #: contact_form.php:915
670
+ #: contact_form.php:944
671
  #, fuzzy
672
  msgid "Error message when file size limit for the Attachment field is exceeded"
673
  msgstr "Felmeddelande för "
674
 
675
+ #: contact_form.php:916
676
+ #: contact_form.php:945
677
  msgid "Error message for the Captcha field"
678
  msgstr "Felmeddelande för CAPTCHA"
679
 
680
+ #: contact_form.php:917
681
+ #: contact_form.php:946
682
  msgid "Error message for the whole form"
683
  msgstr "Felmeddelande för hela formen"
684
 
685
+ #: contact_form.php:919
686
+ #: contact_form.php:948
687
+ #: contact_form.php:967
688
+ #: contact_form.php:973
689
  msgid "Use shortcode"
690
  msgstr "Använda kortkod"
691
 
692
+ #: contact_form.php:919
693
+ #: contact_form.php:948
694
+ #: contact_form.php:967
695
+ #: contact_form.php:973
696
  msgid "for this language"
697
  msgstr "för detta språk"
698
 
699
+ #: contact_form.php:955
700
  msgid "Action after email is sent"
701
  msgstr "Åtgärd efter meddelande skickas"
702
 
703
+ #: contact_form.php:957
704
  msgid "Display text"
705
  msgstr "Visa tekst"
706
 
707
+ #: contact_form.php:966
708
+ #: contact_form.php:972
709
  msgid "Text"
710
  msgstr "Tekst"
711
 
712
+ #: contact_form.php:979
713
  msgid "Redirect to the page"
714
  msgstr "omdirigering till sidan"
715
 
716
+ #: contact_form.php:980
717
  msgid "Url"
718
  msgstr "Url"
719
 
720
+ #: contact_form.php:985
721
+ #: contact_form.php:1160
722
  msgid "Save Changes"
723
  msgstr "Spara ändringar"
724
 
725
+ #: contact_form.php:1000
726
  #, fuzzy
727
  msgid "Contact Form Pro | Extra Settings"
728
  msgstr "Konktaktformulär Alternativ "
729
 
730
+ #: contact_form.php:1007
731
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
732
  msgstr ""
733
 
734
+ #: contact_form.php:1014
735
  msgid "Errors output"
736
  msgstr ""
737
 
738
+ #: contact_form.php:1017
739
  msgid "Display error messages"
740
  msgstr ""
741
 
742
+ #: contact_form.php:1018
743
  msgid "Color of the input field errors."
744
  msgstr ""
745
 
746
+ #: contact_form.php:1019
747
  #, fuzzy
748
  msgid "Display error messages & color of the input field errors"
749
  msgstr "Felmeddelande for ämnesfält"
750
 
751
+ #: contact_form.php:1024
752
  msgid "Add placeholder to the input blocks"
753
  msgstr ""
754
 
755
+ #: contact_form.php:1030
756
  #, fuzzy
757
  msgid "Add tooltips"
758
  msgstr "Ytterligare alternativ"
759
 
760
+ #: contact_form.php:1044
761
  #, fuzzy
762
  msgid "Email address"
763
  msgstr "E-post adress"
764
 
765
+ #: contact_form.php:1049
766
  #, fuzzy
767
  msgid "Phone Number"
768
  msgstr "Telefon:"
769
 
770
+ #: contact_form.php:1063
771
  #, fuzzy
772
  msgid "Attachment"
773
  msgstr "Bilaga:"
774
 
775
+ #: contact_form.php:1073
776
  #, fuzzy
777
  msgid "Style options"
778
  msgstr "Ytterligare alternativ"
779
 
780
+ #: contact_form.php:1076
781
  msgid "Text color"
782
  msgstr ""
783
 
784
+ #: contact_form.php:1079
785
+ #: contact_form.php:1084
786
+ #: contact_form.php:1094
787
+ #: contact_form.php:1099
788
+ #: contact_form.php:1104
789
+ #: contact_form.php:1109
790
+ #: contact_form.php:1119
791
+ #: contact_form.php:1124
792
+ #: contact_form.php:1130
793
+ #: contact_form.php:1141
794
+ #: contact_form.php:1146
795
+ #: contact_form.php:1151
796
  msgid "Default"
797
  msgstr ""
798
 
799
+ #: contact_form.php:1081
800
  msgid "Label text color"
801
  msgstr ""
802
 
803
+ #: contact_form.php:1086
804
  msgid "Placeholder color"
805
  msgstr ""
806
 
807
+ #: contact_form.php:1091
808
  msgid "Errors color"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1096
812
  msgid "Error text color"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1101
816
  msgid "Background color of the input field errors"
817
  msgstr ""
818
 
819
+ #: contact_form.php:1106
820
  msgid "Border color of the input field errors"
821
  msgstr ""
822
 
823
+ #: contact_form.php:1111
824
  msgid "Placeholder color of the input field errors"
825
  msgstr ""
826
 
827
+ #: contact_form.php:1116
828
  msgid "Input fields"
829
  msgstr ""
830
 
831
+ #: contact_form.php:1121
832
  msgid "Input fields background color"
833
  msgstr ""
834
 
835
+ #: contact_form.php:1126
836
  msgid "Text fields color"
837
  msgstr ""
838
 
839
+ #: contact_form.php:1128
840
  msgid "Border width in px, numbers only"
841
  msgstr ""
842
 
843
+ #: contact_form.php:1132
844
+ #: contact_form.php:1153
845
  msgid "Border color"
846
  msgstr ""
847
 
848
+ #: contact_form.php:1137
849
  #, fuzzy
850
  msgid "Submit button"
851
  msgstr "Skicka"
852
 
853
+ #: contact_form.php:1139
854
  msgid "Width in px, numbers only"
855
  msgstr ""
856
 
857
+ #: contact_form.php:1143
858
  msgid "Button color"
859
  msgstr ""
860
 
861
+ #: contact_form.php:1148
862
  msgid "Button text color"
863
  msgstr ""
864
 
865
+ #: contact_form.php:1164
866
  #, fuzzy
867
  msgid "Contact Form Pro | Preview"
868
  msgstr "Kontaktformulär"
869
 
870
+ #: contact_form.php:1167
871
  msgid "Show with errors"
872
  msgstr ""
873
 
874
+ #: contact_form.php:1175
875
+ #: contact_form.php:1177
876
  msgid "Please enter your full name..."
877
  msgstr ""
878
 
879
+ #: contact_form.php:1188
880
+ #: contact_form.php:1190
881
  msgid "Please enter your address..."
882
  msgstr ""
883
 
884
+ #: contact_form.php:1199
885
+ #: contact_form.php:1201
886
  #, fuzzy
887
  msgid "Please enter your email address..."
888
  msgstr "Använda det här e-postadress:"
889
 
890
+ #: contact_form.php:1210
891
+ #: contact_form.php:1212
892
  msgid "Please enter your phone number..."
893
  msgstr ""
894
 
895
+ #: contact_form.php:1221
896
+ #: contact_form.php:1223
897
  msgid "Please enter subject..."
898
  msgstr ""
899
 
900
+ #: contact_form.php:1231
901
+ #: contact_form.php:1233
902
  msgid "Please enter your message..."
903
  msgstr ""
904
 
905
+ #: contact_form.php:1244
906
  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"
907
  msgstr ""
908
 
909
+ #: contact_form.php:1397
 
 
 
 
910
  msgid "You can attach the following file formats"
911
  msgstr "Du kan bifoga filer av följande typer"
912
 
913
+ #: contact_form.php:1681
914
  msgid "Contact from"
915
  msgstr "Kontaktformulär"
916
 
917
+ #: contact_form.php:1694
918
  msgid "Email"
919
  msgstr "E-post"
920
 
921
+ #: contact_form.php:1708
922
  msgid "Site"
923
  msgstr "Sida"
924
 
925
+ #: contact_form.php:1758
926
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
927
  msgstr "Om du kan se den här MIME, så din klient inte accepterar MIME-typer!"
928
 
929
+ #: contact_form.php:1809
930
  msgid "FAQ"
931
  msgstr "FAQ"
932
 
933
+ #: contact_form.php:1810
934
  msgid "Support"
935
  msgstr "Stöd"
936
 
937
+ #: contact_form.php:1858
938
  msgid "Are you sure that you want to delete this language data?"
939
  msgstr "Är du säker på att du vill ta bort detta språk?"
940
 
languages/contact_form-tr_TR.mo CHANGED
Binary file
languages/contact_form-tr_TR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-16 16:06+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:06+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,754 +16,919 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "BWS Plugins"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Aktif eklentiler"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Devamı"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Ayarlar"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Eklenti Kuruldu"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Önerilen Eklentiler"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Önerilen Eklentiler"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "İndir"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Kur %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Wordpress.org dan şimdi yükleyin"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Herhangi bir sorunuz varsa, lütfen plugin@bestwebsoft.com aracılığıyla bize ulaşın veya sitemizdeki iletişim formunu kullanın"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "İletişim Formu Seçenekleri"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "İletişim Formu"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "İletişim Formu Seçenekleri"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "İletişim Formu"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Adınız Soyadınız :"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "E-mail Adresiniz :"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "E-mail Adresiniz :"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr ""
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Konu:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Mesajınız:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Dosya Eki:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Bir kopyasını banada gönder"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Gönder"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Adınız ve soyadınız gereklidir."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Düzgün bir e-posta adresi gereklidir."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "Düzgün bir e-posta adresi gereklidir."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  #, fuzzy
179
  msgid "Phone number is required."
180
  msgstr "Adınız ve soyadınız gereklidir."
181
 
182
- #: contact_form.php:214
183
- #: contact_form.php:257
184
- #: contact_form.php:260
185
  msgid "Subject is required."
186
  msgstr "Konu metni gereklidir."
187
 
188
- #: contact_form.php:215
189
- #: contact_form.php:256
190
- #: contact_form.php:259
191
  msgid "Message text is required."
192
  msgstr "Mesaj metni gereklidir."
193
 
194
- #: contact_form.php:216
195
  msgid "File format is not valid."
196
  msgstr "Eklenti Hatalı"
197
 
198
- #: contact_form.php:217
199
  msgid "File upload error."
200
  msgstr ""
201
 
202
- #: contact_form.php:218
203
  msgid "The file could not be uploaded."
204
  msgstr ""
205
 
206
- #: contact_form.php:219
207
  msgid "This file is too large."
208
  msgstr ""
209
 
210
- #: contact_form.php:220
211
  msgid "Please fill out the CAPTCHA."
212
  msgstr "CAPTCHA Doldurunuz"
213
 
214
- #: contact_form.php:221
215
  msgid "Please make corrections below and try again."
216
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
217
 
218
- #: contact_form.php:223
219
- msgid "Thank you for contacting us."
220
- msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
221
-
222
- #: contact_form.php:494
223
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
224
  msgstr ""
225
 
226
- #: contact_form.php:503
227
  msgid "Such user does not exist. Settings are not saved."
228
  msgstr "Böyle bir kullanıcı yok. Ayarlar kayıt edilemedi."
229
 
230
- #: contact_form.php:508
231
- #: contact_form.php:514
232
  #, fuzzy
233
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
234
  msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
235
 
236
- #: contact_form.php:519
237
  #, fuzzy
238
  msgid "Settings saved."
239
  msgstr "Ayarlar Kayıt Edildi."
240
 
241
- #: contact_form.php:544
242
- #: contact_form.php:792
243
  #, fuzzy
244
  msgid "Extra settings"
245
  msgstr "Ayarlar"
246
 
247
- #: contact_form.php:549
248
- #: contact_form.php:1048
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 "İletişim formunu sitenize yerleştirmek istiyorsanız lütfen kısa kodu yeni sayfa içerisine html modunda iken ekleyiniz:"
251
 
252
- #: contact_form.php:550
253
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
254
  msgstr "Lütfen aşağıdaki alanları doğru ve eksiksiz olarak doldurun."
255
 
256
- #: contact_form.php:554
257
  msgid "The user's email address:"
258
  msgstr "Kullanıcı adı veya mail girin"
259
 
260
- #: contact_form.php:558
261
  msgid "Create a username"
262
  msgstr "Kullanıcı adı seçin"
263
 
264
- #: contact_form.php:563
265
  msgid "Enter a username of the person who should get the messages from the contact form."
266
  msgstr "Kullanıcı bir iletişim formunu mesajları alacak bir isim ayarlayın."
267
 
268
- #: contact_form.php:567
269
  msgid "Use this email address:"
270
  msgstr "Bu e-posta adresini kullan:"
271
 
272
- #: contact_form.php:570
273
  msgid "Enter the email address you want the messages forwarded to."
274
  msgstr "Mesaj almak için kullanılan bir e-posta adresi ayarlayın."
275
 
276
- #: contact_form.php:574
277
  msgid "Additional options"
278
  msgstr "Ek Seçenekler"
279
 
280
- #: contact_form.php:577
281
  msgid "What to use?"
282
  msgstr ""
283
 
284
- #: contact_form.php:580
285
  msgid "Wp-mail"
286
  msgstr "Wp-mail"
287
 
288
- #: contact_form.php:581
289
  msgid "You can use the wp_mail function for mailing"
290
  msgstr ""
291
 
292
- #: contact_form.php:587
293
  msgid "Mail"
294
  msgstr "Mail"
295
 
296
- #: contact_form.php:588
297
  msgid "To send mail you can use the php mail function"
298
  msgstr ""
299
 
300
- #: contact_form.php:592
301
  #, fuzzy
302
  msgid "Change text of the 'FROM' field"
303
  msgstr "Iletişim formu alanları DAN değiştirin"
304
 
305
- #: contact_form.php:598
306
  msgid "Enter the email address in the 'From' field"
307
  msgstr ""
308
 
309
- #: contact_form.php:600
310
  msgid "User email"
311
  msgstr ""
312
 
313
- #: contact_form.php:600
314
  msgid "The email address of the user who fills the form will be used in the field 'From'."
315
  msgstr ""
316
 
317
- #: contact_form.php:602
318
  msgid "This email address will be used in the 'From' field."
319
  msgstr ""
320
 
321
- #: contact_form.php:606
322
  #, fuzzy
323
  msgid "Display fields"
324
  msgstr "Eklenti Bloğunu Göster"
325
 
326
- #: contact_form.php:608
327
- #: contact_form.php:638
328
- #: contact_form.php:828
329
- #: contact_form.php:1480
330
  #, fuzzy
331
  msgid "Address"
332
  msgstr "E-mail Adresiniz :"
333
 
334
- #: contact_form.php:609
335
- #: contact_form.php:640
336
- #: contact_form.php:1488
337
  msgid "Phone"
338
  msgstr ""
339
 
340
- #: contact_form.php:610
341
  #, fuzzy
342
  msgid "Attachment block"
343
  msgstr "Eklenti Bloğunu Göster"
344
 
345
- #: contact_form.php:610
346
  msgid "Users can attach the following file formats"
347
  msgstr "Kullanıcılar aşağıdaki türdeki dosyaları yükleyebilir"
348
 
349
- #: contact_form.php:611
350
  #, fuzzy
351
  msgid "Tips below the Attachment block"
352
  msgstr "Eklenti Bloğunu Göster"
353
 
354
- #: contact_form.php:612
355
  #, fuzzy
356
  msgid "Send me a copy block"
357
  msgstr "Bana bir kopya gönder bloğunu göster"
358
 
359
- #: contact_form.php:624
360
- #: contact_form.php:627
361
- #: contact_form.php:630
362
- #: contact_form.php:857
363
  msgid "Captcha"
364
  msgstr ""
365
 
366
- #: contact_form.php:624
367
- #: contact_form.php:627
368
- #: contact_form.php:630
369
- #: contact_form.php:857
370
  msgid "(powered by bestwebsoft.com)"
371
  msgstr ""
372
 
373
- #: contact_form.php:627
374
  #, fuzzy
375
  msgid "Activate captcha"
376
  msgstr "Aktif eklentiler"
377
 
378
- #: contact_form.php:630
379
  #, fuzzy
380
  msgid "Download captcha"
381
  msgstr "İndir"
382
 
383
- #: contact_form.php:635
384
  msgid "Required fields"
385
  msgstr ""
386
 
387
- #: contact_form.php:637
388
- #: contact_form.php:823
389
- #: contact_form.php:1475
390
  msgid "Name"
391
  msgstr "Adınız Soyadınız"
392
 
393
- #: contact_form.php:639
394
  #, fuzzy
395
  msgid "Email Address"
396
  msgstr "E-mail Adresiniz :"
397
 
398
- #: contact_form.php:641
399
- #: contact_form.php:843
400
- #: contact_form.php:1491
401
  msgid "Subject"
402
  msgstr "Konu"
403
 
404
- #: contact_form.php:642
405
- #: contact_form.php:847
406
- #: contact_form.php:1494
407
  msgid "Message"
408
  msgstr "Mesaj"
409
 
410
- #: contact_form.php:646
411
  msgid "Display additional info in the email"
412
  msgstr ""
413
 
414
- #: contact_form.php:651
415
- #: contact_form.php:1447
416
  msgid "Sent from (ip address)"
417
  msgstr "Geldiği (ip adresi)"
418
 
419
- #: contact_form.php:652
420
- #: contact_form.php:1452
421
  msgid "Date/Time"
422
  msgstr "Tarih/Zaman"
423
 
424
- #: contact_form.php:653
425
- #: contact_form.php:1457
426
  msgid "Sent from (referer)"
427
  msgstr "Gelen"
428
 
429
- #: contact_form.php:654
430
- #: contact_form.php:1462
431
  msgid "Using (user agent)"
432
  msgstr "Using (user agent)"
433
 
434
- #: contact_form.php:658
435
  msgid "Language settings for the field names in the form"
436
  msgstr ""
437
 
438
- #: contact_form.php:667
439
  msgid "Add a language"
440
  msgstr ""
441
 
442
- #: contact_form.php:671
443
  msgid "Change the names of the contact form fields and error messages"
444
  msgstr "Iletişim formu alanlar için değişim etiket"
445
 
446
- #: contact_form.php:676
447
- #: contact_form.php:747
448
  msgid "English"
449
  msgstr ""
450
 
451
- #: contact_form.php:695
452
- #: contact_form.php:724
453
  msgid "Error message for the Name field"
454
  msgstr ""
455
 
456
- #: contact_form.php:696
457
- #: contact_form.php:725
458
  msgid "Error message for the Address field"
459
  msgstr ""
460
 
461
- #: contact_form.php:697
462
- #: contact_form.php:726
463
  msgid "Error message for the Email field"
464
  msgstr ""
465
 
466
- #: contact_form.php:698
467
- #: contact_form.php:727
468
  msgid "Error message for the Phone field"
469
  msgstr ""
470
 
471
- #: contact_form.php:699
472
- #: contact_form.php:728
473
  msgid "Error message for the Subject field"
474
  msgstr ""
475
 
476
- #: contact_form.php:700
477
- #: contact_form.php:729
478
  msgid "Error message for the Message field"
479
  msgstr ""
480
 
481
- #: contact_form.php:701
482
- #: contact_form.php:730
483
  msgid "Error message about the file type for the Attachment field"
484
  msgstr ""
485
 
486
- #: contact_form.php:702
487
- #: contact_form.php:731
488
  msgid "Error message while uploading a file for the Attachment field to the server"
489
  msgstr ""
490
 
491
- #: contact_form.php:703
492
- #: contact_form.php:732
493
  msgid "Error message while moving the file for the Attachment field"
494
  msgstr ""
495
 
496
- #: contact_form.php:704
497
- #: contact_form.php:733
498
  msgid "Error message when file size limit for the Attachment field is exceeded"
499
  msgstr ""
500
 
501
- #: contact_form.php:705
502
- #: contact_form.php:734
503
  msgid "Error message for the Captcha field"
504
  msgstr ""
505
 
506
- #: contact_form.php:706
507
- #: contact_form.php:735
508
  msgid "Error message for the whole form"
509
  msgstr ""
510
 
511
- #: contact_form.php:708
512
- #: contact_form.php:737
513
- #: contact_form.php:756
514
- #: contact_form.php:762
515
  msgid "Use shortcode"
516
  msgstr ""
517
 
518
- #: contact_form.php:708
519
- #: contact_form.php:737
520
- #: contact_form.php:756
521
- #: contact_form.php:762
522
  msgid "for this language"
523
  msgstr ""
524
 
525
- #: contact_form.php:744
526
  msgid "Action after email is sent"
527
  msgstr ""
528
 
529
- #: contact_form.php:746
530
  #, fuzzy
531
  msgid "Display text"
532
  msgstr "Eklenti Bloğunu Göster"
533
 
534
- #: contact_form.php:755
535
- #: contact_form.php:761
536
  msgid "Text"
537
  msgstr ""
538
 
539
- #: contact_form.php:768
540
  msgid "Redirect to the page"
541
  msgstr ""
542
 
543
- #: contact_form.php:769
544
  msgid "Url"
545
  msgstr ""
546
 
547
- #: contact_form.php:774
548
- #: contact_form.php:949
549
  msgid "Save Changes"
550
  msgstr "Değişiklikler Kayıt Edildi"
551
 
552
- #: contact_form.php:789
553
  #, fuzzy
554
  msgid "Contact Form Pro | Extra Settings"
555
  msgstr "İletişim Formu Seçenekleri"
556
 
557
- #: contact_form.php:796
558
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
559
  msgstr ""
560
 
561
- #: contact_form.php:803
562
  msgid "Errors output"
563
  msgstr ""
564
 
565
- #: contact_form.php:806
566
  msgid "Display error messages"
567
  msgstr ""
568
 
569
- #: contact_form.php:807
570
  msgid "Color of the input field errors."
571
  msgstr ""
572
 
573
- #: contact_form.php:808
574
  msgid "Display error messages & color of the input field errors"
575
  msgstr ""
576
 
577
- #: contact_form.php:813
578
  msgid "Add placeholder to the input blocks"
579
  msgstr ""
580
 
581
- #: contact_form.php:819
582
  #, fuzzy
583
  msgid "Add tooltips"
584
  msgstr "Ek Seçenekler"
585
 
586
- #: contact_form.php:833
587
  #, fuzzy
588
  msgid "Email address"
589
  msgstr "E-mail Adresiniz :"
590
 
591
- #: contact_form.php:838
592
  msgid "Phone Number"
593
  msgstr ""
594
 
595
- #: contact_form.php:852
596
  #, fuzzy
597
  msgid "Attachment"
598
  msgstr "Dosya Eki:"
599
 
600
- #: contact_form.php:862
601
  #, fuzzy
602
  msgid "Style options"
603
  msgstr "Ek Seçenekler"
604
 
605
- #: contact_form.php:865
606
  msgid "Text color"
607
  msgstr ""
608
 
609
- #: contact_form.php:868
610
- #: contact_form.php:873
611
- #: contact_form.php:883
612
- #: contact_form.php:888
613
- #: contact_form.php:893
614
- #: contact_form.php:898
615
- #: contact_form.php:908
616
- #: contact_form.php:913
617
- #: contact_form.php:919
618
- #: contact_form.php:930
619
- #: contact_form.php:935
620
- #: contact_form.php:940
621
  msgid "Default"
622
  msgstr ""
623
 
624
- #: contact_form.php:870
625
  msgid "Label text color"
626
  msgstr ""
627
 
628
- #: contact_form.php:875
629
  msgid "Placeholder color"
630
  msgstr ""
631
 
632
- #: contact_form.php:880
633
  msgid "Errors color"
634
  msgstr ""
635
 
636
- #: contact_form.php:885
637
  msgid "Error text color"
638
  msgstr ""
639
 
640
- #: contact_form.php:890
641
  msgid "Background color of the input field errors"
642
  msgstr ""
643
 
644
- #: contact_form.php:895
645
  msgid "Border color of the input field errors"
646
  msgstr ""
647
 
648
- #: contact_form.php:900
649
  msgid "Placeholder color of the input field errors"
650
  msgstr ""
651
 
652
- #: contact_form.php:905
653
  msgid "Input fields"
654
  msgstr ""
655
 
656
- #: contact_form.php:910
657
  msgid "Input fields background color"
658
  msgstr ""
659
 
660
- #: contact_form.php:915
661
  msgid "Text fields color"
662
  msgstr ""
663
 
664
- #: contact_form.php:917
665
  msgid "Border width in px, numbers only"
666
  msgstr ""
667
 
668
- #: contact_form.php:921
669
- #: contact_form.php:942
670
  msgid "Border color"
671
  msgstr ""
672
 
673
- #: contact_form.php:926
674
  #, fuzzy
675
  msgid "Submit button"
676
  msgstr "Gönder"
677
 
678
- #: contact_form.php:928
679
  msgid "Width in px, numbers only"
680
  msgstr ""
681
 
682
- #: contact_form.php:932
683
  msgid "Button color"
684
  msgstr ""
685
 
686
- #: contact_form.php:937
687
  msgid "Button text color"
688
  msgstr ""
689
 
690
- #: contact_form.php:953
691
  #, fuzzy
692
  msgid "Contact Form Pro | Preview"
693
  msgstr "İletişim Formu"
694
 
695
- #: contact_form.php:956
696
  msgid "Show with errors"
697
  msgstr ""
698
 
699
- #: contact_form.php:964
700
- #: contact_form.php:966
701
  msgid "Please enter your full name..."
702
  msgstr ""
703
 
704
- #: contact_form.php:977
705
- #: contact_form.php:979
706
  msgid "Please enter your address..."
707
  msgstr ""
708
 
709
- #: contact_form.php:988
710
- #: contact_form.php:990
711
  #, fuzzy
712
  msgid "Please enter your email address..."
713
  msgstr "Bu e-posta adresini kullan:"
714
 
715
- #: contact_form.php:999
716
- #: contact_form.php:1001
717
  msgid "Please enter your phone number..."
718
  msgstr ""
719
 
720
- #: contact_form.php:1010
721
- #: contact_form.php:1012
722
  msgid "Please enter subject..."
723
  msgstr ""
724
 
725
- #: contact_form.php:1020
726
- #: contact_form.php:1022
727
  msgid "Please enter your message..."
728
  msgstr ""
729
 
730
- #: contact_form.php:1033
731
  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"
732
  msgstr ""
733
 
734
- #: contact_form.php:1102
735
- msgid "Sorry, email message could not be delivered."
736
- msgstr "Üzgünüz, e-posta gönderilemedi."
737
-
738
- #: contact_form.php:1186
739
  msgid "You can attach the following file formats"
740
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
741
 
742
- #: contact_form.php:1470
743
  msgid "Contact from"
744
  msgstr "Adlı Kişiden Mail Var"
745
 
746
- #: contact_form.php:1483
747
  msgid "Email"
748
  msgstr "e-mail"
749
 
750
- #: contact_form.php:1497
751
  msgid "Site"
752
  msgstr "Site"
753
 
754
- #: contact_form.php:1547
755
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
756
  msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
757
 
758
- #: contact_form.php:1598
759
  msgid "FAQ"
760
  msgstr "Sık Sorulanlar"
761
 
762
- #: contact_form.php:1599
763
  msgid "Support"
764
  msgstr "Destek"
765
 
766
- #: contact_form.php:1647
767
  msgid "Are you sure that you want to delete this language data?"
768
  msgstr ""
769
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:58+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:58+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Mesaj"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Site"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Bu e-posta adresini kullan:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Üzgünüz, e-posta gönderilemedi."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "BWS Plugins"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Aktif eklentiler"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Devamı"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Ayarlar"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Eklenti Kuruldu"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Önerilen Eklentiler"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Önerilen Eklentiler"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "İndir"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Kur %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Wordpress.org dan şimdi yükleyin"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Herhangi bir sorunuz varsa, lütfen plugin@bestwebsoft.com aracılığıyla bize ulaşın veya sitemizdeki iletişim formunu kullanın"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Aktif eklentiler"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Aktif eklentiler"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Destek"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "İletişim Formu Seçenekleri"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "İletişim Formu"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "İletişim Formu Seçenekleri"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "İletişim Formu"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Adınız Soyadınız :"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "E-mail Adresiniz :"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "E-mail Adresiniz :"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr ""
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Konu:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Mesajınız:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Dosya Eki:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Bir kopyasını banada gönder"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Gönder"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Adınız ve soyadınız gereklidir."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Düzgün bir e-posta adresi gereklidir."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "Düzgün bir e-posta adresi gereklidir."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  #, fuzzy
352
  msgid "Phone number is required."
353
  msgstr "Adınız ve soyadınız gereklidir."
354
 
355
+ #: contact_form.php:425
356
+ #: contact_form.php:468
357
+ #: contact_form.php:471
358
  msgid "Subject is required."
359
  msgstr "Konu metni gereklidir."
360
 
361
+ #: contact_form.php:426
362
+ #: contact_form.php:467
363
+ #: contact_form.php:470
364
  msgid "Message text is required."
365
  msgstr "Mesaj metni gereklidir."
366
 
367
+ #: contact_form.php:427
368
  msgid "File format is not valid."
369
  msgstr "Eklenti Hatalı"
370
 
371
+ #: contact_form.php:428
372
  msgid "File upload error."
373
  msgstr ""
374
 
375
+ #: contact_form.php:429
376
  msgid "The file could not be uploaded."
377
  msgstr ""
378
 
379
+ #: contact_form.php:430
380
  msgid "This file is too large."
381
  msgstr ""
382
 
383
+ #: contact_form.php:431
384
  msgid "Please fill out the CAPTCHA."
385
  msgstr "CAPTCHA Doldurunuz"
386
 
387
+ #: contact_form.php:432
388
  msgid "Please make corrections below and try again."
389
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
390
 
391
+ #: contact_form.php:705
 
 
 
 
392
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
393
  msgstr ""
394
 
395
+ #: contact_form.php:714
396
  msgid "Such user does not exist. Settings are not saved."
397
  msgstr "Böyle bir kullanıcı yok. Ayarlar kayıt edilemedi."
398
 
399
+ #: contact_form.php:719
400
+ #: contact_form.php:725
401
  #, fuzzy
402
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
403
  msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
404
 
405
+ #: contact_form.php:730
406
  #, fuzzy
407
  msgid "Settings saved."
408
  msgstr "Ayarlar Kayıt Edildi."
409
 
410
+ #: contact_form.php:755
411
+ #: contact_form.php:1003
412
  #, fuzzy
413
  msgid "Extra settings"
414
  msgstr "Ayarlar"
415
 
416
+ #: contact_form.php:760
417
+ #: contact_form.php:1259
418
  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:"
419
  msgstr "İletişim formunu sitenize yerleştirmek istiyorsanız lütfen kısa kodu yeni sayfa içerisine html modunda iken ekleyiniz:"
420
 
421
+ #: contact_form.php:761
422
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
423
  msgstr "Lütfen aşağıdaki alanları doğru ve eksiksiz olarak doldurun."
424
 
425
+ #: contact_form.php:765
426
  msgid "The user's email address:"
427
  msgstr "Kullanıcı adı veya mail girin"
428
 
429
+ #: contact_form.php:769
430
  msgid "Create a username"
431
  msgstr "Kullanıcı adı seçin"
432
 
433
+ #: contact_form.php:774
434
  msgid "Enter a username of the person who should get the messages from the contact form."
435
  msgstr "Kullanıcı bir iletişim formunu mesajları alacak bir isim ayarlayın."
436
 
437
+ #: contact_form.php:778
438
  msgid "Use this email address:"
439
  msgstr "Bu e-posta adresini kullan:"
440
 
441
+ #: contact_form.php:781
442
  msgid "Enter the email address you want the messages forwarded to."
443
  msgstr "Mesaj almak için kullanılan bir e-posta adresi ayarlayın."
444
 
445
+ #: contact_form.php:785
446
  msgid "Additional options"
447
  msgstr "Ek Seçenekler"
448
 
449
+ #: contact_form.php:788
450
  msgid "What to use?"
451
  msgstr ""
452
 
453
+ #: contact_form.php:791
454
  msgid "Wp-mail"
455
  msgstr "Wp-mail"
456
 
457
+ #: contact_form.php:792
458
  msgid "You can use the wp_mail function for mailing"
459
  msgstr ""
460
 
461
+ #: contact_form.php:798
462
  msgid "Mail"
463
  msgstr "Mail"
464
 
465
+ #: contact_form.php:799
466
  msgid "To send mail you can use the php mail function"
467
  msgstr ""
468
 
469
+ #: contact_form.php:803
470
  #, fuzzy
471
  msgid "Change text of the 'FROM' field"
472
  msgstr "Iletişim formu alanları DAN değiştirin"
473
 
474
+ #: contact_form.php:809
475
  msgid "Enter the email address in the 'From' field"
476
  msgstr ""
477
 
478
+ #: contact_form.php:811
479
  msgid "User email"
480
  msgstr ""
481
 
482
+ #: contact_form.php:811
483
  msgid "The email address of the user who fills the form will be used in the field 'From'."
484
  msgstr ""
485
 
486
+ #: contact_form.php:813
487
  msgid "This email address will be used in the 'From' field."
488
  msgstr ""
489
 
490
+ #: contact_form.php:817
491
  #, fuzzy
492
  msgid "Display fields"
493
  msgstr "Eklenti Bloğunu Göster"
494
 
495
+ #: contact_form.php:819
496
+ #: contact_form.php:849
497
+ #: contact_form.php:1039
498
+ #: contact_form.php:1691
499
  #, fuzzy
500
  msgid "Address"
501
  msgstr "E-mail Adresiniz :"
502
 
503
+ #: contact_form.php:820
504
+ #: contact_form.php:851
505
+ #: contact_form.php:1699
506
  msgid "Phone"
507
  msgstr ""
508
 
509
+ #: contact_form.php:821
510
  #, fuzzy
511
  msgid "Attachment block"
512
  msgstr "Eklenti Bloğunu Göster"
513
 
514
+ #: contact_form.php:821
515
  msgid "Users can attach the following file formats"
516
  msgstr "Kullanıcılar aşağıdaki türdeki dosyaları yükleyebilir"
517
 
518
+ #: contact_form.php:822
519
  #, fuzzy
520
  msgid "Tips below the Attachment block"
521
  msgstr "Eklenti Bloğunu Göster"
522
 
523
+ #: contact_form.php:823
524
  #, fuzzy
525
  msgid "Send me a copy block"
526
  msgstr "Bana bir kopya gönder bloğunu göster"
527
 
528
+ #: contact_form.php:835
529
+ #: contact_form.php:838
530
+ #: contact_form.php:841
531
+ #: contact_form.php:1068
532
  msgid "Captcha"
533
  msgstr ""
534
 
535
+ #: contact_form.php:835
536
+ #: contact_form.php:838
537
+ #: contact_form.php:841
538
+ #: contact_form.php:1068
539
  msgid "(powered by bestwebsoft.com)"
540
  msgstr ""
541
 
542
+ #: contact_form.php:838
543
  #, fuzzy
544
  msgid "Activate captcha"
545
  msgstr "Aktif eklentiler"
546
 
547
+ #: contact_form.php:841
548
  #, fuzzy
549
  msgid "Download captcha"
550
  msgstr "İndir"
551
 
552
+ #: contact_form.php:846
553
  msgid "Required fields"
554
  msgstr ""
555
 
556
+ #: contact_form.php:848
557
+ #: contact_form.php:1034
558
+ #: contact_form.php:1686
559
  msgid "Name"
560
  msgstr "Adınız Soyadınız"
561
 
562
+ #: contact_form.php:850
563
  #, fuzzy
564
  msgid "Email Address"
565
  msgstr "E-mail Adresiniz :"
566
 
567
+ #: contact_form.php:852
568
+ #: contact_form.php:1054
569
+ #: contact_form.php:1702
570
  msgid "Subject"
571
  msgstr "Konu"
572
 
573
+ #: contact_form.php:853
574
+ #: contact_form.php:1058
575
+ #: contact_form.php:1705
576
  msgid "Message"
577
  msgstr "Mesaj"
578
 
579
+ #: contact_form.php:857
580
  msgid "Display additional info in the email"
581
  msgstr ""
582
 
583
+ #: contact_form.php:862
584
+ #: contact_form.php:1658
585
  msgid "Sent from (ip address)"
586
  msgstr "Geldiği (ip adresi)"
587
 
588
+ #: contact_form.php:863
589
+ #: contact_form.php:1663
590
  msgid "Date/Time"
591
  msgstr "Tarih/Zaman"
592
 
593
+ #: contact_form.php:864
594
+ #: contact_form.php:1668
595
  msgid "Sent from (referer)"
596
  msgstr "Gelen"
597
 
598
+ #: contact_form.php:865
599
+ #: contact_form.php:1673
600
  msgid "Using (user agent)"
601
  msgstr "Using (user agent)"
602
 
603
+ #: contact_form.php:869
604
  msgid "Language settings for the field names in the form"
605
  msgstr ""
606
 
607
+ #: contact_form.php:878
608
  msgid "Add a language"
609
  msgstr ""
610
 
611
+ #: contact_form.php:882
612
  msgid "Change the names of the contact form fields and error messages"
613
  msgstr "Iletişim formu alanlar için değişim etiket"
614
 
615
+ #: contact_form.php:887
616
+ #: contact_form.php:958
617
  msgid "English"
618
  msgstr ""
619
 
620
+ #: contact_form.php:906
621
+ #: contact_form.php:935
622
  msgid "Error message for the Name field"
623
  msgstr ""
624
 
625
+ #: contact_form.php:907
626
+ #: contact_form.php:936
627
  msgid "Error message for the Address field"
628
  msgstr ""
629
 
630
+ #: contact_form.php:908
631
+ #: contact_form.php:937
632
  msgid "Error message for the Email field"
633
  msgstr ""
634
 
635
+ #: contact_form.php:909
636
+ #: contact_form.php:938
637
  msgid "Error message for the Phone field"
638
  msgstr ""
639
 
640
+ #: contact_form.php:910
641
+ #: contact_form.php:939
642
  msgid "Error message for the Subject field"
643
  msgstr ""
644
 
645
+ #: contact_form.php:911
646
+ #: contact_form.php:940
647
  msgid "Error message for the Message field"
648
  msgstr ""
649
 
650
+ #: contact_form.php:912
651
+ #: contact_form.php:941
652
  msgid "Error message about the file type for the Attachment field"
653
  msgstr ""
654
 
655
+ #: contact_form.php:913
656
+ #: contact_form.php:942
657
  msgid "Error message while uploading a file for the Attachment field to the server"
658
  msgstr ""
659
 
660
+ #: contact_form.php:914
661
+ #: contact_form.php:943
662
  msgid "Error message while moving the file for the Attachment field"
663
  msgstr ""
664
 
665
+ #: contact_form.php:915
666
+ #: contact_form.php:944
667
  msgid "Error message when file size limit for the Attachment field is exceeded"
668
  msgstr ""
669
 
670
+ #: contact_form.php:916
671
+ #: contact_form.php:945
672
  msgid "Error message for the Captcha field"
673
  msgstr ""
674
 
675
+ #: contact_form.php:917
676
+ #: contact_form.php:946
677
  msgid "Error message for the whole form"
678
  msgstr ""
679
 
680
+ #: contact_form.php:919
681
+ #: contact_form.php:948
682
+ #: contact_form.php:967
683
+ #: contact_form.php:973
684
  msgid "Use shortcode"
685
  msgstr ""
686
 
687
+ #: contact_form.php:919
688
+ #: contact_form.php:948
689
+ #: contact_form.php:967
690
+ #: contact_form.php:973
691
  msgid "for this language"
692
  msgstr ""
693
 
694
+ #: contact_form.php:955
695
  msgid "Action after email is sent"
696
  msgstr ""
697
 
698
+ #: contact_form.php:957
699
  #, fuzzy
700
  msgid "Display text"
701
  msgstr "Eklenti Bloğunu Göster"
702
 
703
+ #: contact_form.php:966
704
+ #: contact_form.php:972
705
  msgid "Text"
706
  msgstr ""
707
 
708
+ #: contact_form.php:979
709
  msgid "Redirect to the page"
710
  msgstr ""
711
 
712
+ #: contact_form.php:980
713
  msgid "Url"
714
  msgstr ""
715
 
716
+ #: contact_form.php:985
717
+ #: contact_form.php:1160
718
  msgid "Save Changes"
719
  msgstr "Değişiklikler Kayıt Edildi"
720
 
721
+ #: contact_form.php:1000
722
  #, fuzzy
723
  msgid "Contact Form Pro | Extra Settings"
724
  msgstr "İletişim Formu Seçenekleri"
725
 
726
+ #: contact_form.php:1007
727
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
728
  msgstr ""
729
 
730
+ #: contact_form.php:1014
731
  msgid "Errors output"
732
  msgstr ""
733
 
734
+ #: contact_form.php:1017
735
  msgid "Display error messages"
736
  msgstr ""
737
 
738
+ #: contact_form.php:1018
739
  msgid "Color of the input field errors."
740
  msgstr ""
741
 
742
+ #: contact_form.php:1019
743
  msgid "Display error messages & color of the input field errors"
744
  msgstr ""
745
 
746
+ #: contact_form.php:1024
747
  msgid "Add placeholder to the input blocks"
748
  msgstr ""
749
 
750
+ #: contact_form.php:1030
751
  #, fuzzy
752
  msgid "Add tooltips"
753
  msgstr "Ek Seçenekler"
754
 
755
+ #: contact_form.php:1044
756
  #, fuzzy
757
  msgid "Email address"
758
  msgstr "E-mail Adresiniz :"
759
 
760
+ #: contact_form.php:1049
761
  msgid "Phone Number"
762
  msgstr ""
763
 
764
+ #: contact_form.php:1063
765
  #, fuzzy
766
  msgid "Attachment"
767
  msgstr "Dosya Eki:"
768
 
769
+ #: contact_form.php:1073
770
  #, fuzzy
771
  msgid "Style options"
772
  msgstr "Ek Seçenekler"
773
 
774
+ #: contact_form.php:1076
775
  msgid "Text color"
776
  msgstr ""
777
 
778
+ #: contact_form.php:1079
779
+ #: contact_form.php:1084
780
+ #: contact_form.php:1094
781
+ #: contact_form.php:1099
782
+ #: contact_form.php:1104
783
+ #: contact_form.php:1109
784
+ #: contact_form.php:1119
785
+ #: contact_form.php:1124
786
+ #: contact_form.php:1130
787
+ #: contact_form.php:1141
788
+ #: contact_form.php:1146
789
+ #: contact_form.php:1151
790
  msgid "Default"
791
  msgstr ""
792
 
793
+ #: contact_form.php:1081
794
  msgid "Label text color"
795
  msgstr ""
796
 
797
+ #: contact_form.php:1086
798
  msgid "Placeholder color"
799
  msgstr ""
800
 
801
+ #: contact_form.php:1091
802
  msgid "Errors color"
803
  msgstr ""
804
 
805
+ #: contact_form.php:1096
806
  msgid "Error text color"
807
  msgstr ""
808
 
809
+ #: contact_form.php:1101
810
  msgid "Background color of the input field errors"
811
  msgstr ""
812
 
813
+ #: contact_form.php:1106
814
  msgid "Border color of the input field errors"
815
  msgstr ""
816
 
817
+ #: contact_form.php:1111
818
  msgid "Placeholder color of the input field errors"
819
  msgstr ""
820
 
821
+ #: contact_form.php:1116
822
  msgid "Input fields"
823
  msgstr ""
824
 
825
+ #: contact_form.php:1121
826
  msgid "Input fields background color"
827
  msgstr ""
828
 
829
+ #: contact_form.php:1126
830
  msgid "Text fields color"
831
  msgstr ""
832
 
833
+ #: contact_form.php:1128
834
  msgid "Border width in px, numbers only"
835
  msgstr ""
836
 
837
+ #: contact_form.php:1132
838
+ #: contact_form.php:1153
839
  msgid "Border color"
840
  msgstr ""
841
 
842
+ #: contact_form.php:1137
843
  #, fuzzy
844
  msgid "Submit button"
845
  msgstr "Gönder"
846
 
847
+ #: contact_form.php:1139
848
  msgid "Width in px, numbers only"
849
  msgstr ""
850
 
851
+ #: contact_form.php:1143
852
  msgid "Button color"
853
  msgstr ""
854
 
855
+ #: contact_form.php:1148
856
  msgid "Button text color"
857
  msgstr ""
858
 
859
+ #: contact_form.php:1164
860
  #, fuzzy
861
  msgid "Contact Form Pro | Preview"
862
  msgstr "İletişim Formu"
863
 
864
+ #: contact_form.php:1167
865
  msgid "Show with errors"
866
  msgstr ""
867
 
868
+ #: contact_form.php:1175
869
+ #: contact_form.php:1177
870
  msgid "Please enter your full name..."
871
  msgstr ""
872
 
873
+ #: contact_form.php:1188
874
+ #: contact_form.php:1190
875
  msgid "Please enter your address..."
876
  msgstr ""
877
 
878
+ #: contact_form.php:1199
879
+ #: contact_form.php:1201
880
  #, fuzzy
881
  msgid "Please enter your email address..."
882
  msgstr "Bu e-posta adresini kullan:"
883
 
884
+ #: contact_form.php:1210
885
+ #: contact_form.php:1212
886
  msgid "Please enter your phone number..."
887
  msgstr ""
888
 
889
+ #: contact_form.php:1221
890
+ #: contact_form.php:1223
891
  msgid "Please enter subject..."
892
  msgstr ""
893
 
894
+ #: contact_form.php:1231
895
+ #: contact_form.php:1233
896
  msgid "Please enter your message..."
897
  msgstr ""
898
 
899
+ #: contact_form.php:1244
900
  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"
901
  msgstr ""
902
 
903
+ #: contact_form.php:1397
 
 
 
 
904
  msgid "You can attach the following file formats"
905
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
906
 
907
+ #: contact_form.php:1681
908
  msgid "Contact from"
909
  msgstr "Adlı Kişiden Mail Var"
910
 
911
+ #: contact_form.php:1694
912
  msgid "Email"
913
  msgstr "e-mail"
914
 
915
+ #: contact_form.php:1708
916
  msgid "Site"
917
  msgstr "Site"
918
 
919
+ #: contact_form.php:1758
920
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
921
  msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
922
 
923
+ #: contact_form.php:1809
924
  msgid "FAQ"
925
  msgstr "Sık Sorulanlar"
926
 
927
+ #: contact_form.php:1810
928
  msgid "Support"
929
  msgstr "Destek"
930
 
931
+ #: contact_form.php:1858
932
  msgid "Are you sure that you want to delete this language data?"
933
  msgstr ""
934
 
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: 2013-07-16 16:07+0300\n"
6
- "PO-Revision-Date: 2013-07-16 16:07+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Andrew Yaschuk <xxxxAndyxxxx@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,760 +16,925 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, fuzzy
21
  msgid "Pro plugins"
22
  msgstr "Плагины BWS"
23
 
24
- #: contact_form.php:103
25
- #: contact_form.php:129
26
  msgid "Activated plugins"
27
  msgstr "Активовані плагіни"
28
 
29
- #: contact_form.php:105
30
- #: contact_form.php:113
31
- #: contact_form.php:121
32
- #: contact_form.php:131
33
- #: contact_form.php:139
34
- #: contact_form.php:147
35
  msgid "Read more"
36
  msgstr "Читати далі"
37
 
38
- #: contact_form.php:105
39
- #: contact_form.php:131
40
- #: contact_form.php:543
41
- #: contact_form.php:791
42
- #: contact_form.php:1588
43
- #: contact_form.php:1597
44
  msgid "Settings"
45
  msgstr "Налаштування"
46
 
47
- #: contact_form.php:111
48
- #: contact_form.php:137
49
  msgid "Installed plugins"
50
  msgstr "Встановлені плагіни"
51
 
52
- #: contact_form.php:119
53
- #: contact_form.php:145
54
  msgid "Recommended plugins"
55
  msgstr "Рекомендовані плагіни"
56
 
57
- #: contact_form.php:121
58
  msgid "Purchase"
59
  msgstr ""
60
 
61
- #: contact_form.php:126
62
  #, fuzzy
63
  msgid "Free plugins"
64
  msgstr "Рекомендовані плагіни"
65
 
66
- #: contact_form.php:147
67
  msgid "Download"
68
  msgstr "Завантажити"
69
 
70
- #: contact_form.php:147
71
  #, php-format
72
  msgid "Install %s"
73
  msgstr "Встановлено %s"
74
 
75
- #: contact_form.php:147
76
  msgid "Install now from wordpress.org"
77
  msgstr "Встановити з wordpress.org"
78
 
79
- #: contact_form.php:152
80
  #, fuzzy
81
  msgid "If you have any questions, please contact us via"
82
  msgstr "Якщо у вас є запитання, звертайтесь на plugin@bestwebsoft.com або заповніть контактну форму на нашому сайті"
83
 
84
- #: contact_form.php:161
85
- #: contact_form.php:539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  #, fuzzy
87
  msgid "Contact Form Settings"
88
  msgstr "Налаштування контактної форми"
89
 
90
- #: contact_form.php:161
91
  msgid "Contact Form"
92
  msgstr "Контактна форма"
93
 
94
- #: contact_form.php:162
95
  #, fuzzy
96
  msgid "Contact Form Pro Extra Settings"
97
  msgstr "Налаштування контактної форми"
98
 
99
- #: contact_form.php:162
100
- #: contact_form.php:797
101
  #, fuzzy
102
  msgid "Contact Form Pro"
103
  msgstr "Контактна форма"
104
 
105
- #: contact_form.php:201
106
- #: contact_form.php:686
107
- #: contact_form.php:715
108
  msgid "Name:"
109
  msgstr "Ім'я:"
110
 
111
- #: contact_form.php:202
112
- #: contact_form.php:687
113
- #: contact_form.php:716
114
  #, fuzzy
115
  msgid "Address:"
116
  msgstr "E-mail адреса:"
117
 
118
- #: contact_form.php:203
119
- #: contact_form.php:688
120
- #: contact_form.php:717
121
  msgid "Email Address:"
122
  msgstr "E-mail адреса:"
123
 
124
- #: contact_form.php:204
125
- #: contact_form.php:689
126
- #: contact_form.php:718
127
  msgid "Phone number:"
128
  msgstr "Телефон:"
129
 
130
- #: contact_form.php:205
131
- #: contact_form.php:690
132
- #: contact_form.php:719
133
  msgid "Subject:"
134
  msgstr "Тема:"
135
 
136
- #: contact_form.php:206
137
- #: contact_form.php:691
138
- #: contact_form.php:720
139
  msgid "Message:"
140
  msgstr "Повідомлення:"
141
 
142
- #: contact_form.php:207
143
- #: contact_form.php:692
144
- #: contact_form.php:721
145
  msgid "Attachment:"
146
  msgstr "Прикріпити файл:"
147
 
148
- #: contact_form.php:208
149
- #: contact_form.php:263
150
- #: contact_form.php:693
151
- #: contact_form.php:722
152
  msgid "Send me a copy"
153
  msgstr "Надіслати мені копію"
154
 
155
- #: contact_form.php:209
156
- #: contact_form.php:694
157
- #: contact_form.php:723
158
  msgid "Submit"
159
  msgstr "Підтвердити"
160
 
161
- #: contact_form.php:210
162
  msgid "Your name is required."
163
  msgstr "Необхідно вказати своє ім'я."
164
 
165
- #: contact_form.php:211
166
  #, fuzzy
167
  msgid "Address is required."
168
  msgstr "Необхідно вказати правильну email-адресу."
169
 
170
- #: contact_form.php:212
171
  #, fuzzy
172
  msgid "A valid email address is required."
173
  msgstr "Необхідно вказати правильну email-адресу."
174
 
175
- #: contact_form.php:213
176
- #: contact_form.php:258
177
- #: contact_form.php:261
178
  msgid "Phone number is required."
179
  msgstr "Необхідно вказати номер телефону."
180
 
181
- #: contact_form.php:214
182
- #: contact_form.php:257
183
- #: contact_form.php:260
184
  msgid "Subject is required."
185
  msgstr "Необхідно вказати тему."
186
 
187
- #: contact_form.php:215
188
- #: contact_form.php:256
189
- #: contact_form.php:259
190
  msgid "Message text is required."
191
  msgstr "Повідомлення не може бути порожнє."
192
 
193
- #: contact_form.php:216
194
  msgid "File format is not valid."
195
  msgstr "Неправильний формат файлу."
196
 
197
- #: contact_form.php:217
198
  msgid "File upload error."
199
  msgstr ""
200
 
201
- #: contact_form.php:218
202
  msgid "The file could not be uploaded."
203
  msgstr ""
204
 
205
- #: contact_form.php:219
206
  msgid "This file is too large."
207
  msgstr ""
208
 
209
- #: contact_form.php:220
210
  msgid "Please fill out the CAPTCHA."
211
  msgstr "Будь ласка, введіть код КАПТЧА."
212
 
213
- #: contact_form.php:221
214
  msgid "Please make corrections below and try again."
215
  msgstr "Будь ласка, внесіть поправки у відмічені поля і спробуйте знову."
216
 
217
- #: contact_form.php:223
218
- msgid "Thank you for contacting us."
219
- msgstr "Дякуємо, що зв'язалися з нами."
220
-
221
- #: contact_form.php:494
222
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
223
  msgstr "Якщо опція \"Перенаправлення на сторінку\" вибрана, то поле URL повинне бути заповнене в наступному форматі"
224
 
225
- #: contact_form.php:503
226
  msgid "Such user does not exist. Settings are not saved."
227
  msgstr "Такого користувача не існує. Налаштування не збережено"
228
 
229
- #: contact_form.php:508
230
- #: contact_form.php:514
231
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
232
  msgstr "Будь ласка, введіть правильну ел.адресу у полі \"Відправник\". Налаштування не збережено."
233
 
234
- #: contact_form.php:519
235
  #, fuzzy
236
  msgid "Settings saved."
237
  msgstr "Опції збережено."
238
 
239
- #: contact_form.php:544
240
- #: contact_form.php:792
241
  #, fuzzy
242
  msgid "Extra settings"
243
  msgstr "Налаштування"
244
 
245
- #: contact_form.php:549
246
- #: contact_form.php:1048
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 "Якщо Ви хочете додати контактну форму на свій сайт, просто скопіюйте і вставите цей короткий код у Вашу публікацію, сторінку або віджет:"
249
 
250
- #: contact_form.php:550
251
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
252
  msgstr "Якщо Ви залишете поля порожніми, повідомлення буде надіслано на email-адресу, вказану під час реєстрації."
253
 
254
- #: contact_form.php:554
255
  msgid "The user's email address:"
256
  msgstr "Email користувача:"
257
 
258
- #: contact_form.php:558
259
  msgid "Create a username"
260
  msgstr "Виберіть ім'я користувача"
261
 
262
- #: contact_form.php:563
263
  msgid "Enter a username of the person who should get the messages from the contact form."
264
  msgstr "Введіть ім'я користувача, який повинен одержувати повідомлення з контактної форми."
265
 
266
- #: contact_form.php:567
267
  msgid "Use this email address:"
268
  msgstr "Використовувати цю email-адресу:"
269
 
270
- #: contact_form.php:570
271
  msgid "Enter the email address you want the messages forwarded to."
272
  msgstr "Вкажіть email-адресу, на яку бажаєте отримувати повідомлення."
273
 
274
- #: contact_form.php:574
275
  msgid "Additional options"
276
  msgstr "Додаткові опції"
277
 
278
- #: contact_form.php:577
279
  msgid "What to use?"
280
  msgstr "Що використовувати?"
281
 
282
- #: contact_form.php:580
283
  msgid "Wp-mail"
284
  msgstr "Wp-mail"
285
 
286
- #: contact_form.php:581
287
  msgid "You can use the wp_mail function for mailing"
288
  msgstr "Для відправлення пошти ви можете використовувати функцію WordPress wp_mail"
289
 
290
- #: contact_form.php:587
291
  msgid "Mail"
292
  msgstr "Пошта"
293
 
294
- #: contact_form.php:588
295
  msgid "To send mail you can use the php mail function"
296
  msgstr "Для відправлення пошти ви можете використовувати функцію php mail"
297
 
298
- #: contact_form.php:592
299
  msgid "Change text of the 'FROM' field"
300
  msgstr "Змінити текст поля \"Відправник\""
301
 
302
- #: contact_form.php:598
303
  msgid "Enter the email address in the 'From' field"
304
  msgstr "Введіть email-адресу в полі \"Відправник\""
305
 
306
- #: contact_form.php:600
307
  msgid "User email"
308
  msgstr ""
309
 
310
- #: contact_form.php:600
311
  #, fuzzy
312
  msgid "The email address of the user who fills the form will be used in the field 'From'."
313
  msgstr "Email-адреса користувача, який заповнює форму, буде використана у полі \"Відправник\"."
314
 
315
- #: contact_form.php:602
316
  msgid "This email address will be used in the 'From' field."
317
  msgstr "Ця email-адреса буде використана у полі \"Відправник\"."
318
 
319
- #: contact_form.php:606
320
  #, fuzzy
321
  msgid "Display fields"
322
  msgstr "Показати текст"
323
 
324
- #: contact_form.php:608
325
- #: contact_form.php:638
326
- #: contact_form.php:828
327
- #: contact_form.php:1480
328
  #, fuzzy
329
  msgid "Address"
330
  msgstr "E-mail адреса:"
331
 
332
- #: contact_form.php:609
333
- #: contact_form.php:640
334
- #: contact_form.php:1488
335
  msgid "Phone"
336
  msgstr "Номер телефону"
337
 
338
- #: contact_form.php:610
339
  #, fuzzy
340
  msgid "Attachment block"
341
  msgstr "Відображувати блок \"Прикріпити файл\" "
342
 
343
- #: contact_form.php:610
344
  msgid "Users can attach the following file formats"
345
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
346
 
347
- #: contact_form.php:611
348
  #, fuzzy
349
  msgid "Tips below the Attachment block"
350
  msgstr "Показувати підказки під блоком \"Прикріпити файл\""
351
 
352
- #: contact_form.php:612
353
  #, fuzzy
354
  msgid "Send me a copy block"
355
  msgstr "Показати блок \"Надіслати мені копію\""
356
 
357
- #: contact_form.php:624
358
- #: contact_form.php:627
359
- #: contact_form.php:630
360
- #: contact_form.php:857
361
  msgid "Captcha"
362
  msgstr ""
363
 
364
- #: contact_form.php:624
365
- #: contact_form.php:627
366
- #: contact_form.php:630
367
- #: contact_form.php:857
368
  msgid "(powered by bestwebsoft.com)"
369
  msgstr ""
370
 
371
- #: contact_form.php:627
372
  #, fuzzy
373
  msgid "Activate captcha"
374
  msgstr "Активовані плагіни"
375
 
376
- #: contact_form.php:630
377
  #, fuzzy
378
  msgid "Download captcha"
379
  msgstr "Завантажити"
380
 
381
- #: contact_form.php:635
382
  msgid "Required fields"
383
  msgstr "Обов'язкові поля"
384
 
385
- #: contact_form.php:637
386
- #: contact_form.php:823
387
- #: contact_form.php:1475
388
  msgid "Name"
389
  msgstr "Ім'я"
390
 
391
- #: contact_form.php:639
392
  #, fuzzy
393
  msgid "Email Address"
394
  msgstr "E-mail адреса:"
395
 
396
- #: contact_form.php:641
397
- #: contact_form.php:843
398
- #: contact_form.php:1491
399
  msgid "Subject"
400
  msgstr "Тема"
401
 
402
- #: contact_form.php:642
403
- #: contact_form.php:847
404
- #: contact_form.php:1494
405
  msgid "Message"
406
  msgstr "Повідомлення"
407
 
408
- #: contact_form.php:646
409
  #, fuzzy
410
  msgid "Display additional info in the email"
411
  msgstr "Відображати додаткову інформацію в email"
412
 
413
- #: contact_form.php:651
414
- #: contact_form.php:1447
415
  msgid "Sent from (ip address)"
416
  msgstr "Надіслано від (ip адреса)"
417
 
418
- #: contact_form.php:652
419
- #: contact_form.php:1452
420
  msgid "Date/Time"
421
  msgstr "Дата/Час"
422
 
423
- #: contact_form.php:653
424
- #: contact_form.php:1457
425
  msgid "Sent from (referer)"
426
  msgstr "Надіслано від (реферер)"
427
 
428
- #: contact_form.php:654
429
- #: contact_form.php:1462
430
  msgid "Using (user agent)"
431
  msgstr "Використовується (user agent)"
432
 
433
- #: contact_form.php:658
434
  msgid "Language settings for the field names in the form"
435
  msgstr "Налаштування мови для назв полів форми"
436
 
437
- #: contact_form.php:667
438
  #, fuzzy
439
  msgid "Add a language"
440
  msgstr "Додати мову"
441
 
442
- #: contact_form.php:671
443
  msgid "Change the names of the contact form fields and error messages"
444
  msgstr "Змінити назви полів контактної форми і повідомлення про помилку"
445
 
446
- #: contact_form.php:676
447
- #: contact_form.php:747
448
  msgid "English"
449
  msgstr "Англійська"
450
 
451
- #: contact_form.php:695
452
- #: contact_form.php:724
453
  msgid "Error message for the Name field"
454
  msgstr "Повідомлення про помилку для поля Ім'я"
455
 
456
- #: contact_form.php:696
457
- #: contact_form.php:725
458
  #, fuzzy
459
  msgid "Error message for the Address field"
460
  msgstr "Повідомлення про помилку для поля Повідомлення"
461
 
462
- #: contact_form.php:697
463
- #: contact_form.php:726
464
  msgid "Error message for the Email field"
465
  msgstr "Повідомлення про помилку для поля Email"
466
 
467
- #: contact_form.php:698
468
- #: contact_form.php:727
469
  msgid "Error message for the Phone field"
470
  msgstr "Повідомлення про помилку для поля Номер телефону"
471
 
472
- #: contact_form.php:699
473
- #: contact_form.php:728
474
  msgid "Error message for the Subject field"
475
  msgstr "Повідомлення про помилку для поля Тема"
476
 
477
- #: contact_form.php:700
478
- #: contact_form.php:729
479
  msgid "Error message for the Message field"
480
  msgstr "Повідомлення про помилку для поля Повідомлення"
481
 
482
- #: contact_form.php:701
483
- #: contact_form.php:730
484
  #, fuzzy
485
  msgid "Error message about the file type for the Attachment field"
486
  msgstr "Повідомлення про помилку для поля Вкладені файли"
487
 
488
- #: contact_form.php:702
489
- #: contact_form.php:731
490
  #, fuzzy
491
  msgid "Error message while uploading a file for the Attachment field to the server"
492
  msgstr "Повідомлення про помилку для поля Вкладені файли"
493
 
494
- #: contact_form.php:703
495
- #: contact_form.php:732
496
  #, fuzzy
497
  msgid "Error message while moving the file for the Attachment field"
498
  msgstr "Повідомлення про помилку для поля Вкладені файли"
499
 
500
- #: contact_form.php:704
501
- #: contact_form.php:733
502
  #, fuzzy
503
  msgid "Error message when file size limit for the Attachment field is exceeded"
504
  msgstr "Повідомлення про помилку для поля Вкладені файли"
505
 
506
- #: contact_form.php:705
507
- #: contact_form.php:734
508
  msgid "Error message for the Captcha field"
509
  msgstr "Повідомлення про помилку для поля Captcha"
510
 
511
- #: contact_form.php:706
512
- #: contact_form.php:735
513
  msgid "Error message for the whole form"
514
  msgstr "Повідомлення про помилку для всієї форми"
515
 
516
- #: contact_form.php:708
517
- #: contact_form.php:737
518
- #: contact_form.php:756
519
- #: contact_form.php:762
520
  msgid "Use shortcode"
521
  msgstr "Використовувати скорочення"
522
 
523
- #: contact_form.php:708
524
- #: contact_form.php:737
525
- #: contact_form.php:756
526
- #: contact_form.php:762
527
  msgid "for this language"
528
  msgstr "для даної мови"
529
 
530
- #: contact_form.php:744
531
  msgid "Action after email is sent"
532
  msgstr "Дія після відправлення email"
533
 
534
- #: contact_form.php:746
535
  msgid "Display text"
536
  msgstr "Показати текст"
537
 
538
- #: contact_form.php:755
539
- #: contact_form.php:761
540
  msgid "Text"
541
  msgstr "Текст"
542
 
543
- #: contact_form.php:768
544
  msgid "Redirect to the page"
545
  msgstr "Перенаправлення на сторінку"
546
 
547
- #: contact_form.php:769
548
  msgid "Url"
549
  msgstr "Url"
550
 
551
- #: contact_form.php:774
552
- #: contact_form.php:949
553
  msgid "Save Changes"
554
  msgstr "Зберегти зміни"
555
 
556
- #: contact_form.php:789
557
  #, fuzzy
558
  msgid "Contact Form Pro | Extra Settings"
559
  msgstr "Налаштування контактної форми"
560
 
561
- #: contact_form.php:796
562
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
563
  msgstr ""
564
 
565
- #: contact_form.php:803
566
  msgid "Errors output"
567
  msgstr ""
568
 
569
- #: contact_form.php:806
570
  msgid "Display error messages"
571
  msgstr ""
572
 
573
- #: contact_form.php:807
574
  msgid "Color of the input field errors."
575
  msgstr ""
576
 
577
- #: contact_form.php:808
578
  #, fuzzy
579
  msgid "Display error messages & color of the input field errors"
580
  msgstr "Повідомлення про помилку для поля Тема"
581
 
582
- #: contact_form.php:813
583
  msgid "Add placeholder to the input blocks"
584
  msgstr ""
585
 
586
- #: contact_form.php:819
587
  #, fuzzy
588
  msgid "Add tooltips"
589
  msgstr "Додаткові опції"
590
 
591
- #: contact_form.php:833
592
  #, fuzzy
593
  msgid "Email address"
594
  msgstr "E-mail адреса:"
595
 
596
- #: contact_form.php:838
597
  #, fuzzy
598
  msgid "Phone Number"
599
  msgstr "Телефон:"
600
 
601
- #: contact_form.php:852
602
  #, fuzzy
603
  msgid "Attachment"
604
  msgstr "Прикріпити файл:"
605
 
606
- #: contact_form.php:862
607
  #, fuzzy
608
  msgid "Style options"
609
  msgstr "Додаткові опції"
610
 
611
- #: contact_form.php:865
612
  msgid "Text color"
613
  msgstr ""
614
 
615
- #: contact_form.php:868
616
- #: contact_form.php:873
617
- #: contact_form.php:883
618
- #: contact_form.php:888
619
- #: contact_form.php:893
620
- #: contact_form.php:898
621
- #: contact_form.php:908
622
- #: contact_form.php:913
623
- #: contact_form.php:919
624
- #: contact_form.php:930
625
- #: contact_form.php:935
626
- #: contact_form.php:940
627
  msgid "Default"
628
  msgstr ""
629
 
630
- #: contact_form.php:870
631
  msgid "Label text color"
632
  msgstr ""
633
 
634
- #: contact_form.php:875
635
  msgid "Placeholder color"
636
  msgstr ""
637
 
638
- #: contact_form.php:880
639
  msgid "Errors color"
640
  msgstr ""
641
 
642
- #: contact_form.php:885
643
  msgid "Error text color"
644
  msgstr ""
645
 
646
- #: contact_form.php:890
647
  msgid "Background color of the input field errors"
648
  msgstr ""
649
 
650
- #: contact_form.php:895
651
  msgid "Border color of the input field errors"
652
  msgstr ""
653
 
654
- #: contact_form.php:900
655
  msgid "Placeholder color of the input field errors"
656
  msgstr ""
657
 
658
- #: contact_form.php:905
659
  msgid "Input fields"
660
  msgstr ""
661
 
662
- #: contact_form.php:910
663
  msgid "Input fields background color"
664
  msgstr ""
665
 
666
- #: contact_form.php:915
667
  msgid "Text fields color"
668
  msgstr ""
669
 
670
- #: contact_form.php:917
671
  msgid "Border width in px, numbers only"
672
  msgstr ""
673
 
674
- #: contact_form.php:921
675
- #: contact_form.php:942
676
  msgid "Border color"
677
  msgstr ""
678
 
679
- #: contact_form.php:926
680
  #, fuzzy
681
  msgid "Submit button"
682
  msgstr "Підтвердити"
683
 
684
- #: contact_form.php:928
685
  msgid "Width in px, numbers only"
686
  msgstr ""
687
 
688
- #: contact_form.php:932
689
  msgid "Button color"
690
  msgstr ""
691
 
692
- #: contact_form.php:937
693
  msgid "Button text color"
694
  msgstr ""
695
 
696
- #: contact_form.php:953
697
  #, fuzzy
698
  msgid "Contact Form Pro | Preview"
699
  msgstr "Контактна форма"
700
 
701
- #: contact_form.php:956
702
  msgid "Show with errors"
703
  msgstr ""
704
 
705
- #: contact_form.php:964
706
- #: contact_form.php:966
707
  msgid "Please enter your full name..."
708
  msgstr ""
709
 
710
- #: contact_form.php:977
711
- #: contact_form.php:979
712
  msgid "Please enter your address..."
713
  msgstr ""
714
 
715
- #: contact_form.php:988
716
- #: contact_form.php:990
717
  #, fuzzy
718
  msgid "Please enter your email address..."
719
  msgstr "Використовувати цю email-адресу:"
720
 
721
- #: contact_form.php:999
722
- #: contact_form.php:1001
723
  msgid "Please enter your phone number..."
724
  msgstr ""
725
 
726
- #: contact_form.php:1010
727
- #: contact_form.php:1012
728
  msgid "Please enter subject..."
729
  msgstr ""
730
 
731
- #: contact_form.php:1020
732
- #: contact_form.php:1022
733
  msgid "Please enter your message..."
734
  msgstr ""
735
 
736
- #: contact_form.php:1033
737
  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"
738
  msgstr ""
739
 
740
- #: contact_form.php:1102
741
- msgid "Sorry, email message could not be delivered."
742
- msgstr "Вибачте, ваше email-повідомлення не може бути доставлене."
743
-
744
- #: contact_form.php:1186
745
  msgid "You can attach the following file formats"
746
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
747
 
748
- #: contact_form.php:1470
749
  msgid "Contact from"
750
  msgstr "Контактна форма"
751
 
752
- #: contact_form.php:1483
753
  msgid "Email"
754
  msgstr "Email"
755
 
756
- #: contact_form.php:1497
757
  msgid "Site"
758
  msgstr "Сайт"
759
 
760
- #: contact_form.php:1547
761
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
762
  msgstr "Якщо Ви не бачите цей MIME, це означає, що цей MIME тип не підтримується Вашим email-клієнтом!"
763
 
764
- #: contact_form.php:1598
765
  msgid "FAQ"
766
  msgstr "FAQ"
767
 
768
- #: contact_form.php:1599
769
  msgid "Support"
770
  msgstr "Підтримка"
771
 
772
- #: contact_form.php:1647
773
  msgid "Are you sure that you want to delete this language data?"
774
  msgstr "Ви справді хочете видалити дані для цієї мови?"
775
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-22 16:58+0300\n"
6
+ "PO-Revision-Date: 2013-07-22 16:58+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Andrew Yaschuk <xxxxAndyxxxx@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:106
20
+ msgid "Not set"
21
+ msgstr ""
22
+
23
+ #: contact_form.php:108
24
+ #: contact_form.php:112
25
+ msgid "On"
26
+ msgstr ""
27
+
28
+ #: contact_form.php:110
29
+ #: contact_form.php:114
30
+ msgid "Off"
31
+ msgstr ""
32
+
33
+ #: contact_form.php:118
34
+ #: contact_form.php:122
35
+ #: contact_form.php:126
36
+ #: contact_form.php:130
37
+ #: contact_form.php:134
38
+ #: contact_form.php:160
39
+ msgid "N/A"
40
+ msgstr ""
41
+
42
+ #: contact_form.php:132
43
+ msgid " Mb"
44
+ msgstr ""
45
+
46
+ #: contact_form.php:136
47
+ #: contact_form.php:140
48
+ #: contact_form.php:144
49
+ #: contact_form.php:155
50
+ msgid "Yes"
51
+ msgstr ""
52
+
53
+ #: contact_form.php:138
54
+ #: contact_form.php:142
55
+ #: contact_form.php:146
56
+ #: contact_form.php:157
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: contact_form.php:171
61
+ msgid "Operating System"
62
+ msgstr ""
63
+
64
+ #: contact_form.php:172
65
+ msgid "Server"
66
+ msgstr ""
67
+
68
+ #: contact_form.php:173
69
+ #, fuzzy
70
+ msgid "Memory usage"
71
+ msgstr "Повідомлення"
72
+
73
+ #: contact_form.php:174
74
+ msgid "MYSQL Version"
75
+ msgstr ""
76
+
77
+ #: contact_form.php:175
78
+ msgid "SQL Mode"
79
+ msgstr ""
80
+
81
+ #: contact_form.php:176
82
+ msgid "PHP Version"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:177
86
+ msgid "PHP Safe Mode"
87
+ msgstr ""
88
+
89
+ #: contact_form.php:178
90
+ msgid "PHP Allow URL fopen"
91
+ msgstr ""
92
+
93
+ #: contact_form.php:179
94
+ msgid "PHP Memory Limit"
95
+ msgstr ""
96
+
97
+ #: contact_form.php:180
98
+ msgid "PHP Max Upload Size"
99
+ msgstr ""
100
+
101
+ #: contact_form.php:181
102
+ msgid "PHP Max Post Size"
103
+ msgstr ""
104
+
105
+ #: contact_form.php:182
106
+ msgid "PHP Max Script Execute Time"
107
+ msgstr ""
108
+
109
+ #: contact_form.php:183
110
+ msgid "PHP Exif support"
111
+ msgstr ""
112
+
113
+ #: contact_form.php:184
114
+ msgid "PHP IPTC support"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:185
118
+ msgid "PHP XML support"
119
+ msgstr ""
120
+
121
+ #: contact_form.php:186
122
+ #, fuzzy
123
+ msgid "Site URL"
124
+ msgstr "Сайт"
125
+
126
+ #: contact_form.php:187
127
+ msgid "Home URL"
128
+ msgstr ""
129
+
130
+ #: contact_form.php:188
131
+ msgid "WordPress Version"
132
+ msgstr ""
133
+
134
+ #: contact_form.php:189
135
+ msgid "WordPress DB Version"
136
+ msgstr ""
137
+
138
+ #: contact_form.php:190
139
+ msgid "Multisite"
140
+ msgstr ""
141
+
142
+ #: contact_form.php:191
143
+ msgid "Active Theme"
144
+ msgstr ""
145
+
146
+ #: contact_form.php:206
147
+ #, fuzzy
148
+ msgid "Please enter a valid email address."
149
+ msgstr "Використовувати цю email-адресу:"
150
+
151
+ #: contact_form.php:210
152
+ msgid "Email with system info is sent to "
153
+ msgstr ""
154
+
155
+ #: contact_form.php:214
156
+ #: contact_form.php:434
157
+ msgid "Thank you for contacting us."
158
+ msgstr "Дякуємо, що зв'язалися з нами."
159
+
160
+ #: contact_form.php:242
161
+ #: contact_form.php:1313
162
+ msgid "Sorry, email message could not be delivered."
163
+ msgstr "Вибачте, ваше email-повідомлення не може бути доставлене."
164
+
165
+ #: contact_form.php:250
166
  #, fuzzy
167
  msgid "Pro plugins"
168
  msgstr "Плагины BWS"
169
 
170
+ #: contact_form.php:253
171
+ #: contact_form.php:279
172
  msgid "Activated plugins"
173
  msgstr "Активовані плагіни"
174
 
175
+ #: contact_form.php:255
176
+ #: contact_form.php:263
177
+ #: contact_form.php:271
178
+ #: contact_form.php:281
179
+ #: contact_form.php:289
180
+ #: contact_form.php:297
181
  msgid "Read more"
182
  msgstr "Читати далі"
183
 
184
+ #: contact_form.php:255
185
+ #: contact_form.php:281
186
+ #: contact_form.php:754
187
+ #: contact_form.php:1002
188
+ #: contact_form.php:1799
189
+ #: contact_form.php:1808
190
  msgid "Settings"
191
  msgstr "Налаштування"
192
 
193
+ #: contact_form.php:261
194
+ #: contact_form.php:287
195
  msgid "Installed plugins"
196
  msgstr "Встановлені плагіни"
197
 
198
+ #: contact_form.php:269
199
+ #: contact_form.php:295
200
  msgid "Recommended plugins"
201
  msgstr "Рекомендовані плагіни"
202
 
203
+ #: contact_form.php:271
204
  msgid "Purchase"
205
  msgstr ""
206
 
207
+ #: contact_form.php:276
208
  #, fuzzy
209
  msgid "Free plugins"
210
  msgstr "Рекомендовані плагіни"
211
 
212
+ #: contact_form.php:297
213
  msgid "Download"
214
  msgstr "Завантажити"
215
 
216
+ #: contact_form.php:297
217
  #, php-format
218
  msgid "Install %s"
219
  msgstr "Встановлено %s"
220
 
221
+ #: contact_form.php:297
222
  msgid "Install now from wordpress.org"
223
  msgstr "Встановити з wordpress.org"
224
 
225
+ #: contact_form.php:302
226
  #, fuzzy
227
  msgid "If you have any questions, please contact us via"
228
  msgstr "Якщо у вас є запитання, звертайтесь на plugin@bestwebsoft.com або заповніть контактну форму на нашому сайті"
229
 
230
+ #: contact_form.php:309
231
+ msgid "System status"
232
+ msgstr ""
233
+
234
+ #: contact_form.php:313
235
+ msgid "Environment"
236
+ msgstr ""
237
+
238
+ #: contact_form.php:324
239
+ #, fuzzy
240
+ msgid "Active Plugins"
241
+ msgstr "Активовані плагіни"
242
+
243
+ #: contact_form.php:335
244
+ #, fuzzy
245
+ msgid "Inactive Plugins"
246
+ msgstr "Активовані плагіни"
247
+
248
+ #: contact_form.php:349
249
+ #, fuzzy
250
+ msgid "Send to support"
251
+ msgstr "Підтримка"
252
+
253
+ #: contact_form.php:356
254
+ msgid "Send to custom email &#187;"
255
+ msgstr ""
256
+
257
+ #: contact_form.php:372
258
+ #: contact_form.php:750
259
  #, fuzzy
260
  msgid "Contact Form Settings"
261
  msgstr "Налаштування контактної форми"
262
 
263
+ #: contact_form.php:372
264
  msgid "Contact Form"
265
  msgstr "Контактна форма"
266
 
267
+ #: contact_form.php:373
268
  #, fuzzy
269
  msgid "Contact Form Pro Extra Settings"
270
  msgstr "Налаштування контактної форми"
271
 
272
+ #: contact_form.php:373
273
+ #: contact_form.php:1008
274
  #, fuzzy
275
  msgid "Contact Form Pro"
276
  msgstr "Контактна форма"
277
 
278
+ #: contact_form.php:412
279
+ #: contact_form.php:897
280
+ #: contact_form.php:926
281
  msgid "Name:"
282
  msgstr "Ім'я:"
283
 
284
+ #: contact_form.php:413
285
+ #: contact_form.php:898
286
+ #: contact_form.php:927
287
  #, fuzzy
288
  msgid "Address:"
289
  msgstr "E-mail адреса:"
290
 
291
+ #: contact_form.php:414
292
+ #: contact_form.php:899
293
+ #: contact_form.php:928
294
  msgid "Email Address:"
295
  msgstr "E-mail адреса:"
296
 
297
+ #: contact_form.php:415
298
+ #: contact_form.php:900
299
+ #: contact_form.php:929
300
  msgid "Phone number:"
301
  msgstr "Телефон:"
302
 
303
+ #: contact_form.php:416
304
+ #: contact_form.php:901
305
+ #: contact_form.php:930
306
  msgid "Subject:"
307
  msgstr "Тема:"
308
 
309
+ #: contact_form.php:417
310
+ #: contact_form.php:902
311
+ #: contact_form.php:931
312
  msgid "Message:"
313
  msgstr "Повідомлення:"
314
 
315
+ #: contact_form.php:418
316
+ #: contact_form.php:903
317
+ #: contact_form.php:932
318
  msgid "Attachment:"
319
  msgstr "Прикріпити файл:"
320
 
321
+ #: contact_form.php:419
322
+ #: contact_form.php:474
323
+ #: contact_form.php:904
324
+ #: contact_form.php:933
325
  msgid "Send me a copy"
326
  msgstr "Надіслати мені копію"
327
 
328
+ #: contact_form.php:420
329
+ #: contact_form.php:905
330
+ #: contact_form.php:934
331
  msgid "Submit"
332
  msgstr "Підтвердити"
333
 
334
+ #: contact_form.php:421
335
  msgid "Your name is required."
336
  msgstr "Необхідно вказати своє ім'я."
337
 
338
+ #: contact_form.php:422
339
  #, fuzzy
340
  msgid "Address is required."
341
  msgstr "Необхідно вказати правильну email-адресу."
342
 
343
+ #: contact_form.php:423
344
  #, fuzzy
345
  msgid "A valid email address is required."
346
  msgstr "Необхідно вказати правильну email-адресу."
347
 
348
+ #: contact_form.php:424
349
+ #: contact_form.php:469
350
+ #: contact_form.php:472
351
  msgid "Phone number is required."
352
  msgstr "Необхідно вказати номер телефону."
353
 
354
+ #: contact_form.php:425
355
+ #: contact_form.php:468
356
+ #: contact_form.php:471
357
  msgid "Subject is required."
358
  msgstr "Необхідно вказати тему."
359
 
360
+ #: contact_form.php:426
361
+ #: contact_form.php:467
362
+ #: contact_form.php:470
363
  msgid "Message text is required."
364
  msgstr "Повідомлення не може бути порожнє."
365
 
366
+ #: contact_form.php:427
367
  msgid "File format is not valid."
368
  msgstr "Неправильний формат файлу."
369
 
370
+ #: contact_form.php:428
371
  msgid "File upload error."
372
  msgstr ""
373
 
374
+ #: contact_form.php:429
375
  msgid "The file could not be uploaded."
376
  msgstr ""
377
 
378
+ #: contact_form.php:430
379
  msgid "This file is too large."
380
  msgstr ""
381
 
382
+ #: contact_form.php:431
383
  msgid "Please fill out the CAPTCHA."
384
  msgstr "Будь ласка, введіть код КАПТЧА."
385
 
386
+ #: contact_form.php:432
387
  msgid "Please make corrections below and try again."
388
  msgstr "Будь ласка, внесіть поправки у відмічені поля і спробуйте знову."
389
 
390
+ #: contact_form.php:705
 
 
 
 
391
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
392
  msgstr "Якщо опція \"Перенаправлення на сторінку\" вибрана, то поле URL повинне бути заповнене в наступному форматі"
393
 
394
+ #: contact_form.php:714
395
  msgid "Such user does not exist. Settings are not saved."
396
  msgstr "Такого користувача не існує. Налаштування не збережено"
397
 
398
+ #: contact_form.php:719
399
+ #: contact_form.php:725
400
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
401
  msgstr "Будь ласка, введіть правильну ел.адресу у полі \"Відправник\". Налаштування не збережено."
402
 
403
+ #: contact_form.php:730
404
  #, fuzzy
405
  msgid "Settings saved."
406
  msgstr "Опції збережено."
407
 
408
+ #: contact_form.php:755
409
+ #: contact_form.php:1003
410
  #, fuzzy
411
  msgid "Extra settings"
412
  msgstr "Налаштування"
413
 
414
+ #: contact_form.php:760
415
+ #: contact_form.php:1259
416
  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:"
417
  msgstr "Якщо Ви хочете додати контактну форму на свій сайт, просто скопіюйте і вставите цей короткий код у Вашу публікацію, сторінку або віджет:"
418
 
419
+ #: contact_form.php:761
420
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
421
  msgstr "Якщо Ви залишете поля порожніми, повідомлення буде надіслано на email-адресу, вказану під час реєстрації."
422
 
423
+ #: contact_form.php:765
424
  msgid "The user's email address:"
425
  msgstr "Email користувача:"
426
 
427
+ #: contact_form.php:769
428
  msgid "Create a username"
429
  msgstr "Виберіть ім'я користувача"
430
 
431
+ #: contact_form.php:774
432
  msgid "Enter a username of the person who should get the messages from the contact form."
433
  msgstr "Введіть ім'я користувача, який повинен одержувати повідомлення з контактної форми."
434
 
435
+ #: contact_form.php:778
436
  msgid "Use this email address:"
437
  msgstr "Використовувати цю email-адресу:"
438
 
439
+ #: contact_form.php:781
440
  msgid "Enter the email address you want the messages forwarded to."
441
  msgstr "Вкажіть email-адресу, на яку бажаєте отримувати повідомлення."
442
 
443
+ #: contact_form.php:785
444
  msgid "Additional options"
445
  msgstr "Додаткові опції"
446
 
447
+ #: contact_form.php:788
448
  msgid "What to use?"
449
  msgstr "Що використовувати?"
450
 
451
+ #: contact_form.php:791
452
  msgid "Wp-mail"
453
  msgstr "Wp-mail"
454
 
455
+ #: contact_form.php:792
456
  msgid "You can use the wp_mail function for mailing"
457
  msgstr "Для відправлення пошти ви можете використовувати функцію WordPress wp_mail"
458
 
459
+ #: contact_form.php:798
460
  msgid "Mail"
461
  msgstr "Пошта"
462
 
463
+ #: contact_form.php:799
464
  msgid "To send mail you can use the php mail function"
465
  msgstr "Для відправлення пошти ви можете використовувати функцію php mail"
466
 
467
+ #: contact_form.php:803
468
  msgid "Change text of the 'FROM' field"
469
  msgstr "Змінити текст поля \"Відправник\""
470
 
471
+ #: contact_form.php:809
472
  msgid "Enter the email address in the 'From' field"
473
  msgstr "Введіть email-адресу в полі \"Відправник\""
474
 
475
+ #: contact_form.php:811
476
  msgid "User email"
477
  msgstr ""
478
 
479
+ #: contact_form.php:811
480
  #, fuzzy
481
  msgid "The email address of the user who fills the form will be used in the field 'From'."
482
  msgstr "Email-адреса користувача, який заповнює форму, буде використана у полі \"Відправник\"."
483
 
484
+ #: contact_form.php:813
485
  msgid "This email address will be used in the 'From' field."
486
  msgstr "Ця email-адреса буде використана у полі \"Відправник\"."
487
 
488
+ #: contact_form.php:817
489
  #, fuzzy
490
  msgid "Display fields"
491
  msgstr "Показати текст"
492
 
493
+ #: contact_form.php:819
494
+ #: contact_form.php:849
495
+ #: contact_form.php:1039
496
+ #: contact_form.php:1691
497
  #, fuzzy
498
  msgid "Address"
499
  msgstr "E-mail адреса:"
500
 
501
+ #: contact_form.php:820
502
+ #: contact_form.php:851
503
+ #: contact_form.php:1699
504
  msgid "Phone"
505
  msgstr "Номер телефону"
506
 
507
+ #: contact_form.php:821
508
  #, fuzzy
509
  msgid "Attachment block"
510
  msgstr "Відображувати блок \"Прикріпити файл\" "
511
 
512
+ #: contact_form.php:821
513
  msgid "Users can attach the following file formats"
514
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
515
 
516
+ #: contact_form.php:822
517
  #, fuzzy
518
  msgid "Tips below the Attachment block"
519
  msgstr "Показувати підказки під блоком \"Прикріпити файл\""
520
 
521
+ #: contact_form.php:823
522
  #, fuzzy
523
  msgid "Send me a copy block"
524
  msgstr "Показати блок \"Надіслати мені копію\""
525
 
526
+ #: contact_form.php:835
527
+ #: contact_form.php:838
528
+ #: contact_form.php:841
529
+ #: contact_form.php:1068
530
  msgid "Captcha"
531
  msgstr ""
532
 
533
+ #: contact_form.php:835
534
+ #: contact_form.php:838
535
+ #: contact_form.php:841
536
+ #: contact_form.php:1068
537
  msgid "(powered by bestwebsoft.com)"
538
  msgstr ""
539
 
540
+ #: contact_form.php:838
541
  #, fuzzy
542
  msgid "Activate captcha"
543
  msgstr "Активовані плагіни"
544
 
545
+ #: contact_form.php:841
546
  #, fuzzy
547
  msgid "Download captcha"
548
  msgstr "Завантажити"
549
 
550
+ #: contact_form.php:846
551
  msgid "Required fields"
552
  msgstr "Обов'язкові поля"
553
 
554
+ #: contact_form.php:848
555
+ #: contact_form.php:1034
556
+ #: contact_form.php:1686
557
  msgid "Name"
558
  msgstr "Ім'я"
559
 
560
+ #: contact_form.php:850
561
  #, fuzzy
562
  msgid "Email Address"
563
  msgstr "E-mail адреса:"
564
 
565
+ #: contact_form.php:852
566
+ #: contact_form.php:1054
567
+ #: contact_form.php:1702
568
  msgid "Subject"
569
  msgstr "Тема"
570
 
571
+ #: contact_form.php:853
572
+ #: contact_form.php:1058
573
+ #: contact_form.php:1705
574
  msgid "Message"
575
  msgstr "Повідомлення"
576
 
577
+ #: contact_form.php:857
578
  #, fuzzy
579
  msgid "Display additional info in the email"
580
  msgstr "Відображати додаткову інформацію в email"
581
 
582
+ #: contact_form.php:862
583
+ #: contact_form.php:1658
584
  msgid "Sent from (ip address)"
585
  msgstr "Надіслано від (ip адреса)"
586
 
587
+ #: contact_form.php:863
588
+ #: contact_form.php:1663
589
  msgid "Date/Time"
590
  msgstr "Дата/Час"
591
 
592
+ #: contact_form.php:864
593
+ #: contact_form.php:1668
594
  msgid "Sent from (referer)"
595
  msgstr "Надіслано від (реферер)"
596
 
597
+ #: contact_form.php:865
598
+ #: contact_form.php:1673
599
  msgid "Using (user agent)"
600
  msgstr "Використовується (user agent)"
601
 
602
+ #: contact_form.php:869
603
  msgid "Language settings for the field names in the form"
604
  msgstr "Налаштування мови для назв полів форми"
605
 
606
+ #: contact_form.php:878
607
  #, fuzzy
608
  msgid "Add a language"
609
  msgstr "Додати мову"
610
 
611
+ #: contact_form.php:882
612
  msgid "Change the names of the contact form fields and error messages"
613
  msgstr "Змінити назви полів контактної форми і повідомлення про помилку"
614
 
615
+ #: contact_form.php:887
616
+ #: contact_form.php:958
617
  msgid "English"
618
  msgstr "Англійська"
619
 
620
+ #: contact_form.php:906
621
+ #: contact_form.php:935
622
  msgid "Error message for the Name field"
623
  msgstr "Повідомлення про помилку для поля Ім'я"
624
 
625
+ #: contact_form.php:907
626
+ #: contact_form.php:936
627
  #, fuzzy
628
  msgid "Error message for the Address field"
629
  msgstr "Повідомлення про помилку для поля Повідомлення"
630
 
631
+ #: contact_form.php:908
632
+ #: contact_form.php:937
633
  msgid "Error message for the Email field"
634
  msgstr "Повідомлення про помилку для поля Email"
635
 
636
+ #: contact_form.php:909
637
+ #: contact_form.php:938
638
  msgid "Error message for the Phone field"
639
  msgstr "Повідомлення про помилку для поля Номер телефону"
640
 
641
+ #: contact_form.php:910
642
+ #: contact_form.php:939
643
  msgid "Error message for the Subject field"
644
  msgstr "Повідомлення про помилку для поля Тема"
645
 
646
+ #: contact_form.php:911
647
+ #: contact_form.php:940
648
  msgid "Error message for the Message field"
649
  msgstr "Повідомлення про помилку для поля Повідомлення"
650
 
651
+ #: contact_form.php:912
652
+ #: contact_form.php:941
653
  #, fuzzy
654
  msgid "Error message about the file type for the Attachment field"
655
  msgstr "Повідомлення про помилку для поля Вкладені файли"
656
 
657
+ #: contact_form.php:913
658
+ #: contact_form.php:942
659
  #, fuzzy
660
  msgid "Error message while uploading a file for the Attachment field to the server"
661
  msgstr "Повідомлення про помилку для поля Вкладені файли"
662
 
663
+ #: contact_form.php:914
664
+ #: contact_form.php:943
665
  #, fuzzy
666
  msgid "Error message while moving the file for the Attachment field"
667
  msgstr "Повідомлення про помилку для поля Вкладені файли"
668
 
669
+ #: contact_form.php:915
670
+ #: contact_form.php:944
671
  #, fuzzy
672
  msgid "Error message when file size limit for the Attachment field is exceeded"
673
  msgstr "Повідомлення про помилку для поля Вкладені файли"
674
 
675
+ #: contact_form.php:916
676
+ #: contact_form.php:945
677
  msgid "Error message for the Captcha field"
678
  msgstr "Повідомлення про помилку для поля Captcha"
679
 
680
+ #: contact_form.php:917
681
+ #: contact_form.php:946
682
  msgid "Error message for the whole form"
683
  msgstr "Повідомлення про помилку для всієї форми"
684
 
685
+ #: contact_form.php:919
686
+ #: contact_form.php:948
687
+ #: contact_form.php:967
688
+ #: contact_form.php:973
689
  msgid "Use shortcode"
690
  msgstr "Використовувати скорочення"
691
 
692
+ #: contact_form.php:919
693
+ #: contact_form.php:948
694
+ #: contact_form.php:967
695
+ #: contact_form.php:973
696
  msgid "for this language"
697
  msgstr "для даної мови"
698
 
699
+ #: contact_form.php:955
700
  msgid "Action after email is sent"
701
  msgstr "Дія після відправлення email"
702
 
703
+ #: contact_form.php:957
704
  msgid "Display text"
705
  msgstr "Показати текст"
706
 
707
+ #: contact_form.php:966
708
+ #: contact_form.php:972
709
  msgid "Text"
710
  msgstr "Текст"
711
 
712
+ #: contact_form.php:979
713
  msgid "Redirect to the page"
714
  msgstr "Перенаправлення на сторінку"
715
 
716
+ #: contact_form.php:980
717
  msgid "Url"
718
  msgstr "Url"
719
 
720
+ #: contact_form.php:985
721
+ #: contact_form.php:1160
722
  msgid "Save Changes"
723
  msgstr "Зберегти зміни"
724
 
725
+ #: contact_form.php:1000
726
  #, fuzzy
727
  msgid "Contact Form Pro | Extra Settings"
728
  msgstr "Налаштування контактної форми"
729
 
730
+ #: contact_form.php:1007
731
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
732
  msgstr ""
733
 
734
+ #: contact_form.php:1014
735
  msgid "Errors output"
736
  msgstr ""
737
 
738
+ #: contact_form.php:1017
739
  msgid "Display error messages"
740
  msgstr ""
741
 
742
+ #: contact_form.php:1018
743
  msgid "Color of the input field errors."
744
  msgstr ""
745
 
746
+ #: contact_form.php:1019
747
  #, fuzzy
748
  msgid "Display error messages & color of the input field errors"
749
  msgstr "Повідомлення про помилку для поля Тема"
750
 
751
+ #: contact_form.php:1024
752
  msgid "Add placeholder to the input blocks"
753
  msgstr ""
754
 
755
+ #: contact_form.php:1030
756
  #, fuzzy
757
  msgid "Add tooltips"
758
  msgstr "Додаткові опції"
759
 
760
+ #: contact_form.php:1044
761
  #, fuzzy
762
  msgid "Email address"
763
  msgstr "E-mail адреса:"
764
 
765
+ #: contact_form.php:1049
766
  #, fuzzy
767
  msgid "Phone Number"
768
  msgstr "Телефон:"
769
 
770
+ #: contact_form.php:1063
771
  #, fuzzy
772
  msgid "Attachment"
773
  msgstr "Прикріпити файл:"
774
 
775
+ #: contact_form.php:1073
776
  #, fuzzy
777
  msgid "Style options"
778
  msgstr "Додаткові опції"
779
 
780
+ #: contact_form.php:1076
781
  msgid "Text color"
782
  msgstr ""
783
 
784
+ #: contact_form.php:1079
785
+ #: contact_form.php:1084
786
+ #: contact_form.php:1094
787
+ #: contact_form.php:1099
788
+ #: contact_form.php:1104
789
+ #: contact_form.php:1109
790
+ #: contact_form.php:1119
791
+ #: contact_form.php:1124
792
+ #: contact_form.php:1130
793
+ #: contact_form.php:1141
794
+ #: contact_form.php:1146
795
+ #: contact_form.php:1151
796
  msgid "Default"
797
  msgstr ""
798
 
799
+ #: contact_form.php:1081
800
  msgid "Label text color"
801
  msgstr ""
802
 
803
+ #: contact_form.php:1086
804
  msgid "Placeholder color"
805
  msgstr ""
806
 
807
+ #: contact_form.php:1091
808
  msgid "Errors color"
809
  msgstr ""
810
 
811
+ #: contact_form.php:1096
812
  msgid "Error text color"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1101
816
  msgid "Background color of the input field errors"
817
  msgstr ""
818
 
819
+ #: contact_form.php:1106
820
  msgid "Border color of the input field errors"
821
  msgstr ""
822
 
823
+ #: contact_form.php:1111
824
  msgid "Placeholder color of the input field errors"
825
  msgstr ""
826
 
827
+ #: contact_form.php:1116
828
  msgid "Input fields"
829
  msgstr ""
830
 
831
+ #: contact_form.php:1121
832
  msgid "Input fields background color"
833
  msgstr ""
834
 
835
+ #: contact_form.php:1126
836
  msgid "Text fields color"
837
  msgstr ""
838
 
839
+ #: contact_form.php:1128
840
  msgid "Border width in px, numbers only"
841
  msgstr ""
842
 
843
+ #: contact_form.php:1132
844
+ #: contact_form.php:1153
845
  msgid "Border color"
846
  msgstr ""
847
 
848
+ #: contact_form.php:1137
849
  #, fuzzy
850
  msgid "Submit button"
851
  msgstr "Підтвердити"
852
 
853
+ #: contact_form.php:1139
854
  msgid "Width in px, numbers only"
855
  msgstr ""
856
 
857
+ #: contact_form.php:1143
858
  msgid "Button color"
859
  msgstr ""
860
 
861
+ #: contact_form.php:1148
862
  msgid "Button text color"
863
  msgstr ""
864
 
865
+ #: contact_form.php:1164
866
  #, fuzzy
867
  msgid "Contact Form Pro | Preview"
868
  msgstr "Контактна форма"
869
 
870
+ #: contact_form.php:1167
871
  msgid "Show with errors"
872
  msgstr ""
873
 
874
+ #: contact_form.php:1175
875
+ #: contact_form.php:1177
876
  msgid "Please enter your full name..."
877
  msgstr ""
878
 
879
+ #: contact_form.php:1188
880
+ #: contact_form.php:1190
881
  msgid "Please enter your address..."
882
  msgstr ""
883
 
884
+ #: contact_form.php:1199
885
+ #: contact_form.php:1201
886
  #, fuzzy
887
  msgid "Please enter your email address..."
888
  msgstr "Використовувати цю email-адресу:"
889
 
890
+ #: contact_form.php:1210
891
+ #: contact_form.php:1212
892
  msgid "Please enter your phone number..."
893
  msgstr ""
894
 
895
+ #: contact_form.php:1221
896
+ #: contact_form.php:1223
897
  msgid "Please enter subject..."
898
  msgstr ""
899
 
900
+ #: contact_form.php:1231
901
+ #: contact_form.php:1233
902
  msgid "Please enter your message..."
903
  msgstr ""
904
 
905
+ #: contact_form.php:1244
906
  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"
907
  msgstr ""
908
 
909
+ #: contact_form.php:1397
 
 
 
 
910
  msgid "You can attach the following file formats"
911
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
912
 
913
+ #: contact_form.php:1681
914
  msgid "Contact from"
915
  msgstr "Контактна форма"
916
 
917
+ #: contact_form.php:1694
918
  msgid "Email"
919
  msgstr "Email"
920
 
921
+ #: contact_form.php:1708
922
  msgid "Site"
923
  msgstr "Сайт"
924
 
925
+ #: contact_form.php:1758
926
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
927
  msgstr "Якщо Ви не бачите цей MIME, це означає, що цей MIME тип не підтримується Вашим email-клієнтом!"
928
 
929
+ #: contact_form.php:1809
930
  msgid "FAQ"
931
  msgstr "FAQ"
932
 
933
+ #: contact_form.php:1810
934
  msgid "Support"
935
  msgstr "Підтримка"
936
 
937
+ #: contact_form.php:1858
938
  msgid "Are you sure that you want to delete this language data?"
939
  msgstr "Ви справді хочете видалити дані для цієї мови?"
940
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
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: 2.9
6
  Tested up to: 3.5.2
7
- Stable tag: 3.48
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -124,6 +124,9 @@ Here is an example for the German language files.
124
 
125
  == Changelog ==
126
 
 
 
 
127
  = V3.48 - 16.07.2013 =
128
  * NEW : The Catalan language file is added.
129
  * Update : The French language file is updated.
@@ -344,6 +347,9 @@ Here is an example for the German language files.
344
 
345
  == Upgrade Notice ==
346
 
 
 
 
347
  = V3.48 =
348
  The Catalan language file is added. The French language file is updated. We updated all functionality for wordpress 3.5.2.
349
 
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: 2.9
6
  Tested up to: 3.5.2
7
+ Stable tag: 3.49
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
124
 
125
  == Changelog ==
126
 
127
+ = V3.49 - 22.07.2013 =
128
+ * NEW : Added an ability to view and send system information by mail.
129
+
130
  = V3.48 - 16.07.2013 =
131
  * NEW : The Catalan language file is added.
132
  * Update : The French language file is updated.
347
 
348
  == Upgrade Notice ==
349
 
350
+ = V3.49 =
351
+ Added an ability to view and send system information by mail.
352
+
353
  = V3.48 =
354
  The Catalan language file is added. The French language file is updated. We updated all functionality for wordpress 3.5.2.
355