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 "Рэка