Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | ![]() |
Version | 2.7.0 |
Comparing to | |
See all releases |
Code changes from version 2.6.5 to 2.7.0
- README_OFFICIAL.txt +13 -4
- cimy_uef_admin.php +3 -3
- cimy_uef_email_handler.php +48 -14
- cimy_uef_init_mce.php +0 -155
- cimy_uef_register.php +2 -11
- cimy_user_extra_fields.php +3 -3
- langs/cimy_uef-da_DK.mo +0 -0
- langs/cimy_uef-da_DK.po +3 -5
- langs/cimy_uef-fr_FR.mo +0 -0
- langs/cimy_uef-fr_FR.po +1409 -1255
- readme.txt +3 -3
- securimage/README.md +239 -0
- securimage/README.txt +16 -2
- securimage/WavFile.php +30 -16
- securimage/captcha.html +135 -13
- securimage/database/securimage.sq3 +0 -0
- securimage/example_form.php +22 -15
- securimage/images/ajax-loader.gif +0 -0
- securimage/images/loading.png +0 -0
- securimage/securimage.css +41 -0
- securimage/securimage.js +251 -0
- securimage/securimage.php +446 -63
- securimage/securimage_play.php +6 -1
README_OFFICIAL.txt
CHANGED
@@ -108,10 +108,10 @@ BEFORE writing to me read carefully ALL the documentation AND the FAQ. Missing t
|
|
108 |
Bugs or suggestions can be mailed at: cimmino.marco@gmail.com
|
109 |
|
110 |
REQUIREMENTS:
|
111 |
-
* PHP >= 5.
|
112 |
-
* WORDPRESS >= 3.1
|
113 |
-
* WORDPRESS MultiSite >= 3.1
|
114 |
-
* MYSQL >=
|
115 |
|
116 |
INSTALLATION:
|
117 |
- WordPress: just copy whole cimy-user-extra-fields subdir into your plug-in directory and activate it
|
@@ -631,6 +631,15 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
631 |
|
632 |
|
633 |
CHANGELOG:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
v2.6.5 - 11/05/2015
|
635 |
- Fixed PHP error on Extended Users on WordPress 4.2 (thanks to Ryan Marshall and Josie Stauffer)
|
636 |
- Fixed PHP notice on cimy_uef_functions.php at line 673 when using avatar Extra Field (thanks to rossini7777)
|
108 |
Bugs or suggestions can be mailed at: cimmino.marco@gmail.com
|
109 |
|
110 |
REQUIREMENTS:
|
111 |
+
* PHP >= 5.2.4
|
112 |
+
* WORDPRESS >= 4.3.1
|
113 |
+
* WORDPRESS MultiSite >= 4.3.1
|
114 |
+
* MYSQL >= 5.0
|
115 |
|
116 |
INSTALLATION:
|
117 |
- WordPress: just copy whole cimy-user-extra-fields subdir into your plug-in directory and activate it
|
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
|
637 |
+
- Fixed 'Strict Standards' warnings on Users Extended and plug-in's options
|
638 |
+
- Dropped support for WordPress 4.2 or below
|
639 |
+
- Updated Danish (Michael Ugilt)
|
640 |
+
- Updated French (Damien Cottet)
|
641 |
+
- Updated Securimage Captcha to v3.6.2
|
642 |
+
|
643 |
v2.6.5 - 11/05/2015
|
644 |
- Fixed PHP error on Extended Users on WordPress 4.2 (thanks to Ryan Marshall and Josie Stauffer)
|
645 |
- Fixed PHP notice on cimy_uef_functions.php at line 673 when using avatar Extra Field (thanks to rossini7777)
|
cimy_uef_admin.php
CHANGED
@@ -8,7 +8,7 @@ function cimy_admin_define_extra_fields() {
|
|
8 |
// if (!empty($_POST))
|
9 |
// print_r($_POST);
|
10 |
|
11 |
-
$role =
|
12 |
$role->add_cap('view_cimy_extra_fields');
|
13 |
|
14 |
$errors = Array();
|
@@ -1273,7 +1273,7 @@ function cimy_admin_users_list_page() {
|
|
1273 |
'per_page' => $users_per_page,
|
1274 |
));
|
1275 |
}
|
1276 |
-
function bulk_actions() {}
|
1277 |
function extra_tablenav($which) {
|
1278 |
if ('top' != $which)
|
1279 |
return;
|
@@ -1366,7 +1366,7 @@ function cimy_admin_users_list_page() {
|
|
1366 |
'per_page' => $users_per_page,
|
1367 |
));
|
1368 |
}
|
1369 |
-
function bulk_actions() {}
|
1370 |
function extra_tablenav($which) {
|
1371 |
if ('top' != $which)
|
1372 |
return;
|
8 |
// if (!empty($_POST))
|
9 |
// print_r($_POST);
|
10 |
|
11 |
+
$role = get_role('administrator');
|
12 |
$role->add_cap('view_cimy_extra_fields');
|
13 |
|
14 |
$errors = Array();
|
1273 |
'per_page' => $users_per_page,
|
1274 |
));
|
1275 |
}
|
1276 |
+
function bulk_actions( $which = '' ) {}
|
1277 |
function extra_tablenav($which) {
|
1278 |
if ('top' != $which)
|
1279 |
return;
|
1366 |
'per_page' => $users_per_page,
|
1367 |
));
|
1368 |
}
|
1369 |
+
function bulk_actions( $which = '' ) {}
|
1370 |
function extra_tablenav($which) {
|
1371 |
if ('top' != $which)
|
1372 |
return;
|
cimy_uef_email_handler.php
CHANGED
@@ -7,24 +7,36 @@ if ( !function_exists('wp_new_user_notification') ) :
|
|
7 |
* @param int $user_id User ID
|
8 |
* @param string $plaintext_pass Optional. The user's plaintext password
|
9 |
*/
|
10 |
-
function wp_new_user_notification($user_id, $plaintext_pass = '') {
|
11 |
-
if (isset($_POST["cimy_uef_wp_PASSWORD"]))
|
12 |
delete_user_meta($user_id, 'default_password_nag');
|
|
|
|
|
|
|
|
|
13 |
|
14 |
$options = cimy_get_options();
|
15 |
if (!is_multisite()) {
|
16 |
if (!$options["confirm_email"])
|
17 |
-
wp_new_user_notification_original($user_id, $plaintext_pass, $options["mail_include_fields"], false, cimy_wpml_translate_string("a_opt_welcome_email", $options["welcome_email"]));
|
18 |
// if confirmation email is enabled delete the default_password_nag but checks first if has not been done on top of this function!
|
19 |
else if (!isset($_POST["cimy_uef_wp_PASSWORD"]))
|
20 |
delete_user_meta($user_id, 'default_password_nag');
|
21 |
}
|
22 |
-
else
|
23 |
-
wp_new_user_notification_original($user_id, $plaintext_pass, $options["mail_include_fields"]);
|
|
|
24 |
}
|
25 |
endif;
|
26 |
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
$user = new WP_User($user_id);
|
29 |
|
30 |
$user_login = stripslashes($user->user_login);
|
@@ -51,17 +63,39 @@ function wp_new_user_notification_original($user_id, $plaintext_pass = '', $incl
|
|
51 |
|
52 |
@wp_mail($admin_email, sprintf(__('[%s] New User Registration'), $blogname), $message, $headers);
|
53 |
|
54 |
-
if ( empty($
|
55 |
return;
|
|
|
56 |
|
57 |
-
$
|
58 |
-
|
|
|
|
|
59 |
|
60 |
-
|
61 |
-
|
62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
-
wp_mail($user_email, sprintf(__('[%s] Your username and password'), $blogname), $
|
65 |
}
|
66 |
|
67 |
function cimy_uef_mail_fields($user = false, $activation_data = false) {
|
@@ -295,7 +329,7 @@ function cimy_uef_activate_signup($key) {
|
|
295 |
return new WP_Error( 'user_already_exists', __( 'That username is already activated.', $cimy_uef_domain), $signup);
|
296 |
|
297 |
$options = cimy_get_options();
|
298 |
-
wp_new_user_notification_original($user_id, $password, $options["mail_include_fields"], $meta, cimy_wpml_translate_string("a_opt_welcome_email", $options["welcome_email"]));
|
299 |
return array('user_id' => $user_id, 'password' => $password, 'meta' => $meta);
|
300 |
}
|
301 |
|
7 |
* @param int $user_id User ID
|
8 |
* @param string $plaintext_pass Optional. The user's plaintext password
|
9 |
*/
|
10 |
+
function wp_new_user_notification($user_id, $plaintext_pass = null, $notify = '') {
|
11 |
+
if (isset($_POST["cimy_uef_wp_PASSWORD"])) {
|
12 |
delete_user_meta($user_id, 'default_password_nag');
|
13 |
+
if (!isset($plaintext_pass)) {
|
14 |
+
$plaintext_pass = $_POST["cimy_uef_wp_PASSWORD"];
|
15 |
+
}
|
16 |
+
}
|
17 |
|
18 |
$options = cimy_get_options();
|
19 |
if (!is_multisite()) {
|
20 |
if (!$options["confirm_email"])
|
21 |
+
wp_new_user_notification_original($user_id, $plaintext_pass, $options["mail_include_fields"], false, cimy_wpml_translate_string("a_opt_welcome_email", $options["welcome_email"]), $notify);
|
22 |
// if confirmation email is enabled delete the default_password_nag but checks first if has not been done on top of this function!
|
23 |
else if (!isset($_POST["cimy_uef_wp_PASSWORD"]))
|
24 |
delete_user_meta($user_id, 'default_password_nag');
|
25 |
}
|
26 |
+
else {
|
27 |
+
wp_new_user_notification_original($user_id, $plaintext_pass, $options["mail_include_fields"], $notify);
|
28 |
+
}
|
29 |
}
|
30 |
endif;
|
31 |
|
32 |
+
add_filter('send_password_change_email', 'cimy_uef_send_password_change_email', 10, 3);
|
33 |
+
|
34 |
+
function cimy_uef_send_password_change_email($send, $user, $userdata) {
|
35 |
+
return empty($_POST["cimy_uef_wp_PASSWORD"]) ? true : false;
|
36 |
+
}
|
37 |
+
|
38 |
+
function wp_new_user_notification_original($user_id, $plaintext_pass = null, $include_fields = false, $activation_data = false, $welcome_email = '', $notify = '') {
|
39 |
+
global $wpdb, $wp_hasher;
|
40 |
$user = new WP_User($user_id);
|
41 |
|
42 |
$user_login = stripslashes($user->user_login);
|
63 |
|
64 |
@wp_mail($admin_email, sprintf(__('[%s] New User Registration'), $blogname), $message, $headers);
|
65 |
|
66 |
+
if ( 'admin' === $notify || empty( $notify ) ) {
|
67 |
return;
|
68 |
+
}
|
69 |
|
70 |
+
$message = str_replace("USERNAME", $user_login, $welcome_email);
|
71 |
+
if ( empty($plaintext_pass) ) {
|
72 |
+
// Generate something random for a password reset key.
|
73 |
+
$key = wp_generate_password( 20, false );
|
74 |
|
75 |
+
/** This action is documented in wp-login.php */
|
76 |
+
do_action( 'retrieve_password_key', $user->user_login, $key );
|
77 |
+
|
78 |
+
// Now insert the key, hashed, into the DB.
|
79 |
+
if ( empty( $wp_hasher ) ) {
|
80 |
+
require_once ABSPATH . WPINC . '/class-phpass.php';
|
81 |
+
$wp_hasher = new PasswordHash( 8, true );
|
82 |
+
}
|
83 |
+
$hashed = time() . ':' . $wp_hasher->HashPassword( $key );
|
84 |
+
$wpdb->update( $wpdb->users, array( 'user_activation_key' => $hashed ), array( 'user_login' => $user->user_login ) );
|
85 |
+
|
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) {
|
94 |
+
$message .= cimy_uef_mail_fields($user, $activation_data);
|
95 |
+
}
|
96 |
+
$message = str_replace("LOGINLINK", wp_login_url(), $message);
|
97 |
|
98 |
+
wp_mail($user->user_email, sprintf(__('[%s] Your username and password info'), $blogname), $message);
|
99 |
}
|
100 |
|
101 |
function cimy_uef_mail_fields($user = false, $activation_data = false) {
|
329 |
return new WP_Error( 'user_already_exists', __( 'That username is already activated.', $cimy_uef_domain), $signup);
|
330 |
|
331 |
$options = cimy_get_options();
|
332 |
+
wp_new_user_notification_original($user_id, $password, $options["mail_include_fields"], $meta, cimy_wpml_translate_string("a_opt_welcome_email", $options["welcome_email"]), 'both');
|
333 |
return array('user_id' => $user_id, 'password' => $password, 'meta' => $meta);
|
334 |
}
|
335 |
|
cimy_uef_init_mce.php
DELETED
@@ -1,155 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
// needed only in the registration page
|
3 |
-
if (!empty($cimy_uef_register_page)) {
|
4 |
-
$userid = isset($current_user) ? $current_user->ID : 0;
|
5 |
-
?>
|
6 |
-
<script type='text/javascript'>
|
7 |
-
var login_div = document.getElementById("login");
|
8 |
-
login_div.style.width = "475px";
|
9 |
-
login_div.style.margin = "7em auto";
|
10 |
-
</script>
|
11 |
-
|
12 |
-
<script type='text/javascript'>
|
13 |
-
/* <![CDATA[ */
|
14 |
-
userSettings = {
|
15 |
-
url: "<?php echo esc_url(SITECOOKIEPATH); ?>",
|
16 |
-
uid: "<?php echo $userid; ?>",
|
17 |
-
time: "<?php echo time(); ?>",
|
18 |
-
}
|
19 |
-
try{convertEntities(userSettings);}catch(e){};
|
20 |
-
/* ]]> */
|
21 |
-
</script>
|
22 |
-
<?php
|
23 |
-
} else
|
24 |
-
$userid = $get_user_id;
|
25 |
-
|
26 |
-
// Set up init variables
|
27 |
-
$mce_locale = ( '' == get_locale() ) ? 'en' : strtolower( substr(get_locale(), 0, 2) ); // only ISO 639-1
|
28 |
-
$theme = "advanced";
|
29 |
-
$language = isset($mce_locale) ? substr( $mce_locale, 0, 2 ) : 'en';
|
30 |
-
|
31 |
-
$baseurl = get_option('siteurl') . '/wp-includes/js/tinymce';
|
32 |
-
|
33 |
-
$https = ( isset($_SERVER['HTTPS']) && 'on' == strtolower($_SERVER['HTTPS']) ) ? true : false;
|
34 |
-
|
35 |
-
if ( $https ) $baseurl = str_replace('http://', 'https://', $baseurl);
|
36 |
-
|
37 |
-
$language . '", debug : false }, base : "' . $baseurl . '", suffix : "" };';
|
38 |
-
|
39 |
-
$mce_spellchecker_languages = apply_filters('mce_spellchecker_languages', '+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv');
|
40 |
-
|
41 |
-
$mce_css = $baseurl . '/wordpress.css';
|
42 |
-
$mce_css = apply_filters('mce_css', $mce_css);
|
43 |
-
|
44 |
-
if ( $https ) $mce_css = str_replace('http://', 'https://', $mce_css);
|
45 |
-
|
46 |
-
$mce_buttons = apply_filters('mce_buttons', array('bold', 'italic', 'strikethrough', '|', 'bullist', 'numlist', 'blockquote', '|', 'justifyleft', 'justifycenter', 'justifyright', '|', 'link', 'unlink', 'image', 'wp_more', '|', 'spellchecker', 'fullscreen', 'wp_adv' ));
|
47 |
-
$mce_buttons = implode($mce_buttons, ',');
|
48 |
-
|
49 |
-
$mce_buttons_2 = apply_filters('mce_buttons_2', array('formatselect', 'underline', 'justifyfull', 'forecolor', '|', 'pastetext', 'pasteword', 'removeformat', '|', 'media', 'charmap', '|', 'outdent', 'indent', '|', 'undo', 'redo', 'wp_help' ));
|
50 |
-
$mce_buttons_2 = implode($mce_buttons_2, ',');
|
51 |
-
|
52 |
-
$mce_buttons_3 = apply_filters('mce_buttons_3', array());
|
53 |
-
$mce_buttons_3 = implode($mce_buttons_3, ',');
|
54 |
-
|
55 |
-
$mce_buttons_4 = apply_filters('mce_buttons_4', array());
|
56 |
-
$mce_buttons_4 = implode($mce_buttons_4, ',');
|
57 |
-
|
58 |
-
// $plugins = array( 'safari', 'inlinepopups', 'autosave', 'spellchecker', 'paste', 'media', 'fullscreen' );
|
59 |
-
$plugins = array( 'inlinepopups', 'spellchecker', 'paste', 'fullscreen', 'wpeditimage', 'wpgallery', 'tabfocus' );
|
60 |
-
|
61 |
-
// add 'wordpress' plug-in only if there is an user logged in, otherwise will produce issues on registration page
|
62 |
-
if ($userid != 0)
|
63 |
-
$plugins[] = 'wordpress';
|
64 |
-
|
65 |
-
echo "\n\t";
|
66 |
-
$initArray = array(
|
67 |
-
'mode' => "exact",
|
68 |
-
'theme' => $theme,
|
69 |
-
'elements' => esc_attr($tiny_mce_objects),
|
70 |
-
'theme_advanced_toolbar_location' => "top",
|
71 |
-
'theme_advanced_toolbar_align' => "left",
|
72 |
-
'theme_advanced_statusbar_location' => "bottom",
|
73 |
-
'extended_valid_elements' => "article[*],aside[*],audio[*],canvas[*],command[*],datalist[*],details[*],embed[*],figcaption[*],figure[*],footer[*],header[*],hgroup[*],keygen[*],mark[*],meter[*],nav[*],output[*],progress[*],section[*],source[*],summary,time[*],video[*],wbr",
|
74 |
-
'theme_advanced_buttons1' => $mce_buttons,
|
75 |
-
'theme_advanced_buttons2' => $mce_buttons_2,
|
76 |
-
'theme_advanced_buttons3' => $mce_buttons_3,
|
77 |
-
'theme_advanced_buttons4' => $mce_buttons_4,
|
78 |
-
'content_css' => $mce_css,
|
79 |
-
'language' => $mce_locale,
|
80 |
-
'spellchecker_languages' => $mce_spellchecker_languages,
|
81 |
-
'theme_advanced_resizin' => true,
|
82 |
-
'theme_advanced_resize_horizontal' => false,
|
83 |
-
'dialog_type' => "modal",
|
84 |
-
'relative_urls' => false,
|
85 |
-
'convert_urls' => false,
|
86 |
-
'remove_script_host' => false,
|
87 |
-
'plugins' => implode( ',', $plugins ),
|
88 |
-
);
|
89 |
-
|
90 |
-
if ($userid != 0)
|
91 |
-
$initArray['skin'] = "wp_theme";
|
92 |
-
|
93 |
-
if ( 'en' != $language )
|
94 |
-
include_once(ABSPATH . WPINC . '/js/tinymce/langs/wp-langs.php');
|
95 |
-
|
96 |
-
$mce_options = '';
|
97 |
-
foreach ( $initArray as $k => $v ) {
|
98 |
-
if ( is_bool($v) ) {
|
99 |
-
$val = $v ? 'true' : 'false';
|
100 |
-
$mce_options .= $k . ':' . $val . ', ';
|
101 |
-
continue;
|
102 |
-
} elseif ( !empty($v) && is_string($v) && ( '{' == $v{0} || '[' == $v{0} ) ) {
|
103 |
-
$mce_options .= $k . ':' . $v . ', ';
|
104 |
-
continue;
|
105 |
-
}
|
106 |
-
|
107 |
-
$mce_options .= $k . ':"' . $v . '", ';
|
108 |
-
}
|
109 |
-
|
110 |
-
global $concatenate_scripts, $compress_scripts, $tinymce_version;
|
111 |
-
$mce_options = rtrim( trim($mce_options), '\n\r,' );
|
112 |
-
$ext_plugins = '';
|
113 |
-
$compressed = $compress_scripts && $concatenate_scripts && isset($_SERVER['HTTP_ACCEPT_ENCODING'])
|
114 |
-
&& false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip');
|
115 |
-
|
116 |
-
$version = apply_filters('tiny_mce_version', '');
|
117 |
-
$version = 'ver=' . $tinymce_version . $version;
|
118 |
-
?>
|
119 |
-
<script type="text/javascript">
|
120 |
-
/* <![CDATA[ */
|
121 |
-
tinyMCEPreInit = {
|
122 |
-
base : "<?php echo $baseurl; ?>",
|
123 |
-
suffix : "",
|
124 |
-
query : "<?php echo $version; ?>",
|
125 |
-
mceInit : {<?php echo $mce_options; ?>},
|
126 |
-
load_ext : function(url,lang){var sl=tinymce.ScriptLoader;sl.markDone(url+'/langs/'+lang+'.js');sl.markDone(url+'/langs/'+lang+'_dlg.js');}
|
127 |
-
};
|
128 |
-
/* ]]> */
|
129 |
-
</script>
|
130 |
-
|
131 |
-
<?php
|
132 |
-
if ( $compressed )
|
133 |
-
echo "<script type='text/javascript' src='$baseurl/wp-tinymce.php?c=1&$version'></script>\n";
|
134 |
-
else
|
135 |
-
echo "<script type='text/javascript' src='$baseurl/tiny_mce.js?$version'></script>\n";
|
136 |
-
|
137 |
-
if ( 'en' != $language && isset($lang) )
|
138 |
-
echo "<script type='text/javascript'>\n$lang\n</script>\n";
|
139 |
-
else
|
140 |
-
echo "<script type='text/javascript' src='$baseurl/langs/wp-langs-en.js?$version'></script>\n";
|
141 |
-
?>
|
142 |
-
|
143 |
-
<script type="text/javascript">
|
144 |
-
/* <![CDATA[ */
|
145 |
-
<?php
|
146 |
-
if ( $ext_plugins )
|
147 |
-
echo "$ext_plugins\n";
|
148 |
-
|
149 |
-
if ( ! $compressed ) {
|
150 |
-
?>
|
151 |
-
(function(){var t=tinyMCEPreInit,sl=tinymce.ScriptLoader,ln=t.mceInit.language,th=t.mceInit.theme,pl=t.mceInit.plugins;sl.markDone(t.base+'/langs/'+ln+'.js');sl.markDone(t.base+'/themes/'+th+'/langs/'+ln+'.js');sl.markDone(t.base+'/themes/'+th+'/langs/'+ln+'_dlg.js');tinymce.each(pl.split(','),function(n){if(n&&n.charAt(0)!='-'){sl.markDone(t.base+'/plugins/'+n+'/langs/'+ln+'.js');sl.markDone(t.base+'/plugins/'+n+'/langs/'+ln+'_dlg.js');}});})();
|
152 |
-
<?php } ?>
|
153 |
-
tinyMCE.init(tinyMCEPreInit.mceInit);
|
154 |
-
/* ]]> */
|
155 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cimy_uef_register.php
CHANGED
@@ -687,8 +687,6 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
687 |
if (!is_user_logged_in())
|
688 |
$my_user_level = -1;
|
689 |
|
690 |
-
// needed by cimy_uef_init_mce.php
|
691 |
-
$cimy_uef_register_page = true;
|
692 |
$extra_fields = get_cimyFields(false, true);
|
693 |
$wp_fields = get_cimyFields(true);
|
694 |
|
@@ -1190,7 +1188,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
1190 |
$pass1_id = $unique_id;
|
1191 |
|
1192 |
if ($input_name == ($prefix."PASSWORD2")) {
|
1193 |
-
echo "\n\t\t<div id=\"pass-strength-result\">".__('Strength indicator')."</div>";
|
1194 |
echo "\n\t\t<p class=\"description indicator-hint\">".__('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).')."</p><br />";
|
1195 |
$pass2_id = $unique_id;
|
1196 |
}
|
@@ -1209,13 +1207,6 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
1209 |
}
|
1210 |
echo "\t<br />";
|
1211 |
|
1212 |
-
if ($show_type == 0) {
|
1213 |
-
// WP 3.2 or lower (N)
|
1214 |
-
if (!empty($tiny_mce_objects) && !function_exists("wp_editor")) {
|
1215 |
-
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
1216 |
-
}
|
1217 |
-
}
|
1218 |
-
|
1219 |
if (($show_type != 2) && ($options['captcha'] == "securimage")) {
|
1220 |
global $cuef_securimage_webpath;
|
1221 |
if (is_multisite()) {
|
@@ -1333,7 +1324,7 @@ function cimy_uef_registration_redirect($redirect_to) {
|
|
1333 |
if (empty($redirect_to)) {
|
1334 |
$options = cimy_get_options();
|
1335 |
|
1336 |
-
if ($options["redirect_to"] == "source")
|
1337 |
$redirect_to = esc_attr($_SERVER["HTTP_REFERER"]);
|
1338 |
}
|
1339 |
|
687 |
if (!is_user_logged_in())
|
688 |
$my_user_level = -1;
|
689 |
|
|
|
|
|
690 |
$extra_fields = get_cimyFields(false, true);
|
691 |
$wp_fields = get_cimyFields(true);
|
692 |
|
1188 |
$pass1_id = $unique_id;
|
1189 |
|
1190 |
if ($input_name == ($prefix."PASSWORD2")) {
|
1191 |
+
echo "\n\t\t<div id=\"pass-strength-result\" class=\"hide-if-no-js\" aria-live=\"polite\">".__('Strength indicator')."</div>";
|
1192 |
echo "\n\t\t<p class=\"description indicator-hint\">".__('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).')."</p><br />";
|
1193 |
$pass2_id = $unique_id;
|
1194 |
}
|
1207 |
}
|
1208 |
echo "\t<br />";
|
1209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1210 |
if (($show_type != 2) && ($options['captcha'] == "securimage")) {
|
1211 |
global $cuef_securimage_webpath;
|
1212 |
if (is_multisite()) {
|
1324 |
if (empty($redirect_to)) {
|
1325 |
$options = cimy_get_options();
|
1326 |
|
1327 |
+
if ($options["redirect_to"] == "source" && isset($_SERVER["HTTP_REFERER"]))
|
1328 |
$redirect_to = esc_attr($_SERVER["HTTP_REFERER"]);
|
1329 |
}
|
1330 |
|
cimy_user_extra_fields.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Description: Add some useful fields to registration and user's info
|
6 |
-
Version: 2.
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
License: GPL2
|
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 +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.
|
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 |
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Description: Add some useful fields to registration and user's info
|
6 |
+
Version: 2.7.0
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
License: GPL2
|
10 |
|
11 |
Cimy User Extra Fields - Allows adding mySQL Data fields to store/add more user info
|
12 |
+
Copyright (c) 2006-2016 Marco Cimmino
|
13 |
|
14 |
Code for drop-down support is in part from Raymond Elferink raymond@raycom.com
|
15 |
Code for regular expression under equalTo rule is in part from Shane Hartman shane@shanehartman.com
|
162 |
add_action('init', 'cimy_uef_init');
|
163 |
|
164 |
$cimy_uef_name = "Cimy User Extra Fields";
|
165 |
+
$cimy_uef_version = "2.7.0";
|
166 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
167 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
168 |
|
langs/cimy_uef-da_DK.mo
CHANGED
Binary file
|
langs/cimy_uef-da_DK.po
CHANGED
@@ -3,16 +3,14 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2013-09-28 06:19-0800\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \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: German\n"
|
15 |
-
"X-Poedit-Country: GERMANY\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
@@ -137,7 +135,7 @@ msgstr ""
|
|
137 |
|
138 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
-
msgstr ""
|
141 |
|
142 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
143 |
#, fuzzy
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2013-09-28 06:19-0800\n"
|
6 |
+
"PO-Revision-Date: 2015-10-25 17:46+0100\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
+
"Language: da_DK\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-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
135 |
|
136 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
|
137 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
138 |
+
msgstr "Tip: Din adgangskode skal være mindst på midst 7 tegn. For at gare den mere sikker kann du bruge store OG små bogstaver, tal og symboler."
|
139 |
|
140 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
141 |
#, fuzzy
|
langs/cimy_uef-fr_FR.mo
CHANGED
Binary file
|
langs/cimy_uef-fr_FR.po
CHANGED
@@ -1,1255 +1,1409 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-09-28 06:20-0800\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
-
"Language-Team: <cimmino.marco@gmail.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: French\n"
|
15 |
-
"X-Poedit-Country: FRANCE\n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
-
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:517
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:529
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
|
36 |
-
msgid "ERROR"
|
37 |
-
msgstr "ERREUR"
|
38 |
-
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
|
40 |
-
msgid "does not match."
|
41 |
-
msgstr "ne
|
42 |
-
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
44 |
-
msgid "hasn’t a correct email syntax."
|
45 |
-
msgstr "n'a pas une syntaxe
|
46 |
-
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
|
48 |
-
msgid "couldn’t be empty."
|
49 |
-
msgstr "ne peut pas
|
50 |
-
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
53 |
-
msgid "isn’t correct"
|
54 |
-
msgstr "n'est pas correct"
|
55 |
-
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
-
msgid "YES"
|
60 |
-
msgstr "
|
61 |
-
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
-
msgid "NO"
|
66 |
-
msgstr "
|
67 |
-
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
69 |
-
msgid "should be"
|
70 |
-
msgstr "devrait
|
71 |
-
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
|
73 |
-
msgid "should be an image."
|
74 |
-
msgstr "devrait
|
75 |
-
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
|
77 |
-
msgid "does not accept this file type."
|
78 |
-
msgstr ""
|
79 |
-
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
-
msgid "couldn’t have size less than"
|
82 |
-
msgstr "ne pouvait pas avoir une taille
|
83 |
-
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
|
85 |
-
msgid "couldn’t have length less than"
|
86 |
-
msgstr "ne pouvait pas avoir une longueur
|
87 |
-
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
|
89 |
-
msgid "couldn’t have size different than"
|
90 |
-
msgstr "ne pouvais pas avoir une taille
|
91 |
-
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
|
93 |
-
msgid "couldn’t have length different than"
|
94 |
-
msgstr "ne pouvait pas avoir une longueur
|
95 |
-
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
|
97 |
-
msgid "couldn’t have size more than"
|
98 |
-
msgstr "ne pouvait pas avoir une taille
|
99 |
-
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
|
101 |
-
msgid "couldn’t have length more than"
|
102 |
-
msgstr "ne pouvait pas avoir une longueur
|
103 |
-
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
|
106 |
-
#, fuzzy
|
107 |
-
msgid "Typed code is not correct."
|
108 |
-
msgstr "Le code saisi est incorrect."
|
109 |
-
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
|
114 |
-
msgid "Username"
|
115 |
-
msgstr "Identifiant"
|
116 |
-
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
119 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
120 |
-
msgid "E-mail"
|
121 |
-
msgstr "Courriel"
|
122 |
-
|
123 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
124 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
125 |
-
msgid "Please upload a file with one of the following extensions"
|
126 |
-
msgstr "Veuillez
|
127 |
-
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
|
130 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
-
msgid "Please upload an image with one of the following extensions"
|
132 |
-
msgstr "
|
133 |
-
|
134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
|
135 |
-
msgid "Strength indicator"
|
136 |
-
msgstr "Indicateur de
|
137 |
-
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
153 |
-
msgid "
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
186 |
-
msgid "
|
187 |
-
msgstr "
|
188 |
-
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
191 |
-
msgid "
|
192 |
-
msgstr "Longueur
|
193 |
-
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
195 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
196 |
-
msgid "
|
197 |
-
msgstr "Longueur
|
198 |
-
|
199 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
205 |
-
msgid "
|
206 |
-
msgstr "
|
207 |
-
|
208 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
218 |
-
msgid "
|
219 |
-
msgstr "
|
220 |
-
|
221 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
231 |
-
msgid "
|
232 |
-
msgstr "
|
233 |
-
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
236 |
-
msgid "
|
237 |
-
msgstr "Taille
|
238 |
-
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
241 |
-
msgid "
|
242 |
-
msgstr "Taille
|
243 |
-
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
334 |
-
msgid "
|
335 |
-
msgstr "
|
336 |
-
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
msgid "
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
370 |
-
msgid "
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
461 |
-
msgid "
|
462 |
-
msgstr "
|
463 |
-
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
540 |
-
msgid "
|
541 |
-
msgstr "
|
542 |
-
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
549 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
587 |
-
msgid "
|
588 |
-
msgstr "
|
589 |
-
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
msgid "
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
619 |
-
msgid "
|
620 |
-
msgstr "
|
621 |
-
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
623 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
624 |
-
msgid "
|
625 |
-
msgstr "
|
626 |
-
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
628 |
-
msgid "
|
629 |
-
msgstr "
|
630 |
-
|
631 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
"
|
704 |
-
"
|
705 |
-
|
706 |
-
|
707 |
-
"
|
708 |
-
"
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
msgid "
|
716 |
-
msgstr ""
|
717 |
-
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
msgid "
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
msgstr "
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
805 |
-
msgid "
|
806 |
-
msgstr "
|
807 |
-
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
msgstr "
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
853 |
-
msgid "
|
854 |
-
msgstr "
|
855 |
-
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
msgid "
|
885 |
-
msgstr "
|
886 |
-
|
887 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
msgstr "
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
msgid "
|
967 |
-
msgstr "
|
968 |
-
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1007 |
-
msgid "
|
1008 |
-
msgstr "
|
1009 |
-
|
1010 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1017 |
-
msgid "
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
msgstr "
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
msgstr "
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
msgstr "
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
msgstr "
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
msgid "
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1114 |
-
msgid "
|
1115 |
-
msgstr "
|
1116 |
-
|
1117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
msgid "
|
1144 |
-
msgstr "
|
1145 |
-
|
1146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
1204 |
-
msgid "
|
1205 |
-
msgstr ""
|
1206 |
-
|
1207 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
1208 |
-
msgid "
|
1209 |
-
msgstr ""
|
1210 |
-
|
1211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
1212 |
-
msgid "
|
1213 |
-
msgstr ""
|
1214 |
-
|
1215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
1216 |
-
msgid "
|
1217 |
-
msgstr ""
|
1218 |
-
|
1219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-28 06:20-0800\n"
|
6 |
+
"PO-Revision-Date: 2015-10-07 17:13+0100\n"
|
7 |
+
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
+
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
+
"Language: fr_FR\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: French\n"
|
15 |
+
"X-Poedit-Country: FRANCE\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
+
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:517
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:529
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
|
36 |
+
msgid "ERROR"
|
37 |
+
msgstr "ERREUR"
|
38 |
+
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
|
40 |
+
msgid "does not match."
|
41 |
+
msgstr "ne correspond pas."
|
42 |
+
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
44 |
+
msgid "hasn’t a correct email syntax."
|
45 |
+
msgstr "n'a pas une syntaxe d'email correcte."
|
46 |
+
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
|
48 |
+
msgid "couldn’t be empty."
|
49 |
+
msgstr "ne peut pas être vide."
|
50 |
+
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
53 |
+
msgid "isn’t correct"
|
54 |
+
msgstr "n'est pas correct"
|
55 |
+
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
+
msgid "YES"
|
60 |
+
msgstr "YES"
|
61 |
+
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
+
msgid "NO"
|
66 |
+
msgstr "NO"
|
67 |
+
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
69 |
+
msgid "should be"
|
70 |
+
msgstr "devrait être"
|
71 |
+
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
|
73 |
+
msgid "should be an image."
|
74 |
+
msgstr "devrait être une image."
|
75 |
+
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
|
77 |
+
msgid "does not accept this file type."
|
78 |
+
msgstr "n'accepte pas ce type de fichier."
|
79 |
+
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
+
msgid "couldn’t have size less than"
|
82 |
+
msgstr "ne pouvait pas avoir une taille inférieure à"
|
83 |
+
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
|
85 |
+
msgid "couldn’t have length less than"
|
86 |
+
msgstr "ne pouvait pas avoir une longueur inférieure à"
|
87 |
+
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
|
89 |
+
msgid "couldn’t have size different than"
|
90 |
+
msgstr "ne pouvais pas avoir une taille différente de"
|
91 |
+
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
|
93 |
+
msgid "couldn’t have length different than"
|
94 |
+
msgstr "ne pouvait pas avoir une longueur différente de"
|
95 |
+
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
|
97 |
+
msgid "couldn’t have size more than"
|
98 |
+
msgstr "ne pouvait pas avoir une taille supérieure à"
|
99 |
+
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
|
101 |
+
msgid "couldn’t have length more than"
|
102 |
+
msgstr "ne pouvait pas avoir une longueur supérieure à"
|
103 |
+
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
|
106 |
+
#, fuzzy
|
107 |
+
msgid "Typed code is not correct."
|
108 |
+
msgstr "Le code saisi est incorrect."
|
109 |
+
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
|
114 |
+
msgid "Username"
|
115 |
+
msgstr "Identifiant"
|
116 |
+
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
120 |
+
msgid "E-mail"
|
121 |
+
msgstr "Courriel"
|
122 |
+
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
125 |
+
msgid "Please upload a file with one of the following extensions"
|
126 |
+
msgstr "Veuillez télécharger un fichier avec l'une des extensions suivantes"
|
127 |
+
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
|
130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
+
msgid "Please upload an image with one of the following extensions"
|
132 |
+
msgstr "Veuillez téléchargez une image avec l'une des extensions suivantes"
|
133 |
+
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
|
135 |
+
msgid "Strength indicator"
|
136 |
+
msgstr "Indicateur de sûreté"
|
137 |
+
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
|
139 |
+
msgid ""
|
140 |
+
"Hint: The password should be at least seven characters long. To make it "
|
141 |
+
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
142 |
+
"$ % ^ & )."
|
143 |
+
msgstr ""
|
144 |
+
"Suggestion: le mot de passe devrait contenir au moins sept caractères. Pour "
|
145 |
+
"le sécuriser encore plus, utilisez une combinaison de minuscules, de "
|
146 |
+
"majuscules, de chiffres et de symboles tels que ! \\\" ? $ % ^ & )."
|
147 |
+
|
148 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
149 |
+
msgid "Change image"
|
150 |
+
msgstr "Changer l'image"
|
151 |
+
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
|
153 |
+
msgid "Insert the code:"
|
154 |
+
msgstr "Insérer le code:"
|
155 |
+
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
|
157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
|
158 |
+
msgid "Confirm your registration"
|
159 |
+
msgstr "Confirmez votre inscription"
|
160 |
+
|
161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
|
162 |
+
msgid "A password will be e-mailed to you."
|
163 |
+
msgstr "Un courriel contenant votre mot de passe va vous être envoyé."
|
164 |
+
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
|
166 |
+
msgid "← Back"
|
167 |
+
msgstr "← Retour"
|
168 |
+
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
170 |
+
msgid "Add field"
|
171 |
+
msgstr "Ajouter un champ"
|
172 |
+
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
174 |
+
msgid "Update field"
|
175 |
+
msgstr "Mettre à jour le champ"
|
176 |
+
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
178 |
+
msgid "Delete field"
|
179 |
+
msgstr "Supprimer le champ"
|
180 |
+
|
181 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
182 |
+
msgid "Delete selected fields"
|
183 |
+
msgstr "Supprimer les champs sélectionnés"
|
184 |
+
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
186 |
+
msgid "Change order"
|
187 |
+
msgstr "Changer l'ordre"
|
188 |
+
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
191 |
+
msgid "Min length"
|
192 |
+
msgstr "Longueur min"
|
193 |
+
|
194 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
196 |
+
msgid "Exact length"
|
197 |
+
msgstr "Longueur exacte"
|
198 |
+
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
201 |
+
msgid "Max length"
|
202 |
+
msgstr "Longueur max"
|
203 |
+
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
205 |
+
msgid "Exact or Max length"
|
206 |
+
msgstr "Longueur exacte ou max"
|
207 |
+
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:22
|
210 |
+
msgid "Fields"
|
211 |
+
msgstr "Champs"
|
212 |
+
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
214 |
+
msgid "changed to"
|
215 |
+
msgstr "changé en"
|
216 |
+
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
218 |
+
msgid "You cannot give an order that misses some numbers"
|
219 |
+
msgstr "Vous ne pouvez pas donner un ordre où il manque des nombres"
|
220 |
+
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
223 |
+
msgid "Nothing selected"
|
224 |
+
msgstr "Rien n'est sélectionné"
|
225 |
+
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
227 |
+
msgid "Field(s)"
|
228 |
+
msgstr "Champ(s)"
|
229 |
+
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
231 |
+
msgid "deleted correctly"
|
232 |
+
msgstr "correctement supprimé(e)"
|
233 |
+
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
|
236 |
+
msgid "Min size"
|
237 |
+
msgstr "Taille min"
|
238 |
+
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
|
241 |
+
msgid "Exact size"
|
242 |
+
msgstr "Taille exacte"
|
243 |
+
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
|
246 |
+
msgid "Max size"
|
247 |
+
msgstr "Taille max"
|
248 |
+
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:249
|
250 |
+
msgid "Exact or Max size"
|
251 |
+
msgstr "Taille exacte ou Max"
|
252 |
+
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
|
254 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
|
255 |
+
#, fuzzy
|
256 |
+
msgid "Min date"
|
257 |
+
msgstr "Taille min"
|
258 |
+
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
|
261 |
+
#, fuzzy
|
262 |
+
msgid "Exact date"
|
263 |
+
msgstr "Taille exacte"
|
264 |
+
|
265 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
|
266 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
|
267 |
+
#, fuzzy
|
268 |
+
msgid "Max date"
|
269 |
+
msgstr "Taille max"
|
270 |
+
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
272 |
+
msgid "Name not specified"
|
273 |
+
msgstr "Nom non spécifié"
|
274 |
+
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
|
276 |
+
msgid "Name cannot contains spaces"
|
277 |
+
msgstr "Le nom ne peut pas contenir d'espace"
|
278 |
+
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
|
280 |
+
msgid "Label not specified"
|
281 |
+
msgstr "étiquette non spécifiée"
|
282 |
+
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
284 |
+
msgid "not selected (with this type is necessary)"
|
285 |
+
msgstr "non sélectionné (nécessaire avec ce type)"
|
286 |
+
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
288 |
+
msgid "If you select"
|
289 |
+
msgstr "Si vous sélectionnez"
|
290 |
+
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
292 |
+
msgid "you cannot select Min or Max"
|
293 |
+
msgstr "vous ne pouvez pas sélectionner Min ou Max"
|
294 |
+
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
|
296 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
|
297 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
|
298 |
+
msgid "should be in the range of"
|
299 |
+
msgstr "devrait être dans l'intervalle de"
|
300 |
+
|
301 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
|
302 |
+
msgid "Equal TO not specified"
|
303 |
+
msgstr "Égal à non spécifié"
|
304 |
+
|
305 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
|
306 |
+
msgid "With checkbox type Equal TO can only be"
|
307 |
+
msgstr "Avec le type checkbox, Égal à ne peut être que"
|
308 |
+
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
|
310 |
+
msgid "With radio type Equal TO can only be"
|
311 |
+
msgstr "Avec le type radio, Égal à ne peut être que"
|
312 |
+
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
|
314 |
+
msgid "With checkbox type Value can only be"
|
315 |
+
msgstr "Avec le type case à cocher, la valeur ne peut être que"
|
316 |
+
|
317 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
|
318 |
+
msgid "With radio type Value can only be"
|
319 |
+
msgstr "Avec le type radio, la valeur ne peut être que"
|
320 |
+
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
|
322 |
+
msgid "Field inserted correctly"
|
323 |
+
msgstr "Champ inséré correctement"
|
324 |
+
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
|
326 |
+
msgid "Field #"
|
327 |
+
msgstr "Champ #"
|
328 |
+
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
|
330 |
+
msgid "updated correctly"
|
331 |
+
msgstr "correctement mis à jour"
|
332 |
+
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
|
334 |
+
msgid "Name inserted is just in the database, change to another one"
|
335 |
+
msgstr "Le nom est déjà dans la base de données; veuillez le changer"
|
336 |
+
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
339 |
+
msgid "Add a new Field"
|
340 |
+
msgstr "Ajouter un nouveau champ"
|
341 |
+
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
|
343 |
+
msgid ""
|
344 |
+
"To add a new field you have to choose a name, type and label; optional are "
|
345 |
+
"value and description. Rules are applied during user registration."
|
346 |
+
msgstr ""
|
347 |
+
"Pour ajouter un nouveau champ, vous devez choisir un nom, un type et une "
|
348 |
+
"étiquette; la valeur et la description sont optionnelles. Les règles sont "
|
349 |
+
"appliquées lors de l'inscription d'un utilisateur."
|
350 |
+
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
|
352 |
+
msgid ""
|
353 |
+
"With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> "
|
354 |
+
"and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or "
|
355 |
+
"'not selected'"
|
356 |
+
msgstr ""
|
357 |
+
"Avec les types <strong>radio</strong> et <strong>checkbox</strong>: "
|
358 |
+
"<em>Valeur</em> et <em>Égal à</em> peuvent seulement être 'Yes' ou 'No' ce "
|
359 |
+
"qui signifie 'sélectionné' ou 'non sélectionné'"
|
360 |
+
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
|
362 |
+
msgid ""
|
363 |
+
"With <strong>drop-down</strong>: you have to add all options into label for "
|
364 |
+
"example: label/item1,item2,item3"
|
365 |
+
msgstr ""
|
366 |
+
"Avec le type <strong>drop-down</strong>: vous devez ajouter toutes les "
|
367 |
+
"options dans l'étiquette, par exemple: étiquette/item1,item2,item3"
|
368 |
+
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
|
370 |
+
msgid ""
|
371 |
+
"With <strong>picture</strong>: you can preload a default image putting url "
|
372 |
+
"in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means "
|
373 |
+
"max pixel size (width or height) for thumbnail"
|
374 |
+
msgstr ""
|
375 |
+
"Avec le type <strong>picture</strong>: vous pouvez précharger une image par "
|
376 |
+
"défaut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' "
|
377 |
+
"sont en kB; <em>Égal à</em> indique la taille max en pixels (largeur ou "
|
378 |
+
"hauteur) pour les vignettes"
|
379 |
+
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
381 |
+
msgid ""
|
382 |
+
"With <strong>picture-url</strong>: you can preload a default image putting "
|
383 |
+
"url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height "
|
384 |
+
"will be proportional)"
|
385 |
+
msgstr ""
|
386 |
+
"Avec le type <strong>picture-url</strong>: vous pouvez précharger une image "
|
387 |
+
"par défaut en indiquant son URL dans <em>Valeur</em>; <em>Égal à</em> "
|
388 |
+
"indique la taille de la largeur max en pixels (la hauteur sera "
|
389 |
+
"proportionnelle)"
|
390 |
+
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
|
392 |
+
msgid ""
|
393 |
+
"With <strong>registration-date</strong>: <em>equal TO</em> means date and "
|
394 |
+
"time format"
|
395 |
+
msgstr ""
|
396 |
+
"Avec le type <strong>registration-date</strong>: <em>Égal à</em> indique un "
|
397 |
+
"format date et heure"
|
398 |
+
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
|
400 |
+
msgid ""
|
401 |
+
"With <strong>avatar</strong>: you can preload a default image putting url in "
|
402 |
+
"<em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is "
|
403 |
+
"automatically set to 512 pixels"
|
404 |
+
msgstr ""
|
405 |
+
"Avec le type <strong>picture</strong>: vous pouvez précharger une image par "
|
406 |
+
"défaut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' "
|
407 |
+
"sont en kB; <em>Égal à</em> est automatiquement mis à 512 pixels"
|
408 |
+
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
|
410 |
+
msgid ""
|
411 |
+
"With <strong>file</strong>: you can preload a default file putting url in "
|
412 |
+
"<em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can "
|
413 |
+
"be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
414 |
+
msgstr ""
|
415 |
+
"Avec le type <strong>picture</strong>: vous pouvez précharger un fichier par "
|
416 |
+
"défaut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' "
|
417 |
+
"sont en KB; <em>Égal à</em> indique les extensions de fichiers acceptées "
|
418 |
+
"séparées par une virgule, exemple: zip,pdf,doc"
|
419 |
+
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
|
421 |
+
msgid ""
|
422 |
+
"With <strong>date</strong>: you can preload a default date in <em>Value</"
|
423 |
+
"em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max "
|
424 |
+
"date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> "
|
425 |
+
"can be a specific date"
|
426 |
+
msgstr ""
|
427 |
+
"Avec <strong>date</strong>: vous pouvez précharger une date par défaut dans "
|
428 |
+
"<em>Value</em>; 'min date' peut être relative: -1d, -1m, -1y ou une date "
|
429 |
+
"spécifique; 'max date' peut être relative: +1d, +1m, +1y ou une date "
|
430 |
+
"spécifique; <em>égal à</em> peut être une date spécifique"
|
431 |
+
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
438 |
+
msgid "Name"
|
439 |
+
msgstr "Nom"
|
440 |
+
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
|
447 |
+
msgid "Value"
|
448 |
+
msgstr "Valeur"
|
449 |
+
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
454 |
+
msgid "Type"
|
455 |
+
msgstr "Type"
|
456 |
+
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
|
461 |
+
msgid "Label"
|
462 |
+
msgstr "Étiquette"
|
463 |
+
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
|
468 |
+
msgid "Description"
|
469 |
+
msgstr "Description"
|
470 |
+
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
473 |
+
msgid "Rules"
|
474 |
+
msgstr "Règles"
|
475 |
+
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
478 |
+
msgid "Actions"
|
479 |
+
msgstr "Actions"
|
480 |
+
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
|
484 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
|
485 |
+
msgid "Fieldset"
|
486 |
+
msgstr "Regroupements"
|
487 |
+
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
|
490 |
+
msgid "Can be empty"
|
491 |
+
msgstr "Peut être vide"
|
492 |
+
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
|
495 |
+
msgid "Check for E-mail syntax"
|
496 |
+
msgstr "Vérifier la syntaxe du courriel"
|
497 |
+
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
|
500 |
+
msgid "Can be modified"
|
501 |
+
msgstr "Peut être modifié"
|
502 |
+
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
|
505 |
+
msgid "Can be modified only if empty"
|
506 |
+
msgstr "Ne peut être modifié que s'il est vide"
|
507 |
+
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
|
510 |
+
msgid "Can be modified only by admin"
|
511 |
+
msgstr "Ne peut être modifié que par un admin"
|
512 |
+
|
513 |