Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | ![]() |
Version | 2.5.0 |
Comparing to | |
See all releases |
Code changes from version 2.4.2 to 2.5.0
- README_OFFICIAL.txt +7 -2
- cimy_uef_db.php +5 -1
- cimy_uef_email_handler.php +2 -2
- cimy_uef_init.php +7 -0
- cimy_uef_options.php +7 -1
- cimy_uef_register.php +74 -23
- cimy_user_extra_fields.php +41 -5
- css/cimy_uef_register_nousername.css +7 -0
- langs/cimy_uef-ar.mo +0 -0
- langs/cimy_uef-ar.po +341 -331
- langs/cimy_uef-be_BY.mo +0 -0
- langs/cimy_uef-be_BY.po +340 -330
- langs/cimy_uef-bg_BG.mo +0 -0
- langs/cimy_uef-bg_BG.po +340 -330
- langs/cimy_uef-da_DK.mo +0 -0
- langs/cimy_uef-da_DK.po +340 -330
- langs/cimy_uef-de_DE.mo +0 -0
- langs/cimy_uef-de_DE.po +340 -330
- langs/cimy_uef-es_ES.mo +0 -0
- langs/cimy_uef-es_ES.po +340 -330
- langs/cimy_uef-fr_FR.mo +0 -0
- langs/cimy_uef-fr_FR.po +340 -330
- langs/cimy_uef-it_IT.mo +0 -0
- langs/cimy_uef-it_IT.po +339 -330
- langs/cimy_uef-pl_PL.mo +0 -0
- langs/cimy_uef-pl_PL.po +340 -330
- langs/cimy_uef-pt_BR.mo +0 -0
- langs/cimy_uef-pt_BR.po +340 -330
- langs/cimy_uef-ru_RU.mo +0 -0
- langs/cimy_uef-ru_RU.po +340 -330
- langs/cimy_uef-sv_SE.mo +0 -0
- langs/cimy_uef-sv_SE.po +340 -330
- langs/cimy_uef-uk.mo +0 -0
- langs/cimy_uef-uk.po +340 -330
- readme.txt +4 -3
README_OFFICIAL.txt
CHANGED
@@ -42,6 +42,7 @@ Other features:
|
|
42 |
* custom registration logo (non MS installations)
|
43 |
* email confirmation (non MS installations)
|
44 |
* form confirmation (non MS installations)
|
|
|
45 |
* much more!
|
46 |
|
47 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
@@ -79,10 +80,10 @@ Rules are:
|
|
79 |
|
80 |
Visualization rules
|
81 |
* field can be hidden during registration
|
82 |
-
[all]
|
83 |
|
84 |
* field can be hidden in user's profile
|
85 |
-
[all]
|
86 |
|
87 |
* field can be hidden in Users Extended page
|
88 |
[all]
|
@@ -626,6 +627,10 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
626 |
|
627 |
|
628 |
CHANGELOG:
|
|
|
|
|
|
|
|
|
629 |
v2.4.2 - 18/02/2013
|
630 |
- Fixed missing 'cimy_update_ExtraFields' PHP warning (introduced in v2.4.1) (thanks to Ashton Clark and vtxyzzy)
|
631 |
- Fixed WordPress MS per-blog installation was not working for non main sites since WordPress MS 3.5 (thanks to Denis Lam)
|
42 |
* custom registration logo (non MS installations)
|
43 |
* email confirmation (non MS installations)
|
44 |
* form confirmation (non MS installations)
|
45 |
+
* username equal to the email address (non MS installations)
|
46 |
* much more!
|
47 |
|
48 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
80 |
|
81 |
Visualization rules
|
82 |
* field can be hidden during registration
|
83 |
+
[all except the email address]
|
84 |
|
85 |
* field can be hidden in user's profile
|
86 |
+
[all except the WordPress fields]
|
87 |
|
88 |
* field can be hidden in Users Extended page
|
89 |
[all]
|
627 |
|
628 |
|
629 |
CHANGELOG:
|
630 |
+
v2.5.0 - 18/03/2013
|
631 |
+
- Added support for hiding the username under standard WP registration, email will substitute it (non-MS only) (thanks to Matt Hoffman)
|
632 |
+
- Added support for WordPress hidden fields rules under profile update
|
633 |
+
|
634 |
v2.4.2 - 18/02/2013
|
635 |
- Fixed missing 'cimy_update_ExtraFields' PHP warning (introduced in v2.4.1) (thanks to Ashton Clark and vtxyzzy)
|
636 |
- Fixed WordPress MS per-blog installation was not working for non main sites since WordPress MS 3.5 (thanks to Denis Lam)
|
cimy_uef_db.php
CHANGED
@@ -289,6 +289,10 @@ function cimy_plugin_install () {
|
|
289 |
}
|
290 |
}
|
291 |
|
|
|
|
|
|
|
|
|
292 |
$options['version'] = $cimy_uef_version;
|
293 |
|
294 |
cimy_set_options($options);
|
@@ -365,7 +369,7 @@ function cimy_manage_db($command) {
|
|
365 |
'extra_fields_title' => __("Extra Fields", $cimy_uef_domain),
|
366 |
'users_per_page' => 50,
|
367 |
'aue_hidden_fields' => array('website', 'posts', 'email'),
|
368 |
-
'wp_hidden_fields' => array(),
|
369 |
'fieldset_title' => '',
|
370 |
'registration-logo' => '',
|
371 |
'captcha' => 'none',
|
289 |
}
|
290 |
}
|
291 |
|
292 |
+
if (version_compare($options['version'], "2.4.2", "<=") === true) {
|
293 |
+
$options["wp_hidden_fields"][] = "username";
|
294 |
+
}
|
295 |
+
|
296 |
$options['version'] = $cimy_uef_version;
|
297 |
|
298 |
cimy_set_options($options);
|
369 |
'extra_fields_title' => __("Extra Fields", $cimy_uef_domain),
|
370 |
'users_per_page' => 50,
|
371 |
'aue_hidden_fields' => array('website', 'posts', 'email'),
|
372 |
+
'wp_hidden_fields' => array('username'),
|
373 |
'fieldset_title' => '',
|
374 |
'registration-logo' => '',
|
375 |
'captcha' => 'none',
|
cimy_uef_email_handler.php
CHANGED
@@ -96,13 +96,13 @@ function cimy_uef_mail_fields($user = false, $activation_data = false) {
|
|
96 |
if (empty($meta)) {
|
97 |
// normal fields
|
98 |
foreach ($wp_hidden_fields as $field) {
|
99 |
-
if ((!empty($user->{$field["
|
100 |
$label = $field["label"];
|
101 |
if ($field["type"] == "dropdown" || $field["type"] == "dropdown-multi") {
|
102 |
$ret = cimy_dropDownOptions($label, "");
|
103 |
$label = $ret['label'];
|
104 |
}
|
105 |
-
$message.= sprintf(__('%s: %s', $cimy_uef_domain), $label, $user->{$field["
|
106 |
}
|
107 |
}
|
108 |
}
|
96 |
if (empty($meta)) {
|
97 |
// normal fields
|
98 |
foreach ($wp_hidden_fields as $field) {
|
99 |
+
if ((!empty($user->{$field["userdata_name"]})) && ($field["type"] != "password")) {
|
100 |
$label = $field["label"];
|
101 |
if ($field["type"] == "dropdown" || $field["type"] == "dropdown-multi") {
|
102 |
$ret = cimy_dropDownOptions($label, "");
|
103 |
$label = $ret['label'];
|
104 |
}
|
105 |
+
$message.= sprintf(__('%s: %s', $cimy_uef_domain), $label, $user->{$field["userdata_name"]}) . "\r\n";
|
106 |
}
|
107 |
}
|
108 |
}
|
cimy_uef_init.php
CHANGED
@@ -77,10 +77,17 @@ function cimy_uef_theme_my_login_fix() {
|
|
77 |
|
78 |
function cimy_uef_register_css() {
|
79 |
global $cuef_css_webpath;
|
|
|
|
|
80 |
wp_register_style("cimy_uef_register", $cuef_css_webpath."/cimy_uef_register.css", false, false);
|
81 |
wp_enqueue_style("cimy_uef_register");
|
|
|
|
|
82 |
if (!is_multisite()) {
|
83 |
$options = cimy_get_options();
|
|
|
|
|
|
|
84 |
if (in_array("password", $options["wp_hidden_fields"])) {
|
85 |
// this CSS will hide the label "A password will be e-mailed to you."
|
86 |
wp_register_style("cimy_uef_register_nopasswordlabel", $cuef_css_webpath."/cimy_uef_register_nopasswordlabel.css", false, false);
|
77 |
|
78 |
function cimy_uef_register_css() {
|
79 |
global $cuef_css_webpath;
|
80 |
+
if (empty($_GET['action']) || $_GET['action'] != 'register')
|
81 |
+
return;
|
82 |
wp_register_style("cimy_uef_register", $cuef_css_webpath."/cimy_uef_register.css", false, false);
|
83 |
wp_enqueue_style("cimy_uef_register");
|
84 |
+
wp_register_style("cimy_uef_register_nousername", $cuef_css_webpath."/cimy_uef_register_nousername.css", false, false);
|
85 |
+
|
86 |
if (!is_multisite()) {
|
87 |
$options = cimy_get_options();
|
88 |
+
if (!in_array("username", $options["wp_hidden_fields"])) {
|
89 |
+
wp_enqueue_style("cimy_uef_register_nousername");
|
90 |
+
}
|
91 |
if (in_array("password", $options["wp_hidden_fields"])) {
|
92 |
// this CSS will hide the label "A password will be e-mailed to you."
|
93 |
wp_register_style("cimy_uef_register_nopasswordlabel", $cuef_css_webpath."/cimy_uef_register_nopasswordlabel.css", false, false);
|
cimy_uef_options.php
CHANGED
@@ -177,7 +177,7 @@ function cimy_save_options() {
|
|
177 |
else
|
178 |
$options['password_meter'] = false;
|
179 |
|
180 |
-
$db_wp_fields_independent = array("firstname", "lastname", "nickname", "website", "aim", "yahoo", "jgt", "bio-info");
|
181 |
foreach ($db_wp_fields_independent as $wp_field_independent) {
|
182 |
if (isset($_POST['show_wp_'.$wp_field_independent])) {
|
183 |
array_push($options['wp_hidden_fields'], $wp_field_independent);
|
@@ -679,6 +679,12 @@ function cimy_show_options($results, $embedded) {
|
|
679 |
<br />
|
680 |
<h3><?php _e("WordPress hidden fields", $cimy_uef_domain); ?></h3>
|
681 |
<table class="form-table">
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
<tr>
|
683 |
<th scope="row" width="40%"><input type="checkbox" name="show_wp_password" value="1"<?php checked(true, in_array('password', $options['wp_hidden_fields']), true); disabled(true, $db_wp_fields < 0, true); ?> /> <?php _e("Show password", $cimy_uef_domain); ?></th>
|
684 |
<td width="60%"></td>
|
177 |
else
|
178 |
$options['password_meter'] = false;
|
179 |
|
180 |
+
$db_wp_fields_independent = array("username", "firstname", "lastname", "nickname", "website", "aim", "yahoo", "jgt", "bio-info");
|
181 |
foreach ($db_wp_fields_independent as $wp_field_independent) {
|
182 |
if (isset($_POST['show_wp_'.$wp_field_independent])) {
|
183 |
array_push($options['wp_hidden_fields'], $wp_field_independent);
|
679 |
<br />
|
680 |
<h3><?php _e("WordPress hidden fields", $cimy_uef_domain); ?></h3>
|
681 |
<table class="form-table">
|
682 |
+
<?php if (!is_multisite()) { ?>
|
683 |
+
<tr>
|
684 |
+
<th scope="row" width="40%"><input type="checkbox" name="show_wp_username" value="1"<?php checked(true, in_array('username', $options['wp_hidden_fields']), true); disabled(true, $db_wp_fields < 0, true); ?> /> <?php _e("Show username", $cimy_uef_domain); ?></th>
|
685 |
+
<td width="60%"><?php _e("when unchecked the email address will be used as username", $cimy_uef_domain); ?></td>
|
686 |
+
</tr>
|
687 |
+
<?php } ?>
|
688 |
<tr>
|
689 |
<th scope="row" width="40%"><input type="checkbox" name="show_wp_password" value="1"<?php checked(true, in_array('password', $options['wp_hidden_fields']), true); disabled(true, $db_wp_fields < 0, true); ?> /> <?php _e("Show password", $cimy_uef_domain); ?></th>
|
690 |
<td width="60%"></td>
|
cimy_uef_register.php
CHANGED
@@ -257,7 +257,7 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
|
|
257 |
|
258 |
$userdata = array();
|
259 |
$userdata['ID'] = $user_id;
|
260 |
-
$userdata[$wp_hidden_fields[$f_name]['
|
261 |
|
262 |
wp_update_user($userdata);
|
263 |
}
|
@@ -315,11 +315,19 @@ function cimy_profile_check_wrapper($errors, $update, $user) {
|
|
315 |
}
|
316 |
|
317 |
function cimy_registration_check($user_login, $user_email, $errors) {
|
318 |
-
global $wpdb, $rule_canbeempty, $rule_email, $rule_maxlen, $fields_name_prefix, $wp_fields_name_prefix, $rule_equalto_case_sensitive, $apply_equalto_rule, $cimy_uef_domain, $cimy_uef_file_types, $rule_equalto_regex, $user_level, $cimy_uef_file_images_types;
|
319 |
|
320 |
if (cimy_is_at_least_wordpress35())
|
321 |
cimy_switch_to_blog();
|
322 |
$options = cimy_get_options();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
|
324 |
// code for confirmation email check
|
325 |
if ((!is_multisite()) && ($options["confirm_email"])) {
|
@@ -340,11 +348,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
340 |
$from_profile = false;
|
341 |
if (!empty($_POST["from"]) && $_POST["from"] == "profile")
|
342 |
$from_profile = true;
|
343 |
-
|
344 |
-
if ($from_profile)
|
345 |
-
$i = 2;
|
346 |
-
else
|
347 |
-
$i = 1;
|
348 |
|
349 |
// do first for the WP fields then for EXTRA fields
|
350 |
while ($i <= 2) {
|
@@ -365,7 +369,15 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
365 |
$label = esc_html($thisField['LABEL']);
|
366 |
$description = $thisField['DESCRIPTION'];
|
367 |
$unique_id = $prefix.$field_id;
|
368 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
$field_id_data = $input_name."_".$field_id."_data";
|
370 |
|
371 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
@@ -396,10 +408,17 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
396 |
continue;
|
397 |
|
398 |
if ($from_profile) {
|
399 |
-
$
|
400 |
-
|
401 |
-
|
402 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
}
|
404 |
|
405 |
if (isset($_POST[$input_name])) {
|
@@ -636,6 +655,22 @@ function cimy_registration_captcha_check($user_login, $user_email, $errors) {
|
|
636 |
return $errors;
|
637 |
}
|
638 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
// show_type == 0 - normal form
|
640 |
// show_type == 1 - search form, all fields are text, password fields are skipped
|
641 |
// show_type == 2 - confirmation form, all fields are plain text, images can be cropped
|
@@ -679,6 +714,19 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
679 |
|
680 |
// confirmation page, all fields are plain text + hidden fields to carry over values
|
681 |
if ($show_type == 2) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
$upload_dir = cimy_uef_get_dir_or_filename("");
|
683 |
$dirs = glob($upload_dir.".cimytemp_*.tmp");
|
684 |
if (is_array($dirs)) {
|
@@ -693,16 +741,14 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
693 |
}
|
694 |
}
|
695 |
|
696 |
-
$temp_user_login = ".cimytemp_".sanitize_user($
|
697 |
?>
|
698 |
-
|
699 |
-
|
700 |
-
<
|
701 |
-
|
702 |
-
|
703 |
-
<
|
704 |
-
</p>
|
705 |
-
<br />
|
706 |
<?php
|
707 |
}
|
708 |
|
@@ -740,6 +786,9 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
740 |
$field_id_data = $input_name."_".$field_id."_data";
|
741 |
$advanced_options = cimy_uef_parse_advanced_options($rules["advanced_options"]);
|
742 |
|
|
|
|
|
|
|
743 |
// showing the search then there is no need for upload buttons
|
744 |
if ($show_type == 1) {
|
745 |
if ($type == "password")
|
@@ -1057,8 +1106,10 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
1057 |
else if ($type == "hidden") {
|
1058 |
$form_object.= " />".$obj_value2;
|
1059 |
if (in_array($old_type, $cimy_uef_file_types)) {
|
1060 |
-
|
1061 |
-
|
|
|
|
|
1062 |
}
|
1063 |
if ((in_array($old_type, $cimy_uef_file_images_types)) && (is_file($file_on_server))) {
|
1064 |
echo '<img id="'.esc_attr($field_id_data).'" src="'.esc_attr($value).'" alt="picture" /><br />';
|
257 |
|
258 |
$userdata = array();
|
259 |
$userdata['ID'] = $user_id;
|
260 |
+
$userdata[$wp_hidden_fields[$f_name]['userdata_name']] = $data;
|
261 |
|
262 |
wp_update_user($userdata);
|
263 |
}
|
315 |
}
|
316 |
|
317 |
function cimy_registration_check($user_login, $user_email, $errors) {
|
318 |
+
global $wpdb, $rule_canbeempty, $rule_email, $rule_maxlen, $fields_name_prefix, $wp_fields_name_prefix, $rule_equalto_case_sensitive, $apply_equalto_rule, $cimy_uef_domain, $cimy_uef_file_types, $rule_equalto_regex, $user_level, $cimy_uef_file_images_types, $wp_hidden_fields;
|
319 |
|
320 |
if (cimy_is_at_least_wordpress35())
|
321 |
cimy_switch_to_blog();
|
322 |
$options = cimy_get_options();
|
323 |
+
if (!in_array("username", $options["wp_hidden_fields"])) {
|
324 |
+
// ok username is empty, we are replacing it with the email, don't bother
|
325 |
+
if (isset($errors->errors['empty_username']))
|
326 |
+
unset($errors->errors['empty_username']);
|
327 |
+
// remove username exists error only if email exists error is there covering for us
|
328 |
+
if (isset($errors->errors['username_exists']) && isset($errors->errors['email_exists']))
|
329 |
+
unset($errors->errors['username_exists']);
|
330 |
+
}
|
331 |
|
332 |
// code for confirmation email check
|
333 |
if ((!is_multisite()) && ($options["confirm_email"])) {
|
348 |
$from_profile = false;
|
349 |
if (!empty($_POST["from"]) && $_POST["from"] == "profile")
|
350 |
$from_profile = true;
|
351 |
+
$i = 1;
|
|
|
|
|
|
|
|
|
352 |
|
353 |
// do first for the WP fields then for EXTRA fields
|
354 |
while ($i <= 2) {
|
369 |
$label = esc_html($thisField['LABEL']);
|
370 |
$description = $thisField['DESCRIPTION'];
|
371 |
$unique_id = $prefix.$field_id;
|
372 |
+
// Usernames cannot be changed after the registration
|
373 |
+
if ($i == 1 && $name == "USERNAME" && $from_profile)
|
374 |
+
continue;
|
375 |
+
|
376 |
+
// use WP input name for the username (always) or when updating the profile
|
377 |
+
if ($i == 1 && ($name == "USERNAME" || $from_profile))
|
378 |
+
$input_name = $wp_hidden_fields[strtolower($name)]['post_name'];
|
379 |
+
else
|
380 |
+
$input_name = $prefix.esc_attr($name);
|
381 |
$field_id_data = $input_name."_".$field_id."_data";
|
382 |
|
383 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
408 |
continue;
|
409 |
|
410 |
if ($from_profile) {
|
411 |
+
if ($i == 1) {
|
412 |
+
// Do not bother with the rules if encountered an empty password field on profile update
|
413 |
+
if ($type == "password")
|
414 |
+
continue;
|
415 |
+
}
|
416 |
+
else {
|
417 |
+
$old_value = $_POST[$input_name."_".$field_id."_prev_value"];
|
418 |
+
// Hey, no need to check for rules if anyway I can't edit due to low permissions, neeeext!
|
419 |
+
if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
|
420 |
+
continue;
|
421 |
+
}
|
422 |
}
|
423 |
|
424 |
if (isset($_POST[$input_name])) {
|
655 |
return $errors;
|
656 |
}
|
657 |
|
658 |
+
function cimy_uef_sanitize_username($username, $raw_username, $strict) {
|
659 |
+
$options = cimy_get_options();
|
660 |
+
if (!in_array("username", $options["wp_hidden_fields"]) && !empty($_POST['user_email']) && is_email($_POST['user_email']) && !empty($_GET['action']) && $_GET['action'] == 'register') {
|
661 |
+
$username = $_POST['user_email'];
|
662 |
+
}
|
663 |
+
return $username;
|
664 |
+
}
|
665 |
+
|
666 |
+
function cimy_uef_validate_username($valid, $username) {
|
667 |
+
$options = cimy_get_options();
|
668 |
+
if (!in_array("username", $options["wp_hidden_fields"]) && empty($username) && !empty($_GET['action']) && $_GET['action'] == 'register') {
|
669 |
+
return true;
|
670 |
+
}
|
671 |
+
return $valid;
|
672 |
+
}
|
673 |
+
|
674 |
// show_type == 0 - normal form
|
675 |
// show_type == 1 - search form, all fields are text, password fields are skipped
|
676 |
// show_type == 2 - confirmation form, all fields are plain text, images can be cropped
|
714 |
|
715 |
// confirmation page, all fields are plain text + hidden fields to carry over values
|
716 |
if ($show_type == 2) {
|
717 |
+
$user_email = $_POST["user_email"];
|
718 |
+
if (in_array("username", $options["wp_hidden_fields"])) {
|
719 |
+
$username = $_POST["user_login"];
|
720 |
+
?>
|
721 |
+
<p id="user_login_p">
|
722 |
+
<label for="user_login"><?php _e("Username"); ?> </label><?php echo esc_html($username); ?>
|
723 |
+
</p>
|
724 |
+
<?php
|
725 |
+
}
|
726 |
+
else {
|
727 |
+
$username = $user_email;
|
728 |
+
}
|
729 |
+
|
730 |
$upload_dir = cimy_uef_get_dir_or_filename("");
|
731 |
$dirs = glob($upload_dir.".cimytemp_*.tmp");
|
732 |
if (is_array($dirs)) {
|
741 |
}
|
742 |
}
|
743 |
|
744 |
+
$temp_user_login = ".cimytemp_".sanitize_user($username).'_'.rand().'.tmp';
|
745 |
?>
|
746 |
+
<input type="hidden" name="temp_user_login" value="<?php echo esc_attr($temp_user_login); ?>" />
|
747 |
+
<input type="hidden" name="user_login" id="user_login" value="<?php echo esc_attr($username); ?>" />
|
748 |
+
<p id="user_email_p">
|
749 |
+
<label for="user_email"><?php _e("E-mail"); ?> </label><input type="hidden" name="user_email" id="user_email" value="<?php echo esc_attr($user_email); ?>" /><?php echo esc_html($user_email); ?>
|
750 |
+
</p>
|
751 |
+
<br />
|
|
|
|
|
752 |
<?php
|
753 |
}
|
754 |
|
786 |
$field_id_data = $input_name."_".$field_id."_data";
|
787 |
$advanced_options = cimy_uef_parse_advanced_options($rules["advanced_options"]);
|
788 |
|
789 |
+
// do not dupe username
|
790 |
+
if ($i == 1 && $name == "USERNAME")
|
791 |
+
continue;
|
792 |
// showing the search then there is no need for upload buttons
|
793 |
if ($show_type == 1) {
|
794 |
if ($type == "password")
|
1106 |
else if ($type == "hidden") {
|
1107 |
$form_object.= " />".$obj_value2;
|
1108 |
if (in_array($old_type, $cimy_uef_file_types)) {
|
1109 |
+
$f_size = empty($_FILES[$input_name]['size']) ? 0 : $_FILES[$input_name]['size'];
|
1110 |
+
$f_type = empty($_FILES[$input_name]['type']) ? "" : $_FILES[$input_name]['type'];
|
1111 |
+
echo "<input type=\"hidden\" name=\"".esc_attr($field_id_data)."_size\" id=\"".esc_attr($field_id_data)."_size\" value=\"".esc_attr(strval($f_size / 1024))."\" />";
|
1112 |
+
echo "<input type=\"hidden\" name=\"".esc_attr($field_id_data)."_type\" id=\"".esc_attr($field_id_data)."_type\" value=\"".esc_attr(strval($f_type))."\" />";
|
1113 |
}
|
1114 |
if ((in_array($old_type, $cimy_uef_file_images_types)) && (is_file($file_on_server))) {
|
1115 |
echo '<img id="'.esc_attr($field_id_data).'" src="'.esc_attr($value).'" alt="picture" /><br />';
|
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 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
License: GPL2
|
@@ -160,7 +160,7 @@ require_once($cuef_plugin_dir.'/cimy_uef_profile.php');
|
|
160 |
add_action('admin_init', 'cimy_uef_admin_init');
|
161 |
|
162 |
$cimy_uef_name = "Cimy User Extra Fields";
|
163 |
-
$cimy_uef_version = "2.
|
164 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
165 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
166 |
|
@@ -184,9 +184,32 @@ cimy_uef_i18n_setup();
|
|
184 |
// $wp_password_description = __('<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!', $cimy_uef_domain);
|
185 |
|
186 |
$wp_hidden_fields = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
'password' => array(
|
188 |
'name' => "PASSWORD",
|
189 |
-
'
|
|
|
190 |
'type' => "password",
|
191 |
'label' => __("Password"),
|
192 |
'desc' => '',
|
@@ -207,7 +230,8 @@ $wp_hidden_fields = array(
|
|
207 |
),
|
208 |
'password2' => array(
|
209 |
'name' => "PASSWORD2",
|
210 |
-
'
|
|
|
211 |
'type' => "password",
|
212 |
'label' => __("Password confirmation", $cimy_uef_domain),
|
213 |
'desc' => '',
|
@@ -228,6 +252,7 @@ $wp_hidden_fields = array(
|
|
228 |
),
|
229 |
'firstname' => array(
|
230 |
'name' => "FIRSTNAME",
|
|
|
231 |
'post_name' => "first_name",
|
232 |
'type' => "text",
|
233 |
'label' => __("First name"),
|
@@ -249,6 +274,7 @@ $wp_hidden_fields = array(
|
|
249 |
),
|
250 |
'lastname' => array(
|
251 |
'name' => "LASTNAME",
|
|
|
252 |
'post_name' => "last_name",
|
253 |
'type' => "text",
|
254 |
'label' => __("Last name"),
|
@@ -270,6 +296,7 @@ $wp_hidden_fields = array(
|
|
270 |
),
|
271 |
'nickname' => array(
|
272 |
'name' => "NICKNAME",
|
|
|
273 |
'post_name' => "nickname",
|
274 |
'type' => "text",
|
275 |
'label' => __("Nickname"),
|
@@ -291,7 +318,8 @@ $wp_hidden_fields = array(
|
|
291 |
),
|
292 |
'website' => array(
|
293 |
'name' => "WEBSITE",
|
294 |
-
'
|
|
|
295 |
'type' => "text",
|
296 |
'label' => __("Website"),
|
297 |
'desc' => '',
|
@@ -312,6 +340,7 @@ $wp_hidden_fields = array(
|
|
312 |
),
|
313 |
'aim' => array(
|
314 |
'name' => "AIM",
|
|
|
315 |
'post_name' => "aim",
|
316 |
'type' => "text",
|
317 |
'label' => __("AIM"),
|
@@ -333,6 +362,7 @@ $wp_hidden_fields = array(
|
|
333 |
),
|
334 |
'yahoo' => array(
|
335 |
'name' => "YAHOO",
|
|
|
336 |
'post_name' => "yim",
|
337 |
'type' => "text",
|
338 |
'label' => __("Yahoo IM"),
|
@@ -354,6 +384,7 @@ $wp_hidden_fields = array(
|
|
354 |
),
|
355 |
'jgt' => array(
|
356 |
'name' => "JGT",
|
|
|
357 |
'post_name' => "jabber",
|
358 |
'type' => "text",
|
359 |
'label' => __("Jabber / Google Talk"),
|
@@ -375,6 +406,7 @@ $wp_hidden_fields = array(
|
|
375 |
),
|
376 |
'bio-info' => array(
|
377 |
'name' => "BIO-INFO",
|
|
|
378 |
'post_name' => "description",
|
379 |
'type' => "textarea",
|
380 |
'label' => __("Biographical Info"),
|
@@ -542,6 +574,10 @@ else {
|
|
542 |
add_filter('registration_redirect', 'cimy_uef_registration_redirect');
|
543 |
// this is needed only in the case where both redirection and email confirmation has been enabled
|
544 |
add_action('login_form_cimy_uef_redirect', 'cimy_uef_redirect');
|
|
|
|
|
|
|
|
|
545 |
}
|
546 |
|
547 |
// with Theme My Login is more complicated, but we know how to workaround it
|
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.5.0
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
License: GPL2
|
160 |
add_action('admin_init', 'cimy_uef_admin_init');
|
161 |
|
162 |
$cimy_uef_name = "Cimy User Extra Fields";
|
163 |
+
$cimy_uef_version = "2.5.0";
|
164 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
165 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
166 |
|
184 |
// $wp_password_description = __('<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!', $cimy_uef_domain);
|
185 |
|
186 |
$wp_hidden_fields = array(
|
187 |
+
'username' => array(
|
188 |
+
'name' => "USERNAME",
|
189 |
+
'userdata_name' => "user_login",
|
190 |
+
'post_name' => "user_login",
|
191 |
+
'type' => "text",
|
192 |
+
'label' => __("Username"),
|
193 |
+
'desc' => '',
|
194 |
+
'value' => '',
|
195 |
+
'store_rule' => array(
|
196 |
+
'max_length' => 100,
|
197 |
+
'can_be_empty' => false,
|
198 |
+
'edit' => 'ok_edit',
|
199 |
+
'email' => false,
|
200 |
+
'show_in_reg' => true,
|
201 |
+
'show_in_profile' => true,
|
202 |
+
'show_in_aeu' => true,
|
203 |
+
'show_in_search' => true,
|
204 |
+
'show_in_blog' => true,
|
205 |
+
'show_level' => -1,
|
206 |
+
'advanced_options' => '',
|
207 |
+
),
|
208 |
+
),
|
209 |
'password' => array(
|
210 |
'name' => "PASSWORD",
|
211 |
+
'userdata_name' => "user_pass",
|
212 |
+
'post_name' => "pass1",
|
213 |
'type' => "password",
|
214 |
'label' => __("Password"),
|
215 |
'desc' => '',
|
230 |
),
|
231 |
'password2' => array(
|
232 |
'name' => "PASSWORD2",
|
233 |
+
'userdata_name' => "user_pass2",
|
234 |
+
'post_name' => "pass2",
|
235 |
'type' => "password",
|
236 |
'label' => __("Password confirmation", $cimy_uef_domain),
|
237 |
'desc' => '',
|
252 |
),
|
253 |
'firstname' => array(
|
254 |
'name' => "FIRSTNAME",
|
255 |
+
'userdata_name' => "first_name",
|
256 |
'post_name' => "first_name",
|
257 |
'type' => "text",
|
258 |
'label' => __("First name"),
|
274 |
),
|
275 |
'lastname' => array(
|
276 |
'name' => "LASTNAME",
|
277 |
+
'userdata_name' => "last_name",
|
278 |
'post_name' => "last_name",
|
279 |
'type' => "text",
|
280 |
'label' => __("Last name"),
|
296 |
),
|
297 |
'nickname' => array(
|
298 |
'name' => "NICKNAME",
|
299 |
+
'userdata_name' => "nickname",
|
300 |
'post_name' => "nickname",
|
301 |
'type' => "text",
|
302 |
'label' => __("Nickname"),
|
318 |
),
|
319 |
'website' => array(
|
320 |
'name' => "WEBSITE",
|
321 |
+
'userdata_name' => "user_url",
|
322 |
+
'post_name' => "url",
|
323 |
'type' => "text",
|
324 |
'label' => __("Website"),
|
325 |
'desc' => '',
|
340 |
),
|
341 |
'aim' => array(
|
342 |
'name' => "AIM",
|
343 |
+
'userdata_name' => "aim",
|
344 |
'post_name' => "aim",
|
345 |
'type' => "text",
|
346 |
'label' => __("AIM"),
|
362 |
),
|
363 |
'yahoo' => array(
|
364 |
'name' => "YAHOO",
|
365 |
+
'userdata_name' => "yim",
|
366 |
'post_name' => "yim",
|
367 |
'type' => "text",
|
368 |
'label' => __("Yahoo IM"),
|
384 |
),
|
385 |
'jgt' => array(
|
386 |
'name' => "JGT",
|
387 |
+
'userdata_name' => "jabber",
|
388 |
'post_name' => "jabber",
|
389 |
'type' => "text",
|
390 |
'label' => __("Jabber / Google Talk"),
|
406 |
),
|
407 |
'bio-info' => array(
|
408 |
'name' => "BIO-INFO",
|
409 |
+
'userdata_name' => "description",
|
410 |
'post_name' => "description",
|
411 |
'type' => "textarea",
|
412 |
'label' => __("Biographical Info"),
|
574 |
add_filter('registration_redirect', 'cimy_uef_registration_redirect');
|
575 |
// this is needed only in the case where both redirection and email confirmation has been enabled
|
576 |
add_action('login_form_cimy_uef_redirect', 'cimy_uef_redirect');
|
577 |
+
|
578 |
+
// add filter to replace the username with the email
|
579 |
+
add_filter('sanitize_user', 'cimy_uef_sanitize_username', 1, 3);
|
580 |
+
add_filter('validate_username', 'cimy_uef_validate_username', 1, 2);
|
581 |
}
|
582 |
|
583 |
// with Theme My Login is more complicated, but we know how to workaround it
|
css/cimy_uef_register_nousername.css
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#user_login {
|
2 |
+
display: none;
|
3 |
+
}
|
4 |
+
|
5 |
+
p:first-child {
|
6 |
+
display: none;
|
7 |
+
}
|
langs/cimy_uef-ar.mo
CHANGED
Binary file
|
langs/cimy_uef-ar.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Mamoun Elkheir <krikabat@hotmail.com>\n"
|
9 |
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,144 +16,145 @@ msgstr ""
|
|
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:440
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
22 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
35 |
msgid "ERROR"
|
36 |
msgstr "خطأ"
|
37 |
|
38 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
39 |
msgid "does not match."
|
40 |
msgstr "غير متفقة."
|
41 |
|
42 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
43 |
msgid "hasn’t a correct email syntax."
|
44 |
msgstr "صيغة البريد اللإلكتروني غير صحيحة."
|
45 |
|
46 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
47 |
msgid "couldn’t be empty."
|
48 |
msgstr "لا يمكن أن تكون فارغة."
|
49 |
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
msgid "isn’t correct"
|
53 |
msgstr "غير صحيحة"
|
54 |
|
55 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "YES"
|
59 |
msgstr "نعم"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
msgid "NO"
|
65 |
msgstr "لا"
|
66 |
|
67 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
68 |
msgid "should be"
|
69 |
msgstr "يجب أن"
|
70 |
|
71 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
72 |
msgid "should be an image."
|
73 |
msgstr "يجب أن تكون صورة."
|
74 |
|
75 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
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:
|
80 |
msgid "couldn’t have size less than"
|
81 |
msgstr "لا يمكن أن يكون حجمها أقل من"
|
82 |
|
83 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
84 |
msgid "couldn’t have length less than"
|
85 |
msgstr "لا يمكن أن يكون طولها أقل من"
|
86 |
|
87 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
88 |
msgid "couldn’t have size different than"
|
89 |
msgstr "لا يمكن أن يختلف حجمها عن"
|
90 |
|
91 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
92 |
msgid "couldn’t have length different than"
|
93 |
msgstr "لا يمكن أن يختلف طولها عن"
|
94 |
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
msgid "couldn’t have size more than"
|
97 |
msgstr "لا يمكن أن يزيد حجمها عن"
|
98 |
|
99 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
100 |
msgid "couldn’t have length more than"
|
101 |
msgstr "لا يمكن أن يزيد طولها عن"
|
102 |
|
103 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
105 |
msgid "Typed code is not correct."
|
106 |
msgstr "الشفرة المكتوبة غير صحيحة."
|
107 |
|
108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
111 |
msgid "Username"
|
112 |
msgstr "اسم المستخدم"
|
113 |
|
114 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
msgid "E-mail"
|
118 |
msgstr "البريد الإلكتروني"
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
121 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
122 |
msgid "Please upload a file with one of the following extensions"
|
123 |
msgstr "الرجاء تحميل ملف بأحد الامتدادات الآتية"
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
126 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
128 |
msgid "Please upload an image with one of the following extensions"
|
129 |
msgstr "الرجاء تحميل صورة بأحد الامتدادات الآتية"
|
130 |
|
131 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
132 |
msgid "Strength indicator"
|
133 |
msgstr "مؤشر القوة"
|
134 |
|
135 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
136 |
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 ! \" ? $ % ^ & )."
|
137 |
msgstr "تلميح: كلمة المرور يجب أن يكون طولها على الأقل 7 أحرف. ولجعلها أقوى، استخدم حروفاً متنوعة وأرقاماً ورموزاً مثل ! \" ? $ % ^ & )."
|
138 |
|
139 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
140 |
msgid "Change image"
|
141 |
msgstr "تغيير الصورة"
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
144 |
msgid "Insert the code:"
|
145 |
msgstr "أدخل الشفرة:"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
149 |
msgid "Confirm your registration"
|
150 |
msgstr "تأكيد تسجيلك"
|
151 |
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
153 |
msgid "A password will be e-mailed to you."
|
154 |
msgstr "سيتم إرسال كلمة المرور على بريدك الإلكتروني."
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
157 |
msgid "← Back"
|
158 |
msgstr "← إلى الخلف"
|
159 |
|
@@ -178,17 +179,17 @@ msgid "Change order"
|
|
178 |
msgstr "تغيير الترتيب"
|
179 |
|
180 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
181 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
182 |
msgid "Min length"
|
183 |
msgstr "أقل طول"
|
184 |
|
185 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
186 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
187 |
msgid "Exact length"
|
188 |
msgstr "الطول بالتحديد"
|
189 |
|
190 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
191 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
192 |
msgid "Max length"
|
193 |
msgstr "أقصى طول"
|
194 |
|
@@ -210,421 +211,421 @@ msgid "You cannot give an order that misses some numbers"
|
|
210 |
msgstr "لا يمكن إعطاء ترتيب يفقد بعد الأعداد"
|
211 |
|
212 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
213 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
214 |
msgid "Nothing selected"
|
215 |
msgstr "لم يتم اختيار شيء"
|
216 |
|
217 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
218 |
msgid "Field(s)"
|
219 |
msgstr "الحقل أو الحقول"
|
220 |
|
221 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
222 |
msgid "deleted correctly"
|
223 |
msgstr "تم حذفها بشكل صحيح"
|
224 |
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
226 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
227 |
msgid "Min size"
|
228 |
msgstr "أقل حجم"
|
229 |
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
232 |
msgid "Exact size"
|
233 |
msgstr "الحجم بالتحديد"
|
234 |
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
237 |
msgid "Max size"
|
238 |
msgstr "أقصى حجم"
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
241 |
msgid "Exact or Max size"
|
242 |
msgstr "الحجم بالتحديد أو الأقصى"
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
245 |
msgid "Name not specified"
|
246 |
msgstr "لم يتم تحديد الاسم"
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
249 |
msgid "Name cannot contains spaces"
|
250 |
msgstr "لا يمكن أن يحتوي الاسم على فراغات"
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
253 |
msgid "Label not specified"
|
254 |
msgstr "لم يتم تحديد العنوان"
|
255 |
|
256 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
257 |
msgid "not selected (with this type is necessary)"
|
258 |
msgstr "لم يتم تحديده (ضروري لهذا النوع)"
|
259 |
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
261 |
msgid "If you select"
|
262 |
msgstr "إذا اخترت"
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
265 |
msgid "you cannot select Min or Max"
|
266 |
msgstr "لا يمكنك اختيار أقل أو أقصى"
|
267 |
|
268 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
msgid "should be in the range of"
|
272 |
msgstr "يجب أن يكون في المدى"
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
275 |
msgid "Equal TO not specified"
|
276 |
msgstr "لم يتم تحديد القيمة المساواة"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
279 |
msgid "With checkbox type Equal TO can only be"
|
280 |
msgstr "لنوع مربعات التأشير المساواة يمكن فقط أن تكون"
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
283 |
msgid "With radio type Equal TO can only be"
|
284 |
msgstr "لنوع اختيار الدوائر المساواة يمكن فقط أن تكون"
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
287 |
msgid "With checkbox type Value can only be"
|
288 |
msgstr "لنوع مربعات التأشير القيمة يمكن فقط أن تكون"
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
291 |
msgid "With radio type Value can only be"
|
292 |
msgstr "لنوع اختيار الدوائر القيمة يمكن فقط أن تكون"
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
295 |
msgid "Field inserted correctly"
|
296 |
msgstr "تم إدخال الحقل بشكل صحيح"
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
299 |
msgid "Field #"
|
300 |
msgstr "رقم الحقل"
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
303 |
msgid "updated correctly"
|
304 |
msgstr "تم تحديثه بشكل صحيح"
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
307 |
msgid "Name inserted is just in the database, change to another one"
|
308 |
msgstr "الاسم المدخل موجود في قاعدة البيانات، اختر اسماً غيره"
|
309 |
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
312 |
msgid "Add a new Field"
|
313 |
msgstr "إضافة حقل جديد"
|
314 |
|
315 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
316 |
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."
|
317 |
msgstr "لإضافة حقل جديد يجب اختيار اسم ونوع وعنوان له؛ أما النوع والوصف فاختياريان. يتم تطبيق القواعد عند تسجيل المستخدمين."
|
318 |
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
320 |
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'"
|
321 |
msgstr "بخصوص <strong>دوائر الاختيار</strong> و<strong>مربعات التأشير</strong>: <em>القيمة</em> і <em>والمساواة</em> يمكن فقط أن تكون 'نعم' أو 'لا' بما يعني 'مختار' أو 'غير مختار'"
|
322 |
|
323 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
324 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
325 |
msgstr "بخصوص <strong>القائمة المنسدلة</strong>: يجب أن تكتب كل الخيارات في العنوان، مثلاً: العنوان/الخيار الأول,الخيار الثاني,الخيار الثالث"
|
326 |
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
328 |
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"
|
329 |
msgstr "بخصوص <strong>الصورة</strong>: يجب تزويد صورة افتراضية بوضع رابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> تعني أقصى حجم بيكسل (طول أو عرض) للصور المصغرة"
|
330 |
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
332 |
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)"
|
333 |
msgstr "بخصوص <strong>رابط الصورة</strong>: يمكنك تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ <em>المساواة</em> تعني أقصى عرض للحجم بالبيكسل (الطول متناسب)"
|
334 |
|
335 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
336 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
337 |
msgstr "بخصوص <strong>تاريخ التسجيل</strong>: <em>المساواة</em> تعني صيغة التاريخ والوقت"
|
338 |
|
339 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
340 |
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"
|
341 |
msgstr "بخصوص <strong>الأفاتار</strong>: يمكن تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> يتم ضيطها تلقائياً على 512 بيكسل"
|
342 |
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
344 |
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"
|
345 |
msgstr "بخصوص <strong>ملف</strong>: يمكن تزويد ملف افتراضي بوضع الرابط <em>القيمة</em>؛ 'أقل وبالتحديد وأكبر حجم' بوحدة KB؛ في <em>المساواة</em> يمكن تحديد الامتدادات المسموحة مفصولة بفاصلة لاتينية، مثلاً:: zip, pdf, doc"
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
msgid "Name"
|
354 |
msgstr "الاسم"
|
355 |
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
msgid "Value"
|
363 |
msgstr "القيمة"
|
364 |
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
369 |
msgid "Type"
|
370 |
msgstr "النوع"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
374 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
msgid "Label"
|
377 |
msgstr "العنوان"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
383 |
msgid "Description"
|
384 |
msgstr "الوصف"
|
385 |
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
388 |
msgid "Rules"
|
389 |
msgstr "القواعد"
|
390 |
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
393 |
msgid "Actions"
|
394 |
msgstr "الإجراءات"
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
400 |
msgid "Fieldset"
|
401 |
msgstr "Fieldset"
|
402 |
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
msgid "Can be empty"
|
406 |
msgstr "يمكن أن يكون فارغاً"
|
407 |
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
msgid "Check for E-mail syntax"
|
411 |
msgstr "التأكد من صيغة البريد الإلكتروني"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
msgid "Can be modified"
|
416 |
msgstr "يمكن تعديلها"
|
417 |
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
420 |
msgid "Can be modified only if empty"
|
421 |
msgstr "يمكن تعديلها فقط في حالة كونها فارغة"
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
425 |
msgid "Can be modified only by admin"
|
426 |
msgstr "يمكن تعديلها فقط بواسطة المدير"
|
427 |
|
428 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
430 |
msgid "Can be modified only by admin or if empty"
|
431 |
msgstr "يمكن تعديلها فقط بواسطة المدير في حالة كونها فارغة"
|
432 |
|
433 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
435 |
msgid "Cannot be modified"
|
436 |
msgstr "لا يمكن تعديلها"
|
437 |
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
440 |
msgid "Should be equal TO"
|
441 |
msgstr "يجب أن تساوي"
|
442 |
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
445 |
msgid "Case sensitive"
|
446 |
msgstr "حساسة لحجم الحروف"
|
447 |
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
450 |
msgid "Regular Expression"
|
451 |
msgstr "تعبير اعتيادي"
|
452 |
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
455 |
msgid "Show the field in the registration"
|
456 |
msgstr "إظهار الحقل عند التسجيل"
|
457 |
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
460 |
msgid "Show the field in User's profile"
|
461 |
msgstr "إظهار الحقل في الملف الشخصي للمستخدم"
|
462 |
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
465 |
msgid "Show the field in Users Extended section"
|
466 |
msgstr "إظهار الحقل في قائمة المستخدمين الممتدة (Users Extneded)"
|
467 |
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
470 |
msgid "Show the field in the search engine"
|
471 |
msgstr "إظهار الحقل في محرك البحث"
|
472 |
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
475 |
msgid "Show the field in the blog"
|
476 |
msgstr "إظهار الحقل في الموقع"
|
477 |
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
480 |
msgid "Show the field if the role is at least:"
|
481 |
msgstr "إظهار الحقل فقط إذا كانت الوظيفة على الأقل:"
|
482 |
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
485 |
msgid "Anonymous"
|
486 |
msgstr "مجهول"
|
487 |
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
490 |
msgid "User has 'view_cimy_extra_fields' capability"
|
491 |
msgstr "المستخدم يمتلك صلاحية 'view_cimy_extra_fields'"
|
492 |
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
495 |
msgid "Send an email to the admin if the user changes its value"
|
496 |
msgstr "إرسال بريد إلكتروني للمدير إذا غير المستخدم قيمتها"
|
497 |
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
499 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
500 |
msgid "Advanced options"
|
501 |
msgstr "خيارات متقدمة"
|
502 |
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
504 |
msgid "Clear"
|
505 |
msgstr "تفريغ"
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
508 |
msgid "Invert selection"
|
509 |
msgstr "عكس التحديد"
|
510 |
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
512 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
513 |
msgstr "هل أنت متأكد أنك تريد حذف الحقل/الحقول وكل البيانات فيها المدخلة بواسطة المستخدمين؟"
|
514 |
|
515 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
516 |
msgid "WordPress Fields"
|
517 |
msgstr "حقول WordPress"
|
518 |
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
523 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
525 |
msgid "Extra Fields"
|
526 |
msgstr "الحقول الإضافية (Extra Fields)"
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
529 |
msgid "None!"
|
530 |
msgstr "لا يوجد!"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
534 |
msgid "Order"
|
535 |
msgstr "الترتيب"
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "Reset"
|
539 |
msgstr "استعادة"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
542 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
543 |
msgid "SUCCESSFUL"
|
544 |
msgstr "تم بنجاح"
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
548 |
msgid "select"
|
549 |
msgstr "اختيار"
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
553 |
msgid "Users per page"
|
554 |
msgstr "عدد المستخدمين في الصحفة"
|
555 |
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
msgid "Apply"
|
559 |
msgstr "تنفيذ"
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
562 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
563 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
564 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
565 |
msgid "Users Extended"
|
566 |
msgstr "Users Extneded"
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
#, php-format
|
570 |
msgid "Search results for “%s”"
|
571 |
msgstr "البحث عن نتائج تخص “%s”"
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
574 |
#, php-format
|
575 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
576 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
579 |
msgid "Search Users"
|
580 |
msgstr "البحث في المستخدمين"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
msgid "Role"
|
585 |
msgstr "الوظيفة"
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
590 |
msgid "Website"
|
591 |
msgstr "الموقع"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
595 |
msgid "Posts"
|
596 |
msgstr "المقالات"
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
msgid "View posts by this author"
|
600 |
msgstr "مشاهدة المقالات بواسطة هذا الكاتب"
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
603 |
msgid "Super Admin"
|
604 |
msgstr "المدير الشامل"
|
605 |
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
607 |
#, php-format
|
608 |
msgid "e-mail: %s"
|
609 |
msgstr "البريد الإلكتروني: %s"
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
612 |
msgid "Change"
|
613 |
msgstr "تغيير"
|
614 |
|
615 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
616 |
msgid "Update selected users"
|
617 |
msgstr "تحديث المستخدمين المختارين"
|
618 |
|
619 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
620 |
msgid "Update"
|
621 |
msgstr "تحديث"
|
622 |
|
623 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
624 |
msgid "OK"
|
625 |
msgstr "إمضاء"
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
628 |
msgid "Cancel"
|
629 |
msgstr "إلغاء"
|
630 |
|
@@ -634,9 +635,9 @@ msgid "New user registration on your site %s:"
|
|
634 |
msgstr "تسجيل مستخدم جديد في موقعك %s:"
|
635 |
|
636 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
638 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
639 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
640 |
#, php-format
|
641 |
msgid "Username: %s"
|
642 |
msgstr "اسم المستخدم: %s"
|
@@ -656,15 +657,15 @@ msgstr "[%s] تسجيل مستخدم جديد"
|
|
656 |
msgid "[%s] Your username and password"
|
657 |
msgstr "[%s] اسم المستخدم وكلمة المرور خاصتك"
|
658 |
|
659 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
661 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
662 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
663 |
#, php-format
|
664 |
msgid "%s: %s"
|
665 |
msgstr "%s: %s"
|
666 |
|
667 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
668 |
#, php-format
|
669 |
msgid ""
|
670 |
"To activate your user, please click the following link:\n"
|
@@ -681,52 +682,52 @@ msgstr ""
|
|
681 |
"بعد التفعيل، ستصلك رسالة أخرى فيها بيانات الدخول.\n"
|
682 |
"\n"
|
683 |
|
684 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
686 |
msgid "Your account is now active!"
|
687 |
msgstr "حسابك الآن فعال!"
|
688 |
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
690 |
#, php-format
|
691 |
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 “%3$s”. 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>."
|
692 |
msgstr "موقعك في <a href=\"%1$s\">%2$s</a> الآن مفعل. يمكنك الآن تسجيل الدخول في موقعك باستخدام اسم المستخدم المختار “%3$s”. الرجاء مراجعة بريدك الوارد في %4$s لمعرفة كلمة المرور وتعليمات الدخول. إذا لم تستلم رسالة الرجاء مراجعة مجلد البريد المزعج. إذا لم تستلم أيضاً رسالة فيه خلال ساعة، يمكنك <a href=\"%5$s\">استرجاع كلمة المرور</a></p>."
|
693 |
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
695 |
msgid "An error occurred during the activation"
|
696 |
msgstr "حدث خطأ خلال التفعيل"
|
697 |
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
699 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
701 |
#, php-format
|
702 |
msgid "Password: %s"
|
703 |
msgstr "كلمة المرور: %s"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
706 |
msgid "Invalid activation key."
|
707 |
msgstr "مفتاح التفعيل غير صالح."
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
710 |
msgid "The site is already active."
|
711 |
msgstr "الموقع مفعل سلفاً."
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
714 |
msgid "Could not create user"
|
715 |
msgstr "لم يمكن إنشاء المستخدم"
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
718 |
msgid "That username is already activated."
|
719 |
msgstr "اسم المستخدم هذا مفعل سلفاً."
|
720 |
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
722 |
msgid "That username is currently reserved but may be available in a couple of days."
|
723 |
msgstr "اسم المستخدم هذا حالياً محجوز لكن ربما يصبح متوفراً خلال يومين."
|
724 |
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
726 |
msgid "username and email used"
|
727 |
msgstr "اسم المستخدم والبريد الإلكتروني مستخدمان"
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
730 |
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."
|
731 |
msgstr "هذا البريد الإلكتروني مستخدم سلفاً. الرجاء مراجعة بريدك الإلكتروني لرسالة التفعليل. إذا لم تفعل شيئاً ستصبح متوفرة خلال يومين."
|
732 |
|
@@ -743,7 +744,7 @@ msgid "Update the file"
|
|
743 |
msgstr "تحديث الملف"
|
744 |
|
745 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
746 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
747 |
msgid "Delete the picture"
|
748 |
msgstr "حذف الصورة"
|
749 |
|
@@ -766,330 +767,339 @@ msgid "%s (%s) has changed one or more fields"
|
|
766 |
msgstr "%s (%s) قد غير واحداً أو أكثر من الحقول"
|
767 |
|
768 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
769 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
771 |
msgid "Options"
|
772 |
msgstr "الخيارات"
|
773 |
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
775 |
msgid "WordPress Fields table emptied"
|
776 |
msgstr "جدول حقول WordPress تم تفريغه"
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
779 |
msgid "WordPress Fields table deleted"
|
780 |
msgstr "جدول حقول WordPress Fields تم حذفه"
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
783 |
msgid "Extra Fields table emptied"
|
784 |
msgstr "جدول حقول Extra Fields تم تفريغه"
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
787 |
msgid "Extra Fields table deleted"
|
788 |
msgstr "جدول حقول Extra Fields تم حذفه"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
791 |
msgid "Users Data table emptied"
|
792 |
msgstr "جدول بيانات المستخدمين تم تفريغه"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
795 |
msgid "Users Data table deleted"
|
796 |
msgstr "جدول بيانات المستخدمين تم حذفه"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
799 |
msgid "Options set to default values"
|
800 |
msgstr "تم وضع الخيارات في القيم الافتراضية"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
803 |
msgid "Options deleted"
|
804 |
msgstr "تم حذف الخيارات"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
807 |
msgid "Options changed"
|
808 |
msgstr "تم تغيير الخيارات"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
811 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
812 |
msgstr "هذه العملية ستعمل على إنشاء/تحديث كل الجداول/الخيارات المفقودة، هل تريد الاستمرار؟"
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
815 |
msgid "Support the Cimy Project"
|
816 |
msgstr "ادعم Cimy Project"
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
819 |
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!"
|
820 |
msgstr "هذه الإضافة نتاج ساعات من التطوير لإضافة مزيد من الخصائص، دعم إصدارات WordPress الجديدة، ومعالجة الشوائب. الرجاء التبرع بالمال إذا ساعدتك في توفير كل هذه الساعات!"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
824 |
msgid "Save Changes"
|
825 |
msgstr "حفظ التغييرات"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
828 |
msgid "General"
|
829 |
msgstr "عام"
|
830 |
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
832 |
msgid "installed is"
|
833 |
msgstr "المنصب هو"
|
834 |
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
836 |
msgid "OPTIONS DELETED!"
|
837 |
msgstr "تم حذف الخيارات!"
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
841 |
msgid "Fix the problem"
|
842 |
msgstr "معالجة المشكلة"
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
845 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
846 |
msgstr "الإصدار غير متوافق! وهذا لأنك لم تلغ ثم تجدد تفعيل الإضافة بعد التحديث! هذا قد يسبب مشاكل ..."
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
849 |
msgid "Picture/Avatar upload"
|
850 |
msgstr "تحميل صورة/أفاتار "
|
851 |
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
853 |
msgid "is created and writable"
|
854 |
msgstr "تم إنشاؤه وهو قابل للكتابة"
|
855 |
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
857 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
858 |
msgstr "لم يتم إنشاؤه أو إن الخادم لا يملك صلاحيات الكتابة عليه"
|
859 |
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
861 |
msgid "Show all fields in the welcome email"
|
862 |
msgstr "إظهار كل الحقول في رسالة الترحيب"
|
863 |
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
865 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
866 |
msgstr "تم إرسال رسالة إلى المدير وستظهر كل الحقول للمستخدم عند التسجيل"
|
867 |
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
869 |
msgid "Enable email confirmation"
|
870 |
msgstr "تمكين تأكيد البريد الإلكتروني"
|
871 |
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
873 |
msgid "user that registers should confirm its email address via a link click"
|
874 |
msgstr "المستخدم الذي يسجل يجب عليه تأكيد عنوان بريده الإلكتروني عن طريق ضغط رابط"
|
875 |
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
877 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
878 |
msgstr "<strong>تنبيه:</strong> عند تفعيل هذا الخيار سيعطل (خلال فترة التسجيل فقط) كل حقول التحميل: للملفات والصور والأفاتار"
|
879 |
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
881 |
msgid "Enable form confirmation"
|
882 |
msgstr "تفعيل تأكيد شاشة الإدخال"
|
883 |
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
885 |
msgid "a summary of the registration form will be presented to the user"
|
886 |
msgstr "سيتم عرض ملخص لشاشة إدخال التسجيل للمستخدم"
|
887 |
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
889 |
msgid "Customize welcome email sent to the new user"
|
890 |
msgstr "تخصيص رسالة الترحيب المرسلة للمستخدمين الجدد"
|
891 |
|
892 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
893 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
894 |
msgstr "إذا غيرت أو حذفت حوامل القيم فإن البريد لن يمتلك المعلومات الصحيحة"
|
895 |
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
897 |
msgid "Redirect to the source"
|
898 |
msgstr "إعادة التوجيه للمصدر"
|
899 |
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
901 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
902 |
msgstr "بعد التسجيل أو التأكيد فإن المستخدم سيتم تحويله إلى العنوان الذي كان عنده مباشرة قبل الضغط على رابط التسجيل"
|
903 |
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
905 |
msgid "No captcha"
|
906 |
msgstr "بدون كابتشا"
|
907 |
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
909 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
910 |
msgstr "تفعيل <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
911 |
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
913 |
msgid "Public KEY"
|
914 |
msgstr "المفتاح العام"
|
915 |
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
917 |
msgid "Private KEY"
|
918 |
msgstr "المفتاح الخاص"
|
919 |
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
921 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
922 |
msgstr "تفعيل <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
925 |
msgid "This captcha is probably weaker, but is easier for users"
|
926 |
msgstr "هذه الكابتشا ربما كانت أضعف، لكنها أسهل على المستخدمين"
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
929 |
#, php-format
|
930 |
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>"
|
931 |
msgstr "<strong>تحذير: لتفعيل هذه الكابتشا قم بتحميل <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">هذه الحزمة</a> ثم فك ضغطها تحت %s</strong>"
|
932 |
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
934 |
msgid "Change login/registration page logo"
|
935 |
msgstr "تغيير شعار صحفة الدخول/ التسجيل"
|
936 |
|
937 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
938 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
939 |
msgstr "أكبر عرض محبذ للشعار هو 328px، لكن أي ارتفاع ممكن."
|
940 |
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
942 |
msgid "Database"
|
943 |
msgstr "قاعدة البيانات"
|
944 |
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
946 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
949 |
msgid "select action"
|
950 |
msgstr "اختيار الإجراء"
|
951 |
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
953 |
msgid "Default values"
|
954 |
msgstr "القيم الافتراضية"
|
955 |
|
956 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
960 |
msgid "Delete"
|
961 |
msgstr "حذف"
|
962 |
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
966 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
967 |
msgid "NOT PRESENT"
|
968 |
msgstr "غير موجود"
|
969 |
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
971 |
msgid "WordPress Fields table"
|
972 |
msgstr "جدول حقول WordPress"
|
973 |
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
977 |
msgid "Empty"
|
978 |
msgstr "تفريغ"
|
979 |
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
981 |
msgid "Extra Fields table"
|
982 |
msgstr "جدول حقول Extra Fields"
|
983 |
|
984 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
985 |
msgid "Users Data table"
|
986 |
msgstr "جدول بيانات المستخدمين"
|
987 |
|
988 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
989 |
msgid "all data inserted by users in all and only extra fields"
|
990 |
msgstr "كل البيانات المدخلة بواسطة المستخدمين في كل الحقول الإضافية وفقط فيها"
|
991 |
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
993 |
msgid "Force tables creation"
|
994 |
msgstr "إجبار إنشاء الجداول"
|
995 |
|
996 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
997 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
998 |
msgstr "مكافئ لإلغاء الإضافة وتفعيلها؛ لن يتم اتخاذ أي إجراء آخر"
|
999 |
|
1000 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1001 |
msgid "User Profile"
|
1002 |
msgstr "الملف الشخصي للمستخدم"
|
1003 |
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1005 |
msgid "Extra Fields section title"
|
1006 |
msgstr "عنوان قسم الحقول الإضافية "
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1009 |
msgid "Fieldset's titles, separates with comma"
|
1010 |
msgstr "عناوين Fieldset، مفصولة بفاصلة لاتينية"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1013 |
msgid "example: title1,title2,title3"
|
1014 |
msgstr "مثلاً: عنوان1,عنوان2,عنوان3"
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1017 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1018 |
msgstr "<strong>تنبيه:</strong> إذا غيرت ترتيب fieldsets أو حذفتها ربما تحتاج لتعيين كل الـ fieldsets للحقول الإضافية مجدداً"
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1021 |
msgid "Authors & Users Extended"
|
1022 |
msgstr "المستخدمون وقائمة المستخدمين الممتدة (Users Extended)"
|
1023 |
|
1024 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1025 |
msgid "Hide username field"
|
1026 |
msgstr "إخفاء حقل اسم المستخدم"
|
1027 |
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1029 |
msgid "Hide name field"
|
1030 |
msgstr "إخفاء حقل الاسم"
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1033 |
msgid "Hide email field"
|
1034 |
msgstr "إخفاء حقل البريد الإلكتروني"
|
1035 |
|
1036 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1037 |
msgid "Hide role field"
|
1038 |
msgstr "إخفاء حقل الوظيفة"
|
1039 |
|
1040 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1041 |
msgid "Hide website field"
|
1042 |
msgstr "إخفاء حقل الموقع الإلكتروني"
|
1043 |
|
1044 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1045 |
msgid "Hide n. posts field"
|
1046 |
msgstr "إخفاء حقل عدد المقالات"
|
1047 |
|
1048 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1049 |
msgid "WordPress hidden fields"
|
1050 |
msgstr "حقول WordPress المخفاة"
|
1051 |
|
1052 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1053 |
msgid "Show password"
|
1054 |
msgstr "إظهار كلمة المرور"
|
1055 |
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1057 |
msgid "Show confirmation password"
|
1058 |
msgstr "إظهار تأكيد كلمة المرور"
|
1059 |
|
1060 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1061 |
msgid "Show password strength meter"
|
1062 |
msgstr "إظهار مؤشر قوة كلمة المرور"
|
1063 |
|
1064 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1065 |
msgid "Show first name"
|
1066 |
msgstr "إظهار الاسم الأول"
|
1067 |
|
1068 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1069 |
msgid "Show last name"
|
1070 |
msgstr "إظهار الاسم الثاني"
|
1071 |
|
1072 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1073 |
msgid "Show nickname"
|
1074 |
msgstr "إظهار الاسم المختصر"
|
1075 |
|
1076 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1077 |
msgid "Show website"
|
1078 |
msgstr "إظهار الموقع الإلكتروني"
|
1079 |
|
1080 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1081 |
msgid "Show AIM"
|
1082 |
msgstr "إظهار AIM"
|
1083 |
|
1084 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1085 |
msgid "Show Yahoo IM"
|
1086 |
msgstr "إظهار Yahoo IM"
|
1087 |
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1089 |
msgid "Show Jabber / Google Talk"
|
1090 |
msgstr "إظهار Jabber / Google Talk"
|
1091 |
|
1092 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1093 |
msgid "Show Biographical Info"
|
1094 |
msgstr "إظهار النبذة التعريفية"
|
1095 |
|
@@ -1111,39 +1121,39 @@ msgstr "الملف '%s' ليس بصورة."
|
|
1111 |
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!"
|
1112 |
msgstr "<strong>تنبيه:</strong> هذا الموقع يمكنك من تخصيص كلمة المرور خاصتك؛ بعد التسجيل ستصلك رسالة بريد إلكتروني فيها كلمة مرور أخرى، لا تلق لها بالاً!"
|
1113 |
|
1114 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1115 |
msgid "Password"
|
1116 |
msgstr "كلمة المرور"
|
1117 |
|
1118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1119 |
msgid "Password confirmation"
|
1120 |
msgstr "تأكيد كلمة المرور"
|
1121 |
|
1122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1123 |
msgid "First name"
|
1124 |
msgstr "الاسم الأول"
|
1125 |
|
1126 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1127 |
msgid "Last name"
|
1128 |
msgstr "الاس الأخير"
|
1129 |
|
1130 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1131 |
msgid "Nickname"
|
1132 |
msgstr "الاسم المختصر"
|
1133 |
|
1134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1135 |
msgid "AIM"
|
1136 |
msgstr "AIM"
|
1137 |
|
1138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1139 |
msgid "Yahoo IM"
|
1140 |
msgstr "Yahoo IM"
|
1141 |
|
1142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1143 |
msgid "Jabber / Google Talk"
|
1144 |
msgstr "Jabber / Google Talk"
|
1145 |
|
1146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1147 |
msgid "Biographical Info"
|
1148 |
msgstr "نبذة تعريفية"
|
1149 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:51-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:51-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"
|
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:478
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
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:569
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
35 |
msgid "ERROR"
|
36 |
msgstr "خطأ"
|
37 |
|
38 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
39 |
msgid "does not match."
|
40 |
msgstr "غير متفقة."
|
41 |
|
42 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
43 |
msgid "hasn’t a correct email syntax."
|
44 |
msgstr "صيغة البريد اللإلكتروني غير صحيحة."
|
45 |
|
46 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
47 |
msgid "couldn’t be empty."
|
48 |
msgstr "لا يمكن أن تكون فارغة."
|
49 |
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
52 |
msgid "isn’t correct"
|
53 |
msgstr "غير صحيحة"
|
54 |
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
58 |
msgid "YES"
|
59 |
msgstr "نعم"
|
60 |
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
64 |
msgid "NO"
|
65 |
msgstr "لا"
|
66 |
|
67 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
68 |
msgid "should be"
|
69 |
msgstr "يجب أن"
|
70 |
|
71 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
72 |
msgid "should be an image."
|
73 |
msgstr "يجب أن تكون صورة."
|
74 |
|
75 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
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’t have size less than"
|
81 |
msgstr "لا يمكن أن يكون حجمها أقل من"
|
82 |
|
83 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
84 |
msgid "couldn’t have length less than"
|
85 |
msgstr "لا يمكن أن يكون طولها أقل من"
|
86 |
|
87 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
88 |
msgid "couldn’t have size different than"
|
89 |
msgstr "لا يمكن أن يختلف حجمها عن"
|
90 |
|
91 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
92 |
msgid "couldn’t have length different than"
|
93 |
msgstr "لا يمكن أن يختلف طولها عن"
|
94 |
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
96 |
msgid "couldn’t have size more than"
|
97 |
msgstr "لا يمكن أن يزيد حجمها عن"
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
100 |
msgid "couldn’t have length more than"
|
101 |
msgstr "لا يمكن أن يزيد طولها عن"
|
102 |
|
103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
105 |
msgid "Typed code is not correct."
|
106 |
msgstr "الشفرة المكتوبة غير صحيحة."
|
107 |
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
112 |
msgid "Username"
|
113 |
msgstr "اسم المستخدم"
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
118 |
msgid "E-mail"
|
119 |
msgstr "البريد الإلكتروني"
|
120 |
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
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:1007
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
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:1182
|
133 |
msgid "Strength indicator"
|
134 |
msgstr "مؤشر القوة"
|
135 |
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
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 ! \" ? $ % ^ & )."
|
138 |
msgstr "تلميح: كلمة المرور يجب أن يكون طولها على الأقل 7 أحرف. ولجعلها أقوى، استخدم حروفاً متنوعة وأرقاماً ورموزاً مثل ! \" ? $ % ^ & )."
|
139 |
|
140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
141 |
msgid "Change image"
|
142 |
msgstr "تغيير الصورة"
|
143 |
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
145 |
msgid "Insert the code:"
|
146 |
msgstr "أدخل الشفرة:"
|
147 |
|
148 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
150 |
msgid "Confirm your registration"
|
151 |
msgstr "تأكيد تسجيلك"
|
152 |
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
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:1313
|
158 |
msgid "← Back"
|
159 |
msgstr "← إلى الخلف"
|
160 |
|
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:846
|
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:847
|
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:848
|
193 |
msgid "Max length"
|
194 |
msgstr "أقصى طول"
|
195 |
|
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:242
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
228 |
msgid "Min size"
|
229 |
msgstr "أقل حجم"
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
232 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
233 |
msgid "Exact size"
|
234 |
msgstr "الحجم بالتحديد"
|
235 |
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
237 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
238 |
msgid "Max size"
|
239 |
msgstr "أقصى حجم"
|
240 |
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
242 |
msgid "Exact or Max size"
|
243 |
msgstr "الحجم بالتحديد أو الأقصى"
|
244 |
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
246 |
msgid "Name not specified"
|
247 |
msgstr "لم يتم تحديد الاسم"
|
248 |
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
250 |
msgid "Name cannot contains spaces"
|
251 |
msgstr "لا يمكن أن يحتوي الاسم على فراغات"
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
254 |
msgid "Label not specified"
|
255 |
msgstr "لم يتم تحديد العنوان"
|
256 |
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
258 |
msgid "not selected (with this type is necessary)"
|
259 |
msgstr "لم يتم تحديده (ضروري لهذا النوع)"
|
260 |
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
262 |
msgid "If you select"
|
263 |
msgstr "إذا اخترت"
|
264 |
|
265 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
266 |
msgid "you cannot select Min or Max"
|
267 |
msgstr "لا يمكنك اختيار أقل أو أقصى"
|
268 |
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
272 |
msgid "should be in the range of"
|
273 |
msgstr "يجب أن يكون في المدى"
|
274 |
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
276 |
msgid "Equal TO not specified"
|
277 |
msgstr "لم يتم تحديد القيمة المساواة"
|
278 |
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
280 |
msgid "With checkbox type Equal TO can only be"
|
281 |
msgstr "لنوع مربعات التأشير المساواة يمكن فقط أن تكون"
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
284 |
msgid "With radio type Equal TO can only be"
|
285 |
msgstr "لنوع اختيار الدوائر المساواة يمكن فقط أن تكون"
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
288 |
msgid "With checkbox type Value can only be"
|
289 |
msgstr "لنوع مربعات التأشير القيمة يمكن فقط أن تكون"
|
290 |
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
292 |
msgid "With radio type Value can only be"
|
293 |
msgstr "لنوع اختيار الدوائر القيمة يمكن فقط أن تكون"
|
294 |
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
296 |
msgid "Field inserted correctly"
|
297 |
msgstr "تم إدخال الحقل بشكل صحيح"
|
298 |
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
300 |
msgid "Field #"
|
301 |
msgstr "رقم الحقل"
|
302 |
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
304 |
msgid "updated correctly"
|
305 |
msgstr "تم تحديثه بشكل صحيح"
|
306 |
|
307 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
308 |
msgid "Name inserted is just in the database, change to another one"
|
309 |
msgstr "الاسم المدخل موجود في قاعدة البيانات، اختر اسماً غيره"
|
310 |
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
312 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
313 |
msgid "Add a new Field"
|
314 |
msgstr "إضافة حقل جديد"
|
315 |
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
317 |
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."
|
318 |
msgstr "لإضافة حقل جديد يجب اختيار اسم ونوع وعنوان له؛ أما النوع والوصف فاختياريان. يتم تطبيق القواعد عند تسجيل المستخدمين."
|
319 |
|
320 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
321 |
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'"
|
322 |
msgstr "بخصوص <strong>دوائر الاختيار</strong> و<strong>مربعات التأشير</strong>: <em>القيمة</em> і <em>والمساواة</em> يمكن فقط أن تكون 'نعم' أو 'لا' بما يعني 'مختار' أو 'غير مختار'"
|
323 |
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
325 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
326 |
msgstr "بخصوص <strong>القائمة المنسدلة</strong>: يجب أن تكتب كل الخيارات في العنوان، مثلاً: العنوان/الخيار الأول,الخيار الثاني,الخيار الثالث"
|
327 |
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
329 |
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"
|
330 |
msgstr "بخصوص <strong>الصورة</strong>: يجب تزويد صورة افتراضية بوضع رابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> تعني أقصى حجم بيكسل (طول أو عرض) للصور المصغرة"
|
331 |
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
333 |
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)"
|
334 |
msgstr "بخصوص <strong>رابط الصورة</strong>: يمكنك تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ <em>المساواة</em> تعني أقصى عرض للحجم بالبيكسل (الطول متناسب)"
|
335 |
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
337 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
338 |
msgstr "بخصوص <strong>تاريخ التسجيل</strong>: <em>المساواة</em> تعني صيغة التاريخ والوقت"
|
339 |
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
341 |
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"
|
342 |
msgstr "بخصوص <strong>الأفاتار</strong>: يمكن تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> يتم ضيطها تلقائياً على 512 بيكسل"
|
343 |
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
345 |
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"
|
346 |
msgstr "بخصوص <strong>ملف</strong>: يمكن تزويد ملف افتراضي بوضع الرابط <em>القيمة</em>؛ 'أقل وبالتحديد وأكبر حجم' بوحدة KB؛ في <em>المساواة</em> يمكن تحديد الامتدادات المسموحة مفصولة بفاصلة لاتينية، مثلاً:: zip, pdf, doc"
|
347 |
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
354 |
msgid "Name"
|
355 |
msgstr "الاسم"
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
363 |
msgid "Value"
|
364 |
msgstr "القيمة"
|
365 |
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
370 |
msgid "Type"
|
371 |
msgstr "النوع"
|
372 |
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
377 |
msgid "Label"
|
378 |
msgstr "العنوان"
|
379 |
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
384 |
msgid "Description"
|
385 |
msgstr "الوصف"
|
386 |
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
389 |
msgid "Rules"
|
390 |
msgstr "القواعد"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
394 |
msgid "Actions"
|
395 |
msgstr "الإجراءات"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
401 |
msgid "Fieldset"
|
402 |
msgstr "Fieldset"
|
403 |
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
406 |
msgid "Can be empty"
|
407 |
msgstr "يمكن أن يكون فارغاً"
|
408 |
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
411 |
msgid "Check for E-mail syntax"
|
412 |
msgstr "التأكد من صيغة البريد الإلكتروني"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
416 |
msgid "Can be modified"
|
417 |
msgstr "يمكن تعديلها"
|
418 |
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
421 |
msgid "Can be modified only if empty"
|
422 |
msgstr "يمكن تعديلها فقط في حالة كونها فارغة"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
426 |
msgid "Can be modified only by admin"
|
427 |
msgstr "يمكن تعديلها فقط بواسطة المدير"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
431 |
msgid "Can be modified only by admin or if empty"
|
432 |
msgstr "يمكن تعديلها فقط بواسطة المدير في حالة كونها فارغة"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
436 |
msgid "Cannot be modified"
|
437 |
msgstr "لا يمكن تعديلها"
|
438 |
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
441 |
msgid "Should be equal TO"
|
442 |
msgstr "يجب أن تساوي"
|
443 |
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
446 |
msgid "Case sensitive"
|
447 |
msgstr "حساسة لحجم الحروف"
|
448 |
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
451 |
msgid "Regular Expression"
|
452 |
msgstr "تعبير اعتيادي"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
456 |
msgid "Show the field in the registration"
|
457 |
msgstr "إظهار الحقل عند التسجيل"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
461 |
msgid "Show the field in User's profile"
|
462 |
msgstr "إظهار الحقل في الملف الشخصي للمستخدم"
|
463 |
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
466 |
msgid "Show the field in Users Extended section"
|
467 |
msgstr "إظهار الحقل في قائمة المستخدمين الممتدة (Users Extneded)"
|
468 |
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
471 |
msgid "Show the field in the search engine"
|
472 |
msgstr "إظهار الحقل في محرك البحث"
|
473 |
|
474 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
476 |
msgid "Show the field in the blog"
|
477 |
msgstr "إظهار الحقل في الموقع"
|
478 |
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
480 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
481 |
msgid "Show the field if the role is at least:"
|
482 |
msgstr "إظهار الحقل فقط إذا كانت الوظيفة على الأقل:"
|
483 |
|
484 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
485 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
486 |
msgid "Anonymous"
|
487 |
msgstr "مجهول"
|
488 |
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
490 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
491 |
msgid "User has 'view_cimy_extra_fields' capability"
|
492 |
msgstr "المستخدم يمتلك صلاحية 'view_cimy_extra_fields'"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
496 |
msgid "Send an email to the admin if the user changes its value"
|
497 |
msgstr "إرسال بريد إلكتروني للمدير إذا غير المستخدم قيمتها"
|
498 |
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
501 |
msgid "Advanced options"
|
502 |
msgstr "خيارات متقدمة"
|
503 |
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
505 |
msgid "Clear"
|
506 |
msgstr "تفريغ"
|
507 |
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
509 |
msgid "Invert selection"
|
510 |
msgstr "عكس التحديد"
|
511 |
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
513 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
514 |
msgstr "هل أنت متأكد أنك تريد حذف الحقل/الحقول وكل البيانات فيها المدخلة بواسطة المستخدمين؟"
|
515 |
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
517 |
msgid "WordPress Fields"
|
518 |
msgstr "حقول WordPress"
|
519 |
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
526 |
msgid "Extra Fields"
|
527 |
msgstr "الحقول الإضافية (Extra Fields)"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
530 |
msgid "None!"
|
531 |
msgstr "لا يوجد!"
|
532 |
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
535 |
msgid "Order"
|
536 |
msgstr "الترتيب"
|
537 |
|
538 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
539 |
msgid "Reset"
|
540 |
msgstr "استعادة"
|
541 |
|
542 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
543 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
544 |
msgid "SUCCESSFUL"
|
545 |
msgstr "تم بنجاح"
|
546 |
|
547 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
549 |
msgid "select"
|
550 |
msgstr "اختيار"
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
554 |
msgid "Users per page"
|
555 |
msgstr "عدد المستخدمين في الصحفة"
|
556 |
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
559 |
msgid "Apply"
|
560 |
msgstr "تنفيذ"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
563 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
564 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
566 |
msgid "Users Extended"
|
567 |
msgstr "Users Extneded"
|
568 |
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
570 |
#, php-format
|
571 |
msgid "Search results for “%s”"
|
572 |
msgstr "البحث عن نتائج تخص “%s”"
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
575 |
#, php-format
|
576 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
577 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
580 |
msgid "Search Users"
|
581 |
msgstr "البحث في المستخدمين"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
585 |
msgid "Role"
|
586 |
msgstr "الوظيفة"
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
591 |
msgid "Website"
|
592 |
msgstr "الموقع"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
596 |
msgid "Posts"
|
597 |
msgstr "المقالات"
|
598 |
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
600 |
msgid "View posts by this author"
|
601 |
msgstr "مشاهدة المقالات بواسطة هذا الكاتب"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
604 |
msgid "Super Admin"
|
605 |
msgstr "المدير الشامل"
|
606 |
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
608 |
#, php-format
|
609 |
msgid "e-mail: %s"
|
610 |
msgstr "البريد الإلكتروني: %s"
|
611 |
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
613 |
msgid "Change"
|
614 |
msgstr "تغيير"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
617 |
msgid "Update selected users"
|
618 |
msgstr "تحديث المستخدمين المختارين"
|
619 |
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
621 |
msgid "Update"
|
622 |
msgstr "تحديث"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
625 |
msgid "OK"
|
626 |
msgstr "إمضاء"
|
627 |
|
628 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
629 |
msgid "Cancel"
|
630 |
msgstr "إلغاء"
|
631 |
|
635 |
msgstr "تسجيل مستخدم جديد في موقعك %s:"
|
636 |
|
637 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
639 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
640 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
641 |
#, php-format
|
642 |
msgid "Username: %s"
|
643 |
msgstr "اسم المستخدم: %s"
|
657 |
msgid "[%s] Your username and password"
|
658 |
msgstr "[%s] اسم المستخدم وكلمة المرور خاصتك"
|
659 |
|
660 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
661 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
663 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
664 |
#, php-format
|
665 |
msgid "%s: %s"
|
666 |
msgstr "%s: %s"
|
667 |
|
668 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
669 |
#, php-format
|
670 |
msgid ""
|
671 |
"To activate your user, please click the following link:\n"
|
682 |
"بعد التفعيل، ستصلك رسالة أخرى فيها بيانات الدخول.\n"
|
683 |
"\n"
|
684 |
|
685 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
687 |
msgid "Your account is now active!"
|
688 |
msgstr "حسابك الآن فعال!"
|
689 |
|
690 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
691 |
#, php-format
|
692 |
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 “%3$s”. 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>."
|
693 |
msgstr "موقعك في <a href=\"%1$s\">%2$s</a> الآن مفعل. يمكنك الآن تسجيل الدخول في موقعك باستخدام اسم المستخدم المختار “%3$s”. الرجاء مراجعة بريدك الوارد في %4$s لمعرفة كلمة المرور وتعليمات الدخول. إذا لم تستلم رسالة الرجاء مراجعة مجلد البريد المزعج. إذا لم تستلم أيضاً رسالة فيه خلال ساعة، يمكنك <a href=\"%5$s\">استرجاع كلمة المرور</a></p>."
|
694 |
|
695 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
696 |
msgid "An error occurred during the activation"
|
697 |
msgstr "حدث خطأ خلال التفعيل"
|
698 |
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
700 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
702 |
#, php-format
|
703 |
msgid "Password: %s"
|
704 |
msgstr "كلمة المرور: %s"
|
705 |
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
707 |
msgid "Invalid activation key."
|
708 |
msgstr "مفتاح التفعيل غير صالح."
|
709 |
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
711 |
msgid "The site is already active."
|
712 |
msgstr "الموقع مفعل سلفاً."
|
713 |
|
714 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
715 |
msgid "Could not create user"
|
716 |
msgstr "لم يمكن إنشاء المستخدم"
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
719 |
msgid "That username is already activated."
|
720 |
msgstr "اسم المستخدم هذا مفعل سلفاً."
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
723 |
msgid "That username is currently reserved but may be available in a couple of days."
|
724 |
msgstr "اسم المستخدم هذا حالياً محجوز لكن ربما يصبح متوفراً خلال يومين."
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
727 |
msgid "username and email used"
|
728 |
msgstr "اسم المستخدم والبريد الإلكتروني مستخدمان"
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
731 |
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."
|
732 |
msgstr "هذا البريد الإلكتروني مستخدم سلفاً. الرجاء مراجعة بريدك الإلكتروني لرسالة التفعليل. إذا لم تفعل شيئاً ستصبح متوفرة خلال يومين."
|
733 |
|
744 |
msgstr "تحديث الملف"
|
745 |
|
746 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
747 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
748 |
msgid "Delete the picture"
|
749 |
msgstr "حذف الصورة"
|
750 |
|
767 |
msgstr "%s (%s) قد غير واحداً أو أكثر من الحقول"
|
768 |
|
769 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
772 |
msgid "Options"
|
773 |
msgstr "الخيارات"
|
774 |
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
776 |
msgid "WordPress Fields table emptied"
|
777 |
msgstr "جدول حقول WordPress تم تفريغه"
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
780 |
msgid "WordPress Fields table deleted"
|
781 |
msgstr "جدول حقول WordPress Fields تم حذفه"
|
782 |
|
783 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
784 |
msgid "Extra Fields table emptied"
|
785 |
msgstr "جدول حقول Extra Fields تم تفريغه"
|
786 |
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
788 |
msgid "Extra Fields table deleted"
|
789 |
msgstr "جدول حقول Extra Fields تم حذفه"
|
790 |
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
792 |
msgid "Users Data table emptied"
|
793 |
msgstr "جدول بيانات المستخدمين تم تفريغه"
|
794 |
|
795 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
796 |
msgid "Users Data table deleted"
|
797 |
msgstr "جدول بيانات المستخدمين تم حذفه"
|
798 |
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
800 |
msgid "Options set to default values"
|
801 |
msgstr "تم وضع الخيارات في القيم الافتراضية"
|
802 |
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
804 |
msgid "Options deleted"
|
805 |
msgstr "تم حذف الخيارات"
|
806 |
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
808 |
msgid "Options changed"
|
809 |
msgstr "تم تغيير الخيارات"
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
812 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
813 |
msgstr "هذه العملية ستعمل على إنشاء/تحديث كل الجداول/الخيارات المفقودة، هل تريد الاستمرار؟"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
816 |
msgid "Support the Cimy Project"
|
817 |
msgstr "ادعم Cimy Project"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
820 |
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!"
|
821 |
msgstr "هذه الإضافة نتاج ساعات من التطوير لإضافة مزيد من الخصائص، دعم إصدارات WordPress الجديدة، ومعالجة الشوائب. الرجاء التبرع بالمال إذا ساعدتك في توفير كل هذه الساعات!"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
825 |
msgid "Save Changes"
|
826 |
msgstr "حفظ التغييرات"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
829 |
msgid "General"
|
830 |
msgstr "عام"
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
833 |
msgid "installed is"
|
834 |
msgstr "المنصب هو"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
837 |
msgid "OPTIONS DELETED!"
|
838 |
msgstr "تم حذف الخيارات!"
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
842 |
msgid "Fix the problem"
|
843 |
msgstr "معالجة المشكلة"
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
846 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
847 |
msgstr "الإصدار غير متوافق! وهذا لأنك لم تلغ ثم تجدد تفعيل الإضافة بعد التحديث! هذا قد يسبب مشاكل ..."
|
848 |
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
850 |
msgid "Picture/Avatar upload"
|
851 |
msgstr "تحميل صورة/أفاتار "
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
854 |
msgid "is created and writable"
|
855 |
msgstr "تم إنشاؤه وهو قابل للكتابة"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
858 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
859 |
msgstr "لم يتم إنشاؤه أو إن الخادم لا يملك صلاحيات الكتابة عليه"
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
862 |
msgid "Show all fields in the welcome email"
|
863 |
msgstr "إظهار كل الحقول في رسالة الترحيب"
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
866 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
867 |
msgstr "تم إرسال رسالة إلى المدير وستظهر كل الحقول للمستخدم عند التسجيل"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
870 |
msgid "Enable email confirmation"
|
871 |
msgstr "تمكين تأكيد البريد الإلكتروني"
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
874 |
msgid "user that registers should confirm its email address via a link click"
|
875 |
msgstr "المستخدم الذي يسجل يجب عليه تأكيد عنوان بريده الإلكتروني عن طريق ضغط رابط"
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
878 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
879 |
msgstr "<strong>تنبيه:</strong> عند تفعيل هذا الخيار سيعطل (خلال فترة التسجيل فقط) كل حقول التحميل: للملفات والصور والأفاتار"
|
880 |
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
882 |
msgid "Enable form confirmation"
|
883 |
msgstr "تفعيل تأكيد شاشة الإدخال"
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
886 |
msgid "a summary of the registration form will be presented to the user"
|
887 |
msgstr "سيتم عرض ملخص لشاشة إدخال التسجيل للمستخدم"
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
890 |
msgid "Customize welcome email sent to the new user"
|
891 |
msgstr "تخصيص رسالة الترحيب المرسلة للمستخدمين الجدد"
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
894 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
895 |
msgstr "إذا غيرت أو حذفت حوامل القيم فإن البريد لن يمتلك المعلومات الصحيحة"
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
898 |
msgid "Redirect to the source"
|
899 |
msgstr "إعادة التوجيه للمصدر"
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
902 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
903 |
msgstr "بعد التسجيل أو التأكيد فإن المستخدم سيتم تحويله إلى العنوان الذي كان عنده مباشرة قبل الضغط على رابط التسجيل"
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
906 |
msgid "No captcha"
|
907 |
msgstr "بدون كابتشا"
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
910 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
911 |
msgstr "تفعيل <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
912 |
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
914 |
msgid "Public KEY"
|
915 |
msgstr "المفتاح العام"
|
916 |
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
918 |
msgid "Private KEY"
|
919 |
msgstr "المفتاح الخاص"
|
920 |
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
922 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
923 |
msgstr "تفعيل <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
924 |
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
926 |
msgid "This captcha is probably weaker, but is easier for users"
|
927 |
msgstr "هذه الكابتشا ربما كانت أضعف، لكنها أسهل على المستخدمين"
|
928 |
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
930 |
#, php-format
|
931 |
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>"
|
932 |
msgstr "<strong>تحذير: لتفعيل هذه الكابتشا قم بتحميل <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">هذه الحزمة</a> ثم فك ضغطها تحت %s</strong>"
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
935 |
msgid "Change login/registration page logo"
|
936 |
msgstr "تغيير شعار صحفة الدخول/ التسجيل"
|
937 |
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
939 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
940 |
msgstr "أكبر عرض محبذ للشعار هو 328px، لكن أي ارتفاع ممكن."
|
941 |
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
943 |
msgid "Database"
|
944 |
msgstr "قاعدة البيانات"
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
950 |
msgid "select action"
|
951 |
msgstr "اختيار الإجراء"
|
952 |
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
954 |
msgid "Default values"
|
955 |
msgstr "القيم الافتراضية"
|
956 |
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
961 |
msgid "Delete"
|
962 |
msgstr "حذف"
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
968 |
msgid "NOT PRESENT"
|
969 |
msgstr "غير موجود"
|
970 |
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
972 |
msgid "WordPress Fields table"
|
973 |
msgstr "جدول حقول WordPress"
|
974 |
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
978 |
msgid "Empty"
|
979 |
msgstr "تفريغ"
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
982 |
msgid "Extra Fields table"
|
983 |
msgstr "جدول حقول Extra Fields"
|
984 |
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
986 |
msgid "Users Data table"
|
987 |
msgstr "جدول بيانات المستخدمين"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
990 |
msgid "all data inserted by users in all and only extra fields"
|
991 |
msgstr "كل البيانات المدخلة بواسطة المستخدمين في كل الحقول الإضافية وفقط فيها"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
994 |
msgid "Force tables creation"
|
995 |
msgstr "إجبار إنشاء الجداول"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
998 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
999 |
msgstr "مكافئ لإلغاء الإضافة وتفعيلها؛ لن يتم اتخاذ أي إجراء آخر"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1002 |
msgid "User Profile"
|
1003 |
msgstr "الملف الشخصي للمستخدم"
|
1004 |
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1006 |
msgid "Extra Fields section title"
|
1007 |
msgstr "عنوان قسم الحقول الإضافية "
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1010 |
msgid "Fieldset's titles, separates with comma"
|
1011 |
msgstr "عناوين Fieldset، مفصولة بفاصلة لاتينية"
|
1012 |
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1014 |
msgid "example: title1,title2,title3"
|
1015 |
msgstr "مثلاً: عنوان1,عنوان2,عنوان3"
|
1016 |
|
1017 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1018 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1019 |
msgstr "<strong>تنبيه:</strong> إذا غيرت ترتيب fieldsets أو حذفتها ربما تحتاج لتعيين كل الـ fieldsets للحقول الإضافية مجدداً"
|
1020 |
|
1021 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1022 |
msgid "Authors & Users Extended"
|
1023 |
msgstr "المستخدمون وقائمة المستخدمين الممتدة (Users Extended)"
|
1024 |
|
1025 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1026 |
msgid "Hide username field"
|
1027 |
msgstr "إخفاء حقل اسم المستخدم"
|
1028 |
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1030 |
msgid "Hide name field"
|
1031 |
msgstr "إخفاء حقل الاسم"
|
1032 |
|
1033 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1034 |
msgid "Hide email field"
|
1035 |
|