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