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