Cimy User Extra Fields - Version 2.7.1

Version Description

Download this release

Release Info

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

Code changes from version 2.7.0 to 2.7.1

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.0 - 19/01/2016
635
  - Fixed welcome email for new users, broken since WordPress 4.3 (thanks to Paul Yuen, Chris Norton and more)
636
  - Fixed password change email is no longer sent if user chose its own password during registration
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
637
+ - Fixed a warning when creating users via code and a file, picture or avatar is present in the form
638
+ - Updated Securimage Captcha to use more secure style and support code audio reader in HTML5 too
639
+
640
  v2.7.0 - 19/01/2016
641
  - Fixed welcome email for new users, broken since WordPress 4.3 (thanks to Paul Yuen, Chris Norton and more)
642
  - Fixed password change email is no longer sent if user chose its own password during registration
cimy_uef_admin.php CHANGED
@@ -1322,6 +1322,14 @@ function cimy_admin_users_list_page() {
1322
  'fields' => 'all_with_meta'
1323
  );
1324
 
 
 
 
 
 
 
 
 
1325
  if ('' !== $args['search'])
1326
  $args['search'] = '*' . $args['search'] . '*';
1327
 
@@ -1420,7 +1428,15 @@ function cimy_admin_users_list_page() {
1420
  $remove = true;
1421
  }
1422
  } else if ($ef_type == "radio") {
1423
- if (($ef_search == $ef_id) && ($ef_value != "selected")) {
 
 
 
 
 
 
 
 
1424
  $remove = true;
1425
  }
1426
  } else if ($ef_type == "dropdown") {
1322
  'fields' => 'all_with_meta'
1323
  );
1324
 
1325
+ global $wp_version;
1326
+ if (version_compare($wp_version, "4.4") >= 0) {
1327
+ if ($role === 'none') {
1328
+ $args['include'] = wp_get_users_with_no_role();
1329
+ unset($users['role']);
1330
+ }
1331
+ }
1332
+
1333
  if ('' !== $args['search'])
1334
  $args['search'] = '*' . $args['search'] . '*';
1335
 
1428
  $remove = true;
1429
  }
1430
  } else if ($ef_type == "radio") {
1431
+ $tmp_data = array();
1432
+ $tmp_data[0]["TYPE"] = $ef_type;
1433
+ $tmp_data[0]["VALUE"] = $ef_search;
1434
+ $tmp_data[0]["LABEL"] = $ef["LABEL"];
1435
+ $tmp_search_val = cimy_change_radio_labels($tmp_data, $user_object->ID);
1436
+ if (is_array($tmp_search_val)) {
1437
+ $tmp_search_val = $tmp_search_val[0]["VALUE"];
1438
+ }
1439
+ if (($ef_search == $ef_id) && ($ef_value != $tmp_search_val)) {
1440
  $remove = true;
1441
  }
1442
  } else if ($ef_type == "dropdown") {
cimy_uef_functions.php CHANGED
@@ -1161,3 +1161,41 @@ function cimy_uef_date_picker_options($unique_id, $rules) {
1161
  }
1162
  return $js_date;
1163
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1161
  }
1162
  return $js_date;
1163
  }
1164
+
1165
+ /**
1166
+ * Check reCAPTCHA v2 response.
1167
+ *
1168
+ * @param string $secret the server side key of the reCAPTCHA v2
1169
+ * @param string $response the response code from the recaptcha server
1170
+ * @param string $remote_ip the remote ip of the user
1171
+ * @return boolean true for response correct; false for response incorrect;
1172
+ WP_Error if api query failed
1173
+ */
1174
+ function cimy_uef_check_recaptcha2_response($secret, $response, $remote_ip = '') {
1175
+ // Collect the args
1176
+ $params = array(
1177
+ 'secret' => $secret,
1178
+ 'response' => sanitize_text_field($response),
1179
+ 'remoteip' => sanitize_text_field($remote_ip)
1180
+ );
1181
+
1182
+ // Generate the URL
1183
+ $url = 'https://www.google.com/recaptcha/api/siteverify';
1184
+ $url = add_query_arg($params, esc_url_raw($url));
1185
+
1186
+ // Make API request
1187
+ $response = wp_remote_post(esc_url_raw($url));
1188
+
1189
+ // Check the response code
1190
+ $response_code = wp_remote_retrieve_response_code($response);
1191
+ $response_message = wp_remote_retrieve_response_message($response);
1192
+
1193
+ if ( 200 != $response_code && ! empty( $response_message ) ) {
1194
+ return new WP_Error( $response_code, $response_message );
1195
+ } elseif ( 200 != $response_code ) {
1196
+ return new WP_Error( $response_code, 'Unknown error occurred' );
1197
+ } else {
1198
+ $body = json_decode(wp_remote_retrieve_body($response));
1199
+ return is_object($body) && $body->success;
1200
+ }
1201
+ }
cimy_uef_init.php CHANGED
@@ -117,6 +117,11 @@ function cimy_uef_init_javascripts($rule_name) {
117
  global $cuef_plugin_dir, $cuef_css_webpath, $cuef_js_webpath;
118
 
119
  $options = cimy_get_options();
 
 
 
 
 
120
  if ($options['image_fields'][$rule_name] > 0) {
121
  wp_enqueue_style('imgareaselect');
122
  wp_register_script('cimy_uef_img_selection', $cuef_js_webpath."/img_selection.js", array("imgareaselect", "jquery"), false);
117
  global $cuef_plugin_dir, $cuef_css_webpath, $cuef_js_webpath;
118
 
119
  $options = cimy_get_options();
120
+ if ($options['captcha'] == 'recaptcha2') {
121
+ wp_register_script('recaptcha2', 'https://www.google.com/recaptcha/api.js', array());
122
+ wp_enqueue_script('recaptcha2');
123
+ }
124
+
125
  if ($options['image_fields'][$rule_name] > 0) {
126
  wp_enqueue_style('imgareaselect');
127
  wp_register_script('cimy_uef_img_selection', $cuef_js_webpath."/img_selection.js", array("imgareaselect", "jquery"), false);
cimy_uef_options.php CHANGED
@@ -146,6 +146,14 @@ function cimy_save_options() {
146
  $options['recaptcha_private_key'] = trim($_POST['recaptcha_private_key']);
147
  }
148
 
 
 
 
 
 
 
 
 
149
  if (!isset($results['empty_wp_fields'])) {
150
  if (isset($_POST['show_wp_password'])) {
151
  array_push($options['wp_hidden_fields'], 'password');
@@ -312,6 +320,8 @@ function cimy_show_options($results, $embedded) {
312
  $welcome_email = $options['welcome_email'];
313
  isset($options['recaptcha_public_key']) ? $recaptcha_public_key = $options['recaptcha_public_key'] : $recaptcha_public_key = '';
314
  isset($options['recaptcha_private_key']) ? $recaptcha_private_key = $options['recaptcha_private_key'] : $recaptcha_private_key = '';
 
 
315
 
316
  $db_options = true;
317
  }
@@ -321,6 +331,8 @@ function cimy_show_options($results, $embedded) {
321
  $welcome_email = '';
322
  $recaptcha_public_key = '';
323
  $recaptcha_private_key = '';
 
 
324
  }
325
 
326
  if ($wpdb->get_var("SHOW TABLES LIKE '$wpdb_wp_fields_table'") == $wpdb_wp_fields_table) {
@@ -520,6 +532,22 @@ function cimy_show_options($results, $embedded) {
520
  <input type="text" name="recaptcha_private_key" value="<?php echo esc_attr($recaptcha_private_key); ?>" size="40" />
521
  </td>
522
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
523
  <tr>
524
  <th scope="row">
525
  <label><input type="radio" name="captcha" value="securimage"<?php checked("securimage", $options['captcha'], true); ?> />
146
  $options['recaptcha_private_key'] = trim($_POST['recaptcha_private_key']);
147
  }
148
 
149
+ if (isset($_POST['recaptcha2_site_key'])) {
150
+ $options['recaptcha2_site_key'] = trim($_POST['recaptcha2_site_key']);
151
+ }
152
+
153
+ if (isset($_POST['recaptcha2_secret_key'])) {
154
+ $options['recaptcha2_secret_key'] = trim($_POST['recaptcha2_secret_key']);
155
+ }
156
+
157
  if (!isset($results['empty_wp_fields'])) {
158
  if (isset($_POST['show_wp_password'])) {
159
  array_push($options['wp_hidden_fields'], 'password');
320
  $welcome_email = $options['welcome_email'];
321
  isset($options['recaptcha_public_key']) ? $recaptcha_public_key = $options['recaptcha_public_key'] : $recaptcha_public_key = '';
322
  isset($options['recaptcha_private_key']) ? $recaptcha_private_key = $options['recaptcha_private_key'] : $recaptcha_private_key = '';
323
+ isset($options['recaptcha2_site_key']) ? $recaptcha2_site_key = $options['recaptcha2_site_key'] : $recaptcha2_site_key = '';
324
+ isset($options['recaptcha2_secret_key']) ? $recaptcha2_secret_key = $options['recaptcha2_secret_key'] : $recaptcha2_secret_key = '';
325
 
326
  $db_options = true;
327
  }
331
  $welcome_email = '';
332
  $recaptcha_public_key = '';
333
  $recaptcha_private_key = '';
334
+ $recaptcha2_site_key = '';
335
+ $recaptcha2_secret_key = '';
336
  }
337
 
338
  if ($wpdb->get_var("SHOW TABLES LIKE '$wpdb_wp_fields_table'") == $wpdb_wp_fields_table) {
532
  <input type="text" name="recaptcha_private_key" value="<?php echo esc_attr($recaptcha_private_key); ?>" size="40" />
533
  </td>
534
  </tr>
535
+ <tr>
536
+ <th scope="row">
537
+ <label><input type="radio" name="captcha" value="recaptcha2"<?php checked("recaptcha2", $options['captcha'], true); ?> />
538
+ <?php _e('Enable <a href="http://www.google.com/recaptcha" target="_blank">reCAPTCHA v2</a>', $cimy_uef_domain); ?></a></label>
539
+ </th>
540
+ <td>
541
+ <?php
542
+ _e("Site KEY", $cimy_uef_domain);
543
+ ?>
544
+ <input type="text" name="recaptcha2_site_key" value="<?php echo esc_attr($recaptcha2_site_key); ?>" size="45" /><br />
545
+ <?php
546
+ _e("Secret KEY", $cimy_uef_domain);
547
+ ?>
548
+ <input type="text" name="recaptcha2_secret_key" value="<?php echo esc_attr($recaptcha2_secret_key); ?>" size="45" />
549
+ </td>
550
+ </tr>
551
  <tr>
552
  <th scope="row">
553
  <label><input type="radio" name="captcha" value="securimage"<?php checked("securimage", $options['captcha'], true); ?> />
cimy_uef_register.php CHANGED
@@ -106,23 +106,24 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
106
  if ((!is_multisite()) && ($options["confirm_email"]) && (empty($meta)))
107
  $user_signups = true;
108
 
 
 
 
109
  // 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!
110
  if ($user_signups) {
111
- $user = new WP_User((int) $user_id);
112
- $signup = $wpdb->get_row($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE user_login = %s AND active = 0", $user->user_login));
113
  if (!empty($signup))
114
  return;
115
  }
116
  if (!empty($meta)) {
117
- $user = new WP_User((int) $user_id);
118
- $meta_db = $wpdb->get_var($wpdb->prepare("SELECT meta FROM ".$wpdb->prefix."signups WHERE user_login = %s", $user->user_login));
119
  $meta_db = unserialize($meta_db);
120
  // password detected, kill it!
121
  if (!empty($meta_db['cimy_uef_wp_PASSWORD'])) {
122
  unset($meta_db['cimy_uef_wp_PASSWORD']);
123
  if (!empty($meta_db['cimy_uef_wp_PASSWORD2']))
124
  unset($meta_db['cimy_uef_wp_PASSWORD2']);
125
- $wpdb->update($wpdb->prefix."signups", array('meta' => serialize($meta_db)), array('user_login' => $user->user_login));
126
  }
127
  }
128
 
@@ -190,22 +191,21 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
190
  }
191
 
192
  if (in_array($type, $cimy_uef_file_types)) {
193
- $user_login_sanitized = sanitize_user($_POST['user_login']);
194
  if ((isset($_POST["register_confirmation"])) && ($_POST["register_confirmation"] == 2)) {
195
  $temp_user_login = $_POST["temp_user_login"];
196
  $temp_dir = cimy_uef_get_dir_or_filename($temp_user_login);
197
- $final_dir = cimy_uef_get_dir_or_filename($user_login_sanitized);
198
  if (is_dir($temp_dir)) {
199
  rename($temp_dir, $final_dir);
200
  }
201
- $data = str_replace("/".$temp_user_login."/", "/".$user_login_sanitized."/", $data);
202
- $file_on_server = cimy_uef_get_dir_or_filename($user_login_sanitized, $data, false);
203
 
204
  if (in_array($type, $cimy_uef_file_images_types))
205
  cimy_uef_crop_image($file_on_server, $field_id_data);
206
  }
207
  else
208
- $data = cimy_manage_upload($input_name, $user_login_sanitized, $rules, false, false, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
209
  }
210
  else if (!in_array($type, $rule_maxlen_is_str)) {
211
  if ($type == "picture-url")
@@ -625,15 +625,27 @@ function cimy_registration_captcha_check($user_login, $user_email, $errors) {
625
  if (!empty($_POST['register_confirmation']) && ($_POST['register_confirmation'] == 2) && (wp_verify_nonce($_REQUEST['confirm_form_nonce'], 'confirm_form')))
626
  return $errors;
627
  $options = cimy_get_options();
628
- if (($options['captcha'] == "recaptcha") && (!empty($options['recaptcha_private_key']))) {
 
 
 
629
  $recaptcha_code_ok = false;
 
 
 
 
 
 
 
 
 
630
 
631
  if (!empty($_POST["recaptcha_response_field"])) {
632
  global $cuef_plugin_dir;
633
  require_once($cuef_plugin_dir.'/recaptcha/recaptchalib.php');
634
 
635
  $recaptcha_resp = recaptcha_check_answer($options["recaptcha_private_key"],
636
- $_SERVER["REMOTE_ADDR"],
637
  $_POST["recaptcha_challenge_field"],
638
  $_POST["recaptcha_response_field"]);
639
 
@@ -1210,49 +1222,58 @@ function cimy_registration_form($errors=null, $show_type=0) {
1210
  if (($show_type != 2) && ($options['captcha'] == "securimage")) {
1211
  global $cuef_securimage_webpath;
1212
  if (is_multisite()) {
1213
- $width = 500;
1214
  if (is_wp_error($errors) && $errmsg = $errors->get_error_message("securimage_code"))
1215
  echo '<p class="error">'.$errmsg.'</p>';
1216
  }
1217
- else
1218
- $width = 278;
1219
- ?>
1220
- <div style="width: <?php echo $width; ?>px; clear: both; height: 80px; vertical-align: text-top;">
1221
- <img id="captcha" align="left" style="padding-right: 5px; border: 0" src="<?php echo $cuef_securimage_webpath; ?>/securimage_show_captcha.php" alt="CAPTCHA Image" />
1222
- <object type="application/x-shockwave-flash" data="<?php echo $cuef_securimage_webpath; ?>/securimage_play.swf?audio_file=<?php echo $cuef_securimage_webpath; ?>/securimage_play.php&#038;bgColor1=#fff&#038;bgColor2=#fff&#038;iconColor=#777&#038;borderWidth=1&#038;borderColor=#000" height="19" width="19"><param name="movie" value="<?php echo $cuef_securimage_webpath; ?>/securimage_play.swf?audio_file=<?php echo $cuef_securimage_webpath; ?>/securimage_play.php&#038;bgColor1=#fff&#038;bgColor2=#fff&#038;iconColor=#777&#038;borderWidth=1&#038;borderColor=#000" /></object>
1223
- <br /><br /><br />
1224
- <a align="right"<?php if (!empty($obj_tabindex)) echo " tabindex=\"".$tabindex."\""; $tabindex++; ?> style="border-style: none" href="#" onclick="document.getElementById('captcha').src = '<?php echo $cuef_securimage_webpath; ?>/securimage_show_captcha.php?' + Math.random(); return false"><img src="<?php echo $cuef_securimage_webpath; ?>/images/refresh.png" alt="<?php _e("Change image", $cimy_uef_domain); ?>" border="0" onclick="this.blur()" align="bottom" height="19" width="19" /></a>
1225
- </div>
1226
- <div style="width: <?php echo $width; ?>px; clear: both; height: 70px; vertical-align: bottom; padding: 5px;">
1227
- <?php _e("Insert the code:", $cimy_uef_domain); ?>&nbsp;<input type="text" name="securimage_response_field" size="12" maxlength="16"<?php if (!empty($obj_tabindex)) echo " tabindex=\"".$tabindex."\""; $tabindex++; ?> />
1228
- </div>
1229
- <?php
1230
  }
1231
 
1232
- if (($show_type != 2) && ($options['captcha'] == "recaptcha") && (!empty($options['recaptcha_public_key'])) && (!empty($options['recaptcha_private_key']))) {
1233
- require_once($cuef_plugin_dir.'/recaptcha/recaptchalib.php');
1234
  if (is_multisite() && is_wp_error($errors) && $errmsg = $errors->get_error_message("recaptcha_code")) {
1235
  echo '<p class="error">'.$errmsg.'</p>';
1236
  }
 
1237
  ?>
1238
- <script type='text/javascript'>
1239
- var RecaptchaOptions = {
1240
- lang: '<?php echo substr(get_locale(), 0, 2); ?>'
1241
- <?php if (!empty($obj_tabindex)) echo ", tabindex: ".$tabindex; $tabindex++; ?>
1242
- };
1243
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
1244
  <?php
1245
 
1246
- // no need if Tiny MCE is present already
1247
- if (empty($tiny_mce_objects)) {
1248
  ?>
1249
  <script type='text/javascript'>
1250
  var login_div = document.getElementById("login");
1251
  login_div.style.width = "375px";
1252
  </script>
1253
  <?php
 
 
1254
  }
1255
- echo recaptcha_get_html($options['recaptcha_public_key'], null, is_ssl());
1256
  }
1257
 
1258
  cimy_switch_current_blog(true);
106
  if ((!is_multisite()) && ($options["confirm_email"]) && (empty($meta)))
107
  $user_signups = true;
108
 
109
+ $user = new WP_User((int) $user_id);
110
+ $user_login = $user->user_login;
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
 
191
  }
192
 
193
  if (in_array($type, $cimy_uef_file_types)) {
 
194
  if ((isset($_POST["register_confirmation"])) && ($_POST["register_confirmation"] == 2)) {
195
  $temp_user_login = $_POST["temp_user_login"];
196
  $temp_dir = cimy_uef_get_dir_or_filename($temp_user_login);
197
+ $final_dir = cimy_uef_get_dir_or_filename($user_login);
198
  if (is_dir($temp_dir)) {
199
  rename($temp_dir, $final_dir);
200
  }
201
+ $data = str_replace("/".$temp_user_login."/", "/".$user_login."/", $data);
202
+ $file_on_server = cimy_uef_get_dir_or_filename($user_login, $data, false);
203
 
204
  if (in_array($type, $cimy_uef_file_images_types))
205
  cimy_uef_crop_image($file_on_server, $field_id_data);
206
  }
207
  else
208
+ $data = cimy_manage_upload($input_name, $user_login, $rules, false, false, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
209
  }
210
  else if (!in_array($type, $rule_maxlen_is_str)) {
211
  if ($type == "picture-url")
625
  if (!empty($_POST['register_confirmation']) && ($_POST['register_confirmation'] == 2) && (wp_verify_nonce($_REQUEST['confirm_form_nonce'], 'confirm_form')))
626
  return $errors;
627
  $options = cimy_get_options();
628
+ if (($options['captcha'] == "recaptcha" && !empty($options['recaptcha_private_key'])) ||
629
+ ($options['captcha'] == "recaptcha2" && !empty($options['recaptcha2_secret_key']))
630
+ ) {
631
+
632
  $recaptcha_code_ok = false;
633
+ if (!empty($_POST["g-recaptcha-response"])) {
634
+ $recaptcha_code_ok = cimy_uef_check_recaptcha2_response($options['recaptcha2_secret_key'],
635
+ $_POST["g-recaptcha-response"],
636
+ !empty($_SERVER["REMOTE_ADDR"]) ? $_SERVER["REMOTE_ADDR"] : ""
637
+ );
638
+ if (is_wp_error($recaptcha_code_ok)) {
639
+ $recaptcha_code_ok = false;
640
+ }
641
+ }
642
 
643
  if (!empty($_POST["recaptcha_response_field"])) {
644
  global $cuef_plugin_dir;
645
  require_once($cuef_plugin_dir.'/recaptcha/recaptchalib.php');
646
 
647
  $recaptcha_resp = recaptcha_check_answer($options["recaptcha_private_key"],
648
+ !empty($_SERVER["REMOTE_ADDR"]) ? $_SERVER["REMOTE_ADDR"] : "",
649
  $_POST["recaptcha_challenge_field"],
650
  $_POST["recaptcha_response_field"]);
651
 
1222
  if (($show_type != 2) && ($options['captcha'] == "securimage")) {
1223
  global $cuef_securimage_webpath;
1224
  if (is_multisite()) {
 
1225
  if (is_wp_error($errors) && $errmsg = $errors->get_error_message("securimage_code"))
1226
  echo '<p class="error">'.$errmsg.'</p>';
1227
  }
1228
+ require_once($cuef_plugin_dir.'/securimage/securimage.php');
1229
+ $captcha_options = array();
1230
+ $captcha_options['image_id'] = 'captcha';
1231
+ $captcha_options['input_name'] = 'securimage_response_field';
1232
+ $captcha_options['input_text'] = __("Insert the code:", $cimy_uef_domain);
1233
+ $captcha_options['refresh_alt_text'] = __("Change image", $cimy_uef_domain);
1234
+ $captcha_options['refresh_title_text'] = __("Change image", $cimy_uef_domain);
1235
+ $captcha_options['show_audio_button'] = true;
1236
+ $captcha_options['show_refresh_button'] = true;
1237
+ echo Securimage::getCaptchaHtml($captcha_options);
 
 
 
1238
  }
1239
 
1240
+ if ($show_type != 2) {
 
1241
  if (is_multisite() && is_wp_error($errors) && $errmsg = $errors->get_error_message("recaptcha_code")) {
1242
  echo '<p class="error">'.$errmsg.'</p>';
1243
  }
1244
+ if ($options['captcha'] == "recaptcha2" && !empty($options['recaptcha2_site_key']) && !empty($options['recaptcha2_secret_key'])) {
1245
  ?>
1246
+ <div class="g-recaptcha"
1247
+ data-sitekey="<?php echo esc_attr($options['recaptcha2_site_key']); ?>"
1248
+ <?php if (!empty($obj_tabindex)) echo "data-tabindex=".$tabindex; $tabindex++; ?>
1249
+ data-size="compact"
1250
+ >
1251
+ </div>
1252
+ <?php
1253
+ }
1254
+
1255
+ if ($options['captcha'] == "recaptcha" && !empty($options['recaptcha_public_key']) && !empty($options['recaptcha_private_key'])) {
1256
+ require_once($cuef_plugin_dir.'/recaptcha/recaptchalib.php');
1257
+ ?>
1258
+ <script type='text/javascript'>
1259
+ var RecaptchaOptions = {
1260
+ lang: '<?php echo substr(get_locale(), 0, 2); ?>'
1261
+ <?php if (!empty($obj_tabindex)) echo ", tabindex: ".$tabindex; $tabindex++; ?>
1262
+ };
1263
+ </script>
1264
  <?php
1265
 
1266
+ // no need if Tiny MCE is present already
1267
+ if (empty($tiny_mce_objects)) {
1268
  ?>
1269
  <script type='text/javascript'>
1270
  var login_div = document.getElementById("login");
1271
  login_div.style.width = "375px";
1272
  </script>
1273
  <?php
1274
+ }
1275
+ echo recaptcha_get_html($options['recaptcha_public_key'], null, is_ssl());
1276
  }
 
1277
  }
1278
 
1279
  cimy_switch_current_blog(true);
cimy_user_extra_fields.php CHANGED
@@ -3,7 +3,7 @@
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.0
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  License: GPL2
@@ -162,7 +162,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.0";
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 +170,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-2015 Marco Cimmino";
174
  $start_cimy_uef_comment .= "\t".$cimy_uef_url;
175
  $start_cimy_uef_comment .= "\t-->\n";
176
 
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
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
  // 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
 
langs/cimy_uef-ar.mo CHANGED
Binary file
langs/cimy_uef-ar.po CHANGED
@@ -2,1133 +2,1347 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-28 06:19-0800\n"
6
- "PO-Revision-Date: 2013-09-28 06:19-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: Mamoun Elkheir <krikabat@hotmail.com>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Language: Arabic\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Poedit-Basepath: .\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_register.php:479
20
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
21
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
22
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:517
23
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:529
24
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
25
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
26
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
27
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
28
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
29
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
30
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
31
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
32
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
33
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
34
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
35
- msgid "ERROR"
36
- msgstr "خطأ"
37
-
38
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
39
- msgid "does not match."
40
- msgstr "غير متفقة."
41
-
42
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
43
- msgid "hasn&#8217;t a correct email syntax."
44
- msgstr "صيغة البريد اللإلكتروني غير صحيحة."
45
-
46
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
47
- msgid "couldn&#8217;t be empty."
48
- msgstr "لا يمكن أن تكون فارغة."
49
-
50
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
51
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
52
- msgid "isn&#8217;t correct"
53
- msgstr "غير صحيحة"
54
-
55
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
56
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
58
- msgid "YES"
59
- msgstr "نعم"
60
-
61
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
62
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
64
- msgid "NO"
65
- msgstr "لا"
66
 
67
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
68
- msgid "should be"
69
- msgstr "يجب أن"
70
 
71
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
72
- msgid "should be an image."
73
- msgstr "يجب أن تكون صورة."
74
 
75
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
76
- msgid "does not accept this file type."
77
  msgstr ""
78
 
79
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
80
- msgid "couldn&#8217;t have size less than"
81
- msgstr "لا يمكن أن يكون حجمها أقل من"
82
 
83
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
84
- msgid "couldn&#8217;t have length less than"
85
- msgstr "لا يمكن أن يكون طولها أقل من"
86
 
87
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
88
- msgid "couldn&#8217;t have size different than"
89
- msgstr "لا يمكن أن يختلف حجمها عن"
 
90
 
91
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
92
- msgid "couldn&#8217;t have length different than"
93
- msgstr "لا يمكن أن يختلف طولها عن"
 
 
 
 
 
94
 
95
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
96
- msgid "couldn&#8217;t have size more than"
97
- msgstr "لا يمكن أن يزيد حجمها عن"
 
 
 
 
 
98
 
99
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
100
- msgid "couldn&#8217;t have length more than"
101
- msgstr "لا يمكن أن يزيد طولها عن"
 
 
 
 
102
 
103
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
104
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
105
- msgid "Typed code is not correct."
106
- msgstr "الشفرة المكتوبة غير صحيحة."
 
 
107
 
108
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
109
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
111
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
 
 
 
112
  msgid "Username"
113
  msgstr "اسم المستخدم"
114
 
115
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
116
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
118
- msgid "E-mail"
119
- msgstr "البريد الإلكتروني"
120
-
121
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
123
- msgid "Please upload a file with one of the following extensions"
124
- msgstr "الرجاء تحميل ملف بأحد الامتدادات الآتية"
125
 
126
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
127
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
128
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
129
- msgid "Please upload an image with one of the following extensions"
130
- msgstr "الرجاء تحميل صورة بأحد الامتدادات الآتية"
131
 
132
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
133
- msgid "Strength indicator"
134
- msgstr "مؤشر القوة"
135
 
136
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
137
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
138
- msgstr "تلميح: كلمة المرور يجب أن يكون طولها على الأقل 7 أحرف. ولجعلها أقوى، استخدم حروفاً متنوعة وأرقاماً ورموزاً مثل ! \" ? $ % ^ &amp; )."
139
 
140
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
141
- msgid "Change image"
142
- msgstr "تغيير الصورة"
143
 
144
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
145
- msgid "Insert the code:"
146
- msgstr "أدخل الشفرة:"
 
 
147
 
148
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
149
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
150
- msgid "Confirm your registration"
151
- msgstr "تأكيد تسجيلك"
152
 
153
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
154
- msgid "A password will be e-mailed to you."
155
- msgstr "سيتم إرسال كلمة المرور على بريدك الإلكتروني."
156
 
157
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
158
- msgid "&larr; Back"
159
- msgstr "&larr; إلى الخلف"
160
 
161
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
162
- msgid "Add field"
163
- msgstr "إضافة حقل"
164
 
165
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
166
- msgid "Update field"
167
- msgstr "تحديث الحقل"
 
168
 
169
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
170
- msgid "Delete field"
171
- msgstr "حذف الحقل"
 
172
 
173
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
174
- msgid "Delete selected fields"
175
- msgstr "حذف الحقول المختارة"
 
176
 
177
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
178
- msgid "Change order"
179
- msgstr "تغيير الترتيب"
180
 
181
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
182
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
183
- msgid "Min length"
184
- msgstr "أقل طول"
185
 
186
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
187
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
188
- msgid "Exact length"
189
- msgstr "الطول بالتحديد"
 
 
 
190
 
191
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
192
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
193
- msgid "Max length"
194
- msgstr "أقصى طول"
 
 
 
 
 
 
 
 
 
 
 
 
195
 
196
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
197
- msgid "Exact or Max length"
198
- msgstr "الطول الدقيق أو الأقصى"
 
199
 
200
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
201
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:22
202
- msgid "Fields"
203
- msgstr "الحقول"
204
 
205
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
206
- msgid "changed to"
207
- msgstr "تم تغييرها إلى"
 
 
 
 
 
 
 
 
 
 
 
 
208
 
209
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
210
- msgid "You cannot give an order that misses some numbers"
211
- msgstr "لا يمكن إعطاء ترتيب يفقد بعد الأعداد"
212
 
213
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
214
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
215
- msgid "Nothing selected"
216
- msgstr "لم يتم اختيار شيء"
217
 
218
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
219
- msgid "Field(s)"
220
- msgstr "الحقل أو الحقول"
221
 
222
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
223
- msgid "deleted correctly"
224
- msgstr "تم حذفها بشكل صحيح"
225
 
226
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
227
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
228
- msgid "Min size"
229
- msgstr "أقل حجم"
230
 
231
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
232
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
233
- msgid "Exact size"
234
- msgstr "الحجم بالتحديد"
235
 
236
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
237
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
238
- msgid "Max size"
239
- msgstr "أقصى حجم"
240
 
241
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:249
242
- msgid "Exact or Max size"
243
- msgstr "الحجم بالتحديد أو الأقصى"
 
 
 
 
 
244
 
245
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
246
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
247
- #, fuzzy
248
- msgid "Min date"
249
- msgstr "أقل حجم"
250
 
251
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
252
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
253
- #, fuzzy
254
- msgid "Exact date"
255
- msgstr "الحجم بالتحديد"
256
 
257
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
258
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
259
- #, fuzzy
260
- msgid "Max date"
261
- msgstr "أقصى حجم"
262
 
263
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
264
- msgid "Name not specified"
265
- msgstr "لم يتم تحديد الاسم"
266
 
267
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
268
- msgid "Name cannot contains spaces"
269
- msgstr "لا يمكن أن يحتوي الاسم على فراغات"
270
 
271
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
272
- msgid "Label not specified"
273
- msgstr "لم يتم تحديد العنوان"
274
 
275
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
276
- msgid "not selected (with this type is necessary)"
277
- msgstr "لم يتم تحديده (ضروري لهذا النوع)"
278
 
279
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
280
- msgid "If you select"
281
- msgstr "إذا اخترت"
282
 
283
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
284
- msgid "you cannot select Min or Max"
285
- msgstr "لا يمكنك اختيار أقل أو أقصى"
286
 
287
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
288
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
289
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
290
- msgid "should be in the range of"
291
- msgstr "يجب أن يكون في المدى"
292
 
293
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
294
- msgid "Equal TO not specified"
295
- msgstr "لم يتم تحديد القيمة المساواة"
 
 
 
 
296
 
297
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
298
- msgid "With checkbox type Equal TO can only be"
299
- msgstr "لنوع مربعات التأشير المساواة يمكن فقط أن تكون"
 
 
300
 
301
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
302
- msgid "With radio type Equal TO can only be"
303
- msgstr "لنوع اختيار الدوائر المساواة يمكن فقط أن تكون"
 
304
 
305
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
306
- msgid "With checkbox type Value can only be"
307
- msgstr "لنوع مربعات التأشير القيمة يمكن فقط أن تكون"
308
 
309
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
310
- msgid "With radio type Value can only be"
311
- msgstr "لنوع اختيار الدوائر القيمة يمكن فقط أن تكون"
 
 
 
 
 
 
312
 
313
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
314
- msgid "Field inserted correctly"
315
- msgstr "تم إدخال الحقل بشكل صحيح"
 
316
 
317
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
318
- msgid "Field #"
319
- msgstr "رقم الحقل"
 
320
 
321
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
322
- msgid "updated correctly"
323
- msgstr "تم تحديثه بشكل صحيح"
324
 
325
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
326
- msgid "Name inserted is just in the database, change to another one"
327
- msgstr "الاسم المدخل موجود في قاعدة البيانات، اختر اسماً غيره"
328
 
329
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
330
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
331
- msgid "Add a new Field"
332
- msgstr "إضافة حقل جديد"
333
 
334
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
335
- msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
336
- msgstr "لإضافة حقل جديد يجب اختيار اسم ونوع وعنوان له؛ أما النوع والوصف فاختياريان. يتم تطبيق القواعد عند تسجيل المستخدمين."
 
337
 
338
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
339
- msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
340
- msgstr "بخصوص <strong>دوائر الاختيار</strong> و<strong>مربعات التأشير</strong>: <em>القيمة</em> і <em>والمساواة</em> يمكن فقط أن تكون 'نعم' أو 'لا' بما يعني 'مختار' أو 'غير مختار'"
 
 
 
 
341
 
342
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
343
- msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
344
- msgstr "بخصوص <strong>القائمة المنسدلة</strong>: يجب أن تكتب كل الخيارات في العنوان، مثلاً: العنوان/الخيار الأول,الخيار الثاني,الخيار الثالث"
345
 
346
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
347
- msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
348
- msgstr "بخصوص <strong>الصورة</strong>: يجب تزويد صورة افتراضية بوضع رابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> تعني أقصى حجم بيكسل (طول أو عرض) للصور المصغرة"
349
 
350
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
351
- msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
352
- msgstr "بخصوص <strong>رابط الصورة</strong>: يمكنك تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ <em>المساواة</em> تعني أقصى عرض للحجم بالبيكسل (الطول متناسب)"
353
 
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
355
- msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
356
- msgstr "بخصوص <strong>تاريخ التسجيل</strong>: <em>المساواة</em> تعني صيغة التاريخ والوقت"
357
 
358
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
359
- msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
360
- msgstr "بخصوص <strong>الأفاتار</strong>: يمكن تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> يتم ضيطها تلقائياً على 512 بيكسل"
 
 
361
 
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
363
- msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
364
- msgstr "بخصوص <strong>ملف</strong>: يمكن تزويد ملف افتراضي بوضع الرابط <em>القيمة</em>؛ 'أقل وبالتحديد وأكبر حجم' بوحدة KB؛ في <em>المساواة</em> يمكن تحديد الامتدادات المسموحة مفصولة بفاصلة لاتينية، مثلاً:: zip, pdf, doc"
365
 
366
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
367
- msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
368
  msgstr ""
 
369
 
370
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
372
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
373
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
374
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
375
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
376
- msgid "Name"
377
- msgstr "الاسم"
378
 
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
380
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
381
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
382
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
383
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
385
- msgid "Value"
386
- msgstr "القيمة"
387
 
388
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
389
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
390
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
391
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
392
- msgid "Type"
393
- msgstr "النوع"
394
 
395
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
396
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
397
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
398
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
399
- msgid "Label"
400
- msgstr "العنوان"
401
 
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
403
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
404
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
405
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
406
- msgid "Description"
407
- msgstr "الوصف"
408
 
409
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
410
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
411
- msgid "Rules"
412
- msgstr "القواعد"
413
 
414
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
415
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
416
- msgid "Actions"
417
- msgstr "الإجراءات"
 
 
 
418
 
419
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
420
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
421
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
422
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
423
- msgid "Fieldset"
424
- msgstr "Fieldset"
425
 
426
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
427
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
428
- msgid "Can be empty"
429
- msgstr "يمكن أن يكون فارغاً"
 
 
 
430
 
431
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
432
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
433
- msgid "Check for E-mail syntax"
434
- msgstr "التأكد من صيغة البريد الإلكتروني"
435
 
436
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
437
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
438
- msgid "Can be modified"
439
- msgstr "يمكن تعديلها"
440
 
441
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
442
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
443
- msgid "Can be modified only if empty"
444
- msgstr "يمكن تعديلها فقط في حالة كونها فارغة"
 
 
 
 
445
 
446
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
447
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
448
- msgid "Can be modified only by admin"
449
- msgstr "يمكن تعديلها فقط بواسطة المدير"
450
 
451
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
452
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
453
- msgid "Can be modified only by admin or if empty"
454
- msgstr "يمكن تعديلها فقط بواسطة المدير في حالة كونها فارغة"
455
 
456
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
457
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
458
- msgid "Cannot be modified"
459
- msgstr "لا يمكن تعديلها"
 
 
 
460
 
461
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
462
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
463
- msgid "Should be equal TO"
464
- msgstr "يجب أن تساوي"
465
 
466
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
467
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
468
- msgid "Case sensitive"
469
- msgstr "حساسة لحجم الحروف"
 
 
 
 
 
470
 
471
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
472
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
473
- msgid "Regular Expression"
474
- msgstr "تعبير اعتيادي"
475
 
476
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
477
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
478
- msgid "Show the field in the registration"
479
- msgstr "إظهار الحقل عند التسجيل"
480
 
481
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
482
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
483
- msgid "Show the field in User's profile"
484
- msgstr "إظهار الحقل في الملف الشخصي للمستخدم"
485
 
486
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
487
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
488
- msgid "Show the field in Users Extended section"
489
- msgstr "إظهار الحقل في قائمة المستخدمين الممتدة (Users Extneded)"
490
 
491
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
492
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
493
- msgid "Show the field in the search engine"
494
- msgstr "إظهار الحقل في محرك البحث"
 
 
495
 
496
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
497
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
498
- msgid "Show the field in the blog"
499
- msgstr "إظهار الحقل في الموقع"
500
 
501
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
502
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
503
- msgid "Show the field if the role is at least:"
504
- msgstr "إظهار الحقل فقط إذا كانت الوظيفة على الأقل:"
 
 
505
 
506
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
507
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
508
- msgid "Anonymous"
509
- msgstr "مجهول"
 
 
510
 
511
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
512
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
513
- msgid "User has 'view_cimy_extra_fields' capability"
514
- msgstr "المستخدم يمتلك صلاحية 'view_cimy_extra_fields'"
515
 
516
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
517
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
518
- msgid "Send an email to the admin if the user changes its value"
519
- msgstr "إرسال بريد إلكتروني للمدير إذا غير المستخدم قيمتها"
 
520
 
521
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
522
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
523
- msgid "Advanced options"
524
- msgstr "خيارات متقدمة"
525
 
526
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
527
- msgid "Clear"
528
- msgstr "تفريغ"
529
 
530
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
531
- msgid "Invert selection"
532
- msgstr "عكس التحديد"
533
 
534
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
535
- msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
536
- msgstr "هل أنت متأكد أنك تريد حذف الحقل/الحقول وكل البيانات فيها المدخلة بواسطة المستخدمين؟"
537
 
538
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
539
- msgid "WordPress Fields"
540
- msgstr "حقول WordPress"
 
 
541
 
542
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
543
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
544
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
545
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
546
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
547
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
548
- msgid "Extra Fields"
549
- msgstr "الحقول الإضافية (Extra Fields)"
550
 
551
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
552
- msgid "None!"
553
- msgstr "لا يوجد!"
554
 
555
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
556
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
557
- msgid "Order"
558
- msgstr "الترتيب"
559
 
560
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
561
- msgid "Reset"
562
- msgstr "استعادة"
563
 
564
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
565
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
566
- msgid "SUCCESSFUL"
567
- msgstr "تم بنجاح"
 
 
 
568
 
569
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
570
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
571
- msgid "select"
572
- msgstr "اختيار"
573
 
574
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
575
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
576
- msgid "Users per page"
577
- msgstr "عدد المستخدمين في الصحفة"
578
 
579
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
580
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
581
- msgid "Apply"
582
- msgstr "تنفيذ"
583
 
584
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
585
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
586
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
587
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
588
- msgid "Users Extended"
589
- msgstr "Users Extneded"
590
 
591
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
592
- #, php-format
593
- msgid "Search results for &#8220;%s&#8221;"
594
- msgstr "البحث عن نتائج تخص &#8220;%s&#8221;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
595
 
596
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
597
- #, php-format
598
- msgid "%1$s <span class=\"count\">(%2$s)</span>"
599
- msgstr "%1$s <span class=\"count\">(%2$s)</span>"
600
 
601
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
602
- msgid "Search Users"
603
- msgstr "البحث في المستخدمين"
604
 
605
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
606
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
607
- msgid "Role"
608
- msgstr "الوظيفة"
609
 
610
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
611
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
612
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
613
- msgid "Website"
614
- msgstr "الموقع"
615
 
616
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
617
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
618
- msgid "Posts"
619
- msgstr "المقالات"
620
 
621
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
622
- msgid "View posts by this author"
623
- msgstr "مشاهدة المقالات بواسطة هذا الكاتب"
624
 
625
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
626
- msgid "Super Admin"
627
- msgstr "المدير الشامل"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
628
 
629
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
630
- #, php-format
631
- msgid "e-mail: %s"
632
- msgstr "البريد الإلكتروني: %s"
633
 
634
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
635
- msgid "Change"
636
- msgstr "تغيير"
637
 
638
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
639
- msgid "Update selected users"
640
- msgstr "تحديث المستخدمين المختارين"
641
 
642
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
643
- msgid "Update"
644
- msgstr "تحديث"
 
645
 
646
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
647
- msgid "OK"
648
- msgstr "إمضاء"
 
 
649
 
650
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
651
- msgid "Cancel"
652
- msgstr "إلغاء"
 
 
653
 
654
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
655
- #, php-format
656
- msgid "New user registration on your site %s:"
657
- msgstr "تسجيل مستخدم جديد في موقعك %s:"
658
 
659
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
660
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
661
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
662
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
663
- #, php-format
664
- msgid "Username: %s"
665
- msgstr "اسم المستخدم: %s"
666
 
667
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
668
- #, php-format
669
- msgid "E-mail: %s"
670
- msgstr "البريد الإلكتروني: %s."
671
 
672
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
673
- #, php-format
674
- msgid "[%s] New User Registration"
675
- msgstr "[%s] تسجيل مستخدم جديد"
676
 
677
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
678
- #, php-format
679
- msgid "[%s] Your username and password"
680
- msgstr "[%s] اسم المستخدم وكلمة المرور خاصتك"
681
 
682
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
683
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
684
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
685
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
686
- #, php-format
687
- msgid "%s: %s"
688
- msgstr "%s: %s"
689
 
690
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
691
- #, php-format
692
- msgid ""
693
- "To activate your user, please click the following link:\n"
694
- "\n"
695
- "%s\n"
696
- "\n"
697
- "After you activate, you will receive *another email* with your login.\n"
698
- "\n"
699
- msgstr ""
700
- "لتفعيل تسجيلك، اضغط على الرابط الآتي: \n"
701
- "\n"
702
- "%s\n"
703
- "\n"
704
- "بعد التفعيل، ستصلك رسالة أخرى فيها بيانات الدخول.\n"
705
- "\n"
706
 
707
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
708
- #, php-format
709
- msgid "[%1$s] Activate %2$s"
710
- msgstr ""
711
 
712
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
713
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
714
- msgid "Your account is now active!"
715
- msgstr "حسابك الآن فعال!"
716
 
717
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
718
- #, php-format
719
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
720
- msgstr "موقعك في <a href=\"%1$s\">%2$s</a> الآن مفعل. يمكنك الآن تسجيل الدخول في موقعك باستخدام اسم المستخدم المختار &#8220;%3$s&#8221;. الرجاء مراجعة بريدك الوارد في %4$s لمعرفة كلمة المرور وتعليمات الدخول. إذا لم تستلم رسالة الرجاء مراجعة مجلد البريد المزعج. إذا لم تستلم أيضاً رسالة فيه خلال ساعة، يمكنك <a href=\"%5$s\">استرجاع كلمة المرور</a></p>."
721
 
722
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
723
- msgid "An error occurred during the activation"
724
- msgstr "حدث خطأ خلال التفعيل"
 
 
725
 
726
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
727
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
728
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
729
- #, php-format
730
- msgid "Password: %s"
731
- msgstr "كلمة المرور: %s"
732
 
733
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
734
- msgid "Invalid activation key."
735
- msgstr "مفتاح التفعيل غير صالح."
736
 
737
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
738
- msgid "The site is already active."
739
- msgstr "الموقع مفعل سلفاً."
 
 
 
 
 
740
 
741
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
742
- msgid "Could not create user"
743
- msgstr "لم يمكن إنشاء المستخدم"
744
 
745
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
746
- msgid "That username is already activated."
747
- msgstr "اسم المستخدم هذا مفعل سلفاً."
 
748
 
749
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
750
- msgid "That username is currently reserved but may be available in a couple of days."
751
- msgstr "اسم المستخدم هذا حالياً محجوز لكن ربما يصبح متوفراً خلال يومين."
 
752
 
753
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
754
- msgid "username and email used"
755
- msgstr "اسم المستخدم والبريد الإلكتروني مستخدمان"
756
 
757
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
758
- msgid "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."
759
- msgstr "هذا البريد الإلكتروني مستخدم سلفاً. الرجاء مراجعة بريدك الإلكتروني لرسالة التفعليل. إذا لم تفعل شيئاً ستصبح متوفرة خلال يومين."
760
 
761
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:144
762
  msgid "(required)"
763
  msgstr "(مطلوب)"
764
 
765
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
766
  msgid "Delete the file"
767
  msgstr "حذف الملف"
768
 
769
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:455
770
  msgid "Update the file"
771
  msgstr "تحديث الملف"
772
 
773
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:458
774
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
775
- msgid "Delete the picture"
776
- msgstr "حذف الصورة"
777
-
778
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:459
779
  msgid "Update the picture"
780
  msgstr "تفعيل الصورة"
781
 
782
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:479
783
  msgid "Picture URL:"
784
  msgstr "رابط الصورة:"
785
 
786
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
787
  #, php-format
788
  msgid "%s previous value: %s new value: %s"
789
  msgstr "%s القيمة السابقة: %s القيمة الجديدة: %s"
790
 
791
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
792
  #, php-format
793
  msgid "%s (%s) has changed one or more fields"
794
  msgstr "%s (%s) قد غير واحداً أو أكثر من الحقول"
795
 
796
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
797
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
798
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:559
799
- msgid "Options"
800
- msgstr "الخيارات"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
801
 
802
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
803
- msgid "WordPress Fields table emptied"
804
- msgstr "جدول حقول WordPress تم تفريغه"
 
 
805
 
806
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
807
- msgid "WordPress Fields table deleted"
808
- msgstr "جدول حقول WordPress Fields تم حذفه"
 
 
809
 
810
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
811
- msgid "Extra Fields table emptied"
812
- msgstr "جدول حقول Extra Fields تم تفريغه"
 
 
813
 
814
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
815
- msgid "Extra Fields table deleted"
816
- msgstr "جدول حقول Extra Fields تم حذفه"
817
 
818
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
819
- msgid "Users Data table emptied"
820
- msgstr "جدول بيانات المستخدمين تم تفريغه"
821
 
822
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
823
- msgid "Users Data table deleted"
824
- msgstr "جدول بيانات المستخدمين تم حذفه"
825
 
826
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
827
- msgid "Options set to default values"
828
- msgstr "تم وضع الخيارات في القيم الافتراضية"
829
 
830
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
831
- msgid "Options deleted"
832
- msgstr "تم حذف الخيارات"
833
 
834
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
835
- msgid "Options changed"
836
- msgstr "تم تغيير الخيارات"
837
 
838
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
839
- msgid "This operation will create/update all missing tables/options, do you want to proceed?"
840
- msgstr "هذه العملية ستعمل على إنشاء/تحديث كل الجداول/الخيارات المفقودة، هل تريد الاستمرار؟"
 
 
841
 
842
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
843
- msgid "Support the Cimy Project"
844
- msgstr "ادعم Cimy Project"
845
 
846
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
847
- msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
848
- msgstr "هذه الإضافة نتاج ساعات من التطوير لإضافة مزيد من الخصائص، دعم إصدارات WordPress الجديدة، ومعالجة الشوائب. الرجاء التبرع بالمال إذا ساعدتك في توفير كل هذه الساعات!"
849
 
850
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
851
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
852
- msgid "Save Changes"
853
- msgstr "حفظ التغييرات"
854
 
855
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
856
- msgid "General"
857
- msgstr "عام"
858
 
859
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
860
- msgid "installed is"
861
- msgstr "المنصب هو"
862
 
863
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
864
- msgid "OPTIONS DELETED!"
865
- msgstr "تم حذف الخيارات!"
866
 
867
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
868
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
869
- msgid "Fix the problem"
870
- msgstr "معالجة المشكلة"
871
 
872
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
873
- msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
874
- msgstr "الإصدار غير متوافق! وهذا لأنك لم تلغ ثم تجدد تفعيل الإضافة بعد التحديث! هذا قد يسبب مشاكل ..."
875
 
876
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
877
- msgid "Picture/Avatar upload"
878
- msgstr "تحميل صورة/أفاتار "
879
 
880
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
881
- msgid "is created and writable"
882
- msgstr "تم إنشاؤه وهو قابل للكتابة"
 
 
 
 
883
 
884
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
885
- msgid "is NOT created or webserver does NOT have permission to write on it"
886
- msgstr "لم يتم إنشاؤه أو إن الخادم لا يملك صلاحيات الكتابة عليه"
 
 
 
 
 
 
887
 
888
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
889
- msgid "Show all fields in the welcome email"
890
- msgstr "إظهار كل الحقول في رسالة الترحيب"
 
 
 
 
891
 
892
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
893
- msgid "the email sent to the admin and to the user upon registration will have all fields"
894
- msgstr "تم إرسال رسالة إلى المدير وستظهر كل الحقول للمستخدم عند التسجيل"
 
 
 
 
 
 
895
 
896
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
897
- msgid "Enable email confirmation"
898
- msgstr "تمكين تأكيد البريد الإلكتروني"
 
 
 
 
 
 
899
 
900
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
901
- msgid "user that registers should confirm its email address via a link click"
902
- msgstr "المستخدم الذي يسجل يجب عليه تأكيد عنوان بريده الإلكتروني عن طريق ضغط رابط"
 
 
 
 
903
 
904
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
905
- msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
906
- msgstr "<strong>تنبيه:</strong> عند تفعيل هذا الخيار سيعطل (خلال فترة التسجيل فقط) كل حقول التحميل: للملفات والصور والأفاتار"
 
 
 
 
 
 
907
 
908
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
909
- msgid "Enable form confirmation"
910
- msgstr "تفعيل تأكيد شاشة الإدخال"
 
 
 
 
 
 
911
 
912
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
913
- msgid "a summary of the registration form will be presented to the user"
914
- msgstr "سيتم عرض ملخص لشاشة إدخال التسجيل للمستخدم"
 
 
 
 
915
 
916
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
917
- msgid "Customize welcome email sent to the new user"
918
- msgstr "تخصيص رسالة الترحيب المرسلة للمستخدمين الجدد"
 
 
 
 
 
919
 
920
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
921
- msgid "if you change or remove the placeholders then the email won't have the correct information"
922
- msgstr "إذا غيرت أو حذفت حوامل القيم فإن البريد لن يمتلك المعلومات الصحيحة"
 
 
 
 
 
923
 
924
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
925
- msgid "Redirect to the source"
926
- msgstr "إعادة التوجيه للمصدر"
 
 
 
927
 
928
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
929
- msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
930
- msgstr "بعد التسجيل أو التأكيد فإن المستخدم سيتم تحويله إلى العنوان الذي كان عنده مباشرة قبل الضغط على رابط التسجيل"
 
 
 
931
 
932
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
933
- msgid "No captcha"
934
- msgstr "بدون كابتشا"
 
 
 
935
 
936
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
937
- msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
938
- msgstr "تفعيل <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
 
939
 
940
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
941
- msgid "Public KEY"
942
- msgstr "المفتاح العام"
 
943
 
944
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
945
- msgid "Private KEY"
946
- msgstr "المفتاح الخاص"
 
 
 
947
 
948
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
949
- msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
950
- msgstr "تفعيل <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
 
951
 
952
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
953
- msgid "This captcha is probably weaker, but is easier for users"
954
- msgstr "هذه الكابتشا ربما كانت أضعف، لكنها أسهل على المستخدمين"
 
955
 
956
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
957
- #, php-format
958
- msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
959
- msgstr "<strong>تحذير: لتفعيل هذه الكابتشا قم بتحميل <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">هذه الحزمة</a> ثم فك ضغطها تحت %s</strong>"
960
 
961
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
962
- msgid "Change login/registration page logo"
963
- msgstr "تغيير شعار صحفة الدخول/ التسجيل"
 
964
 
965
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
966
- msgid "Maximum recommended logo width is 328px, but any height should work."
967
- msgstr "أكبر عرض محبذ للشعار هو 328px، لكن أي ارتفاع ممكن."
 
968
 
969
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
970
- msgid "Database"
971
- msgstr "قاعدة البيانات"
 
972
 
973
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:566
974
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
975
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
976
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
977
- msgid "select action"
978
- msgstr "اختيار الإجراء"
979
 
980
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:567
981
- msgid "Default values"
982
- msgstr "القيم الافتراضية"
 
983
 
984
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
985
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
986
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
987
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
988
- msgid "Delete"
989
- msgstr "حذف"
990
 
991
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:572
992
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:592
993
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:612
994
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
995
- msgid "NOT PRESENT"
996
- msgstr "غير موجود"
997
 
998
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
999
- msgid "WordPress Fields table"
1000
- msgstr "جدول حقول WordPress"
 
1001
 
1002
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
1003
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:607
1004
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
1005
- msgid "Empty"
1006
- msgstr "تفريغ"
1007
 
1008
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
1009
- msgid "Extra Fields table"
1010
- msgstr "جدول حقول Extra Fields"
 
1011
 
1012
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
1013
- msgid "Users Data table"
1014
- msgstr "جدول بيانات المستخدمين"
 
1015
 
1016
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:630
1017
- msgid "all data inserted by users in all and only extra fields"
1018
- msgstr "كل البيانات المدخلة بواسطة المستخدمين في كل الحقول الإضافية وفقط فيها"
 
1019
 
1020
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
1021
- msgid "Force tables creation"
1022
- msgstr "إجبار إنشاء الجداول"
 
1023
 
1024
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
1025
- msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
1026
- msgstr "مكافئ لإلغاء الإضافة وتفعيلها؛ لن يتم اتخاذ أي إجراء آخر"
 
1027
 
1028
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
1029
- msgid "User Profile"
1030
- msgstr "الملف الشخصي للمستخدم"
 
1031
 
1032
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
1033
- msgid "Extra Fields section title"
1034
- msgstr "عنوان قسم الحقول الإضافية "
 
1035
 
1036
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:657
1037
- msgid "Fieldset's titles, separates with comma"
1038
- msgstr "عناوين Fieldset، مفصولة بفاصلة لاتينية"
 
1039
 
1040
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:657
1041
- msgid "example: title1,title2,title3"
1042
- msgstr "مثلاً: عنوان1,عنوان2,عنوان3"
1043
 
1044
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
1045
- msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
1046
- msgstr "<strong>تنبيه:</strong> إذا غيرت ترتيب fieldsets أو حذفتها ربما تحتاج لتعيين كل الـ fieldsets للحقول الإضافية مجدداً"
1047
 
1048
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
1049
- msgid "Authors &amp; Users Extended"
1050
- msgstr "المستخدمون وقائمة المستخدمين الممتدة (Users Extended)"
 
 
 
1051
 
1052
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
1053
- msgid "Hide username field"
1054
- msgstr "إخفاء حقل اسم المستخدم"
1055
 
1056
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
1057
- msgid "Hide name field"
1058
- msgstr "إخفاء حقل الاسم"
1059
 
1060
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
1061
- msgid "Hide email field"
1062
- msgstr "إخفاء حقل البريد الإلكتروني"
 
1063
 
1064
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
1065
- msgid "Hide role field"
1066
- msgstr "إخفاء حقل الوظيفة"
1067
 
1068
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
1069
- msgid "Hide website field"
1070
- msgstr "إخفاء حقل الموقع الإلكتروني"
 
1071
 
1072
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:703
1073
- msgid "Hide n. posts field"
1074
- msgstr "إخفاء حقل عدد المقالات"
 
1075
 
1076
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
1077
- msgid "WordPress hidden fields"
1078
- msgstr "حقول WordPress المخفاة"
 
1079
 
1080
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
1081
- #, fuzzy
1082
- msgid "Show username"
1083
- msgstr "إظهار الاسم الثاني"
1084
 
1085
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
1086
- msgid "when unchecked the email address will be used as username"
1087
- msgstr ""
 
1088
 
1089
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
1090
- msgid "Show password"
1091
- msgstr "إظهار كلمة المرور"
1092
 
1093
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:730
1094
- msgid "Show confirmation password"
1095
- msgstr "إظهار تأكيد كلمة المرور"
 
1096
 
1097
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
1098
- msgid "Show password strength meter"
1099
- msgstr "إظهار مؤشر قوة كلمة المرور"
 
1100
 
1101
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
1102
- msgid "Show first name"
1103
- msgstr "إظهار الاسم الأول"
1104
 
1105
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
1106
- msgid "Show last name"
1107
- msgstr "إظهار الاسم الثاني"
1108
 
1109
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:758
1110
- msgid "Show nickname"
1111
- msgstr "إظهار الاسم المختصر"
 
1112
 
1113
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
1114
- msgid "Show website"
1115
- msgstr "إظهار الموقع الإلكتروني"
1116
 
1117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:772
1118
- msgid "Show AIM"
1119
- msgstr "إظهار AIM"
1120
 
1121
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
1122
- msgid "Show Yahoo IM"
1123
- msgstr "إظهار Yahoo IM"
1124
 
1125
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
1126
- msgid "Show Jabber / Google Talk"
1127
- msgstr "إظهار Jabber / Google Talk"
1128
 
1129
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
1130
- msgid "Show Biographical Info"
1131
- msgstr "إظهار النبذة التعريفية"
1132
 
1133
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
1134
  #, php-format
@@ -1144,75 +1358,6 @@ msgstr "مكتبة الصور GD غير منصبة."
1144
  msgid "File '%s' is not an image."
1145
  msgstr "الملف '%s' ليس بصورة."
1146
 
1147
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
1148
- msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
1149
- msgstr "<strong>تنبيه:</strong> هذا الموقع يمكنك من تخصيص كلمة المرور خاصتك؛ بعد التسجيل ستصلك رسالة بريد إلكتروني فيها كلمة مرور أخرى، لا تلق لها بالاً!"
1150
-
1151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:218
1152
- msgid "Password"
1153
- msgstr "كلمة المرور"
1154
-
1155
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
1156
- msgid "Password confirmation"
1157
- msgstr "تأكيد كلمة المرور"
1158
-
1159
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
1160
- msgid "First name"
1161
- msgstr "الاسم الأول"
1162
-
1163
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:284
1164
- msgid "Last name"
1165
- msgstr "الاس الأخير"
1166
-
1167
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:306
1168
- msgid "Nickname"
1169
- msgstr "الاسم المختصر"
1170
-
1171
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:350
1172
- msgid "AIM"
1173
- msgstr "AIM"
1174
-
1175
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:372
1176
- msgid "Yahoo IM"
1177
- msgstr "Yahoo IM"
1178
-
1179
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:394
1180
- msgid "Jabber / Google Talk"
1181
- msgstr "Jabber / Google Talk"
1182
-
1183
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:416
1184
- msgid "Biographical Info"
1185
- msgstr "نبذة تعريفية"
1186
-
1187
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:429
1188
- msgid "no fieldset"
1189
- msgstr "لا يوجد fieldset"
1190
-
1191
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:433
1192
- msgid "All"
1193
- msgstr "الكل"
1194
-
1195
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1196
- msgid "Done"
1197
- msgstr ""
1198
-
1199
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1200
- msgid "&laquo; Previous"
1201
- msgstr ""
1202
-
1203
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1204
- msgid "Next &raquo;"
1205
- msgstr ""
1206
-
1207
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1021
1208
- msgid "Today"
1209
- msgstr ""
1210
-
1211
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1024
1212
- #, fuzzy
1213
- msgid "Select Month"
1214
- msgstr "اختيار الإجراء"
1215
-
1216
  #~ msgid ""
1217
  #~ "You are about to permanently delete the selected items.\n"
1218
  #~ " 'Cancel' to stop, 'OK' to delete."
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"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
 
14
  "X-Poedit-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
+ "كل حقول التحميل: للملفات والصور والأفاتار"