Cimy User Extra Fields - Version 2.7.2

Version Description

Download this release

Release Info

Developer Cimmo
Plugin Icon wp plugin Cimy User Extra Fields
Version 2.7.2
Comparing to
See all releases

Code changes from version 2.7.1 to 2.7.2

Files changed (26) hide show
  1. README_OFFICIAL.txt +6 -0
  2. cimy_uef_db.php +9 -4
  3. cimy_uef_email_handler.php +54 -23
  4. cimy_uef_options.php +18 -6
  5. cimy_uef_register.php +11 -20
  6. cimy_user_extra_fields.php +6 -5
  7. langs/{cimy_uef-ar.mo → cimy-user-extra-fields-ar.mo} +0 -0
  8. langs/{cimy_uef-ar.po → cimy-user-extra-fields-ar.po} +1089 -1072
  9. langs/{cimy_uef-be_BY.mo → cimy-user-extra-fields-be_BY.mo} +0 -0
  10. langs/{cimy_uef-be_BY.po → cimy-user-extra-fields-be_BY.po} +1038 -1021
  11. langs/{cimy_uef-bg_BG.mo → cimy-user-extra-fields-bg_BG.mo} +0 -0
  12. langs/{cimy_uef-bg_BG.po → cimy-user-extra-fields-bg_BG.po} +1045 -1028
  13. langs/{cimy_uef-cs_CZ.mo → cimy-user-extra-fields-cs_CZ.mo} +0 -0
  14. langs/{cimy_uef-cs_CZ.po → cimy-user-extra-fields-cs_CZ.po} +1110 -1093
  15. langs/{cimy_uef-da_DK.mo → cimy-user-extra-fields-da_DK.mo} +0 -0
  16. langs/{cimy_uef-da_DK.po → cimy-user-extra-fields-da_DK.po} +1045 -1028
  17. langs/{cimy_uef-de_DE.mo → cimy-user-extra-fields-de_DE.mo} +0 -0
  18. langs/{cimy_uef-de_DE.po → cimy-user-extra-fields-de_DE.po} +1059 -1042
  19. langs/{cimy_uef-es_ES.mo → cimy-user-extra-fields-es_ES.mo} +0 -0
  20. langs/{cimy_uef-es_ES.po → cimy-user-extra-fields-es_ES.po} +1063 -1046
  21. langs/{cimy_uef-fa_IR.mo → cimy-user-extra-fields-fa_IR.mo} +0 -0
  22. langs/{cimy_uef-fa_IR.po → cimy-user-extra-fields-fa_IR.po} +1092 -1075
  23. langs/{cimy_uef-fr_FR.mo → cimy-user-extra-fields-fr_FR.mo} +0 -0
  24. langs/{cimy_uef-fr_FR.po → cimy-user-extra-fields-fr_FR.po} +1127 -1110
  25. langs/{cimy_uef-hu_HU.mo → cimy-user-extra-fields-hu_HU.mo} +0 -0
  26. langs/{cimy_uef-hu_HU.po → cimy-user-extra-fields-hu_HU.po} +30 -37
README_OFFICIAL.txt CHANGED
@@ -631,6 +631,12 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
631
 
632
 
633
  CHANGELOG:
 
 
 
 
 
 
634
  v2.7.1 - 08/02/2016
635
  - Added support for reCAPTCHA v2
636
  - Fixed filter by radio Extra Fields under Users Extended
631
 
632
 
633
  CHANGELOG:
634
+ v2.7.2 - 10/05/2017
635
+ - Fixed registration rules were applied on profile update when certain plug-ins are installed, like bbpress (thanks to Vane R.)
636
+ - Fixed MYSQL error on WordPress MS when creating sites through other plug-ins (thanks to Kathy Goss)
637
+ - Fixed PHP Notice: Undefined index: welcome_email on WordPress MS
638
+ - Updated Securimage Captcha to v3.6.4 (fixes this vulnerability https://www.redteam-pentesting.de/en/advisories/rt-sa-2016-002/-cross-site-scripting-in-securimage-3-6-2)
639
+
640
  v2.7.1 - 08/02/2016
641
  - Added support for reCAPTCHA v2
642
  - Fixed filter by radio Extra Fields under Users Extended
cimy_uef_db.php CHANGED
@@ -293,6 +293,10 @@ function cimy_plugin_install () {
293
  $options["wp_hidden_fields"][] = "username";
294
  }
295
 
 
 
 
 
296
  $options['version'] = $cimy_uef_version;
297
 
298
  cimy_set_options($options);
@@ -333,9 +337,9 @@ function cimy_force_signup_table_creation() {
333
  $charset_collate .= " COLLATE $wpdb->collate";
334
  }
335
 
336
- if ($wpdb->get_var("SHOW TABLES LIKE '".$wpdb->prefix."signups'") != $wpdb->prefix."signups") {
337
 
338
- $sql = "CREATE TABLE ".$wpdb->prefix."signups (
339
  domain varchar(200) NOT NULL default '',
340
  path varchar(100) NOT NULL default '',
341
  title longtext NOT NULL,
@@ -378,6 +382,7 @@ function cimy_manage_db($command) {
378
  'confirm_email' => false,
379
  'password_meter' => false,
380
  'mail_include_fields' => false,
 
381
  'redirect_to' => '',
382
  'file_fields' => array(
383
  'show_in_reg' => 0,
@@ -602,11 +607,11 @@ function cimy_set_options($options) {
602
  function cimy_uef_get_meta_from_user_login($user_login) {
603
  global $wpdb;
604
 
605
- return $wpdb->get_row($wpdb->prepare("SELECT user_login, user_email, meta FROM ".$wpdb->prefix."signups WHERE user_login = %s AND active = %d", $user_login, 0), ARRAY_A);
606
  }
607
 
608
  function cimy_uef_get_meta_from_url($domain, $path) {
609
  global $wpdb;
610
 
611
- return $wpdb->get_row($wpdb->prepare("SELECT user_login, user_email, meta FROM ".$wpdb->prefix."signups WHERE domain = %s AND path = %s AND active = %d", $domain, $path, 0), ARRAY_A);
612
  }
293
  $options["wp_hidden_fields"][] = "username";
294
  }
295
 
296
+ if (version_compare($options['version'], "2.7.1", "<=") === true) {
297
+ $options["email_include_plaintext_password"] = false;
298
+ }
299
+
300
  $options['version'] = $cimy_uef_version;
301
 
302
  cimy_set_options($options);
337
  $charset_collate .= " COLLATE $wpdb->collate";
338
  }
339
 
340
+ if ($wpdb->get_var("SHOW TABLES LIKE '".$wpdb->base_prefix."signups'") != $wpdb->base_prefix."signups") {
341
 
342
+ $sql = "CREATE TABLE ".$wpdb->base_prefix."signups (
343
  domain varchar(200) NOT NULL default '',
344
  path varchar(100) NOT NULL default '',
345
  title longtext NOT NULL,
382
  'confirm_email' => false,
383
  'password_meter' => false,
384
  'mail_include_fields' => false,
385
+ 'email_include_plaintext_password' => false,
386
  'redirect_to' => '',
387
  'file_fields' => array(
388
  'show_in_reg' => 0,
607
  function cimy_uef_get_meta_from_user_login($user_login) {
608
  global $wpdb;
609
 
610
+ return $wpdb->get_row($wpdb->prepare("SELECT user_login, user_email, meta FROM ".$wpdb->base_prefix."signups WHERE user_login = %s AND active = %d", $user_login, 0), ARRAY_A);
611
  }
612
 
613
  function cimy_uef_get_meta_from_url($domain, $path) {
614
  global $wpdb;
615
 
616
+ return $wpdb->get_row($wpdb->prepare("SELECT user_login, user_email, meta FROM ".$wpdb->base_prefix."signups WHERE domain = %s AND path = %s AND active = %d", $domain, $path, 0), ARRAY_A);
617
  }
cimy_uef_email_handler.php CHANGED
@@ -17,14 +17,29 @@ function wp_new_user_notification($user_id, $plaintext_pass = null, $notify = ''
17
 
18
  $options = cimy_get_options();
19
  if (!is_multisite()) {
20
- if (!$options["confirm_email"])
21
- wp_new_user_notification_original($user_id, $plaintext_pass, $options["mail_include_fields"], false, cimy_wpml_translate_string("a_opt_welcome_email", $options["welcome_email"]), $notify);
22
- // if confirmation email is enabled delete the default_password_nag but checks first if has not been done on top of this function!
23
- else if (!isset($_POST["cimy_uef_wp_PASSWORD"]))
 
 
 
 
 
 
 
 
24
  delete_user_meta($user_id, 'default_password_nag');
25
- }
26
- else {
27
- wp_new_user_notification_original($user_id, $plaintext_pass, $options["mail_include_fields"], $notify);
 
 
 
 
 
 
 
28
  }
29
  }
30
  endif;
@@ -32,11 +47,18 @@ endif;
32
  add_filter('send_password_change_email', 'cimy_uef_send_password_change_email', 10, 3);
33
 
34
  function cimy_uef_send_password_change_email($send, $user, $userdata) {
35
- return empty($_POST["cimy_uef_wp_PASSWORD"]) ? true : false;
36
  }
37
 
38
- function wp_new_user_notification_original($user_id, $plaintext_pass = null, $include_fields = false, $activation_data = false, $welcome_email = '', $notify = '') {
39
- global $wpdb, $wp_hasher;
 
 
 
 
 
 
 
40
  $user = new WP_User($user_id);
41
 
42
  $user_login = stripslashes($user->user_login);
@@ -68,7 +90,8 @@ function wp_new_user_notification_original($user_id, $plaintext_pass = null, $in
68
  }
69
 
70
  $message = str_replace("USERNAME", $user_login, $welcome_email);
71
- if ( empty($plaintext_pass) ) {
 
72
  // Generate something random for a password reset key.
73
  $key = wp_generate_password( 20, false );
74
 
@@ -86,8 +109,10 @@ function wp_new_user_notification_original($user_id, $plaintext_pass = null, $in
86
  $pass_link = __('To set your password, visit the following address:') . "\r\n\r\n";
87
  $pass_link .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user->user_login), 'login') . ">\r\n\r\n";
88
  $message = str_replace("PASSWORD", $pass_link, $message);
89
- } else {
90
  $message = str_replace("PASSWORD", $plaintext_pass, $message);
 
 
91
  }
92
 
93
  if ($include_fields) {
@@ -283,9 +308,7 @@ function cimy_uef_activate($message) {
283
  function cimy_uef_activate_signup($key) {
284
  global $wpdb, $current_site, $cimy_uef_domain;
285
 
286
- // seems no more required since WP 3.1
287
- // require_once( ABSPATH . WPINC . '/registration.php');
288
- $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE activation_key = %s", $key) );
289
 
290
  if ( empty($signup) )
291
  return new WP_Error('invalid_key', __('Invalid activation key.', $cimy_uef_domain));
@@ -300,7 +323,7 @@ function cimy_uef_activate_signup($key) {
300
  if (!empty($meta["cimy_uef_wp_PASSWORD"]))
301
  $password = $meta["cimy_uef_wp_PASSWORD"];
302
  else
303
- $password = wp_generate_password();
304
 
305
  $user_id = username_exists($user_login);
306
 
@@ -318,18 +341,26 @@ function cimy_uef_activate_signup($key) {
318
 
319
  cimy_register_user_extra_fields($user_id, $password, $meta);
320
 
321
- if ((empty($meta["cimy_uef_wp_PASSWORD"])) && ($user_already_exists))
322
  update_user_option( $user_id, 'default_password_nag', true, true ); //Set up the Password change nag.
 
323
 
324
  $now = current_time('mysql', true);
325
 
326
- $wpdb->update( $wpdb->prefix."signups", array('active' => 1, 'activated' => $now), array('activation_key' => $key) );
327
 
328
  if ($user_already_exists)
329
  return new WP_Error( 'user_already_exists', __( 'That username is already activated.', $cimy_uef_domain), $signup);
330
 
331
  $options = cimy_get_options();
332
- wp_new_user_notification_original($user_id, $password, $options["mail_include_fields"], $meta, cimy_wpml_translate_string("a_opt_welcome_email", $options["welcome_email"]), 'both');
 
 
 
 
 
 
 
333
  return array('user_id' => $user_id, 'password' => $password, 'meta' => $meta);
334
  }
335
 
@@ -337,14 +368,14 @@ function cimy_check_user_on_signups($errors, $user_name, $user_email) {
337
  global $wpdb, $cimy_uef_domain;
338
 
339
  // Has someone already signed up for this username?
340
- $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE user_login = %s", $user_name) );
341
  if ( $signup != null ) {
342
  $registered_at = mysql2date('U', $signup->registered);
343
  $now = current_time( 'timestamp', true );
344
  $diff = $now - $registered_at;
345
  // If registered more than two days ago or already approved and then deleted, cancel registration and let this signup go through.
346
  if (($diff > 172800) || ($signup->active))
347
- $wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->prefix."signups WHERE user_login = %s", $user_name) );
348
  else
349
  $errors->add('user_name', __('That username is currently reserved but may be available in a couple of days.', $cimy_uef_domain));
350
 
@@ -352,12 +383,12 @@ function cimy_check_user_on_signups($errors, $user_name, $user_email) {
352
  $errors->add('user_email_used', __('username and email used', $cimy_uef_domain));
353
  }
354
 
355
- $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE user_email = %s", $user_email) );
356
  if ( $signup != null ) {
357
  $diff = current_time( 'timestamp', true ) - mysql2date('U', $signup->registered);
358
  // If registered more than two days ago or already approved and then deleted, cancel registration and let this signup go through.
359
  if (($diff > 172800) || ($signup->active))
360
- $wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->prefix."signups WHERE user_email = %s", $user_email) );
361
  else
362
  $errors->add('user_email', __('That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing.', $cimy_uef_domain));
363
  }
17
 
18
  $options = cimy_get_options();
19
  if (!is_multisite()) {
20
+ if (!$options["confirm_email"]) {
21
+ wp_new_user_notification_original($user_id,
22
+ $plaintext_pass,
23
+ $options["mail_include_fields"],
24
+ false,
25
+ cimy_wpml_translate_string("a_opt_welcome_email", $options["welcome_email"]),
26
+ $notify,
27
+ $options["email_include_plaintext_password"]
28
+ );
29
+ } else if (!isset($_POST["cimy_uef_wp_PASSWORD"])) {
30
+ // if confirmation email is enabled delete the default_password_nag
31
+ // but checks first if has not been done on top of this function!
32
  delete_user_meta($user_id, 'default_password_nag');
33
+ }
34
+ } else {
35
+ wp_new_user_notification_original($user_id,
36
+ $plaintext_pass,
37
+ $options["mail_include_fields"],
38
+ false,
39
+ '',
40
+ $notify,
41
+ $options["email_include_plaintext_password"]
42
+ );
43
  }
44
  }
45
  endif;
47
  add_filter('send_password_change_email', 'cimy_uef_send_password_change_email', 10, 3);
48
 
49
  function cimy_uef_send_password_change_email($send, $user, $userdata) {
50
+ return empty($_POST["cimy_uef_wp_PASSWORD"]) ? true && !empty($send) : false;
51
  }
52
 
53
+ function wp_new_user_notification_original($user_id,
54
+ $plaintext_pass = null,
55
+ $include_fields = false,
56
+ $activation_data = false,
57
+ $welcome_email = '',
58
+ $notify = '',
59
+ $include_plaintext_password = false
60
+ ) {
61
+ global $wpdb, $wp_hasher, $cimy_uef_domain;
62
  $user = new WP_User($user_id);
63
 
64
  $user_login = stripslashes($user->user_login);
90
  }
91
 
92
  $message = str_replace("USERNAME", $user_login, $welcome_email);
93
+
94
+ if (empty($plaintext_pass)) {
95
  // Generate something random for a password reset key.
96
  $key = wp_generate_password( 20, false );
97
 
109
  $pass_link = __('To set your password, visit the following address:') . "\r\n\r\n";
110
  $pass_link .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user->user_login), 'login') . ">\r\n\r\n";
111
  $message = str_replace("PASSWORD", $pass_link, $message);
112
+ } else if ($include_plaintext_password) {
113
  $message = str_replace("PASSWORD", $plaintext_pass, $message);
114
+ } else {
115
+ $message = str_replace("PASSWORD", __('Your chosen password.', $cimy_uef_domain), $message);
116
  }
117
 
118
  if ($include_fields) {
308
  function cimy_uef_activate_signup($key) {
309
  global $wpdb, $current_site, $cimy_uef_domain;
310
 
311
+ $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->base_prefix."signups WHERE activation_key = %s", $key) );
 
 
312
 
313
  if ( empty($signup) )
314
  return new WP_Error('invalid_key', __('Invalid activation key.', $cimy_uef_domain));
323
  if (!empty($meta["cimy_uef_wp_PASSWORD"]))
324
  $password = $meta["cimy_uef_wp_PASSWORD"];
325
  else
326
+ $password = wp_generate_password(12, false);
327
 
328
  $user_id = username_exists($user_login);
329
 
341
 
342
  cimy_register_user_extra_fields($user_id, $password, $meta);
343
 
344
+ if (empty($meta["cimy_uef_wp_PASSWORD"]) && $user_already_exists) {
345
  update_user_option( $user_id, 'default_password_nag', true, true ); //Set up the Password change nag.
346
+ }
347
 
348
  $now = current_time('mysql', true);
349
 
350
+ $wpdb->update( $wpdb->base_prefix."signups", array('active' => 1, 'activated' => $now), array('activation_key' => $key) );
351
 
352
  if ($user_already_exists)
353
  return new WP_Error( 'user_already_exists', __( 'That username is already activated.', $cimy_uef_domain), $signup);
354
 
355
  $options = cimy_get_options();
356
+ wp_new_user_notification_original($user_id,
357
+ $password,
358
+ $options["mail_include_fields"],
359
+ $meta,
360
+ cimy_wpml_translate_string("a_opt_welcome_email", $options["welcome_email"]),
361
+ 'both',
362
+ $options["email_include_plaintext_password"]
363
+ );
364
  return array('user_id' => $user_id, 'password' => $password, 'meta' => $meta);
365
  }
366
 
368
  global $wpdb, $cimy_uef_domain;
369
 
370
  // Has someone already signed up for this username?
371
+ $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->base_prefix."signups WHERE user_login = %s", $user_name) );
372
  if ( $signup != null ) {
373
  $registered_at = mysql2date('U', $signup->registered);
374
  $now = current_time( 'timestamp', true );
375
  $diff = $now - $registered_at;
376
  // If registered more than two days ago or already approved and then deleted, cancel registration and let this signup go through.
377
  if (($diff > 172800) || ($signup->active))
378
+ $wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->base_prefix."signups WHERE user_login = %s", $user_name) );
379
  else
380
  $errors->add('user_name', __('That username is currently reserved but may be available in a couple of days.', $cimy_uef_domain));
381
 
383
  $errors->add('user_email_used', __('username and email used', $cimy_uef_domain));
384
  }
385
 
386
+ $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->base_prefix."signups WHERE user_email = %s", $user_email) );
387
  if ( $signup != null ) {
388
  $diff = current_time( 'timestamp', true ) - mysql2date('U', $signup->registered);
389
  // If registered more than two days ago or already approved and then deleted, cancel registration and let this signup go through.
390
  if (($diff > 172800) || ($signup->active))
391
+ $wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->base_prefix."signups WHERE user_email = %s", $user_email) );
392
  else
393
  $errors->add('user_email', __('That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing.', $cimy_uef_domain));
394
  }
cimy_uef_options.php CHANGED
@@ -24,7 +24,7 @@ function cimy_save_options() {
24
  $options['aue_hidden_fields'] = array();
25
  $options['wp_hidden_fields'] = array();
26
 
27
- $options['welcome_email'] = stripslashes($_POST['welcome_email']);
28
  cimy_wpml_register_string("a_opt_welcome_email", $options['welcome_email']);
29
  $options['extra_fields_title'] = stripslashes($_POST['extra_fields_title']);
30
  $options['extra_fields_title'] = substr($options['extra_fields_title'], 0, $max_length_extra_fields_title);
@@ -128,12 +128,13 @@ function cimy_save_options() {
128
  $tot_wp_hidden_fields = count($old_wp_hidden_fields);
129
  $action = "add";
130
 
131
- (isset($_POST['confirm_email'])) ? $options['confirm_email'] = true : $options['confirm_email'] = false;
132
- (isset($_POST['confirm_form'])) ? $options['confirm_form'] = true : $options['confirm_form'] = false;
133
  if ($options['confirm_email'])
134
  cimy_force_signup_table_creation();
135
- (isset($_POST['redirect_to'])) ? $options['redirect_to'] = $_POST['redirect_to'] : $options['redirect_to'] = "";
136
- (isset($_POST['mail_include_fields'])) ? $options['mail_include_fields'] = true : $options['mail_include_fields'] = false;
 
137
 
138
  if (isset($_POST['captcha']))
139
  $options['captcha'] = $_POST['captcha'];
@@ -373,7 +374,7 @@ function cimy_show_options($results, $embedded) {
373
  if (function_exists("screen_icon"))
374
  screen_icon("options-general");
375
  ?>
376
- <h2><?php _e("Options");
377
 
378
  if (!isset($cimy_top_menu)) {
379
  ?> - <a href="#addfield"><?php _e("Add a new Field", $cimy_uef_domain); ?></a> - <a href="#extrafields"><?php _e("Extra Fields", $cimy_uef_domain); ?></a><?php
@@ -462,6 +463,17 @@ function cimy_show_options($results, $embedded) {
462
  ?>
463
  </td>
464
  </tr>
 
 
 
 
 
 
 
 
 
 
 
465
  <?php if (!is_multisite()) { ?>
466
  <tr>
467
  <th scope="row">
24
  $options['aue_hidden_fields'] = array();
25
  $options['wp_hidden_fields'] = array();
26
 
27
+ $options['welcome_email'] = isset($_POST['welcome_email']) ? stripslashes($_POST['welcome_email']) : '';
28
  cimy_wpml_register_string("a_opt_welcome_email", $options['welcome_email']);
29
  $options['extra_fields_title'] = stripslashes($_POST['extra_fields_title']);
30
  $options['extra_fields_title'] = substr($options['extra_fields_title'], 0, $max_length_extra_fields_title);
128
  $tot_wp_hidden_fields = count($old_wp_hidden_fields);
129
  $action = "add";
130
 
131
+ $options["confirm_email"] = empty($_POST['confirm_email']) ? false : true;
132
+ $options["confirm_form"] = empty($_POST['confirm_form']) ? false : true;
133
  if ($options['confirm_email'])
134
  cimy_force_signup_table_creation();
135
+ $options["redirect_to"] = empty($_POST['redirect_to']) ? "" : $_POST['redirect_to'];
136
+ $options["mail_include_fields"] = empty($_POST['mail_include_fields']) ? false : true;
137
+ $options["email_include_plaintext_password"] = empty($_POST['email_include_plaintext_password']) ? false : true;
138
 
139
  if (isset($_POST['captcha']))
140
  $options['captcha'] = $_POST['captcha'];
374
  if (function_exists("screen_icon"))
375
  screen_icon("options-general");
376
  ?>
377
+ <h2><?php _e("Settings");
378
 
379
  if (!isset($cimy_top_menu)) {
380
  ?> - <a href="#addfield"><?php _e("Add a new Field", $cimy_uef_domain); ?></a> - <a href="#extrafields"><?php _e("Extra Fields", $cimy_uef_domain); ?></a><?php
463
  ?>
464
  </td>
465
  </tr>
466
+ <tr>
467
+ <th scope="row">
468
+ <input type="checkbox" name="email_include_plaintext_password" id="email_include_plaintext_password" value="1"<?php checked(true, $options['email_include_plaintext_password'], true); ?> />
469
+ <label for="email_include_plaintext_password"><?php _e("Show plain text password in the welcome email", $cimy_uef_domain); ?></label>
470
+ </th>
471
+ <td>
472
+ <?php
473
+ _e("the email sent to the user upon registration will include the user's password in plain text (may be useful, but less secure)", $cimy_uef_domain);
474
+ ?>
475
+ </td>
476
+ </tr>
477
  <?php if (!is_multisite()) { ?>
478
  <tr>
479
  <th scope="row">
cimy_uef_register.php CHANGED
@@ -58,7 +58,7 @@ function cimy_register_overwrite_password($password) {
58
  // seems useless since this code cannot be reached with a bad key anyway you never know
59
  $key = esc_sql($key);
60
 
61
- $sql = "SELECT active, meta FROM ".$wpdb->signups." WHERE activation_key='".$key."'";
62
  $data = $wpdb->get_results($sql);
63
 
64
  // is there something?
@@ -111,19 +111,19 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
111
 
112
  // ok ok this is yet another call from wp_create_user function under cimy_uef_activate_signup, we are not yet ready for this, aboooort!
113
  if ($user_signups) {
114
- $signup = $wpdb->get_row($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE user_login = %s AND active = 0", $user_login));
115
  if (!empty($signup))
116
  return;
117
  }
118
  if (!empty($meta)) {
119
- $meta_db = $wpdb->get_var($wpdb->prepare("SELECT meta FROM ".$wpdb->prefix."signups WHERE user_login = %s", $user_login));
120
  $meta_db = unserialize($meta_db);
121
  // password detected, kill it!
122
  if (!empty($meta_db['cimy_uef_wp_PASSWORD'])) {
123
  unset($meta_db['cimy_uef_wp_PASSWORD']);
124
  if (!empty($meta_db['cimy_uef_wp_PASSWORD2']))
125
  unset($meta_db['cimy_uef_wp_PASSWORD2']);
126
- $wpdb->update($wpdb->prefix."signups", array('meta' => serialize($meta_db)), array('user_login' => $user_login));
127
  }
128
  }
129
 
@@ -269,11 +269,11 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
269
  }
270
 
271
  if ($user_signups) {
272
- $sql = $wpdb->prepare("SELECT * FROM $wpdb->users WHERE ID=%d", $user_id);
273
- $saved_user = array_shift($wpdb->get_results($sql));
274
  $key = substr( md5( time() . rand() . $saved_user->user_email ), 0, 16 );
275
 
276
- $wpdb->insert($wpdb->prefix."signups", array(
277
  'user_login' => $saved_user->user_login,
278
  'user_email' => $saved_user->user_email,
279
  'registered' => $saved_user->user_registered,
@@ -281,11 +281,8 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
281
  'activation_key' => $key,
282
  'meta' => serialize($meta),
283
  ));
284
- $sql = $wpdb->prepare("DELETE FROM $wpdb->users WHERE ID=%d", $user_id);
285
- $wpdb->query($sql);
286
-
287
- $sql = $wpdb->prepare("DELETE FROM $wpdb->usermeta WHERE user_id=%d", $user_id);
288
- $wpdb->query($sql);
289
 
290
  cimy_signup_user_notification($saved_user->user_login, $saved_user->user_email, $key, serialize($meta));
291
  }
@@ -311,13 +308,10 @@ function cimy_registration_check_mu_wrapper($data) {
311
 
312
  // added for profile rules check
313
  function cimy_profile_check_wrapper($errors, $update, $user) {
314
- $errors = cimy_registration_check($user->user_login, $user->user_email, $errors);
315
-
316
- if (!empty($errors))
317
- $update = false;
318
  }
319
 
320
- function cimy_registration_check($user_login, $user_email, $errors) {
321
  global $wpdb, $rule_canbeempty, $rule_email, $rule_maxlen, $fields_name_prefix, $wp_fields_name_prefix, $rule_equalto_case_sensitive, $apply_equalto_rule, $cimy_uef_domain, $cimy_uef_file_types, $rule_equalto_regex, $user_level, $cimy_uef_file_images_types, $wp_hidden_fields, $rule_maxlen_is_str;
322
 
323
  if (cimy_is_at_least_wordpress35())
@@ -348,9 +342,6 @@ function cimy_registration_check($user_login, $user_email, $errors) {
348
 
349
  $extra_fields = get_cimyFields(false, true);
350
  $wp_fields = get_cimyFields(true);
351
- $from_profile = false;
352
- if (!empty($_POST["from"]) && $_POST["from"] == "profile")
353
- $from_profile = true;
354
  $i = 1;
355
 
356
  // do first for the WP fields then for EXTRA fields
58
  // seems useless since this code cannot be reached with a bad key anyway you never know
59
  $key = esc_sql($key);
60
 
61
+ $sql = "SELECT active, meta FROM ".$wpdb->base_prefix."signups WHERE activation_key='".$key."'";
62
  $data = $wpdb->get_results($sql);
63
 
64
  // is there something?
111
 
112
  // ok ok this is yet another call from wp_create_user function under cimy_uef_activate_signup, we are not yet ready for this, aboooort!
113
  if ($user_signups) {
114
+ $signup = $wpdb->get_row($wpdb->prepare("SELECT * FROM ".$wpdb->base_prefix."signups WHERE user_login = %s AND active = 0", $user_login));
115
  if (!empty($signup))
116
  return;
117
  }
118
  if (!empty($meta)) {
119
+ $meta_db = $wpdb->get_var($wpdb->prepare("SELECT meta FROM ".$wpdb->base_prefix."signups WHERE user_login = %s", $user_login));
120
  $meta_db = unserialize($meta_db);
121
  // password detected, kill it!
122
  if (!empty($meta_db['cimy_uef_wp_PASSWORD'])) {
123
  unset($meta_db['cimy_uef_wp_PASSWORD']);
124
  if (!empty($meta_db['cimy_uef_wp_PASSWORD2']))
125
  unset($meta_db['cimy_uef_wp_PASSWORD2']);
126
+ $wpdb->update($wpdb->base_prefix."signups", array('meta' => serialize($meta_db)), array('user_login' => $user_login));
127
  }
128
  }
129
 
269
  }
270
 
271
  if ($user_signups) {
272
+ $query_result = $wpdb->get_results($wpdb->prepare("SELECT * FROM $wpdb->users WHERE ID=%d", $user_id));
273
+ $saved_user = array_shift($query_result);
274
  $key = substr( md5( time() . rand() . $saved_user->user_email ), 0, 16 );
275
 
276
+ $wpdb->insert($wpdb->base_prefix."signups", array(
277
  'user_login' => $saved_user->user_login,
278
  'user_email' => $saved_user->user_email,
279
  'registered' => $saved_user->user_registered,
281
  'activation_key' => $key,
282
  'meta' => serialize($meta),
283
  ));
284
+ $wpdb->query($wpdb->prepare("DELETE FROM $wpdb->users WHERE ID=%d", $user_id));
285
+ $wpdb->query($wpdb->prepare("DELETE FROM $wpdb->usermeta WHERE user_id=%d", $user_id));
 
 
 
286
 
287
  cimy_signup_user_notification($saved_user->user_login, $saved_user->user_email, $key, serialize($meta));
288
  }
308
 
309
  // added for profile rules check
310
  function cimy_profile_check_wrapper($errors, $update, $user) {
311
+ $errors = cimy_registration_check($user->user_login, $user->user_email, $errors, $update);
 
 
 
312
  }
313
 
314
+ function cimy_registration_check($user_login, $user_email, $errors, $from_profile = false) {
315
  global $wpdb, $rule_canbeempty, $rule_email, $rule_maxlen, $fields_name_prefix, $wp_fields_name_prefix, $rule_equalto_case_sensitive, $apply_equalto_rule, $cimy_uef_domain, $cimy_uef_file_types, $rule_equalto_regex, $user_level, $cimy_uef_file_images_types, $wp_hidden_fields, $rule_maxlen_is_str;
316
 
317
  if (cimy_is_at_least_wordpress35())
342
 
343
  $extra_fields = get_cimyFields(false, true);
344
  $wp_fields = get_cimyFields(true);
 
 
 
345
  $i = 1;
346
 
347
  // do first for the WP fields then for EXTRA fields
cimy_user_extra_fields.php CHANGED
@@ -3,13 +3,14 @@
3
  Plugin Name: Cimy User Extra Fields
4
  Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
5
  Description: Add some useful fields to registration and user's info
6
- Version: 2.7.1
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  License: GPL2
 
10
 
11
  Cimy User Extra Fields - Allows adding mySQL Data fields to store/add more user info
12
- Copyright (c) 2006-2016 Marco Cimmino
13
 
14
  Code for drop-down support is in part from Raymond Elferink raymond@raycom.com
15
  Code for regular expression under equalTo rule is in part from Shane Hartman shane@shanehartman.com
@@ -162,7 +163,7 @@ add_action('admin_init', 'cimy_uef_admin_init');
162
  add_action('init', 'cimy_uef_init');
163
 
164
  $cimy_uef_name = "Cimy User Extra Fields";
165
- $cimy_uef_version = "2.7.1";
166
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
167
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
168
 
@@ -170,7 +171,7 @@ $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-
170
  // see: http://core.trac.wordpress.org/ticket/8912
171
  $start_cimy_uef_comment = "<!--";
172
  $start_cimy_uef_comment .= "\tStart code from ".$cimy_uef_name." ".$cimy_uef_version;
173
- $start_cimy_uef_comment .= "\tCopyright (c) 2006-2016 Marco Cimmino";
174
  $start_cimy_uef_comment .= "\t".$cimy_uef_url;
175
  $start_cimy_uef_comment .= "\t-->\n";
176
 
@@ -178,7 +179,7 @@ $end_cimy_uef_comment = "\n<!--";
178
  $end_cimy_uef_comment .= "\tEnd of code from ".$cimy_uef_name;
179
  $end_cimy_uef_comment .= "\t-->\n";
180
 
181
- $cimy_uef_domain = 'cimy_uef';
182
  $cimy_uef_i18n_is_setup = false;
183
  cimy_uef_i18n_setup();
184
 
3
  Plugin Name: Cimy User Extra Fields
4
  Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
5
  Description: Add some useful fields to registration and user's info
6
+ Version: 2.7.2
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  License: GPL2
10
+ Text Domain: cimy-user-extra-fields
11
 
12
  Cimy User Extra Fields - Allows adding mySQL Data fields to store/add more user info
13
+ Copyright (c) 2006-2017 Marco Cimmino
14
 
15
  Code for drop-down support is in part from Raymond Elferink raymond@raycom.com
16
  Code for regular expression under equalTo rule is in part from Shane Hartman shane@shanehartman.com
163
  add_action('init', 'cimy_uef_init');
164
 
165
  $cimy_uef_name = "Cimy User Extra Fields";
166
+ $cimy_uef_version = "2.7.2";
167
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
168
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
169
 
171
  // see: http://core.trac.wordpress.org/ticket/8912
172
  $start_cimy_uef_comment = "<!--";
173
  $start_cimy_uef_comment .= "\tStart code from ".$cimy_uef_name." ".$cimy_uef_version;
174
+ $start_cimy_uef_comment .= "\tCopyright (c) 2006-2017 Marco Cimmino";
175
  $start_cimy_uef_comment .= "\t".$cimy_uef_url;
176
  $start_cimy_uef_comment .= "\t-->\n";
177
 
179
  $end_cimy_uef_comment .= "\tEnd of code from ".$cimy_uef_name;
180
  $end_cimy_uef_comment .= "\t-->\n";
181
 
182
+ $cimy_uef_domain = 'cimy-user-extra-fields';
183
  $cimy_uef_i18n_is_setup = false;
184
  cimy_uef_i18n_setup();
185
 
langs/{cimy_uef-ar.mo → cimy-user-extra-fields-ar.mo} RENAMED
Binary file
langs/{cimy_uef-ar.po → cimy-user-extra-fields-ar.po} RENAMED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-02-07 15:54-0800\n"
6
- "PO-Revision-Date: 2016-02-07 15:55-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: Mamoun Elkheir <krikabat@hotmail.com>\n"
9
  "Language: ar\n"
@@ -13,1350 +13,1367 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
18
 
19
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:429
20
- msgid "no fieldset"
21
- msgstr "لا يوجد fieldset"
22
-
23
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:433
24
- msgid "All"
25
- msgstr "الكل"
26
 
27
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1033
28
- msgid "Done"
29
- msgstr ""
30
 
31
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1034
32
- msgid "&laquo; Previous"
33
- msgstr ""
34
 
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1035
36
- msgid "Next &raquo;"
37
- msgstr ""
38
 
39
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1036
40
- msgid "Today"
41
- msgstr ""
42
 
43
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1039
44
- #, fuzzy
45
- msgid "Select Month"
46
- msgstr "اختيار الإجراء"
47
 
48
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
49
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
50
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:379
51
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
52
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1870
53
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1875
54
- msgid "Extra Fields"
55
- msgstr "الحقول الإضافية (Extra Fields)"
56
 
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
58
- msgid ""
59
- "<strong>Note:</strong> this website let you personalize your password; after "
60
- "the registration you will receive an e-mail with another password, do not "
61
- "care about that!"
62
- msgstr ""
63
- "<strong>تنبيه:</strong> هذا الموقع يمكنك من تخصيص كلمة المرور خاصتك؛ بعد "
64
- "التسجيل ستصلك رسالة بريد إلكتروني فيها كلمة مرور أخرى، لا تلق لها بالاً!"
65
 
66
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
67
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
68
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
69
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:277
70
- #, php-format
71
- msgid "Username: %s"
72
- msgstr "اسم المستخدم: %s"
73
 
74
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
75
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
76
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:277
77
- #, php-format
78
- msgid "Password: %s"
79
- msgstr "كلمة المرور: %s"
80
 
81
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
82
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:733
83
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
84
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
85
- msgid "Username"
86
- msgstr "اسم المستخدم"
87
 
88
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:218
89
- msgid "Password"
90
- msgstr "كلمة المرور"
91
 
92
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
93
- msgid "Password confirmation"
94
- msgstr "تأكيد كلمة المرور"
 
95
 
96
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
97
- msgid "First name"
98
- msgstr "الاسم الأول"
99
 
100
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:284
101
- msgid "Last name"
102
- msgstr "الاس الأخير"
103
 
104
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:306
105
- msgid "Nickname"
106
- msgstr "الاسم المختصر"
 
107
 
108
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
109
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1574
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1575
111
- msgid "Website"
112
- msgstr "الموقع"
113
 
114
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:350
115
- msgid "AIM"
116
- msgstr "AIM"
 
117
 
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:372
119
- msgid "Yahoo IM"
120
- msgstr "Yahoo IM"
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:394
123
- msgid "Jabber / Google Talk"
124
- msgstr "Jabber / Google Talk"
 
 
125
 
126
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:416
127
- msgid "Biographical Info"
128
- msgstr "نبذة تعريفية"
 
 
129
 
130
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
131
- #, php-format
132
- msgid "New user registration on your site %s:"
133
- msgstr "تسجيل مستخدم جديد في موقعك %s:"
 
134
 
135
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:59
136
- #, php-format
137
- msgid "E-mail: %s"
138
- msgstr "البريد الإلكتروني: %s."
139
 
140
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
141
- #, php-format
142
- msgid "[%s] New User Registration"
143
- msgstr "[%s] تسجيل مستخدم جديد"
144
 
145
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:86
146
- msgid "To set your password, visit the following address:"
147
- msgstr ""
148
 
149
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:98
150
- #, fuzzy, php-format
151
- msgid "[%s] Your username and password info"
152
- msgstr "[%s] اسم المستخدم وكلمة المرور خاصتك"
153
 
154
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:139
155
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:152
156
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:165
157
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:171
158
- #, php-format
159
- msgid "%s: %s"
160
- msgstr "%s: %s"
161
 
162
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:245
163
- #, php-format
164
- msgid ""
165
- "To activate your user, please click the following link:\n"
166
- "\n"
167
- "%s\n"
168
- "\n"
169
- "After you activate, you will receive *another email* with your login.\n"
170
- "\n"
171
- msgstr ""
172
- "لتفعيل تسجيلك، اضغط على الرابط الآتي: \n"
173
- "\n"
174
- "%s\n"
175
- "\n"
176
- "بعد التفعيل، ستصلك رسالة أخرى فيها بيانات الدخول.\n"
177
- "\n"
178
 
179
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:249
180
- #, php-format
181
- msgid "[%1$s] Activate %2$s"
182
- msgstr ""
 
183
 
184
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:268
185
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:277
186
- msgid "Your account is now active!"
187
- msgstr "حسابك الآن فعال!"
188
 
189
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:269
190
- #, php-format
191
- msgid ""
192
- "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your "
193
- "site using your chosen username of &#8220;%3$s&#8221;. Please check your "
194
- "email inbox at %4$s for your password and login instructions. If you do not "
195
- "receive an email, please check your junk or spam folder. If you still do "
196
- "not receive an email within an hour, you can <a href=\"%5$s\">reset your "
197
- "password</a></p>."
198
- msgstr ""
199
- "موقعك في <a href=\"%1$s\">%2$s</a> الآن مفعل. يمكنك الآن تسجيل الدخول في "
200
- "موقعك باستخدام اسم المستخدم المختار &#8220;%3$s&#8221;. الرجاء مراجعة بريدك "
201
- "الوارد في %4$s لمعرفة كلمة المرور وتعليمات الدخول. إذا لم تستلم رسالة الرجاء "
202
- "مراجعة مجلد البريد المزعج. إذا لم تستلم أيضاً رسالة فيه خلال ساعة، يمكنك <a "
203
- "href=\"%5$s\">استرجاع كلمة المرور</a></p>."
204
 
205
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:271
206
- msgid "An error occurred during the activation"
207
- msgstr "حدث خطأ خلال التفعيل"
208
 
209
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:291
210
- msgid "Invalid activation key."
211
- msgstr "مفتاح التفعيل غير صالح."
212
 
213
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:294
214
- msgid "The site is already active."
215
- msgstr "الموقع مفعل سلفاً."
216
 
217
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:317
218
- msgid "Could not create user"
219
- msgstr "لم يمكن إنشاء المستخدم"
220
 
221
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:329
222
- msgid "That username is already activated."
223
- msgstr "اسم المستخدم هذا مفعل سلفاً."
224
 
225
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:349
226
- msgid ""
227
- "That username is currently reserved but may be available in a couple of days."
228
- msgstr "اسم المستخدم هذا حالياً محجوز لكن ربما يصبح متوفراً خلال يومين."
229
 
230
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:352
231
- msgid "username and email used"
232
- msgstr "اسم المستخدم والبريد الإلكتروني مستخدمان"
 
 
 
 
 
233
 
234
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:362
235
  msgid ""
236
- "That email address has already been used. Please check your inbox for an "
237
- "activation email. It will become available in a couple of days if you do "
238
- "nothing."
239
  msgstr ""
240
- "هذا البريد الإلكتروني مستخدم سلفاً. الرجاء مراجعة بريدك الإلكتروني لرسالة "
241
- "التفعليل. إذا لم تفعل شيئاً ستصبح متوفرة خلال يومين."
242
 
243
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
244
- msgid "WordPress Fields table emptied"
245
- msgstr "جدول حقول WordPress تم تفريغه"
 
 
 
 
 
 
246
 
247
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
248
- msgid "WordPress Fields table deleted"
249
- msgstr "جدول حقول WordPress Fields تم حذفه"
 
 
 
 
250
 
251
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
252
- msgid "Extra Fields table emptied"
253
- msgstr "جدول حقول Extra Fields تم تفريغه"
 
 
 
 
 
 
254
 
255
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
256
- msgid "Extra Fields table deleted"
257
- msgstr "جدول حقول Extra Fields تم حذفه"
 
 
 
 
 
 
258
 
259
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
260
- msgid "Users Data table emptied"
261
- msgstr "جدول بيانات المستخدمين تم تفريغه"
 
 
 
 
262
 
263
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
264
- msgid "Users Data table deleted"
265
- msgstr "جدول بيانات المستخدمين تم حذفه"
 
 
 
 
 
 
266
 
267
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
268
- msgid "Options set to default values"
269
- msgstr "تم وضع الخيارات في القيم الافتراضية"
 
 
 
 
 
 
270
 
271
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
272
- msgid "Options deleted"
273
- msgstr "تم حذف الخيارات"
 
 
 
 
274
 
275
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:264
276
- msgid "Options changed"
277
- msgstr "تم تغيير الخيارات"
 
 
 
 
 
278
 
279
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:290
280
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1020
281
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
282
- msgid "Please upload an image with one of the following extensions"
283
- msgstr "الرجاء تحميل صورة بأحد الامتدادات الآتية"
 
 
 
284
 
285
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
286
- msgid ""
287
- "This operation will create/update all missing tables/options, do you want to "
288
- "proceed?"
289
- msgstr ""
290
- "هذه العملية ستعمل على إنشاء/تحديث كل الجداول/الخيارات المفقودة، هل تريد "
291
- "الاستمرار؟"
292
 
293
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:376
294
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
295
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
296
- msgid "Options"
297
- msgstr "الخيارات"
 
298
 
299
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:379
300
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
301
- msgid "Add a new Field"
302
- msgstr "إضافة حقل جديد"
 
 
303
 
304
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:385
305
- msgid "Support the Cimy Project"
306
- msgstr "ادعم Cimy Project"
 
307
 
308
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:393
309
- msgid ""
310
- "This plug-in is the results of hours of development to add new features, "
311
- "support new WordPress versions and fix bugs, please donate money if saved "
312
- "you from spending all these hours!"
313
- msgstr ""
314
- "هذه الإضافة نتاج ساعات من التطوير لإضافة مزيد من الخصائص، دعم إصدارات "
315
- "WordPress الجديدة، ومعالجة الشوائب. الرجاء التبرع بالمال إذا ساعدتك في "
316
- "توفير كل هذه الساعات!"
317
 
318
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:403
319
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
320
- msgid "SUCCESSFUL"
321
- msgstr "تم بنجاح"
 
 
322
 
323
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:417
324
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
325
- msgid "Save Changes"
326
- msgstr "حفظ التغييرات"
327
 
328
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
329
- msgid "General"
330
- msgstr "عام"
 
331
 
332
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
333
- msgid "installed is"
334
- msgstr "المنصب هو"
 
335
 
336
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:430
337
- msgid "OPTIONS DELETED!"
338
- msgstr "تم حذف الخيارات!"
 
339
 
340
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:433
341
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
342
- msgid "Fix the problem"
343
- msgstr "معالجة المشكلة"
344
 
345
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
346
- msgid ""
347
- "VERSIONS MISMATCH! This because you haven't de-activated and re-activated "
348
- "the plug-in after the update! This could give problems..."
349
- msgstr ""
350
- "الإصدار غير متوافق! وهذا لأنك لم تلغ ثم تجدد تفعيل الإضافة بعد التحديث! هذا "
351
- "قد يسبب مشاكل ..."
352
 
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:444
354
- msgid "Picture/Avatar upload"
355
- msgstr "تحميل صورة/أفاتار "
 
356
 
357
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
358
- msgid "is created and writable"
359
- msgstr "تم إنشاؤه وهو قابل للكتابة"
 
360
 
361
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:450
362
- msgid "is NOT created or webserver does NOT have permission to write on it"
363
- msgstr "لم يتم إنشاؤه أو إن الخادم لا يملك صلاحيات الكتابة عليه"
 
364
 
365
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
366
- msgid "Show all fields in the welcome email"
367
- msgstr "إظهار كل الحقول في رسالة الترحيب"
 
368
 
369
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
370
- msgid ""
371
- "the email sent to the admin and to the user upon registration will have all "
372
- "fields"
373
- msgstr "تم إرسال رسالة إلى المدير وستظهر كل الحقول للمستخدم عند التسجيل"
374
 
375
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:469
376
- msgid "Enable email confirmation"
377
- msgstr "تمكين تأكيد البريد الإلكتروني"
 
378
 
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:473
380
- msgid "user that registers should confirm its email address via a link click"
381
- msgstr ""
382
- "المستخدم الذي يسجل يجب عليه تأكيد عنوان بريده الإلكتروني عن طريق ضغط رابط"
383
 
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:475
385
- msgid ""
386
- "<strong>note:</strong> this option turned on will automatically disable "
387
- "(only during the registration) all upload fields: file, picture, avatar"
388
- msgstr ""
389
- "<strong>تنبيه:</strong> عند تفعيل هذا الخيار سيعطل (خلال فترة التسجيل فقط) "
390
- "كل حقول التحميل: للملفات والصور والأفاتار"
391
 
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
393
- msgid "Enable form confirmation"
394
- msgstr "تفعيل تأكيد شاشة الإدخال"
 
395
 
396
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
397
- msgid "a summary of the registration form will be presented to the user"
398
- msgstr "سيتم عرض ملخص لشاشة إدخال التسجيل للمستخدم"
 
399
 
400
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
401
- msgid "Customize welcome email sent to the new user"
402
- msgstr "تخصيص رسالة الترحيب المرسلة للمستخدمين الجدد"
 
403
 
404
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:496
405
- msgid ""
406
- "if you change or remove the placeholders then the email won't have the "
407
- "correct information"
408
- msgstr "إذا غيرت أو حذفت حوامل القيم فإن البريد لن يمتلك المعلومات الصحيحة"
409
 
410
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
411
- msgid "Redirect to the source"
412
- msgstr "إعادة التوجيه للمصدر"
 
413
 
414
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
415
- msgid ""
416
- "after the registration or confirmation the user will be redirected to the "
417
- "address where was exactly before clicking on the registration link"
418
- msgstr ""
419
- "بعد التسجيل أو التأكيد فإن المستخدم سيتم تحويله إلى العنوان الذي كان عنده "
420
- "مباشرة قبل الضغط على رابط التسجيل"
421
 
422
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
423
- msgid "No captcha"
424
- msgstr "بدون كابتشا"
 
 
 
 
425
 
426
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
427
  msgid ""
428
- "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank"
429
- "\">reCAPTCHA</a>"
430
  msgstr ""
431
- "تفعيل <a href=\"http://www.google.com/recaptcha\" target=\"_blank"
432
- "\">reCAPTCHA</a>"
433
 
434
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
435
- msgid "Public KEY"
436
- msgstr "المفتاح العام"
437
 
438
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
439
- msgid "Private KEY"
440
- msgstr "المفتاح الخاص"
 
 
 
 
 
441
 
442
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
443
- #, fuzzy
444
- msgid ""
445
- "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank"
446
- "\">reCAPTCHA v2</a>"
447
- msgstr ""
448
- "تفعيل <a href=\"http://www.google.com/recaptcha\" target=\"_blank"
449
- "\">reCAPTCHA</a>"
450
 
451
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
452
- #, fuzzy
453
- msgid "Site KEY"
454
- msgstr "المفتاح الخاص"
455
 
456
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
457
- msgid "Secret KEY"
458
- msgstr ""
459
 
460
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
461
- msgid ""
462
- "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage "
463
- "Captcha</a>"
464
- msgstr ""
465
- "تفعيل <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage "
466
- "Captcha</a>"
 
 
 
 
 
 
 
 
 
 
 
467
 
468
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
469
- msgid "This captcha is probably weaker, but is easier for users"
470
- msgstr "هذه الكابتشا ربما كانت أضعف، لكنها أسهل على المستخدمين"
 
471
 
472
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
473
- #, php-format
474
- msgid ""
475
- "<strong>WARNING: to activate this captcha download <a href=\"http://www."
476
- "phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it "
477
- "under %s</strong>"
478
- msgstr ""
479
- "<strong>تحذير: لتفعيل هذه الكابتشا قم بتحميل <a href=\"http://www.phpcaptcha."
480
- "org/latest.zip\" target=\"_blank\">هذه الحزمة</a> ثم فك ضغطها تحت %s</strong>"
481
 
482
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
483
- msgid "Change login/registration page logo"
484
- msgstr "تغيير شعار صحفة الدخول/ التسجيل"
 
485
 
486
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
487
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:449
488
- msgid "Delete the picture"
489
- msgstr "حذف الصورة"
490
 
491
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:576
492
- msgid "Maximum recommended logo width is 328px, but any height should work."
493
- msgstr "أكبر عرض محبذ للشعار هو 328px، لكن أي ارتفاع ممكن."
 
 
 
494
 
495
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
496
- msgid "Database"
497
- msgstr "قاعدة البيانات"
 
498
 
499
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:594
500
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
501
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:634
502
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:654
503
- msgid "select action"
504
- msgstr "اختيار الإجراء"
505
 
506
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
507
- msgid "Default values"
508
- msgstr "القيم الافتراضية"
509
 
510
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:596
511
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
512
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
513
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
514
- msgid "Delete"
515
- msgstr "حذف"
516
 
517
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:600
518
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:620
519
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
520
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
521
- msgid "NOT PRESENT"
522
- msgstr "غير موجود"
523
 
524
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:607
525
- msgid "WordPress Fields table"
526
- msgstr "جدول حقول WordPress"
 
527
 
528
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
529
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
530
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:655
531
- msgid "Empty"
532
- msgstr "تفريغ"
533
 
534
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
535
- msgid "Extra Fields table"
536
- msgstr "جدول حقول Extra Fields"
 
537
 
538
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
539
- msgid "Users Data table"
540
- msgstr "جدول بيانات المستخدمين"
541
 
542
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
543
- msgid "all data inserted by users in all and only extra fields"
544
- msgstr "كل البيانات المدخلة بواسطة المستخدمين في كل الحقول الإضافية وفقط فيها"
545
 
546
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
547
- msgid "Force tables creation"
548
- msgstr "إجبار إنشاء الجداول"
 
549
 
550
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:672
551
- msgid ""
552
- "equivalent to de-activate and activate the plug-in; no other operation will "
553
- "be performed"
554
- msgstr "مكافئ لإلغاء الإضافة وتفعيلها؛ لن يتم اتخاذ أي إجراء آخر"
555
 
556
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
557
- msgid "User Profile"
558
- msgstr "الملف الشخصي للمستخدم"
559
 
560
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
561
- msgid "Extra Fields section title"
562
- msgstr "عنوان قسم الحقول الإضافية "
563
 
564
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
565
- msgid "Fieldset's titles, separates with comma"
566
- msgstr "عناوين Fieldset، مفصولة بفاصلة لاتينية"
567
 
568
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
569
- msgid "example: title1,title2,title3"
570
- msgstr "مثلاً: عنوان1,عنوان2,عنوان3"
571
 
572
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:686
573
  msgid ""
574
- "<strong>note:</strong> if you change order or remove fieldsets you may need "
575
- "to set all extra fields' fieldset assigment again"
 
576
  msgstr ""
577
- "<strong>تنبيه:</strong> إذا غيرت ترتيب fieldsets أو حذفتها ربما تحتاج لتعيين "
578
- "كل الـ fieldsets للحقول الإضافية مجدداً"
579
 
580
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:691
581
- msgid "Authors &amp; Users Extended"
582
- msgstr "المستخدمون وقائمة المستخدمين الممتدة (Users Extended)"
 
 
 
 
583
 
584
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
585
- msgid "Hide username field"
586
- msgstr "إخفاء حقل اسم المستخدم"
 
 
 
587
 
588
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:703
589
- msgid "Hide name field"
590
- msgstr "إخفاء حقل الاسم"
 
591
 
592
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
593
- msgid "Hide email field"
594
- msgstr "إخفاء حقل البريد الإلكتروني"
 
595
 
596
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
597
- msgid "Hide role field"
598
- msgstr "إخفاء حقل الوظيفة"
 
599
 
600
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:724
601
- msgid "Hide website field"
602
- msgstr "إخفاء حقل الموقع الإلكتروني"
603
 
604
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
605
- msgid "Hide n. posts field"
606
- msgstr "إخفاء حقل عدد المقالات"
607
 
608
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
609
- msgid "WordPress hidden fields"
610
- msgstr "حقول WordPress المخفاة"
 
611
 
612
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:743
613
- #, fuzzy
614
- msgid "Show username"
615
- msgstr "إظهار الاسم الثاني"
 
 
 
616
 
617
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
618
- msgid "when unchecked the email address will be used as username"
 
 
 
 
 
 
 
619
  msgstr ""
 
 
 
 
 
 
620
 
621
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
622
- msgid "Show password"
623
- msgstr "إظهار كلمة المرور"
 
624
 
625
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:758
626
- msgid "Show confirmation password"
627
- msgstr "إظهار تأكيد كلمة المرور"
 
628
 
629
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
630
- msgid "Show password strength meter"
631
- msgstr "إظهار مؤشر قوة كلمة المرور"
 
 
 
 
 
 
 
 
 
 
 
 
632
 
633
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:772
634
- msgid "Show first name"
635
- msgstr "إظهار الاسم الأول"
636
 
637
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
638
- msgid "Show last name"
639
- msgstr "إظهار الاسم الثاني"
640
 
641
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
642
- msgid "Show nickname"
643
- msgstr "إظهار الاسم المختصر"
644
 
645
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
646
- msgid "Show website"
647
- msgstr "إظهار الموقع الإلكتروني"
648
 
649
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:800
650
- msgid "Show AIM"
651
- msgstr "إظهار AIM"
652
 
653
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:807
654
- msgid "Show Yahoo IM"
655
- msgstr "إظهار Yahoo IM"
 
656
 
657
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
658
- msgid "Show Jabber / Google Talk"
659
- msgstr "إظهار Jabber / Google Talk"
660
 
661
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
662
- msgid "Show Biographical Info"
663
- msgstr "إظهار النبذة التعريفية"
 
 
 
 
 
664
 
665
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:481
666
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:485
667
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:499
668
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
669
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
670
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:544
671
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:555
672
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:565
673
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:570
674
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
675
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:586
676
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:597
677
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:602
678
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:656
679
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:665
680
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
681
- msgid "ERROR"
682
- msgstr "خطأ"
683
 
684
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:481
685
- msgid "does not match."
686
- msgstr "غير متفقة."
687
 
688
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:485
689
- msgid "hasn&#8217;t a correct email syntax."
690
- msgstr "صيغة البريد اللإلكتروني غير صحيحة."
691
 
692
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:499
693
- msgid "couldn&#8217;t be empty."
694
- msgstr "لا يمكن أن تكون فارغة."
695
 
696
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
697
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
698
- msgid "isn&#8217;t correct"
699
- msgstr "غير صحيحة"
700
 
701
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
702
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1040
703
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1043
704
- msgid "YES"
705
- msgstr "نعم"
706
 
707
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
708
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1040
709
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1043
710
- msgid "NO"
711
- msgstr "لا"
712
 
713
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:529
714
- msgid "should be"
715
- msgstr "يجب أن"
 
716
 
717
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:544
718
- msgid "should be an image."
719
- msgstr "يجب أن تكون صورة."
 
720
 
721
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:555
722
- msgid "does not accept this file type."
723
- msgstr ""
724
 
725
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:565
726
- msgid "couldn&#8217;t have size less than"
727
- msgstr "لا يمكن أن يكون حجمها أقل من"
 
728
 
729
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:570
730
- msgid "couldn&#8217;t have length less than"
731
- msgstr "لا يمكن أن يكون طولها أقل من"
732
 
733
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
734
- msgid "couldn&#8217;t have size different than"
735
- msgstr "لا يمكن أن يختلف حجمها عن"
736
 
737
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:586
738
- msgid "couldn&#8217;t have length different than"
739
- msgstr "لا يمكن أن يختلف طولها عن"
740
 
741
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:597
742
- msgid "couldn&#8217;t have size more than"
743
- msgstr "لا يمكن أن يزيد حجمها عن"
744
 
745
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:602
746
- msgid "couldn&#8217;t have length more than"
747
- msgstr "لا يمكن أن يزيد طولها عن"
748
 
749
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:656
750
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:665
751
- msgid "Typed code is not correct."
752
- msgstr "الشفرة المكتوبة غير صحيحة."
753
 
754
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:760
755
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1564
756
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1565
757
- msgid "E-mail"
758
- msgstr "البريد الإلكتروني"
759
 
760
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1014
761
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
762
- msgid "Please upload a file with one of the following extensions"
763
- msgstr "الرجاء تحميل ملف بأحد الامتدادات الآتية"
764
 
765
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1203
766
- msgid "Strength indicator"
767
- msgstr "مؤشر القوة"
 
 
 
 
 
 
768
 
769
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1204
770
  msgid ""
771
- "Hint: The password should be at least seven characters long. To make it "
772
- "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
773
- "$ % ^ &amp; )."
774
  msgstr ""
775
- "تلميح: كلمة المرور يجب أن يكون طولها على الأقل 7 أحرف. ولجعلها أقوى، استخدم "
776
- "حروفاً متنوعة وأرقاماً ورموزاً مثل ! \" ? $ % ^ &amp; )."
 
 
 
 
 
 
 
 
777
 
778
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1232
779
- msgid "Insert the code:"
780
- msgstr "أدخل الشفرة:"
 
 
 
 
 
 
781
 
782
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1233
783
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1234
784
- msgid "Change image"
785
- msgstr "تغيير الصورة"
786
 
787
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1320
788
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1322
789
- msgid "Confirm your registration"
790
- msgstr "تأكيد تسجيلك"
791
 
792
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1328
793
- msgid "A password will be e-mailed to you."
794
- msgstr "سيتم إرسال كلمة المرور على بريدك الإلكتروني."
795
 
796
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1336
797
- msgid "&larr; Back"
798
- msgstr "&larr; إلى الخلف"
799
 
800
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:138
801
- msgid "(required)"
802
- msgstr "(مطلوب)"
 
803
 
804
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:445
805
- msgid "Delete the file"
806
- msgstr "حذف الملف"
 
 
 
 
807
 
808
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
809
- msgid "Update the file"
810
- msgstr "تحديث الملف"
811
 
812
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
813
- msgid "Update the picture"
814
- msgstr "تفعيل الصورة"
815
 
816
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:470
817
- msgid "Picture URL:"
818
- msgstr "رابط الصورة:"
819
 
820
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:726
821
- #, php-format
822
- msgid "%s previous value: %s new value: %s"
823
- msgstr "%s القيمة السابقة: %s القيمة الجديدة: %s"
824
 
825
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:741
826
- #, php-format
827
- msgid "%s (%s) has changed one or more fields"
828
- msgstr "%s (%s) قد غير واحداً أو أكثر من الحقول"
 
829
 
830
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:22
831
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
832
- msgid "Fields"
833
- msgstr "الحقول"
834
 
835
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
836
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
837
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
838
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
839
- msgid "Users Extended"
840
- msgstr "Users Extneded"
841
 
842
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
843
- msgid "Add field"
844
- msgstr "إضافة حقل"
845
 
846
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
847
- msgid "Update field"
848
- msgstr "تحديث الحقل"
 
849
 
850
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
851
- msgid "Delete field"
852
- msgstr "حذف الحقل"
 
 
 
 
853
 
854
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
855
- msgid "Delete selected fields"
856
- msgstr "حذف الحقول المختارة"
857
 
858
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
859
- msgid "Change order"
860
- msgstr "تغيير الترتيب"
861
 
862
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
863
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
864
- msgid "Min length"
865
- msgstr "أقل طول"
866
 
867
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
868
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
869
- msgid "Exact length"
870
- msgstr "الطول بالتحديد"
 
871
 
872
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
873
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
874
- msgid "Max length"
875
- msgstr "أقصى طول"
876
 
877
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
878
- msgid "Exact or Max length"
879
- msgstr "الطول الدقيق أو الأقصى"
 
 
 
 
880
 
881
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
882
- msgid "changed to"
883
- msgstr "تم تغييرها إلى"
884
 
885
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
886
- msgid "You cannot give an order that misses some numbers"
887
- msgstr "لا يمكن إعطاء ترتيب يفقد بعد الأعداد"
 
 
 
 
888
 
889
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
890
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
891
- msgid "Nothing selected"
892
- msgstr "لم يتم اختيار شيء"
893
 
894
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
895
- msgid "Field(s)"
896
- msgstr "الحقل أو الحقول"
897
 
898
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
899
- msgid "deleted correctly"
900
- msgstr "تم حذفها بشكل صحيح"
 
 
 
 
 
901
 
902
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
903
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
904
- msgid "Min size"
905
- msgstr "أقل حجم"
906
 
907
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
908
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
909
- msgid "Exact size"
910
- msgstr "الحجم بالتحديد"
911
 
912
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
913
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
914
- msgid "Max size"
915
- msgstr "أقصى حجم"
 
 
 
916
 
917
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:249
918
- msgid "Exact or Max size"
919
- msgstr "الحجم بالتحديد أو الأقصى"
920
 
921
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
922
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
923
- #, fuzzy
924
- msgid "Min date"
925
- msgstr "أقل حجم"
 
 
 
 
926
 
927
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
928
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
929
- #, fuzzy
930
- msgid "Exact date"
931
- msgstr "الحجم بالتحديد"
932
 
933
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
934
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
935
- #, fuzzy
936
- msgid "Max date"
937
- msgstr "أقصى حجم"
938
 
939
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
940
- msgid "Name not specified"
941
- msgstr "لم يتم تحديد الاسم"
942
 
943
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
944
- msgid "Name cannot contains spaces"
945
- msgstr "لا يمكن أن يحتوي الاسم على فراغات"
946
 
947
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
948
- msgid "Label not specified"
949
- msgstr "لم يتم تحديد العنوان"
 
 
 
950
 
951
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
952
- msgid "not selected (with this type is necessary)"
953
- msgstr "لم يتم تحديده (ضروري لهذا النوع)"
954
 
955
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
956
- msgid "If you select"
957
- msgstr "إذا اخترت"
 
 
 
958
 
959
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
960
- msgid "you cannot select Min or Max"
961
- msgstr "لا يمكنك اختيار أقل أو أقصى"
 
 
 
962
 
963
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
964
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
965
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
966
- msgid "should be in the range of"
967
- msgstr "يجب أن يكون في المدى"
968
 
969
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
970
- msgid "Equal TO not specified"
971
- msgstr "لم يتم تحديد القيمة المساواة"
 
 
972
 
973
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
974
- msgid "With checkbox type Equal TO can only be"
975
- msgstr "لنوع مربعات التأشير المساواة يمكن فقط أن تكون"
976
 
977
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
978
- msgid "With radio type Equal TO can only be"
979
- msgstr "لنوع اختيار الدوائر المساواة يمكن فقط أن تكون"
980
 
981
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
982
- msgid "With checkbox type Value can only be"
983
- msgstr "لنوع مربعات التأشير القيمة يمكن فقط أن تكون"
984
 
985
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
986
- msgid "With radio type Value can only be"
987
- msgstr "لنوع اختيار الدوائر القيمة يمكن فقط أن تكون"
988
 
989
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
990
- msgid "Field inserted correctly"
991
- msgstr "تم إدخال الحقل بشكل صحيح"
 
 
992
 
993
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
994
- msgid "Field #"
995
- msgstr "رقم الحقل"
996
 
997
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
998
- msgid "updated correctly"
999
- msgstr "تم تحديثه بشكل صحيح"
1000
 
1001
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
1002
- msgid "Name inserted is just in the database, change to another one"
1003
- msgstr "الاسم المدخل موجود في قاعدة البيانات، اختر اسماً غيره"
1004
 
1005
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
1006
- msgid ""
1007
- "To add a new field you have to choose a name, type and label; optional are "
1008
- "value and description. Rules are applied during user registration."
1009
- msgstr ""
1010
- "لإضافة حقل جديد يجب اختيار اسم ونوع وعنوان له؛ أما النوع والوصف فاختياريان. "
1011
- "يتم تطبيق القواعد عند تسجيل المستخدمين."
1012
 
1013
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
1014
  msgid ""
1015
- "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> "
1016
- "and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or "
1017
- "'not selected'"
1018
  msgstr ""
1019
- "بخصوص <strong>دوائر الاختيار</strong> و<strong>مربعات التأشير</strong>: "
1020
- "<em>القيمة</em> і <em>والمساواة</em> يمكن فقط أن تكون 'نعم' أو 'لا' بما يعني "
1021
- "'مختار' أو 'غير مختار'"
1022
 
1023
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
1024
- msgid ""
1025
- "With <strong>drop-down</strong>: you have to add all options into label for "
1026
- "example: label/item1,item2,item3"
1027
- msgstr ""
1028
- "بخصوص <strong>القائمة المنسدلة</strong>: يجب أن تكتب كل الخيارات في العنوان، "
1029
- "مثلاً: العنوان/الخيار الأول,الخيار الثاني,الخيار الثالث"
1030
 
1031
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
1032
- msgid ""
1033
- "With <strong>picture</strong>: you can preload a default image putting url "
1034
- "in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means "
1035
- "max pixel size (width or height) for thumbnail"
1036
- msgstr ""
1037
- "بخصوص <strong>الصورة</strong>: يجب تزويد صورة افتراضية بوضع رابط في "
1038
- "<em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> تعني "
1039
- "أقصى حجم بيكسل (طول أو عرض) للصور المصغرة"
1040
 
1041
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
1042
- msgid ""
1043
- "With <strong>picture-url</strong>: you can preload a default image putting "
1044
- "url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height "
1045
- "will be proportional)"
1046
- msgstr ""
1047
- "بخصوص <strong>رابط الصورة</strong>: يمكنك تزويد صورة افتراضية بوضع الرابط في "
1048
- "<em>القيمة</em>؛ <em>المساواة</em> تعني أقصى عرض للحجم بالبيكسل (الطول "
1049
- "متناسب)"
1050
 
1051
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
1052
- msgid ""
1053
- "With <strong>registration-date</strong>: <em>equal TO</em> means date and "
1054
- "time format"
1055
- msgstr ""
1056
- "بخصوص <strong>تاريخ التسجيل</strong>: <em>المساواة</em> تعني صيغة التاريخ "
1057
- "والوقت"
1058
 
1059
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
1060
- msgid ""
1061
- "With <strong>avatar</strong>: you can preload a default image putting url in "
1062
- "<em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is "
1063
- "automatically set to 512 pixels"
1064
- msgstr ""
1065
- "بخصوص <strong>الأفاتار</strong>: يمكن تزويد صورة افتراضية بوضع الرابط في "
1066
- "<em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> يتم "
1067
- "ضيطها تلقائياً على 512 بيكسل"
1068
 
1069
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
1070
- msgid ""
1071
- "With <strong>file</strong>: you can preload a default file putting url in "
1072
- "<em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can "
1073
- "be specified allowed extensions separated by comma, example: zip,pdf,doc"
1074
- msgstr ""
1075
- "بخصوص <strong>ملف</strong>: يمكن تزويد ملف افتراضي بوضع الرابط <em>القيمة</"
1076
- "em>؛ 'أقل وبالتحديد وأكبر حجم' بوحدة KB؛ في <em>المساواة</em> يمكن تحديد "
1077
- "الامتدادات المسموحة مفصولة بفاصلة لاتينية، مثلاً:: zip, pdf, doc"
1078
 
1079
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
1080
- msgid ""
1081
- "With <strong>date</strong>: you can preload a default date in <em>Value</"
1082
- "em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max "
1083
- "date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> "
1084
- "can be a specific date"
1085
- msgstr ""
1086
 
1087
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
1088
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
1089
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
1090
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
1091
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
1092
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
1093
- msgid "Name"
1094
- msgstr "الاسم"
1095
 
1096
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
1097
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
1098
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
1099
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
1100
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1870
1101
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1875
1102
- msgid "Value"
1103
- msgstr "القيمة"
1104
 
1105
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
1106
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
1107
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
1108
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
1109
- msgid "Type"
1110
- msgstr "النوع"
1111
 
1112
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
1113
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
1114
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
1115
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
1116
- msgid "Label"
1117
- msgstr "العنوان"
1118
 
1119
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
1120
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
1121
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
1122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
1123
- msgid "Description"
1124
- msgstr "الوصف"
1125
 
1126
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
1127
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
1128
- msgid "Rules"
1129
- msgstr "القواعد"
1130
 
1131
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
1132
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
1133
- msgid "Actions"
1134
- msgstr "الإجراءات"
1135
 
1136
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
1137
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
1138
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1287
1139
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1388
1140
- msgid "Fieldset"
1141
- msgstr "Fieldset"
1142
 
1143
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
1144
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
1145
- msgid "Can be empty"
1146
- msgstr "يمكن أن يكون فارغاً"
1147
 
1148
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
1149
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
1150
- msgid "Check for E-mail syntax"
1151
- msgstr "التأكد من صيغة البريد الإلكتروني"
1152
 
1153
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
1154
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
1155
- msgid "Can be modified"
1156
- msgstr "يمكن تعديلها"
1157
 
1158
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
1159
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
1160
- msgid "Can be modified only if empty"
1161
- msgstr "يمكن تعديلها فقط في حالة كونها فارغة"
1162
 
1163
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
1164
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
1165
- msgid "Can be modified only by admin"
1166
- msgstr "يمكن تعديلها فقط بواسطة المدير"
1167
 
1168
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
1169
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
1170
- msgid "Can be modified only by admin or if empty"
1171
- msgstr "يمكن تعديلها فقط بواسطة المدير في حالة كونها فارغة"
1172
 
1173
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
1174
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
1175
- msgid "Cannot be modified"
1176
- msgstr "لا يمكن تعديلها"
1177
 
1178
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
1179
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
1180
- msgid "Should be equal TO"
1181
- msgstr "يجب أن تساوي"
1182
 
1183
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
1184
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
1185
- msgid "Case sensitive"
1186
- msgstr "حساسة لحجم الحروف"
1187
 
1188
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
1189
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
1190
- msgid "Regular Expression"
1191
- msgstr "تعبير اعتيادي"
1192
 
1193
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
1194
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
1195
- msgid "Show the field in the registration"
1196
- msgstr "إظهار الحقل عند التسجيل"
1197
 
1198
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
1199
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
1200
- msgid "Show the field in User's profile"
1201
- msgstr "إظهار الحقل في الملف الشخصي للمستخدم"
1202
 
1203
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
1204
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
1205
- msgid "Show the field in Users Extended section"
1206
- msgstr "إظهار الحقل في قائمة المستخدمين الممتدة (Users Extneded)"
1207
 
1208
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
1209
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
1210
- msgid "Show the field in the search engine"
1211
- msgstr "إظهار الحقل في محرك البحث"
1212
 
1213
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
1214
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
1215
- msgid "Show the field in the blog"
1216
- msgstr "إظهار الحقل في الموقع"
1217
 
1218
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
1219
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
1220
- msgid "Show the field if the role is at least:"
1221
- msgstr "إظهار الحقل فقط إذا كانت الوظيفة على الأقل:"
1222
 
1223
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
1224
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
1225
- msgid "Anonymous"
1226
- msgstr "مجهول"
1227
 
1228
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
1229
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
1230
- msgid "User has 'view_cimy_extra_fields' capability"
1231
- msgstr "المستخدم يمتلك صلاحية 'view_cimy_extra_fields'"
1232
 
1233
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
1234
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
1235
- msgid "Send an email to the admin if the user changes its value"
1236
- msgstr "إرسال بريد إلكتروني للمدير إذا غير المستخدم قيمتها"
 
1237
 
1238
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
1239
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
1240
- msgid "Advanced options"
1241
- msgstr "خيارات متقدمة"
 
1242
 
1243
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
1244
- msgid "Clear"
1245
- msgstr "تفريغ"
1246
 
1247
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
1248
- msgid "Invert selection"
1249
- msgstr "عكس التحديد"
1250
 
1251
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
1252
- msgid ""
1253
- "Are you sure you want to delete field(s) and all data inserted into by users?"
1254
  msgstr ""
1255
- "هل أنت متأكد أنك تريد حذف الحقل/الحقول وكل البيانات فيها المدخلة بواسطة "
1256
- "المستخدمين؟"
1257
 
1258
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
1259
- msgid "WordPress Fields"
1260
- msgstr "حقول WordPress"
1261
 
1262
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
1263
- msgid "None!"
1264
- msgstr "لا يوجد!"
1265
 
1266
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
1267
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
1268
- msgid "Order"
1269
- msgstr "الترتيب"
1270
 
1271
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
1272
- msgid "Reset"
1273
- msgstr "استعادة"
1274
 
1275
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
1276
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1897
1277
- msgid "select"
1278
- msgstr "اختيار"
1279
 
1280
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
1281
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1392
1282
- msgid "Users per page"
1283
- msgstr "عدد المستخدمين في الصحفة"
1284
 
1285
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1293
1286
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1394
1287
- msgid "Apply"
1288
- msgstr "تنفيذ"
1289
 
1290
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1484
1291
- #, php-format
1292
- msgid "Search results for &#8220;%s&#8221;"
1293
- msgstr "البحث عن نتائج تخص &#8220;%s&#8221;"
1294
 
1295
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1522
1296
- #, php-format
1297
- msgid "%1$s <span class=\"count\">(%2$s)</span>"
1298
- msgstr "%1$s <span class=\"count\">(%2$s)</span>"
 
 
 
 
1299
 
1300
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
1301
- msgid "Search Users"
1302
- msgstr "البحث في المستخدمين"
1303
 
1304
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1569
1305
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1570
1306
- msgid "Role"
1307
- msgstr "الوظيفة"
1308
 
1309
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1579
1310
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1580
1311
- msgid "Posts"
1312
- msgstr "المقالات"
1313
 
1314
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1703
1315
- msgid "View posts by this author"
1316
- msgstr "مشاهدة المقالات بواسطة هذا الكاتب"
1317
 
1318
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
1319
- msgid "Super Admin"
1320
- msgstr "المدير الشامل"
1321
 
1322
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1739
1323
- #, php-format
1324
- msgid "e-mail: %s"
1325
- msgstr "البريد الإلكتروني: %s"
1326
 
1327
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
1328
- msgid "Change"
1329
- msgstr "تغيير"
1330
 
1331
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1866
1332
- msgid "Update selected users"
1333
- msgstr "تحديث المستخدمين المختارين"
1334
 
1335
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1887
1336
- msgid "Update"
1337
- msgstr "تحديث"
1338
 
1339
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1902
1340
- msgid "OK"
1341
- msgstr "إمضاء"
1342
 
1343
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1903
1344
- msgid "Cancel"
1345
- msgstr "إلغاء"
1346
 
1347
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
1348
- #, php-format
1349
- msgid "File '%s' doesn't exist?"
1350
- msgstr "الملف '%s' غير موجود؟"
1351
 
1352
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
1353
- msgid "The GD image library is not installed."
1354
- msgstr "مكتبة الصور GD غير منصبة."
1355
 
1356
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
1357
- #, php-format
1358
- msgid "File '%s' is not an image."
1359
- msgstr "الملف '%s' ليس بصورة."
1360
 
1361
  #~ msgid ""
1362
  #~ "You are about to permanently delete the selected items.\n"
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-05-09 14:17-0700\n"
6
+ "PO-Revision-Date: 2017-05-09 14:17-0700\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: Mamoun Elkheir <krikabat@hotmail.com>\n"
9
  "Language: ar\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Poedit-Basepath: .\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
18
 
19
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
20
+ msgid "Add field"
21
+ msgstr "إضافة حقل"
 
 
 
 
22
 
23
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
24
+ msgid "Update field"
25
+ msgstr "تحديث الحقل"
26
 
27
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
28
+ msgid "Delete field"
29
+ msgstr "حذف الحقل"
30
 
31
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
32
+ msgid "Delete selected fields"
33
+ msgstr "حذف الحقول المختارة"
34
 
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
36
+ msgid "Change order"
37
+ msgstr "تغيير الترتيب"
38
 
39
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
40
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
41
+ msgid "Min length"
42
+ msgstr "أقل طول"
43
 
44
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
45
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
46
+ msgid "Exact length"
47
+ msgstr "الطول بالتحديد"
 
 
 
 
48
 
49
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
50
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
51
+ msgid "Max length"
52
+ msgstr "أقصى طول"
 
 
 
 
53
 
54
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
55
+ msgid "Exact or Max length"
56
+ msgstr "الطول الدقيق أو الأقصى"
 
 
 
 
57
 
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
59
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:22
60
+ msgid "Fields"
61
+ msgstr "الحقول"
 
 
62
 
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
64
+ msgid "changed to"
65
+ msgstr "تم تغييرها إلى"
 
 
 
66
 
67
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
68
+ msgid "You cannot give an order that misses some numbers"
69
+ msgstr "لا يمكن إعطاء ترتيب يفقد بعد الأعداد"
70
 
71
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
72
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
73
+ msgid "Nothing selected"
74
+ msgstr "لم يتم اختيار شيء"
75
 
76
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
77
+ msgid "Field(s)"
78
+ msgstr "الحقل أو الحقول"
79
 
80
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
81
+ msgid "deleted correctly"
82
+ msgstr "تم حذفها بشكل صحيح"
83
 
84
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
85
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
86
+ msgid "Min size"
87
+ msgstr "أقل حجم"
88
 
89
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
90
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
91
+ msgid "Exact size"
92
+ msgstr "الحجم بالتحديد"
 
93
 
94
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
95
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
96
+ msgid "Max size"
97
+ msgstr "أقصى حجم"
98
 
99
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:249
100
+ msgid "Exact or Max size"
101
+ msgstr "الحجم بالتحديد أو الأقصى"
102
 
103
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
104
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
105
+ #, fuzzy
106
+ msgid "Min date"
107
+ msgstr "أقل حجم"
108
 
109
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
111
+ #, fuzzy
112
+ msgid "Exact date"
113
+ msgstr "الحجم بالتحديد"
114
 
115
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
116
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
117
+ #, fuzzy
118
+ msgid "Max date"
119
+ msgstr "أقصى حجم"
120
 
121
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
122
+ msgid "Name not specified"
123
+ msgstr "لم يتم تحديد الاسم"
 
124
 
125
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
126
+ msgid "Name cannot contains spaces"
127
+ msgstr "لا يمكن أن يحتوي الاسم على فراغات"
 
128
 
129
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
130
+ msgid "Label not specified"
131
+ msgstr "لم يتم تحديد العنوان"
132
 
133
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
134
+ msgid "not selected (with this type is necessary)"
135
+ msgstr "لم يتم تحديده (ضروري لهذا النوع)"
 
136
 
137
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
138
+ msgid "If you select"
139
+ msgstr "إذا اخترت"
 
 
 
 
140
 
141
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
142
+ msgid "you cannot select Min or Max"
143
+ msgstr "لا يمكنك اختيار أقل أو أقصى"
 
 
 
 
 
 
 
 
 
 
 
 
 
144
 
145
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
146
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
147
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
148
+ msgid "should be in the range of"
149
+ msgstr "يجب أن يكون في المدى"
150
 
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
152
+ msgid "Equal TO not specified"
153
+ msgstr "لم يتم تحديد القيمة المساواة"
 
154
 
155
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
156
+ msgid "With checkbox type Equal TO can only be"
157
+ msgstr "لنوع مربعات التأشير المساواة يمكن فقط أن تكون"
 
 
 
 
 
 
 
 
 
 
 
 
158
 
159
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
160
+ msgid "With radio type Equal TO can only be"
161
+ msgstr "لنوع اختيار الدوائر المساواة يمكن فقط أن تكون"
162
 
163
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
164
+ msgid "With checkbox type Value can only be"
165
+ msgstr "لنوع مربعات التأشير القيمة يمكن فقط أن تكون"
166
 
167
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
168
+ msgid "With radio type Value can only be"
169
+ msgstr "لنوع اختيار الدوائر القيمة يمكن فقط أن تكون"
170
 
171
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
172
+ msgid "Field inserted correctly"
173
+ msgstr "تم إدخال الحقل بشكل صحيح"
174
 
175
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
176
+ msgid "Field #"
177
+ msgstr "رقم الحقل"
178
 
179
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
180
+ msgid "updated correctly"
181
+ msgstr "تم تحديثه بشكل صحيح"
 
182
 
183
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
184
+ msgid "Name inserted is just in the database, change to another one"
185
+ msgstr "الاسم المدخل موجود في قاعدة البيانات، اختر اسماً غيره"
186
+
187
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
188
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:380
189
+ msgid "Add a new Field"
190
+ msgstr "إضافة حقل جديد"
191
 
192
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
193
  msgid ""
194
+ "To add a new field you have to choose a name, type and label; optional are "
195
+ "value and description. Rules are applied during user registration."
 
196
  msgstr ""
197
+ "لإضافة حقل جديد يجب اختيار اسم ونوع وعنوان له؛ أما النوع والوصف فاختياريان. "
198
+ "يتم تطبيق القواعد عند تسجيل المستخدمين."
199
 
200
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
201
+ msgid ""
202
+ "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> "
203
+ "and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or "
204
+ "'not selected'"
205
+ msgstr ""
206
+ "بخصوص <strong>دوائر الاختيار</strong> و<strong>مربعات التأشير</strong>: "
207
+ "<em>القيمة</em> і <em>والمساواة</em> يمكن فقط أن تكون 'نعم' أو 'لا' بما يعني "
208
+ "'مختار' أو 'غير مختار'"
209
 
210
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
211
+ msgid ""
212
+ "With <strong>drop-down</strong>: you have to add all options into label for "
213
+ "example: label/item1,item2,item3"
214
+ msgstr ""
215
+ "بخصوص <strong>القائمة المنسدلة</strong>: يجب أن تكتب كل الخيارات في العنوان، "
216
+ "مثلاً: العنوان/الخيار الأول,الخيار الثاني,الخيار الثالث"
217
 
218
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
219
+ msgid ""
220
+ "With <strong>picture</strong>: you can preload a default image putting url "
221
+ "in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means "
222
+ "max pixel size (width or height) for thumbnail"
223
+ msgstr ""
224
+ "بخصوص <strong>الصورة</strong>: يجب تزويد صورة افتراضية بوضع رابط في "
225
+ "<em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> تعني "
226
+ "أقصى حجم بيكسل (طول أو عرض) للصور المصغرة"
227
 
228
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
229
+ msgid ""
230
+ "With <strong>picture-url</strong>: you can preload a default image putting "
231
+ "url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height "
232
+ "will be proportional)"
233
+ msgstr ""
234
+ "بخصوص <strong>رابط الصورة</strong>: يمكنك تزويد صورة افتراضية بوضع الرابط في "
235
+ "<em>القيمة</em>؛ <em>المساواة</em> تعني أقصى عرض للحجم بالبيكسل (الطول "
236
+ "متناسب)"
237
 
238
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
239
+ msgid ""
240
+ "With <strong>registration-date</strong>: <em>equal TO</em> means date and "
241
+ "time format"
242
+ msgstr ""
243
+ "بخصوص <strong>تاريخ التسجيل</strong>: <em>المساواة</em> تعني صيغة التاريخ "
244
+ "والوقت"
245
 
246
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
247
+ msgid ""
248
+ "With <strong>avatar</strong>: you can preload a default image putting url in "
249
+ "<em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is "
250
+ "automatically set to 512 pixels"
251
+ msgstr ""
252
+ "بخصوص <strong>الأفاتار</strong>: يمكن تزويد صورة افتراضية بوضع الرابط في "
253
+ "<em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> يتم "
254
+ "ضيطها تلقائياً على 512 بيكسل"
255
 
256
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
257
+ msgid ""
258
+ "With <strong>file</strong>: you can preload a default file putting url in "
259
+ "<em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can "
260
+ "be specified allowed extensions separated by comma, example: zip,pdf,doc"
261
+ msgstr ""
262
+ "بخصوص <strong>ملف</strong>: يمكن تزويد ملف افتراضي بوضع الرابط <em>القيمة</"
263
+ "em>؛ 'أقل وبالتحديد وأكبر حجم' بوحدة KB؛ في <em>المساواة</em> يمكن تحديد "
264
+ "الامتدادات المسموحة مفصولة بفاصلة لاتينية، مثلاً:: zip, pdf, doc"
265
 
266
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
267
+ msgid ""
268
+ "With <strong>date</strong>: you can preload a default date in <em>Value</"
269
+ "em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max "
270
+ "date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> "
271
+ "can be a specific date"
272
+ msgstr ""
273
 
274
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
275
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
276
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
277
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
278
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
279
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
280
+ msgid "Name"
281
+ msgstr "الاسم"
282
 
283
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
284
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
285
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
286
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
287
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1870
288
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1875
289
+ msgid "Value"
290
+ msgstr "القيمة"
291
 
292
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
293
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
294
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
295
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
296
+ msgid "Type"
297
+ msgstr "النوع"
 
298
 
299
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
300
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
301
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
302
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
303
+ msgid "Label"
304
+ msgstr "العنوان"
305
 
306
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
307
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
308
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
309
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
310
+ msgid "Description"
311
+ msgstr "الوصف"
312
 
313
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
314
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
315
+ msgid "Rules"
316
+ msgstr "القواعد"
317
 
318
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
319
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
320
+ msgid "Actions"
321
+ msgstr "الإجراءات"
 
 
 
 
 
322
 
323
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
324
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
325
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1287
326
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1388
327
+ msgid "Fieldset"
328
+ msgstr "Fieldset"
329
 
330
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
331
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
332
+ msgid "Can be empty"
333
+ msgstr "يمكن أن يكون فارغاً"
334
 
335
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
336
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
337
+ msgid "Check for E-mail syntax"
338
+ msgstr "التأكد من صيغة البريد الإلكتروني"
339
 
340
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
341
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
342
+ msgid "Can be modified"
343
+ msgstr "يمكن تعديلها"
344
 
345
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
346
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
347
+ msgid "Can be modified only if empty"
348
+ msgstr "يمكن تعديلها فقط في حالة كونها فارغة"
349
 
350
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
351
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
352
+ msgid "Can be modified only by admin"
353
+ msgstr "يمكن تعديلها فقط بواسطة المدير"
354
 
355
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
356
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
357
+ msgid "Can be modified only by admin or if empty"
358
+ msgstr "يمكن تعديلها فقط بواسطة المدير في حالة كونها فارغة"